Paul Tomblin

30,517
Reputation
3560 views

Registered User

Name Paul Tomblin
Member for 1 year
Seen 7 hours ago
Website
Location Rochester, NY
Age 48

Java/C++/Perl programmer on Linux/Unix. 25+ years experience. Still learning.

Working on a fixed price contract from home. Does it get any better than this?

http://www.linkedin.com/in/paultomblin
30m
awarded  Nice Answer
1d
revised thread safe map for java
added 159 characters in body; added 145 characters in body
1d
answered thread safe map for java
2d
answered How do you divide integers and get a double in csharp
2d
revised Looking for a replacement for NMS FormMail.pl
The "nms" that wrote FormMail is not the same as the one in the tag.
2d
comment Looking for a replacement for NMS FormMail.pl
It isn't the comparing that's the problem, it's then producing some sort of error page, etc.
Nov
23
comment Looking for a replacement for NMS FormMail.pl
@Ether, I've added a link.
Nov
23
revised Looking for a replacement for NMS FormMail.pl
added 62 characters in body
Nov
23
asked Looking for a replacement for NMS FormMail.pl
Nov
22
answered Postgres math expression calculcated for each row in table
Nov
22
comment Does version control let you work simultaneously on two different versions of a project?
It entirely depends on how extensive the changes are, I think. If it's something that's going to take a few lines, sure, do it in conditional compilation. If it's a major new feature with dozens or hundreds of new classes, it should be a branch or something else that doesn't end up making your code hard to read and crowded with things that aren't used for the main product line.
Nov
22
comment Does version control let you work simultaneously on two different versions of a project?
Actually, people use branches to do this all the time. At one job I had, we had a branch of the main that included just the features that a particular client requested and paid for - any changes in main would get merged down to it, but nothing ever got merged up from it to main.
Nov
22
comment Where did foodscanner get its initial barcode database?
Did you try asking them?
Nov
22
comment generate javadoc comments in eclipse
What happens if you go to Preferences->Java->Code Templates and click "restore defaults"? Because I have code templates for comments that includes all the javadoc stuff.
Nov
21
comment generate javadoc comments in eclipse
It's on my Eclipse, and the only extra things I've installed are Google Web Toolkit and FindBugs. (This is Ganymede, not Europa. Maybe you need to upgrade?)
Nov
21
comment How should I handle Inconsistent Objects in C++?
@Uncle, because a wrong file name is not "exceptional". I'd rather not incur the overhead of exception handling for something that is easily handled by calling a "isValid" method.
Nov
21
answered How should I handle Inconsistent Objects in C++?
Nov
21
answered Minimalistic tools for developer documentation
Nov
21
comment How do I search for a String in an array of Strings using binarySearch or another method?
How the heck did you think it could do a binary search if the data you were searching wasn't sorted? How do you think a binary search works?
Nov
20
comment Palm Database (PDB) files in Java?
I think this has what I need. Thanks very much.
Nov
19
comment C++: NULL 0x0 or 0?
Yeah, I was more opining about the design of the language than suggesting you actually do it that way.
Nov
19
comment C++: NULL 0x0 or 0?
Who says you're supposed to use 0 instead of NULL? Personally, I think you should use "(void*)0".
Nov
19
answered Is it advisable to lead one’s career away from the Microsoft development stack?
Nov
19
comment Java Date, render with specific daylight mode
It is mandatory on SO that whenever somebody asks a question about Dates in Java to mention Joda Time. I have no idea if it will do what you want, but it's mandatory.
Nov
19
accepted ResultSet prematurely closing
Nov
19
answered ResultSet prematurely closing
Nov
18
comment Java generics: multiple generic parameters?
You shouldn't accept a wrong answer. @oxbow_lakes was the first one to get it right.
Nov
18
comment problems with operator new when allocating arrays
Do you know how many points are in numSurfacePoints?
Nov
18
comment How often do you laught to your own code
I laugh at your code every day too.
Nov
18
comment Memory access violation. What’s wrong with this seemingly simple program?
As @sharptooth said, you've declared that "somestring" is a pointer to the literal string - ie. it's pointing to some storage that is part of the program code, and therefore not modifiable. You have to put it in modifiable memory in order to reverse it.
Nov
18
comment Memory access violation. What’s wrong with this seemingly simple program?
Personally, I'd use strdup, but I'm oldschool.
Nov
18
comment optional parameter????
Unless you're planning to actually tell us the language and show us the code, I'm voting to close.
Nov
18
comment How to create a program using C/C++/JAVA
How about doing your own homework for a change?
Nov
17
comment How can I use pointers in Java?
The default "hashCode" for an Object is its pointer address.
Nov
17
revised help on typedefs - basic c/c++
added 33 characters in body
Nov
17
answered help on typedefs - basic c/c++
Nov
17
comment Hardware.. Repair a bad usb
Doesn't look like a server question to me.
Nov
16
accepted About IP 0.0.0.0(django)
Nov
15
comment Creating an universal comparator to sort a tree map problem.
You mean the issue being that you don't understand what a TreeMap is for?
Nov
14
comment how to get database of all people’s names (or at least English common ones)?
Have you ever read A.C.Clarke's "9 Billion Names Of God"? Consider the consequences if you ever got a complete list of names.
Nov
14
comment What is the name of the “naming convention” used in the C/C++ standard libraries?
It's called "Whatever shit we happened to come up with this week".
Nov
12
awarded  Popular Question
Nov
12
answered Call a Kohana helper from cron (or any URL)
Nov
11
comment Complicated C cast explanation
Casting a character buffer into a function and calling it is evil. It's either an attempt at self modifying code, or it's a malicious intent to do some sort of exploit. Either way, avoid it at all costs.
Nov
11
comment Complicated C cast explanation
Look for a program called "cdecl". Download it. Paste the declaration into it. Be enlightened.
Nov
11
comment Graphical diff for Mac OS X
It's just "vim" on my Mac. Or /Applications/vim/gvim.
Nov
11
comment can we open a ppt file in an iphone application?
Help you out how? Write the app for you?
Nov
9
comment Palm Database (PDB) files in Java?
JPilot is written in C, not Java. Important lesson: not every program whose name begins with "J" has anything to do with Java.
Nov
6
revised Why the name main for function main()
added 167 characters in body
Nov
6
answered Why the name main for function main()