Larry Gritz

1,643
Reputation
235 views

Registered User

Name Larry Gritz
Member for 1 year
Seen Nov 26 at 11:06
Website
Location Berkeley, CA
Age 41
Principal engineer, Sony Pictures Imageworks. Professional software engineer and researcher for 20 years, specializing in computer graphics for animation and visual effects. I mainly develop in C++ on Unix variants (Linux and OS X), but occasionally use Windows, Python, Perl, shell scripts, as well as programmable extension languages for a variety of packages.
Nov
21
awarded  Nice Answer
Nov
4
revised Should boost::filesystem::exists really throw an exception for removable media device with no media?
edited tags
Sep
11
comment Are do-while-false loops common?
Interesting meat of the question, but 100% useless title. Always construct the question title so that you could imagine somebody else with the same problem finding it with a google search.
Sep
10
comment retval = false && someFunction(); // Does someFunction() get called?
That doesn't tell the whole story. Of course the compiler will do that, if the left-hand part of the expression can be statically known to be true or false. But furthermore, this will happen AT RUNTIME even if the left-hand expression is something complicated. That's part of the definition of the C++ language.
Sep
8
awarded  Necromancer
Sep
8
comment What GNU make substitute do you recommend?
I actually like gmake, with a bunch of special makefiles I've prepared over the years. But I recently switched to cmake and it simplified cross-platform development (Linux, OS X, Windows) so much that cmake is my new default for new projects.
Sep
1
awarded  Yearling
Aug
27
revised C++: how to get fprintf results as a std::string w/o sprintf
added 4 characters in body
Aug
27
comment C++: how to get fprintf results as a std::string w/o sprintf
Bklyn: thanks for the tips, again related to vsnprintf that wasn't C99. Could you look over my edits and tell me what you think of the new version?
Aug
27
revised C++: how to get fprintf results as a std::string w/o sprintf
New code to address comments about vsnprintf incompatibility
Aug
27
revised C++: how to get fprintf results as a std::string w/o sprintf
added 174 characters in body
Aug
27
comment C++: how to get fprintf results as a std::string w/o sprintf
Andreas: Thanks so much! I didn't realize that vsnprintf has a different failure return value on Windows. I will edit the code example to reflect this.
Aug
20
comment Portable Compare And Swap (atomic operations) C/C++ library?
But Boost's atomic.hpp only has atomics for 32-bit ints. A good atomic library would also have 64-bit int atomics and pointer atomics.
Aug
17
comment Simplest way to check if two integers have same sign?
Doesn't work for overflow
Aug
17
comment Simplest way to check if two integers have same sign?
only works for 32 bit ints, which was not stipulated in the question
Jul
15
awarded  Notable Question
Jul
14
answered Why does strlen() return a 64-bit integer? Am i missing somthing?
Jul
2
answered Starting a software company 101
Jun
29
answered Which EXIF tag to store keyword/tag for a photo?
Jun
29
answered How would you align pictures?
Jun
29
answered What is a dependent texture read?
Jun
25
answered Would one have to know the machine architecture to write code?
Jun
25
comment Would one have to know the machine architecture to write code?
No, it's way worse than that. You need to know endianness if reading or writing any binary data to files, as well, and it doesn't matter if it's in structures or not.
Jun
19
accepted OpenGL still better than Direct3D for non-games ?
Jun
8
comment Read/Write Locks
Is there a reason you implemented your own instead of using one of the excellent implementations already well-tested such as Boost or Intel TBB?
Jun
6
answered MD5 Code Coverage