D.Shawley

7,496
Reputation
244 views

Registered User

Name D.Shawley
Member for 12 months
Seen 7 hours ago
Website
Location Philadelphia, PA, USA
Age 35
I'm a software engineer that's been in the field for a little over 10 years now. I started out as a C programmer on "soft" embedded systems (cable set-top boxes FWIW). Since then I have moved to the other side of the client-server system and have been specializing in distributed systems development in C++. Over the past few years, I've moved from writing code every day into doing more systems design and architecture work.
Nov
25
answered C++ short-circuiting of booleans
Nov
24
accepted memory leak in c++
Nov
23
comment multiplication program using recursion(in C)
Hmm... doesn't look much like pseudocode to me. It looks like a rather correct answer. Figure out how it works, then explain it to your teacher.
Nov
22
comment using snprintf to avoid buffer overruns
For fixed length buffers, I usually use strncpy(dest, src, sizeof(dest)); dest[sizeof(dest)-1] = '\0'; That guarantees NULL termination and is just less hassle than snprintf not to mention that a lot of people use snprintf(dest, sizeof(dest), src); instead and are very surprised when their programs crash arbitrarily.
Nov
22
answered Python subclass with C++ baseclass
Nov
22
comment Slow response from getaddrinfo
Try running something like FileMon and make sure that it is not doing something stupid like reading and parsing c:\windows\system32\drivers\etc\services and c:\windows\system32\drivers\etc\hosts every time that you call getaddrinfo().
Nov
22
comment what does union U look like in the memory?
@David - the third integer member in a struct will start at at least 2*sizeof(int) bytes. It is free to start at 2*(sizeof(int) * 20) bytes if the compiler wants it to.
Nov
22
comment what does union U look like in the memory?
Most of this isn't really guaranteed. The compiler is free to insert padding between structure members so you can't rely on A::x overlapping with B::a, B::b, B::c, and B::d. You are guaranteed that &A::x == &B::a. If you replace the first four elements of B with unsigned char a[4]; then all of the assumptions should be safe by the Standard.
Nov
21
answered using snprintf to avoid buffer overruns
Nov
21
answered What is the simplest way to create my own FTP server?
Nov
19
answered smtp: why does email needs envelope and what does the envelope mean
Nov
19
accepted What’s the purpose of tainting Ruby objects?
Nov
19
accepted Proper naming query
Nov
18
answered How can I write a wrapper script to create an svn branch?
Nov
18
answered Proper naming query
Nov
17
comment memory leak in c++
Is this even legal in C or C++? There isn't a leak, just a dangling resource that cannot be accessed.
Nov
17
comment Impressing Ruby example
That's actually a really cool library. There isn't anything that really screams - "Ruby ROCKS!".
Nov
17
answered memory leak in c++
Nov
16
accepted C99 backward compatibility
Nov
16
answered C99 backward compatibility
Nov
15
answered How to get internal IP, external IP and default gateway for UPnP
Nov
15
comment Linked List Ocaml
Is this homework by any chance? If so, please tag it as such.
Nov
15
answered Linked List Ocaml
Nov
15
comment Sending an int over TCP (C-programming)
It does sound like a FIN. The server side closing the socket will result in receiving zero bytes on the client side. I knew that there was a reason that I wrapped all of my TCP code in a library so long ago ;)
Nov
15
revised Sending an int over TCP (C-programming)
Added update about partial reads
Nov
15
comment change 2 byte in a string
Hmmm... how do you replace a single byte in a string? Strings are immutable.
Nov
15
comment File projection into memory using mmap
Check the return value of msync. My guess is that it is failing, returning -1, and setting errno to EINVAL (22). Try calling msync(buffer, dataos.st_size, MS_SYNC) before calling munmap.
Nov
15
comment C structs don’t define types?
@Steve - absolutely correct. Never use a leading underscore followed by an uppercase letter (this is in paragraph 4 of section 6.10.8 for C99)
Nov
15
answered C structs don’t define types?
Nov
15
comment Free activity diagram editor
See stackoverflow.com/questions/15376/…
Nov
15
comment File projection into memory using mmap
After you finish modifying all of the values, call msync() on the entire data segment. If the changes to each structure need to be visible during the modification, then call msync(&buffer[i], sizeof(buffer[i]), MS_SYNC) after you do the modification. I'm not sure if you can safely due the latter though since the individual buffer elements are probably not page aligned. Better to do the whole segment at one time after the loop is done.
Nov
15
answered Sending an int over TCP (C-programming)
Nov
15
comment C comma operator
+1: I was just looking for this. I believe that the more in depth reason is that the comma operator introduces a sequence point.
Nov
15
comment File projection into memory using mmap
Are you missing a do after the call to read?
Nov
15
answered File projection into memory using mmap
Nov
15
comment What’s the purpose of tainting Ruby objects?
Oops, I forgot to mention that. Thanks ephemient.
Nov
15
answered What’s the purpose of tainting Ruby objects?
Nov
14
answered Compiling program within another program using gcc
Nov
14
comment How do I make Perl scripts recognize parameters in the Win32 cmd console?
@Keith: could you check the value type if you are still following this? Is the new value REG_EXPAND_SZ by any chance?
Nov
14
revised How do I make Perl scripts recognize parameters in the Win32 cmd console?
Added an update about registry types
Nov
14
answered Build Process - What to use?
Nov
13
comment Is nesting namespaces an overkill?
+1: try to avoid using in any case... it just causes unnecessary grief in the end.
Nov
13
comment How can i find a value in a map using binders only
@daniel: didn't even think of that when I named it... it does look a little like something that should mimic find_first.
Nov
13
comment How can i find a value in a map using binders only
I like the note. I have a header called container.h that does this for most of the algorithms in a separate namespace called, you guested it, container.
Nov
13
revised How can i find a value in a map using binders only
Boist -> Boost
Nov
13
answered How can i find a value in a map using binders only
Nov
13
awarded  Nice Answer
Nov
11
answered The pains of creating a global application
Nov
10
comment csv output format from sqlplus run in a Unix script
Note sure what you are asking for here but a good start would be to include some sample input snippets. Going from input to output on a text stream usually implies some interesting sed or awk usage. But we need to see a sample of what sqlplus generates and what you want in the output. Sounds like a good job for sed, awk, or perl.
Nov
9
answered Windows service runs file locally but not on server