Bombe

11,681
Reputation
834 views

Registered User

Name Bombe
Member for 12 months
Seen 6 hours ago
Website
Location Hamburg, Germany
Age 32
Java programmer, always in search for the purer code.
1d
comment Hidden Features of Java
Wow, switch works with enum’s… big surprise.
Nov
28
comment Display the number of the characters in a string
Unless 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”.
Nov
28
comment Display the number of the characters in a string
This 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…
Nov
28
comment java.util.Random peculiarity
Also, you should never reduce your entropy pool by kicking out random numbers you don’t like. This way you will end with less entropy. The same number twice in a row is perfectly valid and random. Just use it as is.
Nov
27
comment Hidden Features of Java
WeakHashMap is not suitable for building caches.
Nov
27
comment Hidden Features of Java
It’s only surprising if you fail to read the documentation.
Nov
27
comment can i speed up the scanning port process?
This will fail as soon as it takes more than 100 milliseconds to establish a connection.
Nov
27
answered Does simulation of closures in Java make sense?
Nov
27
revised Hidden Features of Java
Fixed formatting.
Nov
25
comment why it shows NullPointerException?
It’s amazing how many people lack the most simple debugging skills. +1.
Nov
24
comment What can I do to make jar / classes smaller?
That is a very detailed list of things not to do, not even for the sake of filesize—unless it’s only for demonstrational use. :)
Nov
24
comment why isn’t my Jlabels or Jpanels showing??
Then follow Erkan’s advice and read a tutorial, please: java.sun.com/docs/books/…
Nov
24
answered why isn’t my Jlabels or Jpanels showing??
Nov
24
revised Object vs static method design
It’s not a singleton if it’s not the only one!
Nov
24
comment Object vs static method design
It’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?)
Nov
24
answered Object vs static method design
Nov
24
comment Java Collection filtering
Don’t listen to whoever said that, they’re obvisouly an idiot.
Nov
24
comment Using JButtons to execute SQL queries with JDBC
Catch it or declare it to be thrown, just as the error message tells you to. You’ll realize that you can not declare it to be thrown so I guess you have to catch it. Wow, that was hard.
Nov
24
comment iterator for loops with break
+1! More thinking, less pestering other people on the internet!
Nov
23
answered when creating a git repo that will be on the server, can I convert it to a bare repo?
Nov
19
awarded  Nice Answer
Nov
19
answered How to check if String value is Boolean type in java?
Nov
18
comment Calendar returns wrong month
How embarassing, you failed to read the documentation and let the whole world see it.
Nov
15
comment Using a java method to return multiple values?
You do have a whole different bag of problems than returning multiple values from a method. Please read a beginner’s tutorial first. sun.com lists a couple of those.
Nov
13
accepted How to get the diff between a tag and its base in Git?
Nov
12
answered How to get the diff between a tag and its base in Git?
Nov
10
comment Does Java need tuples?
Person p = new Person("Steve", System.currentTimeMillis(), 722); System.out.println(p.getName(), p.getLastLogin(), p.getKarma() * 10); - I don’t see no casts here! :)
Nov
9
comment way to make a function aware who called it
If you don’t believe me, read the documentation: java.sun.com/javase/6/…() - VMs are free to omit frames or return an altogether empty array from that method, i.e. do not rely on it.
Nov
9
comment way to make a function aware who called it
-1 because the stack trace may be incomplete or empty. See java.sun.com/j2se/1.5.0/…() for details.
Nov
9
comment way to make a function aware who called it
-1 because a) notes about performance, b) not mentioning that a stack trace may actually be incomplete or empty.
Nov
6
comment Java BufferedReader for zero-terminated strings
This will throw away everything after the first 0-byte to the following EOL. In case your file only contains 0-byte-delimited String`s you’ll only get a single `String from it.
Nov
6
revised Operator overloading in Java
Clean up tags.
Nov
6
comment How fast is Python?
The speed of a python is approximately… wait, are we talking about a European python or an African python?
Nov
5
accepted git-svn password change
Nov
5
answered git-svn password change
Nov
5
answered getting commits’ tag in git
Nov
5
revised Removing all queued tasks of an ThreadPoolExecutor
added 125 characters in body
Nov
5
comment Removing all queued tasks of an ThreadPoolExecutor
Oh, right, I overread that half of the sentence. Well, I guess your only option then is to remember all submitted `Runnable`s and remove them manually. I’ll edit accordingly.
Nov
5
answered Removing all queued tasks of an ThreadPoolExecutor
Nov
4
comment AU audio files for Java
So you’re looking for an open source MP3 decoder (and AU encoder) but do not want to use third-party code? Is that what you’re saying?
Nov
4
comment Why is String[] args required in Java?
I was just wondering: who the heck has a reputation of 111k but is not Jon? Oh, Jon. That’s who. :)
Nov
4
accepted Recently, I need a memory-file swapping algorithm
Nov
4
comment Java: Nested generics?
Basic syntax FAIL. Back to driving school, Sonny!
Nov
3
comment How can I initialize a String array with length 0 in Java?
return new String[] { }; and return new String[0]; would both work.
Nov
2
comment Missing something HashSet duplicates
Adamski, you’re right. Fixed, thanks. :)
Nov
2
revised Missing something HashSet duplicates
Cast `other` before using it as a `Subclass`.
Nov
2
answered Missing something HashSet duplicates
Oct
28
comment Strings are immutable - that means I should never use += and only StringBuffer?
If you’re calling intern() on a String that only exists in a loop and is not required outside of it you shouldn’t be coding at all.
Oct
26
comment Java - Parameters and constructor
Damn, counting sure got a load harder than back in my days.
Oct
25
revised JButton is a quitButton
Fixed ActionListener vs. AbstractAction in second example.