Bob Cross

6,017
Reputation
588 views

Registered User

Name Bob Cross
Member for 1 year
Seen 3 hours ago
Website
Location Rhode Island, USA
Age 42
Computer scientist working at [A Facility] developing [Systems] that [Do Stuff] at [Places].
1d
comment How to weed out the bad programmers from the competent ones in the interview process
+1 Open-ended, although I tend to talk more than 20%. I want to engage in a discussion so I'm usually in it deeply enough to ask "Why did you do it that way? Based on my understanding of your field and project as you just explained it to me, you forgot to deal with case X. Isn't that a problem?"
1d
comment Using a “take-home” coding component in interview process
'Fibonacci' has almost become a shorthand for "tiny coding problem that's just serving as a sanity check for the purposes of this interview." It serves the purpose of convincing the interviewer that the candidate can write any code at all in some language. I have been in a situation where we realized that the candidate could not write any code: that was a bad one.
1d
comment When should and shouldn’t you break away from OOP for speed/performance?
+1 Profile, tune, test, swear, repair, re-test, repeat.
1d
comment Java callback function on every class method
+1 for "hard-to-debug." I would have written something more like "your name may be cursed by future generations...".
2d
awarded  Nice Answer
Nov
20
revised Why am I getting null on this code?
edited tags
Nov
20
revised creating unit tests (semi-)automatically?
Changed the format
Nov
13
comment How to tell why a file deletion fails in Java?
@Cory, file.exists(), isDirectory() and list() can all throw SecurityExcepions.
Nov
13
comment How to tell why a file deletion fails in Java?
@BalusC, remember that file.exists() can also throw a SecurityException.
Nov
13
revised Java: “implements Runnable” vs. “extends Thread”
added 2 characters in body
Nov
12
answered How to convince my boss to join programmers into pairs or even teams?
Nov
11
revised Do you get Freelance projects while you have a job ?
added 707 characters in body
Nov
11
comment Ways to prevent over-engineering?
@S. Lott, I'd modify your two steps to something like: 0. Give the job to someone who's already too busy. 1. Watch them build the smallest, simplest thing that solves the problem. Profit!
Nov
10
revised Software Project - Time Estimation
added 1595 characters in body
Nov
10
comment Software Project - Time Estimation
@Jay, given three max-length comments, it seems like you should be editing your own answer.
Nov
10
revised Inserting leading zeros into an integer
For leading zeros, you need to prepend, not append.
Nov
10
awarded  Nice Answer
Nov
9
comment Ways to prevent over-engineering?
@Rorschach, "I love deadlines. I like the whooshing sound they make as they fly by." Douglas Adams
Nov
9
comment Ways to prevent over-engineering?
@sheepsimulator, right - when I was making the original business case for this monthly process, I specifically said that this builds in the opportunities for customer change of course. Every customer will eventually say "that isn't what I want!" whether or not that's what they originally said. Worst case: we went the wrong direction for 30 days.
Nov
9
comment Most marketable Software Engineering skill to switch to?
+1 Java's concurrency support is high and it's clearly mainstream. It's how I pay my bills, at least.... ;-)
Nov
9
answered Ways to prevent over-engineering?
Nov
8
answered What do regular people think of programming?
Nov
6
revised Why the name main for function main()
added 300 characters in body
Nov
6
comment Why the name main for function main()
@Brian Postow, +1 for the first truly worthy suggestion for a main replacement. ;-)
Nov
6
comment Why the name main for function main()
@Martinho, no, those aren't better choices. "program" means a collection of source code. "start" and "run" are keywords that are used by Thread. Regardless, the fact that you could think of a new word doesn't answer the previous question: "why change it?" The answer would also have to be balanced against the reality that even if you could change "main" in Java (for example), you would break every Java program in the world. Are the aesthetics of a single name really worth it?
Nov
6
answered Why the name main for function main()
Nov
5
revised How can I improve this Comparator?
added 222 characters in body
Nov
5
comment How can I improve this Comparator?
@a paid nerd, I understand that that's not something that you're trying to solve. I'm pointing out that that's what your code is essentially doing. Perhaps it would be more obvious if I used "1.0" and "Eggplant" in my example. I'll add my summary comment to the top of my answer.
Nov
5
answered What’s wrong with bringing code to a programming job interview ?
Nov
5
comment Help needed to write a comparator for my job interview code sample
Funnily enough, I ask people who interview with me if they have an account on SO. If I saw one of my questions come up there with a thoughtful back and forth with a clearly knowledgeable OP, I would tend to think favorably of them. Unfortunately, this question doesn't give a very good impression when it comes to the OP....
Nov
5
answered How can I improve this Comparator?
Nov
5
answered What exactly is the danger of using magic debug values (such as 0xDEADBEEF) as literals?
Nov
4
comment Trouble with MySQL 5.1 and RANGE?
It certainly looks like Artem is right: stackoverflow.com/questions/261455/…
Nov
4
answered What’s is a good ratio of Class to Lines of Code for Object-Oriented languages?
Nov
3
comment Software Project - Time Estimation
@Jurily, yeah, it's a surprisingly useful article for complete estimation novices. The EBS article is also interesting but it's a lot harder to make happen without the commercial product.
Nov
3
answered Software Project - Time Estimation
Nov
3
answered Is LOC correct parameter for project estimation?
Nov
2
comment Is Meyers implementation of Singleton pattern thread safe ?
+1 'that's a lot of crap to "make a better global"' - that got a laugh! ;-)
Nov
2
comment Java Generics - vanishing type information?
Can't read your blog from work so this is a non-answer (without a summary).
Oct
30
awarded  Enlightened
Oct
30
awarded  Nice Answer
Oct
30
accepted how to choose the jvm heap size ?
Oct
30
comment how to choose the jvm heap size ?
@LB, no problem. I literally use those tools every day. Quoting myself: "They don't suck." ;-)
Oct
30
answered how to choose the jvm heap size ?
Oct
30
answered Is there any practical use for an esoteric language?
Oct
30
revised Why do all Java Objects have wait() and notify() and does this cause a performance hit?
added 96 characters in body
Oct
30
comment How can I teach a know-it-all beginner programmer?
+1 "In my experience, there are no fools": at work, you really do have to think that way.
Oct
30
revised Why do all Java Objects have wait() and notify() and does this cause a performance hit?
Responding to JS question
Oct
30
comment Why do all Java Objects have wait() and notify() and does this cause a performance hit?
@Aaron Digulla, thanks - personally, I think that should be the first sentence in any performance argument.
Oct
30
answered Why do all Java Objects have wait() and notify() and does this cause a performance hit?