Graeme Perrow
|
Registered User
|
I am a software developer working for Sybase iAnywhere in Waterloo, Ontario. I am a member of the SQL Anywhere engineering team. I write primarily in C, C++, python, and perl.
In my spare time, I use PHP, (X)HTML, CSS, and Javascript on some personal web sites. I also enjoy sports, primarily lacrosse, hockey, and baseball. Read my review of StackOverflow on my blog. |
|
22h |
answered | Why does my python script randomly get killed? |
|
2d |
answered | double pointer and structures |
|
2d |
comment |
What Source Control? @Hein du Plessis: When I first started at my current job, I would have agreed with you about not trusting merging, but our 75+ person engineering team has been doing this with Perforce for over twelve years (and over 600,000 check-ins). Sometimes you need to manually do a merge when Perforce can't figure it out, but the vast majority of changes are merged automatically. We have had the occasional botched merge, but those are exceedingly rare. |
|
2d |
comment |
Fastest way to get value of pi @lubos: assuming the Earth is a sphere, which it isn't. |
|
Nov 25 |
comment |
Best way to check if a character array is empty It certainly is a bad idea to strlen an array before it is assigned - strlen will advance through memory until it reaches a 0 byte, which may be well beyond the end of the array. |
|
Nov 25 |
answered | Best way to check if a character array is empty |
|
Nov 23 |
comment |
Why should one bother with preprocessor directives? @Zaid: IMHO, no. This is a valid programming question. |
|
Nov 23 |
comment |
Great programming quotes According to en.wikiquote.org/wiki/Yogi_Berra, this is not a Yogi Berra quote. |
|
Nov 23 |
revised |
Great programming quotes Yogi Berra did not say this |
|
Nov 21 |
comment |
Why do you love Google? Hmmm... why to close? Subjective and argumentative? Not a real question? Not programming related? So many to choose from... |
|
Nov 21 |
answered | Call another function when main() exits. |
|
Nov 20 |
answered | Configuring SQL Anywhere to read from an ASE server |
|
Nov 20 |
comment |
Configuring SQL Anywhere to read from an ASE server Are you trying to connect to the same ASE server or a SQL Anywhere server? SQL Anywhere (SA) is a database server that is different from ASE. The debug information here shows that Sybase Central is trying to connect to SA, not ASE. |
|
Nov 20 |
comment |
strcat() vs sprintf() @Jonathan Feinberg - Isn't that partially the point of Stack Overflow? Sure, he could probably whip up a performance test, but if someone else has already done it, why reinvent the wheel? |
|
Nov 19 |
awarded | ● Popular Question |
|
Nov 18 |
comment |
Is there an Non-Short circuited logical “and” in C++? You'd better put a huge comment around any code that does that - any C developer with more than a year of experience would see expr1 & expr2 and "fix" it. Using temporary variables is a much better solution. |
|
Nov 18 |
accepted | Question about send / recv |
|
Nov 17 |
answered | Question about send / recv |
|
Nov 17 |
answered | help on typedefs - basic c/c++ |
|
Nov 17 |
comment |
Prime number generator in C +1 for actually answering the question without the snarky "why not try google" comments. |
|
Nov 17 |
comment |
Salary rise - how to get But if you ask for a rise it's no surprise that they're giving none away. |
|
Nov 17 |
comment |
How to draw dotted line with css? Fixed. I was mixing up dotted and dashed. Plus my answer would have given you a whole border rather than a single line. |
|
Nov 17 |
answered | How to draw dotted line with css? |
|
Nov 17 |
revised |
Casting UINT64 to float? Formatting |
|
Nov 16 |
accepted | SQL Anywhere table length |
|
Nov 16 |
answered | SQL Anywhere table length |
|
Nov 16 |
comment |
RegEx match open tags except XHTML self-contained tags Has anyone ever actually seen Linux Torvalds and Paris Hilton in the same room at the same time? Hmmmm.... |
|
Nov 12 |
comment |
c++ stack using char Thanks for the code. Do you have a question? |
|
Nov 11 |
comment |
What’s your take on the programming language Go? I interpreted "system language" as "this is not just another web scripting language", for anyone who looked at it for a few seconds and thought "yawn... another C#". |
|
Nov 11 |
comment |
Isn’t there a point where encapsulation gets ridiculous? "While in school, pretend to agree. Also while working... pretend to agree. Later, start your own business and do it your way" The next sentence should have been "... and then you'll find out why everyone else is doing it the other way." |
|
Nov 10 |
comment |
Coding Standards / Coding Best practices in C++ @Bill: That's true if the return statements are scattered all over the place. If you have "guard clauses" (as in Andy's solution) the return statements representing error conditions are all gathered together and make the remaining code very clean. |
|
Nov 10 |
comment |
Coding Standards / Coding Best practices in C++ +1: this is the simplest and cleanest solution here. |
|
Nov 10 |
comment |
Coding Standards / Coding Best practices in C++ Empty if blocks are ugly. |
|
Nov 10 |
comment |
Coding Standards / Coding Best practices in C++ +1 for just using a goto rather than do/while to imitate a goto. Gotos aren't always evil. |
|
Nov 10 |
comment |
Coding Standards / Coding Best practices in C++ This is a big PITA if you are debugging and want to step into isConditionThree() without stepping into all the previous ones. |
|
Nov 9 |
answered | Constant Pointer / structs |
|
Nov 8 |
comment |
how does IM remember password securely? @Kevin - ah, sorry, now I understand what he meant. My bad |
|
Nov 7 |
comment |
Why use getters and setters? @Nathan: Finding other usages isn't the problem. Changing them all is. |
|
Nov 7 |
awarded | ● Popular Question |
|
Nov 7 |
comment |
how does IM remember password securely? "The hash of the hash becomes the plaintext"? That's not how hashes work. |
|
Nov 5 |
comment |
What is this syntax? This might be the only case where I've ever used this syntax. I cringe whenever I see it anywhere else. |
|
Nov 5 |
comment |
Detecting database tampering, is it possible? +1 for "Long time listener, first time caller". |
|
Nov 5 |
comment |
How do I make my WordPress BLOG into a service where people need to pay through paypal to make comments on it? Who's going to pay to comment on a blog? |
|
Nov 4 |
comment |
TextPad Gripes!! You may want to rewrite this in the form of a real question. Right now it's just a rant. |
|
Nov 4 |
revised |
How does one keep an int and an array in shared memory in C? More formatting |
|
Nov 3 |
comment |
Deploying SQL Anywhere 10 Runtime Engine My guess is that it has to do with the spacey filenames. Try putting quotes around them. Beyond that, I think this is more of a question for Sybase tech support than a question suitable for Stack Overflow. Try the newsgroups at sybase.com/support/community-forums |
|
Nov 3 |
revised |
Deploying SQL Anywhere 10 Runtime Engine added 617 characters in body |
|
Nov 3 |
comment |
What are the common misconceptions of jQuery? 9 upvotes? There's no answer to the question here. |
|
Nov 3 |
accepted | Python regular expression |
|
Nov 2 |
answered | Deploying SQL Anywhere 10 Runtime Engine |
