41,180 reputation
35698
bio website chrishowie.com
location United States
age 27
visits member for 2 years, 6 months
seen 2 hours ago
stats profile views 2,548

I make stuff on the computer.


May
17
comment MySql Multi-table query with count
It might help if you show some example data, and the resulting data you want to get from your query. These specifications are rather vague.
May
17
comment MySql Multi-table query with count
@user2395402 Then you need a way to relate those two tables. Are they related through Trending records, or some other way? Which table references ContactType.PkContactType, and through which column?
May
17
comment MySql Multi-table query with count
You have updated your question but have not indicated how the ContactType table is related to either of the other two.
May
17
comment MySql Multi-table query with count
It is not clear at all how these tables relate to one another. Please include column types as well as foreign key definitions.
May
17
revised MySql Multi-table query with count
added 72 characters in body
May
11
comment hashing the password using md5
Hashing is nice, but unsalted MD5 is still pretty insecure (all unsalted hashes are vulnerable to rainbow table attacks, and MD5 in particular has been shown to be insecure). Consider using a salted SHA2 variant instead. Each password should have its own salt -- a global salt still allows the use of a rainbow table.
May
8
comment C - reverse a number
You can use sprintf() as an alternative to itoa(): sprintf(output, "%d", input).
May
8
answered Why is mmap returning a size of zero?
May
8
comment Why is mmap returning a size of zero?
@Chris stat() returns information about filesystem inodes. For example, ls uses stat() to determine the apparent size of files. Device inodes always have an apparent size of 0. (If you are curious why, consider this: what size should /dev/zero, /dev/kbd, and /dev/urandom report?)
May
8
comment Can't initialize valarray as private member of class
@Oniros The code that you initially had did try to invoke operator(), you have that backwards. The initializer list syntax mimics construction syntax for variables (e.g. std::valarray<double> foo(5);). a(b) has different meaning in the initializer list and outside of it. In the initializer it means "initialize a to b", while outside it means "invoke operator() on a, passing b."
May
8
comment Can't initialize valarray as private member of class
@Oniros The initializer list replaces any default-initialization of object members performed by the compiler. The syntax required for initialization in this list and for assignment outside of the list are entirely different.
May
8
comment Can't initialize valarray as private member of class
@LuchianGrigore The syntax is actually valid, it just refers to an operator() overload that doesn't exist. (And that probably wouldn't do what the OP is wanting if it did exist.)
May
8
answered Can't initialize valarray as private member of class
May
8
comment Why is mmap returning a size of zero?
The docs say "Return the length of the file, which can be larger than the size of the memory-mapped area." Perhaps this is because all device nodes have an apparent size of 0 according to stat()? What happens if you actually try to get data out of the mmap object?
May
8
comment Makefile C++11 error
I would suggest adding a rule like this: test: echo $(SRC); echo $(OBJ) (with newlines where appropriate) and then execute make test. Perhaps the content of these variables is not what you expect.
May
8
comment Makefile C++11 error
@MatsPetersson No. His rule is not being used at all.
May
8
comment Makefile C++11 error
So the problem is not with the C++11 flag at all. Your actual question is "why is my makefile rule not being used." If it were I would expect the line to be g++ src/normal.c -o obj/normal.o -std=c++0x
May
8
comment Makefile C++11 error
make should print out each command as it executes it. What g++ invocation immediately precedes the error?
May
8
comment Incrementing a pointer inside a fixed block prohibited, it seems it should work
@KelseyBowman Premature optimization is evil. Code it the safe way first and then profile. If this turns out to be the bottleneck, try the unsafe approach. (And even then, writing a small C library and P/Invoking it might turn out to be even faster.)
May
8
comment Incrementing a pointer inside a fixed block prohibited, it seems it should work
@KelseyBowman No problem. I would suggest trying to write things the pure C# way and avoid unsafe code. There is nothing here you can't do with indexed array access.