kenj0418

757
Reputation
127 views

Registered User

Name kenj0418
Member for 11 months
Seen Nov 24 at 16:46
Website
Location St. Louis, MO
Age 37
I am a software developer in St. Louis, MO.
Nov
10
comment How can you tell if a person is a programmer?
The cashiers get confused enough when I give them $1.07 for my $0.82 item. I think their head would exploded if I started handing over anti-pennies. (Not to mention what would happen if the anti-penny came into contact with a regular penny)
Nov
10
comment How can you tell if a person is a programmer?
For a single search, the optimal solution would have been to split the stack in two and have you each do a linear search. Parallelization ftw. Now if you were doing multiple searches...
Nov
10
comment How can you tell if a person is a programmer?
I also try to use CTRL-SPACE (Code completion in my IDE) in emails and documents.
Nov
10
comment How can you tell if a person is a programmer?
@Zarkonnen - Now if you can do it up to 2^131072, then we'd be REALLY impressed.
Nov
10
comment How can you tell if a person is a programmer?
Exactly Pulsehead - If the quote is a sentence I put the puctuation inside. If it isn't then I don't. And this IS the correct usage, regardless of how many liberal arts majors you get to tell me otherwise. :-)
Nov
10
comment How can you tell if a person is a programmer?
Or they solve it about 5% of the way and say "There, I've reduced it to a known, solvable problem." And stop.
Nov
10
comment How can you tell if a person is a programmer?
What, do you think I had three extra fingers surgically added to each hand for no good reason?
Nov
10
comment How can you tell if a person is a programmer?
Kind of like a ST:TNG episode where Data determined someone was an android because he detected the mathematical pattern to their blinking.
Nov
10
comment How can you tell if a person is a programmer?
@Brian - I think he means when he entered the corporate world and saw that it was true.
Nov
10
comment How can you tell if a person is a programmer?
The third one has gotten me in trouble more than once. Her:"Do you want to mow the lawn?" Me: "No." (sees angry look) "uhh, but of course, I Will"
Sep
10
accepted Do containsAll() and retainAll() in the Collection interface address cardinality?
Aug
24
accepted Selecting all rows untill first occurence of given value
Aug
23
accepted Fastest way to delete a tree of empty directories in batch file
Jul
24
comment Would programming an “XOR Cursor” make me a criminal?
Actually you can go to jail for even asking this question about it. I recommend changing your name and moving to Canada. (Or if you are already in Canada, then New Jersey)
Jul
24
comment What are the Worst Software Project Failures Ever?
That's no moon! -- Oh wait, nevermind, it is.
Jul
10
comment When “” == s is false but “”.equals( s ) is true
There's also Apache Commons Lang's StringUtils, which has isBlank, isEmpty, etc. that handles the null check also.
Jun
29
comment Most Astonishing Violation of the Principle of Least Astonishment
Look like most of the answers have degenerated from 'astonishing' to 'things that annoy me'
Jun
25
comment Ant’s <javac> tasks throws StackOverflowException
It throws a StackOverflowException - so you come to blame us? :-)
Jun
22
comment What is your best programmer joke?
@Yassir - It depends on how fast they drink. If mathematician #1 drinks his/her beer in 1 minute, and #2 takes 30 seconds, and #3 takes 15 seconds, etc. Then it will take exactly 2 minutes. Isn't infinity fun.
Jun
22
comment What is your best programmer joke?
@Cuga - Nope, he has just enough beer for all infinity of them.
Jun
21
comment What are common UI misconceptions and annoyances?
@Charlie: This is a problem with some UIs. Plus is a valid character in an email address, but some UIs will try to be 'helpful' and reject an address that has that character in it.
Jun
21
comment What are common UI misconceptions and annoyances?
My 'favorite' is my insurance company's site. It required a password with 'at least six, but less than 9'. So I use my normal, longer than 8 char, password, but stopped when it filled up at 8. There login page then got me every time when I typed the whole thing. Grrr, make your password boxes consistent - and what harm is a longer password!
Jun
21
comment What are common UI misconceptions and annoyances?
I at least appreciate that they show themselves. It the sneaky start-up apps I didn't ask for that really annoy me. At least the ones in the tray I can see and know to hunt them down and kill them.
Jun
12
comment What is the purpose of fork()?
So that all those dining philosophers don't starve.
Jun
10
comment OO ABAP: When and Why?
'How did you compare the runtime of CALL METHOD vs. PERFOM?' -- I read his question as offering that as an example of what a justification might look like -- not an actual claim.
Jun
10
comment What does HTTP/1.1 302 mean exactly?
Sorry, all my knowledge of HTTP error codes come from here: thinkgeek.com/tshirts-apparel/womens/… (doht! 403 again)
Jun
10
revised When to Be Specific About the Type of List You Want
edited tags
Jun
10
comment When to Be Specific About the Type of List You Want
Also you can say List<? extends Integer> to make it possible to send in lists of subtypes. Obviously not the case with Integer since its final -- but I'm assuming that was just a simplified example.
Jun
10
comment When to Be Specific About the Type of List You Want
You can also make your own copy of the list (using whatever implementation you want). This would be necessary if, for example, you wanted to make sure that any changes made after it was passed didn't affect your class.
Jun
10
comment When to Be Specific About the Type of List You Want
That wasn't his question - he asked whether he should REQUIRE that choice to be forced back on callers of the class.
Jun
10
comment When to Be Specific About the Type of List You Want
'it's unlikely that there is a better list implementation for this scenario' - that's a very big assumption. There are lots of possibly reason for having a different implementation. For example , maybe you need one that's designed for concurrency because your using it in many threads. Don't force your implementation details on your callers.
Jun
8
comment NullPointerException with an override method.
Here's a couple links explaining it more: informit.com/articles/article.aspx?p=20521/… and benpryor.com/blog/2008/…
Jun
6
awarded  Nice Answer
Jun
6
comment How many Windows handles in use is “too many”?
What? No Mac and/or Linux-zealots answering "1." :-)
Jun
4
comment Why have not-programming-related tag, if all questions under this tag get closed anyway?
@Joel - the tag exists because someone tagged something with it. Someone could make a tag not-broccoli-related, and it would then exist. See Anthony's response below.
Jun
4
answered Is it possible to put java 1.4 on 64 bit Ubuntu?