User D.Shawley - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T00:52:10Zhttp://stackoverflow.com/feeds/user/41747http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1799072/c-short-circuiting-of-booleans/1799101#17991011Answer by D.Shawley for C++ short-circuiting of booleansD.Shawley2009-11-25T18:42:32Z2009-11-25T18:42:32Z<p>C++ applies <a href="http://en.wikipedia.org/wiki/Short-circuit%5Fevaluation" rel="nofollow">short circuiting</a> to Boolean expression evaluation so, the <code>B == 2</code> is never evaluated and the compiler may even omit it entirely.</p>
http://stackoverflow.com/questions/1778487/python-subclass-with-c-baseclass/1779076#17790761Answer by D.Shawley for Python subclass with C++ baseclassD.Shawley2009-11-22T15:42:31Z2009-11-22T15:42:31Z<p>My guess is that <code>Foo</code> is not derived from <code>mybase</code> in the eyes of the C++ environment. I'm not sure if SWIG can pull this off since it requires a bidirectional understanding of inheritance - Python class uses C++ class as base and C++ code recognizes the inheritance relationship. I would take a serious look into Boost.python since it seems to support the functionality that you are after. <a href="http://wiki.python.org/moin/boost.python/Inheritance" rel="nofollow">Here's an entry on wiki.python.org about it.</a></p>
http://stackoverflow.com/questions/1775403/using-snprintf-to-avoid-buffer-overruns/1775487#17754872Answer by D.Shawley for using snprintf to avoid buffer overrunsD.Shawley2009-11-21T13:30:44Z2009-11-21T13:30:44Z<p>As others have said, you do not need the -1 in this case. If the array is fixed size, I would use <code>strncpy</code> instead. It was made for copying strings - <code>sprintf</code> was made for doing difficult formatting. However, if the size of the array is unknown or you are trying to determine how much storage is necessary for a formatted string. This is what I really like about the Standard specified version of <code>snprintf</code>:</p>
<pre><code>char* get_error_message(char const *msg) {
size_t needed = snprintf(NULL, 0, "%s: %s (%d)", msg, strerror(errno), errno);
char *buffer = malloc(needed);
snprintf(buffer, needed, "%s: %s (%d)", msg, strerror(errno), errno);
return buffer;
}
</code></pre>
<p>Combine this feature with <code>va_copy</code> and you can create very safe formatted string operations.</p>
http://stackoverflow.com/questions/1775447/what-is-the-simplest-way-to-create-my-own-ftp-server/1775458#17754580Answer by D.Shawley for What is the simplest way to create my own FTP server?D.Shawley2009-11-21T13:17:05Z2009-11-21T13:17:05Z<p>Any reason for not using the FTP server that is bundled with IIS? I'm not sure if it can draw its user credentials from SQL Server but I would try like hell to find a way to extend it instead of creating my own.</p>
http://stackoverflow.com/questions/1750194/smtp-why-does-email-needs-envelope-and-what-does-the-envelope-mean/1767262#17672620Answer by D.Shawley for smtp: why does email needs envelope and what does the envelope meanD.Shawley2009-11-19T23:14:40Z2009-11-19T23:14:40Z<p>The envelope is used by the SMTP server and the message headers are used by a mail reader as everyone else has said.</p>
<p>What has not been said is that the <code>RCPT TO:</code> is used to route the message to a specific user regardless of where the user's name appears in the headers. The user does not necessarily need to appear in the <code>To:</code> or even the <code>Cc:</code> headers. Think of a <code>Bcc:</code> where the only thing that the receiver knows is who the message was from. In this case, the <code>To:</code> and <code>CC:</code> headers should be empty - hence the <em>blind</em> part of BCC. In another case, if an email message has the user mentioned in the CC list along with 10 other users, how can the SMTP routing pick the appropriate user. The answer is that it uses the <code>RCPT</code> line to route the message.</p>
<p>This is also used when routing via mailing lists. The To: header will contain the mailing list e-mail address. An SMTP system will generate separate messages for each user in the list each with a specific <code>RCPT TO: user@host...</code> envelope. In this case, the user's name will not even appear in any of the other headers.</p>
http://stackoverflow.com/questions/1757253/how-can-i-write-a-wrapper-script-to-create-an-svn-branch/1757701#17577010Answer by D.Shawley for How can I write a wrapper script to create an svn branch?D.Shawley2009-11-18T17:28:09Z2009-11-18T17:28:09Z<p>Take a look at the <a href="http://subversion.tigris.org/issues/show%5Fbug.cgi?id=1258" rel="nofollow">svncopy Perl script noted in this defect</a>. It's a good start at what you need.</p>
http://stackoverflow.com/questions/1756324/proper-naming-query/1756408#17564081Answer by D.Shawley for Proper naming queryD.Shawley2009-11-18T14:33:16Z2009-11-18T14:33:16Z<p>In general, try to (1) minimize the number of interface functions and (2) provide precise and consistent names.</p>
<p>In the case of naming the <code>not is_void()</code> case, the first principle tells us to not have the function exist at all since the user can always negate the boolean return. In other words, <code>is_void()</code> is a constraint checking function, it is up to the caller to decide to explicitly negate the constraint as necessary.</p>
<p>The <code>install_...</code> and <code>remove_...</code> case is where the second principle applies. The problem with short verbs is that they are very ambiguous but it is not always possible to remove ambiguity through naming. What is most important is that they are as descriptive as possible and that you apply some consistent method. If you use <code>watch_...</code> and <code>unwatch_...</code>, use them consistently. Don't have <code>watch_errors</code> alongside <code>observe_warnings</code>. The inconsistency will cause users to look for reasons for the naming difference.</p>
<p>Personally, I prefer <code>install_..._handler</code> and <code>uninstall_..._handler</code> or <code>add_observer</code> with a filter condition over <code>watch_condition</code> and <code>unwatch_condition</code> simply because <em>unwatch</em> does not look like a <em>real word</em> to my eyes.</p>
http://stackoverflow.com/questions/1751376/memory-leak-in-c/1751396#17513966Answer by D.Shawley for memory leak in c++D.Shawley2009-11-17T20:03:53Z2009-11-17T20:03:53Z<p>If this is what you mean, then Yes - you are leaking memory.</p>
<pre><code>int *ary1 = new int[10];
ary1 = new int[20];
</code></pre>
http://stackoverflow.com/questions/1739656/c99-backward-compatibility/1739664#17396645Answer by D.Shawley for C99 backward compatibilityD.Shawley2009-11-16T02:01:37Z2009-11-16T02:01:37Z<p>I believe that they are compatible in that respect. That is as long as the stuff that you are compiling against doesn't step on any of the new goodies. For instance, if the old code contains <code>enum bool { false, true };</code> then you are in trouble. As a similar dinosaur, I am slowly embracing the wonderful new world of C99. After all, it has only been out there lurking for about 10 years now ;)</p>
http://stackoverflow.com/questions/1738733/how-to-get-internal-ip-external-ip-and-default-gateway-for-upnp/1738829#17388290Answer by D.Shawley for How to get internal IP, external IP and default gateway for UPnPD.Shawley2009-11-15T21:04:13Z2009-11-15T21:04:13Z<p>There is no general purpose mechanism that works on Windows and UNIX. Under Windows you want to start with <a href="http://msdn.microsoft.com/en-us/library/aa365943%28VS.85%29.aspx" rel="nofollow"><code>GetIfTable()</code></a>. Under most UNIX systems, try <a href="http://www.kernel.org/doc/man-pages/online/pages/man3/getifaddrs.3.html" rel="nofollow"><code>getifaddrs()</code></a>. Those will give you various things like the IP address of each interface.</p>
<p>I'm not sure how one would go about getting the default gateway. I would guess that it is available via some invocation of <code>sysctl</code>. You might want to start with the source for <a href="http://src.gnu-darwin.org/src/usr.bin/systat/netstat.c.html" rel="nofollow">the netstat utility</a>.</p>
<p>The external public address is something that a computer never knows. The only way is to connect to something on the internet and have it tell you what address you are coming from. This is one of the classic problems with IPNAT.</p>
http://stackoverflow.com/questions/1738758/linked-list-ocaml/1738780#17387804Answer by D.Shawley for Linked List OcamlD.Shawley2009-11-15T20:52:17Z2009-11-15T20:52:17Z<p><a href="http://www.lmgtfy.com/?q=linked+list+ocaml" rel="nofollow">Let me google that for you</a>. More seriously, doesn't OCaml already have lists as a primitive? I haven't done SML since college, but I seem to recall <code>head</code> and <code>tail</code> primitives. I see that other people have implemented a true linked list data structure out there though... check out <a href="http://bleu.west.spy.net/~dustin/projects/ocaml/doc/Linkedlist.html" rel="nofollow">Dustin's OCaml Linkedlist</a> for example.</p>
http://stackoverflow.com/questions/1737676/sending-an-int-over-tcp-c-programming/1737742#17377421Answer by D.Shawley for Sending an int over TCP (C-programming)D.Shawley2009-11-15T15:00:16Z2009-11-15T16:51:15Z<p>My guess is that the <code>read</code> is failing resulting in <code>com_result == -1</code>. In this case, the value of <code>ACK_ID</code> is undefined stack garbage. Try this instead:</p>
<pre><code>com_result = read(CLIENT_socket, &ACK_ID, sizeof(int), 0);
if (com_result < 0) {
perror("read");
} else if (com_result != sizeof(int)) {
/* handle partial read condition */
} else if (ACK_ID != metablocks[index].message_ID) {
printf("\n\t[ERROR] Failed to receive metadata. ACK: %i\n", ACK_ID);
}
</code></pre>
<p>There are a number of reasons that <code>read()</code> might fail or return a partial result - this is TCP after all. <a href="http://www.opengroup.org/onlinepubs/7990989775/xsh/perror.html" rel="nofollow"><code>Perror</code></a> will essentially call <a href="http://www.opengroup.org/onlinepubs/7990989775/xsh/strerror.html" rel="nofollow"><code>strerror(errno)</code></a> for you and display the message that you supply with the error string appended to it. When a system call like <code>read()</code> or <code>send()</code> returns -1, it sets <code>errno</code> to a more descriptive value that you can display using <code>perror()</code> or <code>strerror()</code>.</p>
<h2>Update - Partial Reads</h2>
<p>As for the partial read problem, you usually solve this by either (1) ignoring it or (2) doing the read in a loop until you get all of the bytes that you are expecting. Something like:</p>
<pre><code>int status = 0;
char *byte_ptr = (char*)&ACK_ID;
ssize_t bytes_left = sizeof(ACK_ID);
while (bytes_left > 0) {
ssize_t rc = read(CLIENT_socket, byte_ptr, bytes_left);
if (rc < 0) {
if (errno == EINTR) {
continue; /* interrupted system call */
}
perror("read");
status = -1;
break;
} else if (rc == 0) {
/* EOF */
break;
}
bytes_left -= rc;
byte_ptr += rc;
}
if (status == 0) {
if (bytes_left == 0) {
/* safely use the value stored in ACK_ID */
} else {
/* handle premature socket closure */
}
}
</code></pre>
<p>Usually this is wrapped in a common library function to make life easier. I would recommend reading <a href="http://www.kohala.com/start/unpv12e.html" rel="nofollow">W. Richard Steven's UNIX Network Programming, volume 1</a> if you haven't already. This is exactly what he does in his <code>readn()</code> library function.</p>
http://stackoverflow.com/questions/1737710/c-structs-dont-define-types/1737779#17377794Answer by D.Shawley for C structs don't define types?D.Shawley2009-11-15T15:13:02Z2009-11-15T15:13:02Z<p><code>struct Point</code> <strong>is the type</strong> just like <code>union Foo</code> would be a type. You can use <code>typedef</code> to alias it to another name - <code>typedef struct Point Point;</code>.</p>
http://stackoverflow.com/questions/1737582/file-projection-into-memory-using-mmap/1737612#17376122Answer by D.Shawley for File projection into memory using mmapD.Shawley2009-11-15T14:11:21Z2009-11-15T14:11:21Z<p>The call to <code>read()</code> is unnecessary. <code>Mmap()</code> <em>maps</em> the file contents into memory for you - that is why it is generally faster than reading the entire file using <code>read()</code>. You should be able to remove the call to <code>read()</code> altogether. There are some other problems with your code though.</p>
<p>If you want to modifications to actually be reflected in the disk file, then you should call <a href="http://www.opengroup.org/onlinepubs/7990989775/xsh/msync.html" rel="nofollow"><code>msync(buffer, dataos.st_size, MS_SYNC)</code></a>. When you are done, call <a href="http://www.opengroup.org/onlinepubs/7990989775/xsh/munmap.html" rel="nofollow"><code>munmap(buffer, dataos.st_size)</code></a> to release the shared memory segment. Think of <code>msync()</code> as the shared memory equivalent to <code>fflush()</code> and <code>munmap()</code> is similar to <code>close()</code>. The key difference between <code>munmap()</code> and <code>close()</code> is that the former does not flush buffers or synchronize to disk so you have to do it yourself.</p>
http://stackoverflow.com/questions/1736161/whats-the-purpose-of-tainting-ruby-objects/1736186#17361861Answer by D.Shawley for What's the purpose of tainting Ruby objects?D.Shawley2009-11-15T00:51:50Z2009-11-15T00:51:50Z<p>It used to be a pretty standard practice when writing CGIs in Perl. <a href="http://gunther.web66.com/FAQS/taintmode.html" rel="nofollow">There is even a FAQ on it.</a> The basic idea was that the run time could guarantee that you did not implicitly <em>trust</em> a tainted value.</p>
http://stackoverflow.com/questions/1735360/compiling-program-within-another-program-using-gcc/1735384#17353841Answer by D.Shawley for Compiling program within another program using gccD.Shawley2009-11-14T19:48:25Z2009-11-14T19:48:25Z<p>Learn how to call <a href="http://www.opengroup.org/onlinepubs/000095399/functions/fork.html" rel="nofollow"><code>fork()</code></a>, <a href="http://www.opengroup.org/onlinepubs/000095399/functions/exec.html" rel="nofollow"><code>exec()</code></a>, and <a href="http://www.opengroup.org/onlinepubs/000095399/functions/wait.html" rel="nofollow"><code>wait()</code></a>. You probably want to use <code>execv()</code> for this purpose.</p>
http://stackoverflow.com/questions/1695188/how-do-i-make-perl-scripts-recognize-parameters-in-the-win32-cmd-console/1695206#16952065Answer by D.Shawley for How do I make Perl scripts recognize parameters in the Win32 cmd console?D.Shawley2009-11-08T02:58:42Z2009-11-14T13:40:57Z<p>Hmmm... sounds like the file association for *.pl is messed up somehow. I'm not on a Windows box, so I can't test this. You can check the file association stuff with either the <code>ASSOC</code> or <code>FTYPE</code> command on the command-line. IIRC, "<code>ASSOC .pl</code>" should tell you what the <em>file type</em> is and "<code>FTYPE</code> <em>filetype</em> <em>command</em>" tells the shell what to do with a Perl script. Try something like:</p>
<pre><code>C:\> ASSOC .pl=perlscript
C:\> FTYPE perlscript=C:\Perl\bin\perl.exe %1 %*
</code></pre>
<p>From the looks of <a href="http://technet.microsoft.com/en-us/library/bb490912.aspx" rel="nofollow">one of the command references</a> that should do the trick. My guess is that the current association is not passing the parameters along to the script. You should be able to check that by using <code>ASSOC .pl</code> to figure out what the name of the file association is and then using <code>FTYPE</code> to print out the command that the shell is going to execute.</p>
<h2>Update</h2>
<p>I found an interesting thing that I want to note for posterity. I started seeing exactly this problem on a friends machine at work with respect to some Python scripts. <code>ASSOC</code> and <code>FTYPE</code> resulted in the expected output but the parameters were still not being passed along - <strong>exactly what was originally reported</strong>.</p>
<p>After a little digging, I found that the registry settings were created somewhere along the line as <code>REG_SZ</code> values. I deleted them and re-created them using <code>ASSOC</code> and <code>FTYPE</code> and everything started working... looking at the registry gave me the answer <strong>the new values were created as <code>REG_EXPAND_SZ</code>!</strong> These worked exactly as expected.</p>
http://stackoverflow.com/questions/1733890/build-process-what-to-use/1734240#17342401Answer by D.Shawley for Build Process - What to use?D.Shawley2009-11-14T13:33:30Z2009-11-14T13:33:30Z<p>If you intend to continue to be a "one person shop" and your projects are generally small, then you can probably get by with rolling your own build system. I would still recommend not doing it since having experience with commonly used build environments is a good thing to have on your resume.</p>
<p>I wrote a custom build system that we use at work about five years ago to handle some rather complex, multi-target builds that we have. We have been using it since about 2003 and continue to use it. However, I have been trying to move it towards Ant or even Make for the following reasons:</p>
<ol>
<li>The build system that I wrote runs on Windows and we have a need for other platforms. It could be rewritten to run elsewhere fairly easily, but the process management code is difficult to port easily.</li>
<li>Integration into a <a href="http://en.wikipedia.org/wiki/Continuous%5Fintegration" rel="nofollow">CI</a> environment is a pain if you are using a completely custom environment.</li>
<li>Adding support for different <a href="http://en.wikipedia.org/wiki/Source%5Fcontrol" rel="nofollow">SCM</a> technologies is a bear. We have needed support for Visual SourceSafe, Subversion, and Perforce so far.</li>
<li>Extending and maintaining it is a lot of work that <em>"adds no customer value"</em>.</li>
</ol>
<p>Now our environment is a little more complex than most since we do embedded systems development so it is not uncommon for a single product build to build with two or three different tool-chains on Windows, shell out to a Linux machine via ssh for a Linux only target, and <a href="http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx" rel="nofollow">psexec</a> to a remote Windows machine to utilize a node-locked compiler. It's really quite funny to look back and think that the build system that we have started with a single batch file, was rewritten using Perl to accommodate a mixture of declarative statements and programming language statements, then was written again in an Ant-like XML declarative style that shells out the batch or shell. Now I'm thinking about replacing all of that with Ant+Maven+Ivy or some similar chain.</p>
<p>Rolling my own build system was the correct decision for me at the time since we were a pretty small shop doing builds that were primarily based on command-line tools and there weren't a wide array of tools available at the time. Today, however, I would recommend taking a good and hard look at the available tools. After all, writing your own build system means that you will be spending time and money writing and maintaining it instead of writing <em>production code</em>.</p>
<p>There are a lot of tools available for the task today that handle almost any twisted idea that you can come up with. I think that the time spent learning an existing system and extending it to meet your needs is probably more worthwhile. I found the experience of writing Ant tasks quite interesting. Overall, this was a good learning experience even though I did it on a contract job that used Ant and CruiseControl to publish documents.</p>
http://stackoverflow.com/questions/1728847/how-can-i-find-a-value-in-a-map-using-binders-only/1728965#1728965-1Answer by D.Shawley for How can i find a value in a map using binders onlyD.Shawley2009-11-13T12:34:31Z2009-11-13T12:34:31Z<p>You can turn this problem around and just write your own algorithm and use it instead. This way you are not stuck with writing lots of little functors.</p>
<pre><code>template <typename Iter, typename T>
Iter find_second(Iter first, Iter last, T value) {
while (first != last) {
if (first->second == value) {
return first;
}
++first;
}
return first;
}
</code></pre>
<p><strong>Note</strong> this isn't tested or even compiled.</p>
<p>It seems to me that solving this with binders is just asking for lots of ugly code. What you are really asking for is a new algorithm so just add the algorithm. With that said, I would probably end up implementing something like <a href="http://stackoverflow.com/questions/1728847/how-can-i-find-a-value-in-a-map-using-binders-only/1728910#1728910">Matthieu M.</a> came up with.</p>
http://stackoverflow.com/questions/1717576/the-pains-of-creating-a-global-application/1717620#17176200Answer by D.Shawley for The pains of creating a global applicationD.Shawley2009-11-11T19:51:20Z2009-11-11T19:51:20Z<p>Take a look at how the <a href="http://www.mantisbt.org/" rel="nofollow">Mantis BugTracking software</a> handles internationalization. The method that they use is rather nice.</p>
http://stackoverflow.com/questions/1702079/windows-service-runs-file-locally-but-not-on-server/1702177#17021770Answer by D.Shawley for Windows service runs file locally but not on serverD.Shawley2009-11-09T16:35:41Z2009-11-09T16:35:41Z<p>Is the file extension registered on the server? It could be that the server is failing to find an action associated with <code>.avc</code>. You might want to move this to <a href="http://serverfault.com">ServerFault</a> since it is most likely a configuration or Windows OS version difference.</p>
http://stackoverflow.com/questions/1697048/is-sizet-portable/1697205#16972051Answer by D.Shawley for Is size_t portable?D.Shawley2009-11-08T17:16:00Z2009-11-08T17:16:00Z<p>As others have said, <code>size_t</code> is correct and perfectly acceptable for storing the result of <code>sizeof()</code> or the size of any representable object in bytes. What you have to watch out for is the following:</p>
<ol>
<li><code>size_t</code> is the same size as <em>some unsigned integer type</em>. It is not necessarily the same number of bytes as the largest unsigned integer type, <code>unsigned int</code>, <code>unsigned long</code>, etc.</li>
<li><code>sizeof(size_t)</code> is an implementation-defined number of bytes so <code>memcpy</code>'ing it or assigning into any integer type other than <code>uintmax_t</code> is a bad idea. I'm not even sure that it is safe to assume that it is of equal size or smaller than <code>uintmax_t</code>.</li>
<li>Writing a <code>size_t</code> value to a binary file and reading it back into a <code>size_t</code> by another process, on a different machine, or by something compiled with different compiler options can be hazardous to your health.</li>
<li>Sending a <code>size_t</code> value across a network and trying to receive it using a <code>sizeof(size_t)</code> buffer on the other side is rather unsafe.</li>
</ol>
<p>All of these are standard issues with any other integer type except <code>unsigned char</code>. So <code>size_t</code> is just as portable as any other integer type.</p>
http://stackoverflow.com/questions/1687860/why-is-typeinfo-declared-outside-namespace-std/1687931#16879310Answer by D.Shawley for Why is type_info declared outside namespace std?D.Shawley2009-11-06T14:23:33Z2009-11-06T14:23:33Z<p>Because Visual Studio does all sorts of tricks to allow for legacy code to work. IIRC, the Standard only states that <code>type_info</code> exist within the <code>std</code> namespace. It does not mandate that it not exist within the global namespace - that is really an implementation decision.</p>
<p><em>Caveat Emptor:</em> I haven't verified this in the Standard.</p>
http://stackoverflow.com/questions/1685503/using-message-queue-between-unrelated-processes/1685544#16855441Answer by D.Shawley for Using message queue between unrelated processesD.Shawley2009-11-06T05:11:50Z2009-11-06T05:11:50Z<p>IIRC, this is exactly the problem that the <a href="http://www.opengroup.org/onlinepubs/009695399/functions/ftok.html" rel="nofollow"><code>ftok(3)</code></a> is used to solve. The programs that need to communicate simply use a common path and key value. We used to pass the name of a FIFO on the command line to our programs. They would pass this into <code>ftok()</code> to generate the key for our shared memory segments.</p>
http://stackoverflow.com/questions/1685364/cleaning-hanging-ipcs-in-unix/1685510#16855100Answer by D.Shawley for Cleaning hanging IPCS in UNIXD.Shawley2009-11-06T05:03:07Z2009-11-06T05:03:07Z<p>Give something like this a try:</p>
<pre><code>ipcs -s | awk '$1=="s" && $5=="daveshawley" {print "-s",$2}' | xargs ipcrm
</code></pre>
<p>You will probably want to substitute the user's real name for mine of course. You might want to try this question over on <a href="http://superuser.com/">http://superuser.com/</a> as well</p>
http://stackoverflow.com/questions/1665214/version-control-for-non-programmers/1665256#16652561Answer by D.Shawley for Version Control for non-programmersD.Shawley2009-11-03T04:30:56Z2009-11-03T04:30:56Z<p>I can say that Subversion and Perforce are both problematic to non-technical users. We have been using Perforce as a document repository with some success. Though we have had more mistakes and problems than I care to talk about. We had slightly more success with Subversion and TortoiseSVN but even it was too difficult to most non-programmers to wrap their heads around. Though if you are lucky enough to have Mac OSX in the office, I would give <a href="http://stackoverflow.com/questions/1665214/version-control-for-non-programmers/1665220#1665220">rich's suggestion</a> a try.</p>
<p>I would recommend looking for a <a href="http://en.wikipedia.org/wiki/Content%5Fmanagement%5Fsystem" rel="nofollow">CMS</a> that supports history instead of a source repository. You should be able to find something out there that will do the job without too much work on your part.</p>
http://stackoverflow.com/questions/1657848/visual-c-compilers-default-options/1657857#16578571Answer by D.Shawley for Visual C++ compiler's default optionsD.Shawley2009-11-01T18:10:52Z2009-11-01T18:10:52Z<p>Check <code>cl /?</code> on <code>link /?</code> at the command line. I believe that the defaults differ for each version.</p>
http://stackoverflow.com/questions/1657673/trap-control-d-and-control-c/1657748#16577482Answer by D.Shawley for "Trap" control-d and control-cD.Shawley2009-11-01T17:36:17Z2009-11-01T17:36:17Z<p>If you are using a UNIX based system, then you want either <a href="http://www.opengroup.org/onlinepubs/009695399/functions/signal.html" rel="nofollow"><code>signal()</code></a> or <a href="http://www.opengroup.org/onlinepubs/009695399/functions/sigaction.html" rel="nofollow"><code>sigaction()</code></a> depending on your preference and threading model; personally, I would recommend <code>sigaction()</code> over <code>signal()</code>. You want to trap <code>SIGTSTP</code> and <code>SIGINT</code>. Read <a href="http://www.opengroup.org/onlinepubs/009695399/functions/xsh%5Fchap02%5F04.html" rel="nofollow">the <em>Signal Concepts</em> section of the Single UNIX Specification</a> for a good description of how to use them.</p>
<p>If you have some spare time, read the W. Richard Steven's classic <a href="http://www.apuebook.com/" rel="nofollow">Advanced Programming in the UNIX Environment</a>. You will never be sorry. If you expect to be doing more UNIX system's programming tasks, then pick up copies of <a href="http://rads.stackoverflow.com/amzn/click/0937175730" rel="nofollow">POSIX Programmers Guide</a> and <a href="http://rads.stackoverflow.com/amzn/click/1565920740" rel="nofollow">POSIX.4 Programmers Guide</a> as well. They serve as great introductions and references.</p>
http://stackoverflow.com/questions/1653066/setting-up-os-x-for-android-development-or-are-nix-environments-intentionally/1653212#16532124Answer by D.Shawley for Setting up OS X for Android development. OR Are *nix environments intentionally prohibitive?D.Shawley2009-10-31T02:33:01Z2009-10-31T02:33:01Z<p>If you do not have a <code>.profile</code> in your home directory, you can simply create it in your home directory - it is just a text file. One of the issues with owning and using a UNIX system is that you are going to have to understand how it works if you are going to develop code for it or use it as a development environment. This is no different than Windows or any other OS. </p>
<p>Take a few moments and <a href="http://rads.stackoverflow.com/amzn/click/0201823764" rel="nofollow">read</a> <a href="http://www.gnu.org/software/bash/manual/html%5Fnode/Bash-Startup-Files.html#Bash-Startup-Files" rel="nofollow">a little</a> <a href="http://littlesquare.com/2008/01/24/upgraded-to-leopard-making-use-of-etcpathsd-and-path%5Fhelper/" rel="nofollow">about</a> <a href="http://hubflanger.com/leopard-and-bash-shell-environment-paths/" rel="nofollow">the environment</a> and you will thank yourself in the future. As for <em>"an installer that puts things where ..."</em>, that is something that I would take up with your local Google representative. I've worked with plenty of Java-based packages that do this just fine on my MacBook.</p>
http://stackoverflow.com/questions/1652477/using-dos-cmd-batch-files-how-can-you-show-console-output-and-redirect-the-stdou/1652530#16525301Answer by D.Shawley for Using DOS/CMD/batch files how can you show Console output, and redirect the STDOUT and STDERR streams to files?D.Shawley2009-10-30T21:53:46Z2009-10-30T21:53:46Z<p>The only way that I have found to do this is by using some variant of the <a href="http://www.opengroup.org/onlinepubs/009695399/utilities/tee.html" rel="nofollow">UNIX <code>tee</code> command</a>. You would use it like:</p>
<pre><code>[your command] 2> error.log | tee ok.log
</code></pre>
http://stackoverflow.com/questions/1779459/multiplication-program-using-recursionin-c/1779517#1779517Comment by D.Shawley on multiplication program using recursion(in C)D.Shawley2009-11-23T00:04:31Z2009-11-23T00:04:31ZHmm... 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.http://stackoverflow.com/questions/1775403/using-snprintf-to-avoid-buffer-overruns/1775487#1775487Comment by D.Shawley on using snprintf to avoid buffer overrunsD.Shawley2009-11-22T21:22:28Z2009-11-22T21:22:28ZFor fixed length buffers, I usually use <code>strncpy(dest, src, sizeof(dest)); dest[sizeof(dest)-1] = '\0';</code> That guarantees NULL termination and is just less hassle than <code>snprintf</code> not to mention that a lot of people use <code>snprintf(dest, sizeof(dest), src);</code> instead and are very surprised when their programs crash arbitrarily.http://stackoverflow.com/questions/1778546/slow-response-from-getaddrinfoComment by D.Shawley on Slow response from getaddrinfoD.Shawley2009-11-22T13:42:12Z2009-11-22T13:42:12ZTry running something like FileMon and make sure that it is not doing something stupid like reading and parsing <code>c:\windows\system32\drivers\etc\services</code> and <code>c:\windows\system32\drivers\etc\hosts</code> every time that you call <code>getaddrinfo()</code>.http://stackoverflow.com/questions/1777574/what-does-union-u-look-like-in-the-memory/1777623#1777623Comment by D.Shawley on what does union U look like in the memory?D.Shawley2009-11-22T03:06:28Z2009-11-22T03:06:28Z@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.http://stackoverflow.com/questions/1777574/what-does-union-u-look-like-in-the-memory/1777622#1777622Comment by D.Shawley on what does union U look like in the memory?D.Shawley2009-11-22T03:02:41Z2009-11-22T03:02:41ZMost of this isn't really guaranteed. The compiler is free to insert padding between structure members so you can't rely on <code>A::x</code> overlapping with <code>B::a</code>, <code>B::b</code>, <code>B::c</code>, and <code>B::d</code>. You are guaranteed that <code>&A::x == &B::a</code>. If you replace the first four elements of <code>B</code> with <code>unsigned char a[4];</code> then all of the assumptions should be safe by the Standard.http://stackoverflow.com/questions/1751376/memory-leak-in-c/1751483#1751483Comment by D.Shawley on memory leak in c++D.Shawley2009-11-17T20:36:21Z2009-11-17T20:36:21ZIs this even legal in C or C++? There isn't a leak, just a dangling resource that cannot be accessed.http://stackoverflow.com/questions/1751186/impressing-ruby-example/1751331#1751331Comment by D.Shawley on Impressing Ruby exampleD.Shawley2009-11-17T20:08:58Z2009-11-17T20:08:58ZThat's actually a really cool <i>library</i>. There isn't anything that really screams - "Ruby ROCKS!".http://stackoverflow.com/questions/1738758/linked-list-ocamlComment by D.Shawley on Linked List OcamlD.Shawley2009-11-15T20:53:06Z2009-11-15T20:53:06ZIs this homework by any chance? If so, please tag it as such.http://stackoverflow.com/questions/1737676/sending-an-int-over-tcp-c-programmingComment by D.Shawley on Sending an int over TCP (C-programming)D.Shawley2009-11-15T16:56:15Z2009-11-15T16:56:15ZIt does sound like a <code>FIN</code>. 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 ;)http://stackoverflow.com/questions/1737782/change-2-byte-in-a-stringComment by D.Shawley on change 2 byte in a stringD.Shawley2009-11-15T15:27:32Z2009-11-15T15:27:32ZHmmm... how do you replace a single byte in a string? Strings are immutable.http://stackoverflow.com/questions/1737582/file-projection-into-memory-using-mmap/1737799#1737799Comment by D.Shawley on File projection into memory using mmapD.Shawley2009-11-15T15:25:34Z2009-11-15T15:25:34ZCheck the return value of <code>msync</code>. My guess is that it is failing, returning -1, and setting <code>errno</code> to <code>EINVAL</code> (22). Try calling <code>msync(buffer, dataos.st_size, MS_SYNC)</code> before calling <code>munmap</code>.http://stackoverflow.com/questions/1737710/c-structs-dont-define-types/1737729#1737729Comment by D.Shawley on C structs don't define types?D.Shawley2009-11-15T15:16:56Z2009-11-15T15:16:56Z@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)http://stackoverflow.com/questions/1737747/free-activity-diagram-editorComment by D.Shawley on Free activity diagram editorD.Shawley2009-11-15T15:05:40Z2009-11-15T15:05:40ZSee <a href="http://stackoverflow.com/questions/15376/whats-the-best-uml-diagramming-tool" rel="nofollow" title="whats the best uml diagramming tool">stackoverflow.com/questions/15376/…</a>http://stackoverflow.com/questions/1737582/file-projection-into-memory-using-mmap/1737612#1737612Comment by D.Shawley on File projection into memory using mmapD.Shawley2009-11-15T15:04:00Z2009-11-15T15:04:00ZAfter you finish modifying all of the values, call <code>msync()</code> on the entire data segment. If the changes to each structure need to be visible during the modification, then call <code>msync(&buffer[i], sizeof(buffer[i]), MS_SYNC)</code> after you do the modification. I'm not sure if you can safely due the latter though since the individual <code>buffer</code> elements are probably not page aligned. Better to do the whole segment at one time after the loop is done.http://stackoverflow.com/questions/1737634/c-comma-operator/1737646#1737646Comment by D.Shawley on C comma operatorD.Shawley2009-11-15T14:31:56Z2009-11-15T14:31:56Z+1: I was just looking for this. I believe that the more in depth reason is that the comma operator introduces a sequence point.