Head Geek

4,300
Reputation
174 views

Registered User

Name Head Geek
Member for 1 year
Seen yesterday
Website
Location CA
Age 39
I'm primarily a C, C++, and Lisp programmer, working in both Windows and Linux. I specialize in very long-term projects -- my last major one is still going strong after ten years, and I've been working on my current one for five and a half at the time of this writing.
Nov
13
comment Proxy Authentication — HTTP/HTML Details?
Thanks, that helps.
Nov
13
asked Proxy Authentication — HTTP/HTML Details?
Oct
24
revised Retrieve SD Card serial number on Windows XP/Vista/7?
More information
Oct
24
comment Retrieve SD Card serial number on Windows XP/Vista/7?
Thanks, but it looks like there's no way to do it reliably. I'm editing the question to explain what I've found.
Oct
23
asked Retrieve SD Card serial number on Windows XP/Vista/7?
Oct
19
awarded  Popular Question
Oct
16
awarded  Good Question
Oct
10
comment Lisp in the real world
Interesting... that's the only one I've seen that doesn't demand a run-time fee. They may be the salvation of Lisp for commercial software.
Sep
21
awarded  Nice Answer
Sep
17
awarded  Yearling
Aug
19
comment cutdown uuid further to make short string
Depends on how much uniqueness he needs. That's why I suggested both CRC and an alternative.
Aug
19
answered cutdown uuid further to make short string
Aug
14
answered What’s the regex for removing dots in acronyms but not in domain names?
Aug
13
comment Is 23,148,855,308,184,500 a magic number, or sheer chance?
2 + 3 + 1 + 4 + 8 + 8 + 5 + 5 + 3 + 0 + 8 + 1 + 8 + 4 + 5 + 0 + 0 = 65. 6 + 5 = 11. It's all in the numerology. ;-)
Aug
12
revised using the “pefile.py” to get file(.exe) version
Fixed spelling and grammar
Aug
12
answered using the “pefile.py” to get file(.exe) version
Aug
9
accepted Non-destructive parsing and modifying of HTML elements in C++
Aug
9
comment Non-destructive parsing and modifying of HTML elements in C++
I'd recommend it. They're extremely useful, and the learning curve really isn't that steep.
Aug
9
answered Non-destructive parsing and modifying of HTML elements in C++
Jul
23
comment What scripting language should I learn for file/text manipulation tasks?
With twenty-seven years of programming experience, I still find that I have to triple my initial estimate to get near the right answer.
Jul
22
answered Automatically determine the natural language of a website page given its URL
Jul
16
comment Programmatically determining individual screen widths/heights in Linux (w/Xinerama, TwinView, and/or BigDesktop)
Thanks, I'll give that a try the next time I have a chance.
Jul
16
revised Programmatically determining individual screen widths/heights in Linux (w/Xinerama, TwinView, and/or BigDesktop)
Improved formatting
Jul
15
awarded  
Jul
13
comment Garbage Collection in C++ — why?
That's a valid point, though not one I'd normally be worried about. When I do multithreaded programming, the threads rarely share their data structures.
Jul
12
revised Efficiency of c++ built ins.
Corrected answer
Jul
12
revised Efficiency of c++ built ins.
Added further info
Jul
12
answered Efficiency of c++ built ins.
Jul
10
accepted Boost date add one day, non standard GMT string
Jul
8
answered How do I destruct data associated with an object after the object no longer exists?
Jul
8
comment C++ template instantiation of function template parameters
If you plan to use them in more than one .cpp file, you must define them in a header file. I'm sure there are some labored exceptions to that rule, but it's a rule for a good reason.
Jul
6
comment Can I be warned when I used a generator function by accident
@S.Lott: Copy/paste, as his comment mentions. I've always found copy/pastes of code to cause more headaches than they solve, but I know a lot of people find them useful.
Jul
6
answered Building Boost without filename decorations?
Jun
30
comment Boost date add one day, non standard GMT string
I don't see any reason you couldn't. One added point: since this uses local time, you might have an occasional problem with Daylight Savings Time changes. Easy enough to get around by setting the time zone to GMT, but it's something to consider.
Jun
30
answered Boost date add one day, non standard GMT string
Jun
28
revised Pass-through keyword arguments
Added a new tag
Jun
22
comment How can I make sure all my Python code “compiles”?
Beautiful... I'm a C/C++ guy new to Python too, and this problem has frustrated me to no end. I never thought to ask about a solution though, I didn't think one could exist.
Jun
20
comment Pass-through keyword arguments
Yes, I hit that early on. Fortunately, I caught on to that one quickly.
Jun
19
comment Pass-through keyword arguments
D'oh! As is probably obvious, I'm still new to Python. Thanks for pointing out the problem.
Jun
19
asked Pass-through keyword arguments
Jun
18
answered how many places are optimized in Python’s bytecode(version 2.5)
Jun
17
answered Unable to find an internet page blocked by robots.txt
Jun
14
comment Converting C source to C++
I've written a couple of blog articles about specific parts of the conversion, geekblog.oakcircle.com/2008/07/… and geekblog.oakcircle.com/2009/03/… . I'm not an amusing-enough writer to make the whole thing interesting though.