Software Monkey

8,748
reputation
787 views

Registered User

name Software Monkey
member for 1 year
seen yesterday
website
location Seattle, WA, USA
age 40

I have been writing code since I was 12 - I started with BASIC on a Commodore VIC-20. First computer I owned was a Sinclair ZX-81 on which I progressed to programming Z80 assembler by the time I was 13. I consider programming to be a lifetime learning experience.

Most of my professional experience has been programming in C and Java primarily in the networking and communications arena. But in the early years there was Pascal and COBOL (gasp!), and for the last 15 or so years there has been a fair amount of iSeries CLP and RPG.

My hobby activities are mostly in Java, but I enjoy experimenting with Haskell and JavaScript.

On the markup side of things I have had to learn a working knowledge of HTML, CSS and various dialects of XML.

1d
answered How do you get the screen width in java?
2d
asked What’s the advantage of URLs with semantically dead components?
Dec
19
revised Speeding up file system access?
results from WAN drive access; added 2 characters in body
Dec
19
answered Speeding up file system access?
Dec
19
comment Speeding up file system access?
+1 I just modified some recursive directory-tree processing code to use listFiles to determine if the "file" is a directory; it's a minor speedup for local and LAN connected drives - I can't test VPN remote drives until I get home. It's also way more compact code.
Dec
16
revised How can I inherit Windows cleartype anti-aliasing for painting text to off-screen images like swing does?
clarify title
Dec
15
revised How can I inherit Windows cleartype anti-aliasing for painting text to off-screen images like swing does?
add code for creating the DB image
Dec
15
revised How can I inherit Windows cleartype anti-aliasing for painting text to off-screen images like swing does?
add note about variations tried
Dec
15
asked How can I inherit Windows cleartype anti-aliasing for painting text to off-screen images like swing does?
Dec
11
comment Sometimes the packets are only transmitted after the process is ended? [Java]
@Shaitan: He said "flush" to force sending, not "close" - mention of close was only to say closing does a flush, and ending the JVM closes any open process handles.
Dec
11
comment How is C# inspired by C++ more than by Java?
In direct answer to "how is C# closer to C++ than to Java?" this is an artful response!
Dec
11
comment How is C# inspired by C++ more than by Java?
C + Smalltalk --> shredding machine =(vomits)> C++
Dec
10
comment Java double checked locking by forcing synchronization twice, Workable?
It's also worth noting that with J5 and greatly improved performance for uncontended locks DCL is almost always a premature optimization that is not worth the risk.
Dec
6
awarded  Mortarboard
Dec
5
accepted Code to create CAPTCHA code in ASP.NET?
Dec
5
answered Call a function based on JVM version.
Dec
5
answered IllegalMonitorStateException
Dec
4
comment What next generation low level language is the best bet to migrate the code base ?
"won't happen this decade" - easy to say in the last month of the decade :-)
Dec
4
comment Why does InvokeLater cause my JFrame not to display correctly?
@Marc: No it won't paint because the painting is a separate event which was posted to the event queue but never processes. Painting does not happen inline with GUI construction (since it needs to arise from a system request to paint to a specific graphics context).
Dec
4
revised Why does InvokeLater cause my JFrame not to display correctly?
fix tags
Dec
4
comment Why would buffer overruns cause segmentation faults when accessing an integer?
Actually, a nul is the ASCII control character '\0'; '0' is ASCII 48.
Dec
4
comment C-programming ftell fseek fread, read size of a file
@OP: You should have changed ...sizeof(val),2... to ...1,sizeof(val)....
Dec
3
comment Clean up code in finalize() or finally()?
Nice - a Java question with a C# article to answer it. Beware that the details in the article may or may not be relevant to Java.
Dec
3
revised Java: get a unique property of an object (like hashcode, but collision proof)
add code example
Dec
3
comment Java: get a unique property of an object (like hashcode, but collision proof)
@Steve: The System.identityHashCode is not guaranteed to be unique, either: 'Returns the same hash code for the given object as would be returned by the default method hashCode(), whether or not the given object's class overrides hashCode()'
Dec
3
answered Java: get a unique property of an object (like hashcode, but collision proof)
Dec
3
revised Best idiom for a decrementing loop
Changed loop form to match the question, so I can accept it
Dec
3
revised Best idiom for a decrementing loop
added 46 characters in body; edited body
Dec
3
comment Best idiom for a decrementing loop
One thing I don't like about this is that the scope of n is greater than the loop; using for(int n... constrains the scope better.
Dec
3
accepted How to embed a mini-console within a Java app?
Dec
3
comment Invalid Token when using Octal numbers.
I wish every language required this for octal numbers; how stupid was using a lead 0. Now if we can just get support for 0sNNN (for sexagesimal) and put base-64 numbers into our code.
Dec
3
accepted Resizing a JFrame.
Dec
3
revised Resizing a JFrame.
typo
Dec
3
comment Numerical integration in Java?
At zenzen - if this solved your problem, please accept it.
Dec
3
revised Resizing a JFrame.
expand answer; added 4 characters in body
Dec
2
revised Resizing a JFrame.
add example of complex layout using a table-based layout manager; deleted 100 characters in body
Dec
2
comment Resizing a JFrame.
Layout management is the way to (effectively) achieve that; but it is a different approach than attaching things to the edges of the frame (I wrote a layout manager some years ago to layout in that manner, but later moved to table-based layout since it's both simpler and more powerful).
Dec
2
answered Resizing a JFrame.
Dec
2
answered Natural Language Processing: Find obscenities in English?
Dec
2
comment Best idiom for a decrementing loop
I also have to disagree; to me, coding an incrementing loop in this context fails to express the intent of the loop. If I am searching an array backwards to find the last match, then a decrementing loop expresses that better (again, to me). Your example seems counter-intuitive in any real context.
Dec
2
comment Best idiom for a decrementing loop
@Thorbjorn: Actually, I believe that this is the first time in 30 years of programming I have made this mistake, and this quite likely because I was actually working on a (different) inclusive loop when I asked the question because I saw a decrementing loop nearby in the code.
Dec
2
revised Actual Productivity Gains from Multiple Monitors
update with progress.
Dec
1
revised Best idiom for a decrementing loop
add third alternative
Dec
1
comment Best idiom for a decrementing loop
But taking advantage of the comparison to zero opcode, one would need idx!=0 - something I avoid on principle because loops can then overrun if the index is irregularly changed (decremented or incremented by more than 1, possibly only under some conditions).
Dec
1
comment Best idiom for a decrementing loop
Oops; good point - I was just working on some code that was inclusive (was actually from top to bottom of a rectangular area).
Dec
1
revised Best idiom for a decrementing loop
correct index initialization
Dec
1
asked Best idiom for a decrementing loop
Dec
1
comment What’s the limit to the number of members you can have in a java enum?
I suppose something like HTTP response codes could be legitimately done as an enum with more than 7-9 values.
Dec
1
comment What’s the limit to the number of members you can have in a java enum?
Can't we all just agree that it's "lots", and if you ever hit the limit you did something badly wrong about a gazillion enum values ago??
Dec
1
comment Why does my thread stop when I try to access a synchronized list?
Sometimes JVisualVM is an absolute life-saver.