jamuraa

616
reputation
48 views

Registered User

name jamuraa
member for 1 year
seen 2 days ago
website
location Minneapolis, MN
age 29
I'm a coder at a company and working at my PhD at the University of Minnesota, as well as developing a bunch of projects on the side.
Dec
2
comment std::auto_ptr or boost::shared_ptr for pImpl idiom?
Is there a reason that you declare the Pimpl class outside MyClass? I ask because I've gotten into the habit of using a private struct for the pimpl object.
Dec
2
accepted GitHub git remote add origin git@github.com:username/ProjectName a one time process ?
Dec
2
awarded  Organizer
Dec
2
revised GitHub git remote add origin git@github.com:username/ProjectName a one time process ?
edited tags
Dec
2
answered GitHub git remote add origin git@github.com:username/ProjectName a one time process ?
Dec
2
awarded  Commentator
Dec
2
comment How to order 1,2,3 not 1, 10, 11, 12 in mySQL
I'm assuming you've tried the (obvious) addition of ORDER BY P.id to the query?
Nov
12
accepted How to programatically disable the auto-focus of a webcam.
Nov
11
answered How to programatically disable the auto-focus of a webcam.
Nov
4
revised Reading an std::ifstream to a vector of lines
test for fail in the action. ; deleted 21 characters in body
Nov
4
answered Reading an std::ifstream to a vector of lines
Oct
22
answered How can I find copy/paste (duplicate, clone) code in Perl?
Oct
21
answered Sending a code block to a find_all dynamic method
Oct
21
accepted How to DRY this snippet of Ruby code?
Oct
21
answered How to DRY this snippet of Ruby code?
Oct
21
comment Why is the copy-constructor argument const?
Since Vector is a Vector, can't you can access private members of other?. If you replaced the Vector argument with OtherClass, you can't access private members.
Oct
21
answered Randomly selecting a limited number of records with two conditions in MySQL
Oct
21
answered Which licence should I use?
Oct
21
answered Please explain this behavior with character arrays/strings in C
Oct
21
comment n-values UUID generator, reusable IDs
You can make /dev/random better with some hardware solutions and by running daemons which gather more entropy from different sources. If you are concerned about your entropy pool, I suggest a device like the ones from entropy key: entropykey.co.uk
Oct
21
answered QT: why is foreach iterating with a const reference ?
Sep
16
awarded  Yearling
Sep
8
revised Looping out mysql data
another minor syntax error
Sep
8
answered Looping out mysql data
Aug
6
comment Smart pointers with a library written in C
In OpenCV's case, the functor object is needed anyway because cvReleaseMat is void cvReleaseMat(CvMat** p) (it sets the pointer to NULL after deleting)
Jul
10
asked Rails unit tests for functions which use attachments
Jun
26
answered Get the last day of the month in SQL
Jun
26
comment How would you align pictures?
Do you have something on the pictures which is constant - something which should end up in the same place in every frame?
Jun
26
answered Combing an External Event Loop with Qt’s
Jun
26
comment Lots of small files or a couple huge ones?
The access profile of this data makes a big difference. Are you going to be reading big chunks of data? Is some data related and most likely to be accessed together? At some point, it's better for you to use a DB instead of lots of small files, unless you're doing something which is EASY like serving them via http, and it needs to be REALLY fast.