User Bombe - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T19:23:17Zhttp://stackoverflow.com/feeds/user/43582http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1808376/does-simulation-of-closures-in-java-make-sense/1808440#18084401Answer by Bombe for Does simulation of closures in Java make sense?Bombe2009-11-27T12:18:29Z2009-11-27T12:18:29Z<p>What <a href="http://stackoverflow.com/questions/1808376/does-simulation-of-closures-in-java-make-sense/1808424#1808424">bruno conde</a> said. Also, some IDEs (e.g. Eclipse) can hide anonymous classes, shrinking the Google Collection code to a single line. Now <em>that</em> is readable! :)</p>
http://stackoverflow.com/questions/1790228/why-isnt-my-jlabels-or-jpanels-showing/1790345#17903451Answer by Bombe for why isn't my Jlabels or Jpanels showing??Bombe2009-11-24T14:14:15Z2009-11-24T14:14:15Z<p>If you are not using a <a href="http://java.sun.com/javase/6/docs/api/java/awt/LayoutManager.html" rel="nofollow">LayoutManager</a> on purpose (and it looks that way) make sure that you set a location and a size for your component.</p>
<pre><code>pTitle.setLocation(100, 100);
pTitle.setSize(100, 100);
</code></pre>
<p>But you should rather remove this line</p>
<pre><code>panel.setLayout(null);
</code></pre>
<p>and replace it with something like this:</p>
<pre><code>panel.setLayout(new BorderLayout());
</code></pre>
<p>Also, don’t forget to add your <code>pTitle</code> to <code>panel</code>.</p>
http://stackoverflow.com/questions/1789797/object-vs-static-method-design/1789845#17898452Answer by Bombe for Object vs static method design Bombe2009-11-24T12:42:26Z2009-11-24T12:52:04Z<p>It all depends on the usage pattern. Maybe you just need to copy something from an <a href="http://java.sun.com/javase/6/docs/api/java/io/InputStream.html" rel="nofollow">InputStream</a> to an <a href="http://java.sun.com/javase/6/docs/api/java/io/OutputStream.html" rel="nofollow">OutputStream</a> every now and then? Then it probably won’t matter. However, if you’re doing lots of copying in various environments (network streams, both LAN and WAN, copying files on the local disk) you might be better off when you have the option to select the size of the buffer used for copying.</p>
<p>So, why restrict yourself to only one method? Implement it with object methods and a constructor that takes a buffer size (used for your varying needs), and maybe add a static method to get a pseudo-singleton instance that uses some default buffer size (which is used for the casual copying every now and then).</p>
http://stackoverflow.com/questions/1784506/when-creating-a-git-repo-that-will-be-on-the-server-can-i-convert-it-to-a-bare-r/1784560#17845604Answer by Bombe for when creating a git repo that will be on the server, can I convert it to a bare repo?Bombe2009-11-23T17:07:45Z2009-11-23T17:07:45Z<p>Just move the <code>.git</code> folder away from the working copy.</p>
<pre><code>mv /var/git/repo/repo/.git /var/git/repos/repo.git
</code></pre>
<p>You might want to follow that up with a</p>
<pre><code>git config core.bare true
</code></pre>
<p>in that repository, just in case <code>git</code> complains about something not being right.</p>
http://stackoverflow.com/questions/1762878/how-to-check-if-string-value-is-boolean-type-in-java/1762894#176289410Answer by Bombe for How to check if String value is Boolean type in java?Bombe2009-11-19T12:16:36Z2009-11-19T12:16:36Z<pre><code>return "true".equals(value) || "false".equals(value);
</code></pre>
http://stackoverflow.com/questions/1724871/how-to-get-the-diff-between-a-tag-and-its-base-in-git/1725076#17250762Answer by Bombe for How to get the diff between a tag and its base in Git?Bombe2009-11-12T20:17:36Z2009-11-12T20:17:36Z<pre><code>git diff <commit> <commit>~
</code></pre>
<p>That will show the difference between a commit and its parent (assuming that you mean the parent when you say “base”).</p>
<p>Shorter version:</p>
<pre><code>git show <commit>
</code></pre>
http://stackoverflow.com/questions/1680582/git-svn-password-change/1680859#16808592Answer by Bombe for git-svn password changeBombe2009-11-05T14:18:42Z2009-11-05T14:18:42Z<p><code>git-svn</code> uses Subversion’s perl modules which in turn uses “normal” Subversion authentication. That means that your authentication data is stored somewhere in <code>$HOME/.subversion</code>, e.g. in one of the files in <code>$HOME/.subversion/svn.simple/</code> when you are using a simple username-password combination to authenticate.</p>
http://stackoverflow.com/questions/1680649/getting-commits-tag-in-git/1680722#16807222Answer by Bombe for getting commits' tag in gitBombe2009-11-05T13:53:18Z2009-11-05T13:53:18Z<p>To show the tags that contain a commit (i.e. tags the precede a commit):</p>
<pre><code>git tag --contains <commit>
</code></pre>
http://stackoverflow.com/questions/1679579/removing-all-queued-tasks-of-an-threadpoolexecutor/1679596#16795961Answer by Bombe for Removing all queued tasks of an ThreadPoolExecutorBombe2009-11-05T10:18:30Z2009-11-05T11:12:42Z<p>As <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html#shutdown%28%29" rel="nofollow">ExecutorService.shutdown()</a> is not doing enough and <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ExecutorService.html#shutdownNow%28%29" rel="nofollow">ExecutorService.shutdownNow()</a> is doing too much I guess you have to write up something in the middle: remember all your submitted tasks and remove them manually after (or before) calling <code>shutdown()</code>.</p>
http://stackoverflow.com/questions/1663506/missing-something-hashset-duplicates/1663538#16635384Answer by Bombe for Missing something HashSet duplicatesBombe2009-11-02T20:37:32Z2009-11-02T21:18:28Z<p>You did not correctly override <code>Object.equals()</code>.</p>
<pre><code>@Override
public boolean equals(Object other) {
if ((other == null) || !(other instanceof Subclass)) {
return false;
}
return ((Sublcass) other).getAcctNbr().equals(this.getAcctNbr());
}
</code></pre>
<p>The method <code>boolean equals(Subclass other)</code> creates a second method which is not what you intended to do.</p>
http://stackoverflow.com/questions/1618996/jbutton-is-a-quitbutton/1619014#16190141Answer by Bombe for JButton is a quitButtonBombe2009-10-24T20:33:16Z2009-10-25T21:00:13Z<pre><code>quitButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent actionEvent) {
serializeMe();
System.exit(0);
}
});
</code></pre>
<p>This is a very short version. You should probably make proper use of stuff like <a href="http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/Action.html" rel="nofollow">Actions</a>, i.e.</p>
<pre><code>Action quitAction = new AbstractAction() {
public void actionPerformed(ActionEvent actionEvent) {
serializeMe();
System.exit(0);
}
};
quitButton = new JButton(quitAction);
</code></pre>
http://stackoverflow.com/questions/1611314/does-this-stack-dump-indicate-that-i-have-a-deadlock/1611439#16114392Answer by Bombe for Does this stack dump indicate that I have a deadlock ?Bombe2009-10-23T04:55:12Z2009-10-23T04:55:12Z<p>Take a look at <a href="http://stackoverflow.com/questions/1562705/question-about-deadlock-situation-in-java">this question</a>. This is an excerpt of the stacktrace that can be generated:</p>
<pre><code>"Thread-1" prio=10 tid=0x0841ac00 nid=0x77d waiting for monitor entry [0xb42bf000]
java.lang.Thread.State: BLOCKED (on object monitor)
at Deadlock$Friend.bowBack(Deadlock.java:16)
- waiting to lock <0x8b80def8> (a Deadlock$Friend)
at Deadlock$Friend.bow(Deadlock.java:13)
- locked <0x8b80df08> (a Deadlock$Friend)
at Deadlock$2.run(Deadlock.java:28)
at java.lang.Thread.run(Thread.java:619)
"Thread-0" prio=10 tid=0x08419400 nid=0x77c waiting for monitor entry [0xb4310000]
java.lang.Thread.State: BLOCKED (on object monitor)
at Deadlock$Friend.bowBack(Deadlock.java:16)
- waiting to lock <0x8b80df08> (a Deadlock$Friend)
at Deadlock$Friend.bow(Deadlock.java:13)
- locked <0x8b80def8> (a Deadlock$Friend)
at Deadlock$1.run(Deadlock.java:25)
at java.lang.Thread.run(Thread.java:619)
Found one Java-level deadlock:
=============================
"Thread-1":
waiting to lock monitor 0x083f1464 (object 0x8b80def8, a Deadlock$Friend),
which is held by "Thread-0"
"Thread-0":
waiting to lock monitor 0x083efc90 (object 0x8b80df08, a Deadlock$Friend),
which is held by "Thread-1"
Java stack information for the threads listed above:
===================================================
"Thread-1":
at Deadlock$Friend.bowBack(Deadlock.java:16)
- waiting to lock <0x8b80def8> (a Deadlock$Friend)
at Deadlock$Friend.bow(Deadlock.java:13)
- locked <0x8b80df08> (a Deadlock$Friend)
at Deadlock$2.run(Deadlock.java:28)
at java.lang.Thread.run(Thread.java:619)
"Thread-0":
at Deadlock$Friend.bowBack(Deadlock.java:16)
- waiting to lock <0x8b80df08> (a Deadlock$Friend)
at Deadlock$Friend.bow(Deadlock.java:13)
- locked <0x8b80def8> (a Deadlock$Friend)
at Deadlock$1.run(Deadlock.java:25)
at java.lang.Thread.run(Thread.java:619)
Found 1 deadlock.
</code></pre>
<p>So, when you have a deadlock at hand the VM can detect and show it.</p>
http://stackoverflow.com/questions/1606872/how-to-call-an-applet-from-another-java-file/1606962#16069620Answer by Bombe for How to call an applet from another Java file?Bombe2009-10-22T12:44:29Z2009-10-22T12:44:29Z<p>You need something to display the applet in, it won’t show itself miraculously somewhere.</p>
<pre><code>JFrame frame = new JFrame();
frame.getContentPane().add(applet);
frame.setVisible(true);
</code></pre>
http://stackoverflow.com/questions/1590198/git-clone-memory-allocation-error/1591017#15910170Answer by Bombe for git-clone memory allocation errorBombe2009-10-19T20:40:22Z2009-10-19T20:40:22Z<p>If <code>git</code> on the remote machine fails due to memory constraints you might also try <code>rsync</code> or <code>scp</code> to copy the repository to your local machine and continue with cloning from there.</p>
http://stackoverflow.com/questions/1587830/inherited-method-needs-one-more-parameter/1588015#15880150Answer by Bombe for Inherited method needs one more parameterBombe2009-10-19T10:47:37Z2009-10-19T10:47:37Z<p>You can even further extend the idea of a <code>ParameterObject</code> (as proposed by <a href="http://stackoverflow.com/questions/1587830/inherited-method-needs-one-more-parameter/1587916#1587916">Brian Agnew</a>) by using generics.</p>
<pre><code>public interface Algorithm<P extends AlgorithmParameter> {
public void doSomething(P parameters);
}
</code></pre>
<p>This way your <code>CoolAlgorithm</code> takes a <code>CoolAlgorithmParameter</code> and your <code>NiceAlgorithm</code> takes a <code>NiceAlgorithmParameter</code> so you don’t have to worry about the parameter object actually being what you want—generics will take care of that.</p>
http://stackoverflow.com/questions/1578417/avoid-creating-new-string-objects-when-converting-a-byte-to-string-using-a-sp/1578709#15787091Answer by Bombe for Avoid creating 'new' String objects when converting a byte[] to String using a specific charsetBombe2009-10-16T15:15:33Z2009-10-16T15:15:33Z<p>You shouldn’t be concerned about it—unless you profiled your application and have determined the <code>String</code> creation to be the exact source of your problem.</p>
<p>If you find out that the <code>String</code> creation <em>is</em> the source of your problem I would recommend what <a href="http://stackoverflow.com/questions/1578417/avoid-creating-new-string-objects-when-converting-a-byte-to-string-using-a-sp/1578443#1578443">Jon Skeet</a> proposed, i.e. a mapping from <code>byte[]</code> to <code>String</code>. That has about the same effect as <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/String.html#intern%28%29" rel="nofollow">interning</a> your <code>String</code>s while not hogging up valuable memory until you restart the VM.</p>
http://stackoverflow.com/questions/1577719/java-sockets-bufferedreader-and-readline-hang/1577833#15778333Answer by Bombe for Java, sockets, BufferedReader, and readline hang ... :(Bombe2009-10-16T12:42:36Z2009-10-16T12:42:36Z<p>Your problem is the content encoding “chunked”. This is used when the length of the content requested from the web server is not known at the time the response is started. It basically consists of the number of bytes being sent, followed by <code>CRLF</code>, followed by the bytes. The end of a response is signalled by the exact sequence you are seeing. The web server is now waiting for your next request (this is also called “request pipelining”).</p>
<p>You have several possibilities:</p>
<ul>
<li>Use HTTP version 1.0. This will cause the webserver to automatically close the connection when a response has been sent completely.</li>
<li>Specify the “Connection: close” header when sending your request. This will also close the connection.</li>
<li>Parse content encoding “chunked” correctly and simply treat this as if the response is now complete—which it is.</li>
</ul>
http://stackoverflow.com/questions/1577037/simple-way-to-implement-computer-go-board-in-java/1577062#15770621Answer by Bombe for Simple way to implement computer-go board in JavaBombe2009-10-16T09:24:06Z2009-10-16T09:24:06Z<pre><code>int[][] grid = new int[19][19];
</code></pre>
<p>There’s your grid. Each location in this array represents a line intersection.</p>
http://stackoverflow.com/questions/1565483/creating-a-byte-from-a-listbyte/1565516#15655167Answer by Bombe for Creating a byte[] from a List<Byte>Bombe2009-10-14T10:39:35Z2009-10-14T10:57:49Z<pre><code>byte[] byteArray = new byte[byteList.size()];
for (int index = 0; index < byteList.size(); index++) {
byteArray[index] = byteList.get(index);
}
</code></pre>
<p>You may not like it but that’s about the only way to create a Genuine™ Array® of <code>byte</code>.</p>
<p>As pointed out in the comments, there are other ways. This one uses an <a href="http://java.sun.com/javase/6/docs/api/java/util/Iterator.html" rel="nofollow">iterator</a>.</p>
<pre><code>byte[] byteArray = new byte[byteList.size()];
int index = 0;
for (byte b : byteList) {
byteArray[index++] = b;
}
</code></pre>
http://stackoverflow.com/questions/1553441/sending-estimate-http-content-length-from-servlet-etc/1553623#15536230Answer by Bombe for Sending estimate HTTP Content-Length from Servlet etcBombe2009-10-12T09:42:48Z2009-10-12T09:42:48Z<p>If the length of your content is not known beforehand you can use the <a href="http://www.w3.org/Protocols/rfc2616/rfc2616-sec3.html#sec3.6.1" rel="nofollow">“chunked” content encoding</a> (as per HTTP version 1.1). This will not solve your progress bar problem, though—and there’s just no way to make it work unless you know how much content you are going to send.</p>
http://stackoverflow.com/questions/1553010/how-to-declare-and-consume-events-in-java/1553225#15532252Answer by Bombe for How to declare and consume events in JavaBombe2009-10-12T07:41:06Z2009-10-12T07:46:33Z<p>A simple event interface looks like this:</p>
<pre><code>public interface AnimalListener {
public void animalDoesSomething(int action);
}
</code></pre>
<p><code>Animal</code> needs to manage its listeners:</p>
<pre><code>public class Animal {
private final List<AnimalListener> animalListeners = new ArrayList<AnimalListener>()
public void addAnimalListener(AnimalListener animalListener) {
animalListeners.add(animalListener);
}
}
</code></pre>
<p>Your <code>Animal</code>-creating class needs to do this:</p>
<pre><code>public class AnimalCreator implements AnimalListener {
public void createAnimal() {
Animal animal = new Animal();
animal.addAnimalListener(this); // implement addListener in An
}
public void animalDoesSomething(int action) {
System.ot.println("Holy crap, animal did something!");
}
}
</code></pre>
<p>Now <code>Animal</code> can fire events.</p>
<pre><code>public class Animal {
....
public void doSomething() {
for (AnimalListener animalListener : animalListeners) {
animalListener.animalDoesSomething(4);
}
}
}
</code></pre>
<p>That looks like a lot of code for something as simple as “firing events” but maybe firing events isn’t simple at all. :)</p>
<p>Of course there are various extensions to this simple mechanism.</p>
<ul>
<li>I always make my event listeners extend <a href="http://java.sun.com/javase/6/docs/api/java/util/EventListener.html" rel="nofollow"><code>java.util.EventListener</code></a>.</li>
<li>The first parameter for each listener method should be the source of the event, i.e. <code>public void animalDoesSomething(Animal animal, int action);</code>.</li>
<li>Management of registered listeners and event firing can be abstracted to some kind of abstract event listener management class. Look at <a href="http://java.sun.com/javase/6/docs/api/java/beans/PropertyChangeSupport.html" rel="nofollow">PropertyChangeSupport</a> to know what I mean.</li>
</ul>
http://stackoverflow.com/questions/1547360/using-extended-swing-component-threading-doubt/1547543#15475430Answer by Bombe for Using extended Swing component, threading doubtBombe2009-10-10T10:02:44Z2009-10-10T10:02:44Z<p>You only need to invoke these methods using <a href="http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/SwingUtilities.html#invokeLater%28java.lang.Runnable%29" rel="nofollow">invokeLater()</a> (or using the <a href="http://java.sun.com/javase/6/docs/api/javax/swing/SwingWorker.html" rel="nofollow">SwingWorker</a>) when you are modifying your component (or painting on it) from within these methods. If you merely do calculations you only need to synchronize when accessing the result in e.g. the <a href="http://java.sun.com/javase/6/docs/api/javax/swing/JComponent.html#paint%28java.awt.Graphics%29" rel="nofollow">paint()</a> method.</p>
http://stackoverflow.com/questions/1536772/how-to-properly-make-path-handling-robust-in-a-bash-program/1536866#15368661Answer by Bombe for How to properly make path handling robust in a bash program?Bombe2009-10-08T10:16:01Z2009-10-08T10:16:01Z<p>In addition to what <a href="http://stackoverflow.com/questions/1536772/how-to-properly-make-path-handling-robust-in-a-bash-program/1536840#1536840">Douglas Leeder</a> said, I’d recommend to <em>always</em> surround your variables in double quotes to prevent paths with space characters messing up your script.</p>
http://stackoverflow.com/questions/1536674/how-to-set-text-of-jtable-in-java-swing-using-eclipse/1536706#15367062Answer by Bombe for how to set text of jtable in java swing using eclipseBombe2009-10-08T09:38:00Z2009-10-08T09:38:00Z<p>Read the value from the textfield and set it in the table’s model.</p>
<p>As my crystal ball is currently being repaired I can not help you without more details.</p>
http://stackoverflow.com/questions/1532036/how-to-check-if-a-variable-has-any-value-from-a-given-set/1532044#15320441Answer by Bombe for How to check if a variable has any value from a given set?Bombe2009-10-07T14:37:55Z2009-10-07T14:37:55Z<pre><code>if ((number >= 1) && (number <= 3))
</code></pre>
http://stackoverflow.com/questions/1531881/how-to-make-jsconencode-work-with-multibyte-characters/1531886#15318862Answer by Bombe for How to make jscon_encode work with multibyte characters?Bombe2009-10-07T14:10:59Z2009-10-07T14:10:59Z<p>No, that’s JSON. JSON encoders are free to copy characters as-is (except for doublequote, backslash, or control characters) or to encode them using the <code>\uxxxx</code> notation. So even while the above is not beautiful, it’s valid JSON and will ensure that the string will be decoded correctly.</p>
http://stackoverflow.com/questions/1530508/how-to-renew-a-weird-applications-without-making-the-same-errors/1530566#15305660Answer by Bombe for How to renew a weird Applications without making the same errors?Bombe2009-10-07T09:41:52Z2009-10-07T09:41:52Z<p>When I go about to recreate something that has already been done I try to avoid looking at the already existing implementation. I try to focus on what it’s supposed to accomplish instead of looking at how it’s trying to accomplish that.</p>
http://stackoverflow.com/questions/1530108/java-resultset-using-max-sql-function/1530165#15301653Answer by Bombe for java ResultSet, using MAX sql functionBombe2009-10-07T07:56:01Z2009-10-07T07:56:01Z<p><a href="http://stackoverflow.com/questions/1530108/java-resultset-using-max-sql-function/1530129#1530129">Boris Pavlović</a> was almost right.</p>
<pre><code>if (rs2.next()) {
maxID = rs2.getInt(1);
}
</code></pre>
<p>The columns in a result set are 1-based. And the reason for using <code>if</code> instead of <code>while</code> is that the query you’re executing only returns a single row.</p>
http://stackoverflow.com/questions/1525850/php-readdir-returns-and-entries/1525875#15258750Answer by Bombe for PHP readdir( ) returns " . " and " .. " entries Bombe2009-10-06T14:18:46Z2009-10-06T14:18:46Z<p>No, those files belong to a directory and <code>readdir</code> should thus return them. I’d consider every other behaviour to be broken.</p>
<p>Anyway, just skip them:</p>
<pre><code>while (false !== ($report = readdir($reportDir)))
{
if (($report == ".") || ($report == ".."))
{
continue;
}
...
}
</code></pre>
http://stackoverflow.com/questions/1525746/replace-subversion-folder-and-retain-history/1525856#15258561Answer by Bombe for Replace Subversion Folder and Retain HistoryBombe2009-10-06T14:16:13Z2009-10-06T14:16:13Z<p>When removing the 3.4 folder and copying the 3.3 folder over it nothing is lost. That’s what subversion is there for. You can access the “old” version 3.4 by using a “peg revision”, i.e. use</p>
<pre><code>svn ls path:/to/repository/version/3.4@<some old revision>
</code></pre>
<p>to take a look at what the path looked like at that old revision.</p>
http://stackoverflow.com/questions/15496/hidden-features-of-java/1804983#1804983Comment by Bombe on Hidden Features of JavaBombe2009-11-30T09:21:43Z2009-11-30T09:21:43ZWow, <code>switch</code> works with <code>enum</code>’s… big surprise.http://stackoverflow.com/questions/1813189/display-the-number-of-the-characters-in-a-stringComment by Bombe on Display the number of the characters in a stringBombe2009-11-28T20:08:27Z2009-11-28T20:08:27ZUnless you have strict requirements and strict input checking this code will break whenever you feed it a variety of charaters, such as capital letters, numbers, non-US-ASCII letters, whitespace… basically anything that is not between “a” and “z”.http://stackoverflow.com/questions/1813189/display-the-number-of-the-characters-in-a-string/1813490#1813490Comment by Bombe on Display the number of the characters in a stringBombe2009-11-28T20:05:05Z2009-11-28T20:05:05ZThis will fail spectacularly with non-US-ASCII chars. Welcome in 1996. Oh wait, it’s 2009, and you still assume a characters to be only 8 bits wide…http://stackoverflow.com/questions/1813055/java-util-random-peculiarityComment by Bombe on java.util.Random peculiarityBombe2009-11-28T19:25:36Z2009-11-28T19:25:36ZAlso, you should <i>never</i> reduce your entropy pool by kicking out random numbers you don’t like. This way you will end with <i>less</i> entropy. The same number twice in a row is perfectly valid and random. Just use it as is.http://stackoverflow.com/questions/15496/hidden-features-of-java/85703#85703Comment by Bombe on Hidden Features of JavaBombe2009-11-27T14:54:01Z2009-11-27T14:54:01Z<code>WeakHashMap</code> is <i>not</i> suitable for building caches.http://stackoverflow.com/questions/15496/hidden-features-of-java/142676#142676Comment by Bombe on Hidden Features of JavaBombe2009-11-27T14:51:54Z2009-11-27T14:51:54ZIt’s only surprising if you fail to read the documentation.http://stackoverflow.com/questions/1806954/can-i-speed-up-the-scanning-port-process/1807133#1807133Comment by Bombe on can i speed up the scanning port process?Bombe2009-11-27T12:24:02Z2009-11-27T12:24:02ZThis will fail as soon as it takes more than 100 milliseconds to establish a connection.http://stackoverflow.com/questions/1794903/why-it-shows-nullpointerexception/1794942#1794942Comment by Bombe on why it shows NullPointerException?Bombe2009-11-25T08:31:57Z2009-11-25T08:31:57ZIt’s amazing how many people lack the most simple debugging skills. +1.http://stackoverflow.com/questions/1790026/what-can-i-do-to-make-jar-classes-smaller/1790053#1790053Comment by Bombe on What can I do to make jar / classes smaller?Bombe2009-11-24T14:31:00Z2009-11-24T14:31:00ZThat is a very detailed list of things <i>not</i> to do, not even for the sake of filesize—unless it’s only for demonstrational use. :)http://stackoverflow.com/questions/1790228/why-isnt-my-jlabels-or-jpanels-showing/1790345#1790345Comment by Bombe on why isn't my Jlabels or Jpanels showing??Bombe2009-11-24T14:21:42Z2009-11-24T14:21:42ZThen follow Erkan’s advice and read a tutorial, please: <a href="http://java.sun.com/docs/books/tutorial/uiswing/start/compile.html" rel="nofollow">java.sun.com/docs/books/…</a>http://stackoverflow.com/questions/1789797/object-vs-static-method-design/1789845#1789845Comment by Bombe on Object vs static method design Bombe2009-11-24T12:51:39Z2009-11-24T12:51:39ZIt’s more like an optional singleton, you know? Like a singleton but not really. :) (Yeah, maybe I should use some other term. Are there any terms for pseudo-singletons?)http://stackoverflow.com/questions/1789701/java-collection-filtering/1789760#1789760Comment by Bombe on Java Collection filteringBombe2009-11-24T12:35:39Z2009-11-24T12:35:39ZDon’t listen to whoever said that, they’re obvisouly an idiot.http://stackoverflow.com/questions/1787307/using-jbuttons-to-execute-sql-queries-with-jdbcComment by Bombe on Using JButtons to execute SQL queries with JDBCBombe2009-11-24T11:49:27Z2009-11-24T11:49:27ZCatch it or declare it to be thrown, just as <i>the error message tells you to</i>. You’ll realize that you can not declare it to be thrown so I guess you have to catch it. Wow, that was hard.http://stackoverflow.com/questions/1789164/iterator-for-loops-with-break/1789200#1789200Comment by Bombe on iterator for loops with breakBombe2009-11-24T10:36:06Z2009-11-24T10:36:06Z+1! More thinking, less pestering other people on the internet!http://stackoverflow.com/questions/1762878/how-to-check-if-string-value-is-boolean-type-in-java/1762893#1762893Comment by Bombe on How to check if String value is Boolean type in java?Bombe2009-11-19T12:17:06Z2009-11-19T12:17:06ZHaha, that will fail if <code>x</code> is <code>null</code>! :)