Joachim Sauer
|
Registered User
|
I read code, I write code, I like code.
|
|
2d |
comment |
single quotes and double quotes in mysql insert and update query (java) Yes, you must use PreparedStatement for this, everything else is just crying out for a SQL Injection attack. But appart from that, you should rememeber that a replaceAll() call is only ever useful, if you do something with the return value. Strings are immutable, so ignoring the newly returned String that contains the new value means you didn't actually do anything in that line. |
|
2d |
awarded | ● Mortarboard |
|
Dec 5 |
revised |
Reading in and Writing out in Java Program Question formatting |
|
Dec 4 |
comment |
Efficient switch statement @pmg: the question is about C++ (at least according to the tag) |
|
Dec 4 |
revised |
what is the difference between “int *i” and “int* i”? added 57 characters in body; edited title |
|
Dec 4 |
revised |
Include Grails generated Java class into the grails project added 6 characters in body; edited title |
|
Dec 3 |
comment |
What does 4j mean? @Randolpho: can you give examples? The two that come to my mind, log4j and slf4j, aren't ported from anywhere as far as I know. |
|
Dec 3 |
comment |
What is internal representation of string in Python 3.x "Storing the unicode codeponts in 16 bit integers" is called "UCS-2". Doing the same thing with 32 bit integers is UCS-4. |
|
Dec 2 |
revised |
Avoid printing unicode replacement character in Java added 2 characters in body; edited title |
|
Dec 2 |
awarded | ● Good Answer |
|
Dec 1 |
comment |
What does 4j mean? @Alexey: as far as I see (and that's not very far in the .NET world) most of those are ports/rewrites of existing "*4j" libraries. |
|
Dec 1 |
comment |
Features of C++ that can’t be implemented in C? What is it about "real-time implementation". I see that phrase used surprisingly often and more often than not the question/context it appears in has nothing whatsoever to do with anything "real-time". Is there some teacher out there that uses "real-time" when referring to "real-world" stuff? |
|
Dec 1 |
revised |
Features of C++ that can’t be implemented in C? added 22 characters in body |
|
Nov 30 |
comment |
Java regular expression to match _all_ whitespace characters @BalusC: yes, but it's important that any sane definition of "whitespace character" in the context of regex can only include U+00A0 that is produced "at end", but can never include the literal " ". That's what the "You are mixing abstraction levels here" of Vinkos answer is about (if I understood it correctly). |
|
Nov 30 |
comment |
OOP: When is it an object? I don't have time for a full answer ('though I think it's a good question), but I think it's important to disconnect the concept of an object in programming from physical objects. Many (if not most) objects in programming don't directly represent physical objects. And using that as the only metaphor seriously hinders your ability to think about the problem broadly. |
|
Nov 30 |
comment |
Macro too big to run, keeps ‘not responding’. On an unrelated note: this really looks like a query that should be 1.) seriously refactored and/or 2.) be generated programmatically by your code based on some information. It looks horribly inefficient and typo-prone as it is. |
|
Nov 30 |
comment |
Macro too big to run, keeps ‘not responding’. What have you written that macro in? From the code I'd guess it's Excel, but you should really tell us those nifty little details. |
|
Nov 29 |
answered | What does Tool/Bundle-Name/Export-Package etc. mean in a jar manifest |
|
Nov 29 |
comment |
how to execute a piece of code only after all threads are done @Jim: with Java 1.5 or later I wouldn't even use a CountDownLatch for such a thing, but a simple Executor. |
|
Nov 28 |
awarded | ● Nice Answer |
|
Nov 28 |
revised |
Eclipse as an IDE - What do you find missing as a beginner in Java? replace URL shortener URL with real one |
|
Nov 28 |
revised |
Is there any simple Java FTP Server libraries that is embeddable ? edited body |
|
Nov 27 |
answered | Deleting from ArrayList Java |
|
Nov 27 |
comment |
Deleting from ArrayList Java In Java it's people.subList(index, index+4).clear(). The subList() method make dedicated methods that act only on a selected range unnecessary. |
|
Nov 27 |
accepted | JAXB minOccurs=0. Element exists or not? |
|
Nov 27 |
comment |
NaN problem in JavaNaN is a float value, otherwise you couldn't store it in a float variable. It's just not a number ;-) |
|
Nov 27 |
revised |
NaN problem in Java added 27 characters in body; edited tags; edited title |
|
Nov 27 |
comment |
Hidden Features of Java @Hades32: actually the .NET VM is pretty similar to the JVM. It only got support for dynamic languages relatively recently (with the DLR) and Java 7 is about to get that support as well. And the classical "EVERY language" of .NET (C#, Visual Basic.NET, ...) all have pretty much exactly the same feature set. |
|
Nov 27 |
accepted | build webkit on ubuntu 9.04 |
|
Nov 27 |
comment |
Detect months with 31 days @Ether: how do you come to this conclusion? Simply because some expects programming languages to have similar shortcuts to natural language? You seem to be so fixed in your thinking about programming language that you can't imagine a language where month == 4,6,9,11 is actually a valid expression meaning "month is any of 4, 6, 9 or 11". Developing such a language is left as an exercise for the reader ;-) |
|
Nov 27 |
accepted | Java: .equals() failing for sets (JGraphT) |
|
Nov 27 |
answered | Java: .equals() failing for sets (JGraphT) |
|
Nov 26 |
revised |
JAXB minOccurs=0. Element exists or not? added 16 characters in body; edited tags |
|
Nov 26 |
answered | JAXB minOccurs=0. Element exists or not? |
|
Nov 26 |
awarded | ● Nice Answer |
|
Nov 26 |
answered | Using a returned string to call a method? |
|
Nov 26 |
revised |
What is the purpose of the expression “new String(…)” in Java? formatting |
|
Nov 26 |
revised |
What is the purpose of the expression “new String(…)” in Java? added 3 characters in body |
|
Nov 26 |
revised |
What is the purpose of the expression “new String(…)” in Java? added 19 characters in body; edited tags |
|
Nov 26 |
revised |
Can we convert a byte array into an InputStream in Java? deleted 5 characters in body |
|
Nov 25 |
awarded | ● Yearling |
|
Nov 23 |
comment |
Programming languages that allow Unicode in the names of functions/variables/classes? Btw, I always found it good that Unicode support is finally so widely available, but never used it (usually all my code is english-language only, although German is my native language). But I never thought about the implications of LTR scripts in programming code. It definitely breaks the text flow when the language and its keywords is RTL and the identifiers are not (or even worse: they are mixed). The int variable definition above renders as int 0 = <hebrew characters>; for me, which looks ... very, very strange. But maybe that looks normal to someone who's used to that script. |
|
Nov 23 |
comment |
Programming languages that allow Unicode in the names of functions/variables/classes? Java definitely allows that (didn't want to edit your post, this doesn't really feel like a "fix" to me). |
|
Nov 23 |
comment |
Java: Alternative to iterator.hasNext() if using for-each to loop over a collection Another problem here is that you assume that you've got a Collection (i.e. you have a size() method) and that it isn't expensive to call it. You can have a general Iterable object that doesn't provide a size() method. In that way the Iterator is the only way to go. |
|
Nov 23 |
comment |
Java: Alternative to iterator.hasNext() if using for-each to loop over a collection I don't think this answers the question ... |
|
Nov 14 |
comment |
How to avoid FileNotFound exception when running Java on Linux because of case sensitiveness? Please be aware that a case-insensitive OS are the exception rather than the rule. Windows is pretty much the only major OS left that handles files in a case-insensitive way. |
|
Nov 14 |
answered | How to avoid FileNotFound exception when running Java on Linux because of case sensitiveness? |
|
Nov 14 |
revised |
How to avoid FileNotFound exception when running Java on Linux because of case sensitiveness? formatting |
|
Nov 12 |
revised |
How are VTBLs implemented in Java? micro-typo |
|
Nov 11 |
revised |
clear() methods in Java there are no "built-in" methods in Java |
