Jim Hunziker

488
Reputation
83 views

Registered User

Name Jim Hunziker
Member for 1 year
Seen yesterday
Website
Location NJ, USA
Age 33
C/C++, Java developer
Nov
24
comment Backing up a mercurial repository while preserving timestamps
One more comment on this (you might want to add): hg clone -U is the way to go, since the working copy that clone makes doesn't have hard links. Just the repository does.
Nov
24
comment Backing up a mercurial repository while preserving timestamps
Yeah, it's the race condition I'm worried about. Would you be able to tell when an hg rollback would be needed?
Nov
24
asked Backing up a mercurial repository while preserving timestamps
Nov
5
awarded  Nice Answer
Oct
27
revised How do I allocate variably-sized structures contiguously in memory?
markdown
Oct
27
answered How do I allocate variably-sized structures contiguously in memory?
Oct
27
comment How do I allocate variably-sized structures contiguously in memory?
I think you meant to write things like new DataPointWithArray<27>. But this is allocating data from the heap at random locations in memory. Besides having to stream this over a network, I need to access tons of these in sequence during processing, so having locality of reference is important to me.
Oct
26
comment How do I allocate variably-sized structures contiguously in memory?
vector doesn't work well with variably sized elements. See stackoverflow.com/questions/1626846/…
Oct
26
comment How do I allocate variably-sized structures contiguously in memory?
This answer is the C way of doing it that I mentioned in the question.
Oct
26
comment How do I allocate variably-sized structures contiguously in memory?
The similarity was just a simplification, and the numbers of ArrayOfThese are not known at compile time.
Oct
26
asked How do I allocate variably-sized structures contiguously in memory?
Oct
16
comment C++ GCC4.4 warning: array subscript is above array bounds
Thanks - I have this problem, too, and your workaround helped me. Upvoted.
Oct
13
comment How do I show the value of a #define at compile-time?
That didn't work, since BOOST_VERSION is an integer, but I got to see it with this statement: std::vector<BOOST_VERSION>; in gcc 4.4.1. Thanks!
Oct
13
asked How do I show the value of a #define at compile-time?
Sep
13
awarded  Yearling
Aug
18
comment Technical documentation with deeply nested enumerated lists
Here's another reference I found: sagehill.net/docbookxsl/SectionNumbering.html/…
Aug
17
comment How to make Tomcat 6.0 log the console?
No problem. I didn't notice it in the FAQ, either. I already knew the answer to your question and searched the web for the answer so I could give you a link!
Aug
17
accepted How to make Tomcat 6.0 log the console?
Aug
17
answered How to make Tomcat 6.0 log the console?
Aug
17
comment Technical documentation with deeply nested enumerated lists
I think it is just \enumerate and \itemize that I want. The silly dotted number notation in my example can't be achieved with the 7 levels you mention, can it?
Aug
17
asked Technical documentation with deeply nested enumerated lists
Jul
30
comment How can I get the filename of a servlet resource?
This works for me, since tomcat explodes my WAR, and that's my only container to support.
Jul
30
asked How can I get the filename of a servlet resource?
Jul
10
comment Peak memory usage of a linux/unix process
No, it doesn't. That's an example of how to report how much CPU time was used.
Jul
10
comment Setting up Mercurial for members of a unix group
Thanks for pointing out the ACL Extension. Another option I found from your links was mercurial-server (mercurial.selenic.com/wiki/SharedSSH). I think I'll stick with my script for now, though, with John, TheBonsai, and your changes.
Jul
10
asked Setting up Mercurial for members of a unix group
Jun
18
comment What’s the deal with all the different UIDs a process can have?
You mean "elevate", not "evaluate", right?
Jun
18
comment What are the well-known UIDs?
Could you either edit this to mention your comment on Bane's answer above or log that as a new answer? That seems to be the real answer to my question - that the system UIDs are not common across unix/linux distributions, so the problem cannot be solved. I'd like to accept that as the answer.
Jun
18
comment What are the well-known UIDs?
I thought it might be at first, but it's not the sysadmin's job to pick the UIDs of the programs he or she installs. It's the developer's (or package maintainer's) job.
Jun
18
comment What are the well-known UIDs?
Well, those are the UIDs that are in use on my system, but not all the UIDs that might be out there. For instance, I don't have tomcat installed, but it uses UID 91.
Jun
18
asked What are the well-known UIDs?