User skiphoppy - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T19:23:54Zhttp://stackoverflow.com/feeds/user/18103http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/284514/what-is-a-git-topic-branch6What is a git topic branch?skiphoppy2008-11-12T16:32:35Z2009-11-26T14:57:59Z
<p>What is a git topic branch? Does it differ from an ordinary branch in some way? Are there any branches that are not topic branches?</p>
http://stackoverflow.com/questions/1731599/can-i-set-up-a-filtered-star-pattern-database-replication1Can I set up a filtered, star-pattern database replication?skiphoppy2009-11-13T20:12:36Z2009-11-23T11:14:04Z
<p>We have a client that needs to set up N local databases, each one containing one site's data, and then have a master corporate database containing the union of all N databases. Changes in an individual site database need to be propagated to the master database, and changes in the master database need to be propagated to the appropriate individual site database.</p>
<p>We've been using MySQL replication for a client that needs two databases that are kept simultaneously up to date. That's a bidirectional replication. If we tried exactly the same approach here we would wind up with all N local databases equivalent to the master database, and that's not what we want. Not only should each individual site not be able to see data from the other sites, sending that data N times from the master instead of just once is probably a huge waste.</p>
<p>What are my options for accomplishing this new star pattern with MySQL? I know we can replicate only certain tables, but is there a way to filter the replication by records?</p>
<p>Are there any tools that would help or competing RDBMSes that would be better to look at?</p>
http://stackoverflow.com/questions/318818/are-the-swing-layoutmanagers-adequate2Are the Swing LayoutManagers adequate?skiphoppy2008-11-25T20:54:30Z2009-11-20T01:16:08Z
<p>I just had to add a checkbox to an application that was written before I got here, and it was way more difficult than it had to be because the app uses some third-party LayoutManager that attempts to do pseudo-absolute, gridlike positioning. The API was terrible, it takes position-designating strings that are comma-delimited lists of two, four, or six parameters (I still don't know why this varies), and I would much rather let the LayoutManager handle a lot of this grunt work, anyway. I've always felt like allowing Swing to position things itself led to better organization than anything I could generate. I felt the same way with CGI applications, where other than occasionally grouping checkboxes or radio boxes with tables I pretty much just let the browser flow and wrap things however the user wants.</p>
<p>Are the LayoutManager implementations included with Swing adequate, or is it really necessary to incorporate this kind of absolute control to force the layout to be exactly what you want (and give you a million more decisions to make)?</p>
http://stackoverflow.com/questions/94011/how-to-abort-a-thread-in-a-fast-and-clean-way-in-java/95636#956364Answer by skiphoppy for How to abort a thread in a fast and clean way in java?skiphoppy2008-09-18T18:52:10Z2009-11-19T20:16:09Z<p>Try interrupt() as some have said to see if it makes any difference to your thread. If not, try destroying or closing a resource that will make the thread stop. That has a chance of being a little better than trying to throw Thread.stop() at it.</p>
<p>If performance is tolerable, you might view each 3D update as a discrete non-interruptible event and just let it run through to conclusion, checking afterward if there's a new latest update to perform. This might make the GUI a little choppy to users, as they would be able to make five changes, then see the graphical results from how things were five changes ago, then see the result of their latest change. But depending on how long this process is, it might be tolerable, and it would avoid having to kill the thread. Design might look like this:</p>
<pre><code>boolean stopFlag = false;
Object[] latestArgs = null;
public void run() {
while (!stopFlag) {
if (latestArgs != null) {
Object[] args = latestArgs;
latestArgs = null;
perform3dUpdate(args);
} else {
Thread.sleep(500);
}
}
}
public void endThread() {
stopFlag = true;
}
public void updateSettings(Object[] args) {
latestArgs = args;
}
</code></pre>
http://stackoverflow.com/questions/1757053/are-there-any-debugging-patterns/1758261#17582610Answer by skiphoppy for Are there any Debugging Patterns? skiphoppy2009-11-18T18:59:37Z2009-11-18T19:27:41Z<p>Others (Xynth, Broam, Moshe) have mentioned the need to get a minimal test case, hopefully one which can be inserted into your unit test suite. I agree. Once you can make the bug happen, start paring away extra factors, or even code (as Bob suggested), testing at each step to see if the bug went away. If it's in cron, run it manually. If it's run from the GUI, try it from a command-line or a simple test suite.</p>
<p>If you are having trouble, the opposite approach is often useful: create a tiny, minimal program that does a couple of things the buggy routine does. Test it and see if you have the bug. Then, step by step, try to write a working program that does what the buggy routine is supposed to do. At some point, you may see the bug exhibited, in which case you now have your test case. Or, you may get all the way to a successful routine. In this case, start transforming that routine, line by line, into an exact replica of your code, testing along the way to see when the bug appears.</p>
http://stackoverflow.com/questions/1757053/are-there-any-debugging-patterns/1758193#17581931Answer by skiphoppy for Are there any Debugging Patterns? skiphoppy2009-11-18T18:46:55Z2009-11-18T18:46:55Z<p>This is not really a debugging technique, but I think we have to mention a debugging precondition which, if not met, will greatly complicate your work.</p>
<p>You can't really start meaningful debugging until the bug is reproducible, with a step by step recipe. If you get a bad bug report, you may wind up having to discern that recipe yourself, but if you are supporting someone, you should let them know that you figuring out the recipe will take longer than them doing it for you and may even be impossible. A useful bug report has to answer the three questions of what I call the bug report formula: 1) what did you do? 2) what did you expect to happen? 3) what happened instead?</p>
<p>Of course, some bugs are Heisenbugs, apparently transient. You should still try to get something resembling a statement like "If I do the following, it looks like about 10% of the time this undesirable result happens."</p>
<p>Once you have the recipe, the next step is often boiling down to a minimal test case, as others have mentioned.</p>
http://stackoverflow.com/questions/1757053/are-there-any-debugging-patterns/1757165#17571654Answer by skiphoppy for Are there any Debugging Patterns? skiphoppy2009-11-18T16:16:25Z2009-11-18T16:16:25Z<p>If you have a piece of code that used to work, and now exhibits a bug, and a full version history, a binary search through your history can be very useful. You pick a point midway between the working and non-working commit, and you compile that and test. If that commit exhibits the bug, you know it started here or earlier, so you go back midway between here and the known good commit and test again; otherwise, you know the bug started later, so you you go forward midway between here and the known bad commit, and test there. You keep following this process until you find out which commit introduced the bug, and then you look at what changed, and there's a good chance the problem will be obvious.</p>
<p>git bisect is a spectacular tool for just this purpose. But you could theoretically do the same with a bunch of tarballs, if that's all you have.</p>
<p>Of course, this won't work if the bug has been in and out of the tree multiple times. And it probably won't be very helpful if your commits aren't very fine grained.</p>
http://stackoverflow.com/questions/778291/how-do-i-diff-utf-16-files-with-gnu-diff3How do I diff utf-16 files with GNU diff?skiphoppy2009-04-22T17:15:41Z2009-11-13T11:32:04Z
<p>GNU diff doesn't seem to be smart enough to detect and handle UTF-16 files, which surprises me. Am I missing an obvious command-line option? Is there a good alternative?</p>
http://stackoverflow.com/questions/878573/java-multiline-string9Java multiline stringskiphoppy2009-05-18T16:28:47Z2009-11-03T16:06:24Z
<p>Coming from Perl, I sure am missing the "here-document" means of creating a multi-line string in source code:</p>
<pre><code>$string = <<"EOF" # create a three line string
text
text
text
EOF
</code></pre>
<p>In Java I have to have cumbersome quotes and plus signs on every line as I concatenate my multiline string from scratch.</p>
<p>What are some better alternatives? Define my string in a properties file?</p>
<p><strong>Edit</strong>: Two answers say StringBuilder.append() is preferable to the plus notation. Could anyone elaborate as to why they think so? It doesn't look more preferable to me at all. I'm looking for away around the fact that multiline strings are not a first-class language construct, which means I definitely don't want to replace a first-class language construct (string concatenation with plus) with method calls.</p>
<p><strong>Edit</strong>: To clarify my question further, I'm not concerned about performance at all. I'm concerned about maintainability and design issues.</p>
http://stackoverflow.com/questions/115819/lightweight-x-window-manager-environment4Lightweight X window manager/environmentskiphoppy2008-09-22T16:14:41Z2009-10-28T21:14:09Z
<p>My machine is seriously underpowered, and I think I need to start conserving every spare cycle. I know that my Gnome environment seems to underperform compared to my coworkers' KDE setups. But if I'm going to make that big of a switch, I might as well consider running something even lighter.</p>
<p>Is it possible to survive on a lightweight window manager and still run modern apps (Firefox, Eclipse, OpenOffice)? What's a good candidate window manager for me to try, and what do I need to know?</p>
http://stackoverflow.com/questions/537577/where-do-you-keep-your-code25Where do you keep your code?skiphoppy2009-02-11T16:24:45Z2009-10-27T20:51:48Z
<p>Your code is of course checked into a repository somewhere, but where do you keep your working copy/copies? C:\Program Files isn't right, as it's for installed packages. My Documents somehow doesn't seem right, either—a My Code folder next to My Music and My Pictures? Dumping in C:\ is messy, but seems to be "working" for other people in my office.</p>
http://stackoverflow.com/questions/484133/whats-a-good-tar-utility-for-windows1What's a good tar utility for Windows?skiphoppy2009-01-27T16:38:18Z2009-10-26T18:26:34Z
<p>I use Cygwin regularly, but I have a need these days to extract tar.gz and tar.bz2 files on other people's Windows machines. They don't want Cygwin; they need a GUI. I've tried 7-zip, which some other people in our company were using, but 7-zip makes the braindead decision to require you to first uncompress a file to a new destination file, then untar the file, thus wasting time and disk space, and requiring extra actions on my part. And there's other things I don't like about its interface.</p>
<p>I just received a new Windows workstation and decided to try out the ZipGenius software the powers that be decided to provide with it, but it doesn't even handle tar.gz files.</p>
<p>Any suggestions on a better tool?</p>
http://stackoverflow.com/questions/1279449/what-is-perm-space3What is perm space?skiphoppy2009-08-14T18:35:08Z2009-10-24T09:48:53Z
<p>While learning about java memory profiling, I keep seeing the term "perm space" in addition to "heap." I know what the heap is - what's perm space?</p>
http://stackoverflow.com/questions/1050256/how-can-i-get-log4j-to-delete-old-rotating-log-files1How can I get log4j to delete old rotating log files?skiphoppy2009-06-26T17:24:02Z2009-10-24T09:24:02Z
<p>How can I get log4j to delete old rotating log files? I know I can set up automated jobs (cron for UNIX and scheduled task for Windows), but I want it cross platform, and I want it in our application's log configuration as a part of our application, rather than in separate code outside in OS specific scripting languages. Our application is not written in OS scripting languages, and I don't want to do this part of it in them.</p>
http://stackoverflow.com/questions/1601793/how-do-i-modify-eclipse-code-formatting2How do I modify Eclipse code formatting?skiphoppy2009-10-21T15:54:00Z2009-10-21T16:06:49Z
<p>When I reformat code with Eclipse, it turns method headers like this:</p>
<pre><code>public void myMethod(String param) {
</code></pre>
<p>into method headers like this:</p>
<pre><code>public void myMethod(
String param) {
</code></pre>
<p>When I was brought on here I'd never used Eclipse before, and I imported project settings provided by someone else. I have seen that on small new projects I've worked on Eclipse does not do this, so it must be in the settings I've imported. But I've gone through every panel I can find, as well as every hidden file I can find in the workspace, and I can't figure out what is causing this.</p>
<p>How do I turn it off? I don't want a newline before parameters in my method signatures, and I can't imagine why anyone would!</p>
http://stackoverflow.com/questions/1573003/how-do-you-debug-a-hanging-socket-connection1How do you debug a hanging socket connection?skiphoppy2009-10-15T15:09:25Z2009-10-15T15:32:12Z
<p>We are connecting to a web service as follows:</p>
<pre><code>URL url = new URL("https://...");
HttpURLConnection conn = (HttpURLConnection)url.openConnection();
conn.setRequestMethod("POST");
conn.setRequestProperty("Content-type", "application/x-www-form-urlencoded");
conn.setRequestProperty("Content-length", "" + data.length());
conn.setDoOutput(true);
OutputStreamWriter o = new OutputStreamWriter(conn.getOutputStream());
</code></pre>
<p>Sometimes, the connection hangs on this last line, with either a very long or infinite timeout.</p>
<p>How can we get into this and find out what is happening, for sure? (We have plenty of speculation, but little confirmation at this point.) We've instrumented our code with plenty of logging statements (which is how we know where the stopping point is), but can't very well do the same for Java libraries. What additional information can we convince these classes to tell us? If we wanted to set a timeout, how would we do it?</p>
<p>How do we debug this?</p>
http://stackoverflow.com/questions/835501/git-how-do-you-stash-an-untracked-file4git: How do you stash an untracked file?skiphoppy2009-05-07T15:54:20Z2009-10-11T10:10:22Z
<p>I have changes to a file, plus a new file, and would like to use git stash to put them away while I switch to another task. But git stash by itself stashes only the changes to the existing file; the new file remains in my working tree, cluttering up my future work. How do I stash this untracked file?</p>
http://stackoverflow.com/questions/1532803/what-do-i-do-when-my-company-asks-me-to-call-customers-and-do-market-research7What do I do when my company asks me to call customers and do market research?skiphoppy2009-10-07T16:44:26Z2009-10-08T22:48:54Z
<p>Out of nowhere, everyone on the development staff just received an email telling us that we are going to be calling customers and asking them survey questions. We have never done anything like this before, and in every job I've ever had I've been in a position where I do not talk to customers directly.</p>
<p>We are being told this is a policy that all the other subsidiaries of our company follow (we are one of several purchased companies) and that we are just now catching up.</p>
<p>I have a rather striking phone phobia, especially about calling perfect strangers. And I <strong>hate</strong> telemarketers and phone surveys. I can't imagine putting anyone else through anything like this even if I could imagine myself capable of making the calls.</p>
<p>Apparently we are to make two calls on Friday and then about eighteen on Wednesday next week.</p>
<p>Is this normal in the industry? I have never heard of anything like this. How can I fight this and get the message across that I am a programmer, not a telephone market researcher? Do I just need to suck it up and do whatever they ask me? I'd rather clean the toilets...</p>
http://stackoverflow.com/questions/738154/what-does-git-updating-currently-checked-out-branch-warning-mean13What does git "updating currently checked out branch" warning mean?skiphoppy2009-04-10T16:25:07Z2009-10-07T17:24:01Z
<p>When I do a git push, I see the following:</p>
<pre><code>warning: updating the currently checked out branch; this may cause confusion,
as the index and working tree do not reflect changes that are now in HEAD.
</code></pre>
<p>I Googled for this message, and all I can find is a <a href="http://article.gmane.org/gmane.comp.version-control.git/107814" rel="nofollow">git mailing list discussion</a> where the authors try to decide exactly how to make this message better to communicate to me what the real problem is.</p>
<p>How did I cause this, and how do I fix it?</p>
http://stackoverflow.com/questions/690502/can-i-use-msysgit-and-cygwins-git2Can I use mSysGit and Cygwin's git?skiphoppy2009-03-27T16:36:40Z2009-10-05T12:35:26Z
<p>After migrating to Windows, I'm using msysgit with its included bash shell, and that's working well for me. But I have issues: our ant build process won't run in that shell, I'd like to use Cygwin's xterms instead of the Windows command window, since the terminal compatibility isn't good enough to run everything else I'd like in that window, and so on.</p>
<p>I've actually made a go of sticking with msysgit in the Windows command shell so that I don't have to use a separate window to build, but that's got even more problems: the lack of <code>cd</code> - and file completion is killing me, most of the commands I'd like to pipe to aren't present, etc.</p>
<p>So if I switch to using Cygwin's git, or worse, use both at different times, are line-endings going to bite me? Will Cygwin's git expect everything to be <code>\n</code> and think it's seeing changes because mSysGit converted to <code>\r\n</code> when checking out? Will Cygwin's git check out as <code>\n</code> and confuse my Windows Eclipse, which I'm sure wants everything to be <code>\r\n</code>?</p>
http://stackoverflow.com/questions/1505715/how-to-suppress-ant-jar-warnings-for-duplicates1How to suppress ant jar warnings for duplicatesskiphoppy2009-10-01T18:40:15Z2009-10-02T08:45:11Z
<p>I don't want ant's <strong>jar</strong> task to notify me every time it skips a file because the file has already been added. I get reams of this:</p>
<pre><code> [jar] xml/dir1/dir2.dtd already added, skipping
</code></pre>
<p>Is there a way to turn this warning off?</p>
http://stackoverflow.com/questions/1498147/how-can-i-find-out-where-a-resourcebundle-came-from1How can I find out where a ResourceBundle came from?skiphoppy2009-09-30T13:31:39Z2009-09-30T14:24:16Z
<p>Given a ResourceBundle object, is there a way to get a URL or other indicator as to where it was found when it was looked up?</p>
<p>The ResourceBundle is being created with:</p>
<pre><code>ResourceBundle rb = ResourceBundle.getBundle("filename");
</code></pre>
<p>And it is being loaded from a file subdir/filename.properties, in most cases. I'd like to be able to programmatically refer to this location, rather than hardcoding it.</p>
http://stackoverflow.com/questions/1492676/xmltask-confused-about-dtd0xmltask confused about dtdskiphoppy2009-09-29T13:45:45Z2009-09-29T13:59:45Z
<p>I'm trying to use xmltask for ant to modify a file in a subdirectory:</p>
<pre><code>project/path/to/file.xml
</code></pre>
<p>The file refers to a DTD like this:</p>
<pre><code><!DOCTYPE data SYSTEM "mydtd.dtd">
</code></pre>
<p>This DTD is stored in the same subdirectory, which has always worked fine:</p>
<pre><code>project/path/to/mydtd.dtd
</code></pre>
<p>Unfortunately, xmltask is trying to locate the dtd in my project's top-level directory, which is where my build file is located, and where I run from:</p>
<p>[xmltask] java.io.FileNotFoundException: /home/me/project/mydtd.dtd (The system cannot find the file specified)</p>
<p>I see in the xmltask documentation that I can correct this with an <strong>xmlcatalog</strong> element to tell it where to look up the file. But I need to use a <strong>dtd</strong> element, and I can only find examples for this element, not documentation; the examples show only a publicId, and if I understand XML correctly this document does not have one. I shouldn't need to specify this, anyway, right, since my document already says my DTD is stored locally and shows right where it is?</p>
<p>Why isn't xmltask finding the DTD correctly? What's the best way to correct or work around this situation?</p>
http://stackoverflow.com/questions/1460405/how-do-i-rename-files-when-included-in-a-jar-by-ants-jar-task1How do I rename files when included in a jar by ant's jar task?skiphoppy2009-09-22T14:25:33Z2009-09-26T23:43:42Z
<p>I want to put a set of files that look like this into a jar:</p>
<pre><code>yay/my.jar
boo/my.jar
foo/my.jar
bar/my.jar
</code></pre>
<p>In the process, I want all of them renamed as follows:</p>
<pre><code>yay_my.jar
boo_my.jar
foo_my.jar
bar_my.jar
</code></pre>
<p>I was hoping to use a mapper to accomplish this, but the fileset elements I am using and the jar task don't seem to support it anywhere.</p>
<p>How do I apply a mapper when building a jar, or else how can I perform a transformation like this? I want to avoid copying all the files to the directory structure I want and making duplicates all over the place, which is how our build system works now.</p>
http://stackoverflow.com/questions/1479544/transforming-xml-with-ant0Transforming XML with antskiphoppy2009-09-25T20:58:16Z2009-09-25T21:39:51Z
<p>I need to modify certain XML files, and possibly generate XML, in our build and deploy process, which runs on ant. Examples of what I might need to do would be eliminating certain elements based on the value of particular attributes, changing the values of attributes, adding attributes, and adding all new elements. I'm pretty familiar with doing this through the DOM in Java and would like something that feels similar from ant, if possible.</p>
<p>Any good suggested third-party ant tasks I could use?</p>
http://stackoverflow.com/questions/1479544/transforming-xml-with-ant/1479595#14795951Answer by skiphoppy for Transforming XML with antskiphoppy2009-09-25T21:07:58Z2009-09-25T21:07:58Z<p>Preliminary Googling after posting the question leads me to believe <a href="http://today.java.net/pub/a/today/2006/11/01/xml-manipulation-using-xmltask.html" rel="nofollow">xmltask</a> will do what I want, assuming I'm willing to learn XPath (and I think I am). Still open to other suggestions; I'll have to give this more investigation next week.</p>
http://stackoverflow.com/questions/1477615/text-manipulation-in-ant1Text manipulation in antskiphoppy2009-09-25T14:27:45Z2009-09-25T18:54:32Z
<p>Given an ant fileset, I need to perform some sed-like manipulations on it, condense it to a multi-line string (with effectively one line per file), and output the result to a text file.</p>
<p>What ant task am I looking for?</p>
http://stackoverflow.com/questions/1477615/text-manipulation-in-ant/1478348#14783480Answer by skiphoppy for Text manipulation in antskiphoppy2009-09-25T16:40:32Z2009-09-25T16:40:32Z<p>rodrigoap's answer is enough to build a pure ant solution, but it's not clean enough for me and would be some very complicated ant code, so I used a different method: I subclassed ant's <strong>echo</strong> task to make an <strong>echofileset</strong> task, which takes a <strong>fileset</strong> and a <strong>mapper</strong>. Subclassing <strong>echo</strong> buys me the ability to output to a file. A <strong>regexmapper</strong> performs the transformation on filenames that I need. I hardcoded it to print out each file on a separate line, but if I needed more flexibility I could add an optional separator attribute. I also thought about providing the ability to output to a property, too, but it turned out I didn't need it since I echo'ed straight to a file.</p>
http://stackoverflow.com/questions/1466947/how-do-i-code-an-ant-task-that-takes-an-arbitrary-mapper0How do I code an ant Task that takes an arbitrary Mapper?skiphoppy2009-09-23T15:59:08Z2009-09-23T15:59:33Z
<p>Generally speaking, any ant task which accepts a will also accept several tags designating particular mappers: , , etc.</p>
<p>But if you're writing your own task, you are supposed to supply a method for each possible tag that may exist inside your task. You don't want to add separate addConfiguredMapper(), addConfiguredIdentityMapper(), addConfiguredRegexMapper(), etc. methods. How do you easily set up a custom ant Task to take any arbitrary Mapper, specified by either the general tag or the tag for each particular instance?</p>
http://stackoverflow.com/questions/1466947/how-do-i-code-an-ant-task-that-takes-an-arbitrary-mapper/1466952#14669520Answer by skiphoppy for How do I code an ant Task that takes an arbitrary Mapper?skiphoppy2009-09-23T15:59:33Z2009-09-23T15:59:33Z<p>These are the two methods you will need to supply:</p>
<pre><code>public Mapper createMapper() throws BuildException;
public void add(FileNameMapper fileNameMapper);
</code></pre>
<p>Take a look at the Copy task in the ant source distribution to see how these are implemented.</p>
http://stackoverflow.com/questions/1731599/can-i-set-up-a-filtered-star-pattern-database-replication/1782490#1782490Comment by skiphoppy on Can I set up a filtered, star-pattern database replication?skiphoppy2009-11-23T17:37:57Z2009-11-23T17:37:57ZThere's a good chance that will do it for us. We will definitely be checking it out. Thank you!http://stackoverflow.com/questions/1757053/are-there-any-debugging-patterns/1758193#1758193Comment by skiphoppy on Are there any Debugging Patterns? skiphoppy2009-11-19T20:13:08Z2009-11-19T20:13:08ZYes, if it's more than one way, then you have two conceptual bug reports, and two test cases. Both should be boiled down to a minimal test case. You can do one and then go all the way to fix it and see if the other is an issue, or you can minimize both first and then try to fix.http://stackoverflow.com/questions/1757053/are-there-any-debugging-patterns/1757288#1757288Comment by skiphoppy on Are there any Debugging Patterns? skiphoppy2009-11-18T18:56:01Z2009-11-18T18:56:01ZIf you didn't fix it, it ain't fixed, should be an answer all its own! If it miraculously got better, or you tried some voodoo or cargo cult change to the code without a hypothesis about what was wrong or a test to prove your hypothesis, you'll just keep debugging it again, maybe even for years.http://stackoverflow.com/questions/1757053/are-there-any-debugging-patterns/1757553#1757553Comment by skiphoppy on Are there any Debugging Patterns? skiphoppy2009-11-18T18:52:02Z2009-11-18T18:52:02ZThe "explain the problem to my wife" approach has often been very helpful to me. Someone unfamiliar with the component or system, and often someone not even familiar with programming, will be a great audience who will force me to say things I otherwise wouldn't have said, and therefore look at things I might have missed.http://stackoverflow.com/questions/1757053/are-there-any-debugging-patterns/1757071#1757071Comment by skiphoppy on Are there any Debugging Patterns? skiphoppy2009-11-18T18:50:19Z2009-11-18T18:50:19ZI see what you're saying, Chris. My approach is always to first try to replicate a bug on my system, where I do have source access. If that fails, I try to make my system as close as possible to the one failing: pull down their database, the exact same build of the software they have, perhaps even switch to their operating system, etc. But if that fails (and it has for me, sometimes), then I'm stuck debugging on a production system where I can't modify source! And you are right, in such a scenario, you can't use this debugging tip.http://stackoverflow.com/questions/1757053/are-there-any-debugging-patternsComment by skiphoppy on Are there any Debugging Patterns? skiphoppy2009-11-18T18:42:29Z2009-11-18T18:42:29ZIt'll become a community wiki if it needs to be. :)http://stackoverflow.com/questions/1757053/are-there-any-debugging-patterns/1757071#1757071Comment by skiphoppy on Are there any Debugging Patterns? skiphoppy2009-11-18T16:17:23Z2009-11-18T16:17:23ZI am at a loss as to when I would be "debugging" when source modification is not an option. If I don't have the source, I can't debug it, although I can produce a nice bug report.http://stackoverflow.com/questions/702980/why-is-git-cvsimport-missing-one-major-patchset/709894#709894Comment by skiphoppy on Why is git-cvsimport missing one major patchset?skiphoppy2009-11-13T19:44:01Z2009-11-13T19:44:01ZGlad to hear it helped. There are still bugs in cvsimport, but hopefully you will not run into them. :) Are you doing a one-time conversion, or are you going to be stuck interacting with the original CVS repository in the future?http://stackoverflow.com/questions/1050256/how-can-i-get-log4j-to-delete-old-rotating-log-files/1617477#1617477Comment by skiphoppy on How can I get log4j to delete old rotating log files?skiphoppy2009-10-26T15:09:46Z2009-10-26T15:09:46ZNot to my knowledge. We were in this situation. We had to rotate files based on size instead of date. The abortive attempt at log4j 1.3 (I believe) was going to address this, but 1.3 was canceled, and there seem to be no plans to fix it in 1.2.
BTW, you shouldn't ask questions on stackoverflow as an answer post. You should ask a separate question.http://stackoverflow.com/questions/1601793/how-do-i-modify-eclipse-code-formatting/1601830#1601830Comment by skiphoppy on How do I modify Eclipse code formatting?skiphoppy2009-10-21T16:20:10Z2009-10-21T16:20:10ZSomeone may come back and make me use the project settings again, if so I'd like to figure out how to get that setting to actually follow "Wrap only when necessary" policy. But beats me how to do it...
Hopefully I can get away with the Eclipse formatting policy for now. :)http://stackoverflow.com/questions/1601793/how-do-i-modify-eclipse-code-formatting/1601830#1601830Comment by skiphoppy on How do I modify Eclipse code formatting?skiphoppy2009-10-21T16:19:12Z2009-10-21T16:19:12ZI switched to not use project settings, bringing me back to Eclipse builtins. This looks nice for me. :) I think I may have to change the tab/indenting policy. Thanks!http://stackoverflow.com/questions/1601793/how-do-i-modify-eclipse-code-formatting/1601830#1601830Comment by skiphoppy on How do I modify Eclipse code formatting?skiphoppy2009-10-21T16:17:05Z2009-10-21T16:17:05ZProject settings display the wrong formatting I'm experiencing, but they are also set to "Wrap only when necessary." It says the project settings are an "unmanaged profile."http://stackoverflow.com/questions/1601793/how-do-i-modify-eclipse-code-formatting/1601830#1601830Comment by skiphoppy on How do I modify Eclipse code formatting?skiphoppy2009-10-21T16:10:52Z2009-10-21T16:10:52ZI tracked this down, and it displays what appears to be proper code style to me:
void foo(int arg1 // no newline
It appears to be following a "Always wrap first element, others when necessary" policy, but the actual setting is "Wrap only when necessary."http://stackoverflow.com/questions/537577/where-do-you-keep-your-code/738535#738535Comment by skiphoppy on Where do you keep your code?skiphoppy2009-10-21T15:51:14Z2009-10-21T15:51:14ZIt's the one I decided to use. :)http://stackoverflow.com/questions/1545186/do-you-use-protected-visibilityComment by skiphoppy on Do you use protected visibility?skiphoppy2009-10-12T18:17:26Z2009-10-12T18:17:26ZThanks for the link, Shog9; sounds like the correct answer was to close as a duplicate.
Can't see how this could possibly be "flame-bait," though.