Adrian Pronk
|
Registered User
|
|
20h |
awarded | ● Nice Answer |
|
Dec 11 |
comment |
Why would someone use WHERE 1=1 AND <conditions> in a SQL clause? DBA's are there to clean up after programmers who think they know how to use databases effectively. |
|
Dec 9 |
comment |
Missing rows in outer join have zero value for float column instead of null - why? This is what would happen in Java if you called ResultSet.getFloat("value1") because it can't return null. You have to call wasNull() afterward to check whether it was actually null. Could it be that you're in a similar situation? |
|
Nov 30 |
awarded | ● Yearling |
|
Nov 29 |
revised |
Where can I find a current wxPerl PPM? typo? |
|
Nov 23 |
comment |
ObjectInputStream and ObjectOutputStream It won't work better if you read into a buffer - then you'll have to manage object boundaries yourself. But inserting a BufferedInputStream will mean fewer calls to the OS-level read system call. Tests like this often fail due to blocking that occurs when trying to read and write the same channel in the same thread. |
|
Oct 27 |
comment |
How can I find the number of elements in hash of an arrayref? So shouldn't it be: my $size = $#{$HoA{teletubbies}} - $[ + 1; |
|
Oct 27 |
comment |
How do I “fork” a Stream in .NET? Can't you just avoid calling close/Dispose? |
|
Oct 27 |
comment |
How do I “fork” a Stream in .NET? P.S. But you do need to ensure you flush the BinaryWriter before you abandon it. |
|
Oct 27 |
comment |
How do I “fork” a Stream in .NET? I don't know C#, but in Java, you'd simply just abandon without closing the BinaryWriter. Doesn't the using{...} construct force closing? Then don't use that construct! |
|
Oct 19 |
comment |
Passing Locale details via Jasper-Reports to JFreechart No. I've looked at the source code and Jasper carefully propagates the parameter-Map which includes the Locale to the reporting code but not to the charting code. |
|
Oct 19 |
asked | Passing Locale details via Jasper-Reports to JFreechart |
|
Oct 6 |
comment |
Can you write a simple weekly reminder using a (ba)?sh script quine? That's what I did in the end. But I'd still like to try and get a solution without using a file like this. |
|
Oct 6 |
revised |
Can you write a simple weekly reminder using a (ba)?sh script quine? disambiguate |
|
Oct 6 |
comment |
Can you write a simple weekly reminder using a (ba)?sh script quine? This doesn't do it: what it executes next Monday is another "at" command to run zenity the following Monday. |
|
Oct 5 |
asked | Can you write a simple weekly reminder using a (ba)?sh script quine? |
|
Oct 1 |
revised |
atomic compare and swap in a database minor wording change |
|
Oct 1 |
answered | atomic compare and swap in a database |
|
Sep 29 |
comment |
Why are my backslashes disappearing in my Perl one-liner? Single quotes don't mean anything to the Windows cmd.exe shell so you can't use them to quote your arguments. |
|
Sep 29 |
comment |
How to make grep stop at first match on a line? I tried this using GNU grep 2.5.3 and it produces the output I expected: odsdsdoddf112 <NEWLINE>dad23392eeedJ <NEWLINE>Hello <NEWLINE> |
|
Sep 29 |
revised |
How can I partition a Perl array into equal sized chunks? reformat |
|
Sep 29 |
answered | How can I partition a Perl array into equal sized chunks? |
|
Sep 25 |
comment |
What’s your favorite “programmer ignorance” pet peeve? Isn't MVC a "Move Character" instruction from the IBM s/360 instruction set? (poor cousin of MVCL) |
|
Sep 22 |
answered | What’s the effect of -server option for the HotSpot JVM? |
|
Sep 22 |
revised |
Increment digit value in String Convert integer to string |
|
Sep 21 |
accepted | Increment digit value in String |
|
Sep 21 |
answered | Increment digit value in String |
|
Sep 19 |
comment |
List files with certain extensions with ls and grep Or just use "echo": echo *.mp4 *.mp3 *.exe |
|
Sep 17 |
comment |
What are good regular expressions? Don't forget to read the Javadocs for java.util.regex.Pattern. It's a good reference. Also perldoc.perl.org/perlre.html |
|
Sep 13 |
comment |
Determine when to close a sound-playing thread in Java What I should have said is active threads. Threads which have finished executing (returned from run()) are eligible for gc. (Although maybe only after they have been "join()'d") |
|
Sep 13 |
comment |
Determine when to close a sound-playing thread in Java Threads don't need to be referenced to be protected from garbage collection. They are the top-level things doing that hold the references. Something has to be at the root of the reference tree: if not all threads, what else could it be? The main thread? Many server programs exit the main thread early on in their execution. |
|
Sep 12 |
comment |
sentimental code The concept of "sunk cost". Possibly not a totally new idea. |
|
Sep 12 |
comment |
How to create a thread that runs all the time my application is running Ha! Well spotted. Just the sort of thing that they could put into those silly Java tests: have a snippet that calls Thread.run() instead of Thread.start() and ask "What is wrong with this code?" |
|
Sep 10 |
comment |
Java Date vs Calendar or Father Christmas ? :) |
|
Sep 10 |
comment |
Hudson or Teamcity for continuous integration? That didn't work :) continuum.apache.org |
|
Sep 10 |
comment |
Hudson or Teamcity for continuous integration? There's also <a href="continuum.apache.org/">Continuum</a>/…; |
|
Sep 10 |
answered | How to create a thread that runs all the time my application is running |
|
Sep 10 |
accepted | How do you rename a branch in CVS without admin access? |
|
Sep 9 |
comment |
how to use LIKE with column name Maybe you need brackets? WHERE table1.x LIKE (table2.y + '%') -- or maybe "||" instead of "+" as per the SQL standard. |
|
Sep 8 |
comment |
Does java have a “LinkedConcurrentHashMap” data structure ? There's been cases of HashMap going into an infinite loop because of interference by concurrent updates. |
|
Sep 8 |
comment |
Does java have a “LinkedConcurrentHashMap” data structure ? But you'll still need to synchronize manually if you want to do any composite operations like the extra ones offered by ConcurrentHashMap |
|
Sep 8 |
comment |
Windows prompt: ISO 8601 date? Use "prompt /?" to read about the options. /? works for pretty much all the old standard dos commands. |
|
Sep 8 |
answered | Does java have a “LinkedConcurrentHashMap” data structure ? |
|
Sep 6 |
comment |
File copying in Java @x-x: I always prefer to use very large copy-buffers (~16Mb) if I feel it's safe to use so much RAM to avoid the possibility of disk seek thrashing in case the OS decides to interleave the reads and writes too much. Also, I've seen file-copies that use 1-byte buffers and they are often noticeably slow. |
|
Sep 2 |
comment |
Can someone suggest how this Perl script works? Hey, I love that use of split where the RE only uses a look-ahead. I've never thought of doing that before and it's a great way not to lose any text. (I suppose, though, a () grouping would achieve the same effect, wouldn't it?) |
|
Sep 2 |
comment |
Replacing huge blocks with sed Well Perl can operate line-by-line just like sed but that isn't useful if you're replacing 2-3mb chunks at a time which is presumably more than 1 line. |
|
Sep 1 |
accepted | When should we call connection.rollback() method? |
|
Sep 1 |
answered | Replacing huge blocks with sed |
|
Sep 1 |
comment |
command substitution but without breaking output into multiple arguments I don't think it matters whether you have meta-characters in the string once you've wrapped the xsel in double-quotes |
|
Sep 1 |
answered | When should we call connection.rollback() method? |
