Michael Borgwardt

28,975
reputation
2116 views

Registered User

name Michael Borgwardt
member for 1 year
seen 6 hours ago
website
location Munich, Germany
age 32
Software developer by profession, smalltime hacker and gamer by interest. Look at my website to learn more about me
11h
answered Can I add 2 encrypted strings together and decrypt them?
15h
awarded  Good Answer
15h
comment How long does code last?
Right, I knew there was an old fable or riddle using that concept, but didn't know what it was called.
16h
comment Preventing cheating in online chess games?
Due to Moore's law, your "good news" is not true anymore. Nowadays, a standard PC can beat a grandmaster.
16h
answered Preventing cheating in online chess games?
17h
answered get type of a generic parameter in java with reflection
18h
comment How long does code last?
Then we'll probably be using those brain-machine interfaces to write code. Promises to replace "writing code" with X have been around for decades, but never delivered. Examples for X: 5GL, RAD tools, CASE, MDA.
18h
awarded  Nice Answer
19h
awarded  Nice Answer
19h
comment How long does code last?
It's more like those systems get replaced all the time, piece by piece, to accomodate market and legislation changes. You may well end up with not a single line of the original code remaning, yet it's still considered the same system.
19h
answered How long does code last?
20h
comment How long does it take to create 1 million threads in Haskell?
That depends entirely on your hardware. Why don't you try it on yours and tell us the results?
20h
answered Classpath resource within jar
1d
answered Does the JVM create a mutex for every object in order to implement the ‘synchronized’ keyword? If not, how?
1d
comment volatile boolean
This is only true if there are actually two threads executing the same code (or doing write operations, anyway)
1d
revised volatile boolean
added 174 characters in body; added 4 characters in body; added 88 characters in body
1d
answered volatile boolean
1d
answered Exception in thread “main” : java.lang.error
1d
accepted Is null an Object?
1d
accepted java.util.Calendar not reporting the correct timeInMillis
1d
answered java.util.Calendar not reporting the correct timeInMillis
1d
comment Basic java question: String equality
Something mandated in the language spec is hardly and implementation detail, but I agree: while you can depend on literals being interned, you should not depend on the strings you use being literals - that can too easily change.
1d
revised String as a key in HashMap
edited tags
1d
comment Basic java question: String equality
It's not just literals that are interned, but also compile-time constants.
1d
comment Basic java question: String equality
@Felix. Nope, he is comparing references, and the output is true - which is exactly the slightly surprising result that has prompted this question.
1d
answered Basic java question: String equality
2d
revised Is null an Object?
added 55 characters in body
2d
awarded  Nice Answer
2d
comment Understanding the workings of equals and hashCode in a HashMap
Because that reduces the number of hash collisions, which is vital for good performance. In the extreme case of hashCode() returning the same value for all objects, the HashMap degenerates to a list, and all those nice O(1) apperations are suddenly O(n).
2d
answered Is null an Object?
2d
revised how can I check the compiler and runtime in netbeans??
added 567 characters in body; added 4 characters in body
2d
comment When should i use properties instead of object references?
-1: The question contains no hints whatsoever that OR mapping is involvend, and even then: pretty much all widely used OR mappers model foreign keys as actual object references (with some lazy loading magic to avoid fetching data needlessly)
2d
answered When should i use properties instead of object references?
2d
revised Tracking and logging anonymous users
added 365 characters in body
2d
comment Tracking and logging anonymous users
Not really, that depends on too many factors. But the biggest one would be the popularity of the site.
2d
answered how can I check the compiler and runtime in netbeans??
2d
answered Tracking and logging anonymous users
Dec
11
comment Is Quicksort a potential security risk?
The fact that they usually perform worse than QuickSort?
Dec
11
comment James Gosling: “Java Is Under No Serious Threat From PHP, Ruby or C#”
The evolution methphor is treacherous. Java's extreme downwards compatibility, which goes hand in hand with its slow rate of change, is actually a very strong advantage in the competition for industry acceptance.
Dec
11
comment How do I extend Java classes by Reflection?
Are classes A and B already defined elsewhere? What properties exactly do you expect okClass to have?? The question makes no sense as it is.
Dec
10
answered Java ArrayList not allowing me to add from outside constructor
Dec
10
comment Java ArrayList not allowing me to add from outside constructor
Explain how the method "can't" add the object to the list. Does it tell you in a deep, emotionless voice, "Sorry, I can't let you do that, graeme."???
Dec
10
accepted Using javascript APIs in Java.
Dec
10
comment Using javascript APIs in Java.
I guess this answer assumes that the "Javascript APIs" in question are services accessible through the internet.
Dec
10
comment Using javascript APIs in Java.
This answer is not sensible, it is irrelevant. stjowa is clearly aware that Java and Javascript are different beasts.
Dec
10
answered Using javascript APIs in Java.
Dec
10
answered Is there a convenient way to use a spinner as an editor in a Swing JTable?
Dec
10
comment If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
I don't think abstract notions of purity are a good reason to add arbitrary restrictions. Why shouldn't the caller be able to modify the collection that was created specifically for him? Maybe it can be useful. Heck, you're already planning a ToDictionary method to give back the options you've just taken away!
Dec
10
comment If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
Why would it be bad for the returned object to support mutation?
Dec
10
revised If you aren’t supposed to return collections to callers, how should you return a collection of data to a caller?
added 674 characters in body; deleted 102 characters in body