Derek Park

8,282
Reputation
169 views

Registered User

Name Derek Park
Member for 1 year
Seen Nov 17 at 5:46
Website
Location Mountain View, CA
Age 27
I'm a software engineer who recently moved to Silicon Valley. I'm working full-time and trying to decide on a dissertation topic. When I'm not being lazy, I occasionally update my blog.
Oct
23
awarded  Peer Pressure
Oct
7
comment C++ Check if pointer is passed, else create one?
I have trouble envisioning a practical architecture on which this is a problem. This being a problem implies that the system is checking for the validity of the pointer, which is an expensive operation (given that it has to ask the OS if it's valid) with no real benefit that I can see. I can't see this kind of platform being compatible with the C++ virtual machine, since C++ uses invalid pointers (one past the end) to mark the ends of arrays and containers.
Oct
7
comment What “already invented” algorithm did you invent?
jprete, comments have not always been available on Stack Overflow. Note that my answer was posted in August 2008, the same month that the site launched. New answers were the only way to comment. I see no value in going back and deleting all my existing "comment" answers. I really don't understand why you (and others) are digging into old questions to criticize a practice that predates comments.
Sep
23
comment C++ Check if pointer is passed, else create one?
On what architecture will casting -1 to a pointer cause a fault? Attempting to use such a pointer would obviously cause a fault, but I see no reason that creating the pointer would be problematic.
Sep
23
answered C++ Check if pointer is passed, else create one?
Sep
22
revised Why doesn’t OS X have the same flickering problems that Windows does?
added 123 characters in body
Sep
17
asked Why doesn’t OS X have the same flickering problems that Windows does?
Sep
3
accepted Any good java source code analyzing and modifying libraries?
Aug
26
answered what is the fastest way of calling and executing a function in C?
Aug
10
awarded  Yearling
Jul
30
comment Is there a pthread equivalent to WatiForMultipleObjects
Sorry, I just saw your comment. No, you don't need to call pthread_exit unless that it more convenient. It's analogous to calling exit from main. You can do so if you want, but you can also just return normally, and the effect will be as if you had called pthread_exit with the return value from the thread function. I almost never call pthread_exit. I also almost never use the return value (hence why I pass NULL as the second arg to pthread_join).
Jul
24
accepted Is there a pthread equivalent to WatiForMultipleObjects
Jul
23
answered Is there a pthread equivalent to WatiForMultipleObjects
Jul
15
comment Parsing attributes with regex in Perl
Come on. You were here early on. You know that we didn't always have proper comments. I'm not going to run around the site deleting all my old "answers" that were written as comments.
Jul
8
awarded  Disciplined
Jun
29
comment what is lazy allocation?
@hydeph, it looks like Deitel has two versions of that book, one with "late objects", where the initial chapters are in procedural style (and introducing classes/objects later) and one with "early objects", where classes/objects are introduced immediately. They are using "late objects" and "early objects" to distinguish between these teaching styles. It doesn't have any relationship to lazy initialization.
Jun
25
awarded  Guru