User Tom - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T06:47:40Z http://stackoverflow.com/feeds/user/40620 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1905228/supress-unused-variable-warning-in-c-compiler-bug-or-code-bug/1905366#1905366 0 Answer by Tom for Supress unused variable warning in C++ => Compiler bug or code bug? Tom 2009-12-15T05:35:02Z 2009-12-15T05:35:02Z <p>I'm not 100% sure that this is portable, but this is the idiom I've usually used for suppressing warnings about unused variables. The context here is a signal handler that is only used to catch <code>SIGINT</code> and <code>SIGTERM</code>, so if the function is ever called I know it's time for the program to exit.</p> <pre><code>volatile bool app_killed = false; int signal_handler(int signum) { (void)signum; // this suppresses the warnings app_killed = true; } </code></pre> <p>I tend to dislike cluttering up the parameter list with <code>__attribute__((unused))</code>, since the cast-to-void trick works without resorting to macros for Visual C++.</p> http://stackoverflow.com/questions/1905070/unit-testing-an-executable-project/1905308#1905308 0 Answer by Tom for Unit testing an executable project Tom 2009-12-15T05:15:35Z 2009-12-15T05:15:35Z <p>Unit-testing an executable can be a great idea - but realize that it's a whole different monster than unit-testing code. Once you have an executable, there is no more C++ or Boost. It's just a program. You need to be able to run it and analyze/control your inputs in a different mechanism:</p> <p>Input:</p> <ul> <li>arguments</li> <li><code>stdin</code></li> <li>environment variables (maybe)</li> <li>configuration files (maybe)</li> </ul> <p>Output:</p> <ul> <li>return value</li> <li><code>stdout</code></li> <li>output files (maybe)</li> </ul> <p>It's probably going to be easiest to run it inside a shell. <code>bash</code> will work wonders in a Linux environment (pipe to/from files, run <code>sed</code>/<code>awk</code>/<code>grep</code> on the output to analyze correctness). You could use Perl or Python and their own respective unit-testing frameworks, with the caveat that you have to wrap the invocation of your program in some other function: both languages support the notion of pipes from subprocesses, python with the <code>subprocess</code> module and Perl with its standard file-opening mechanism.</p> <p>Whatever you do, you do <em>not</em> want to try to unit-test an entire executable from C++.</p> http://stackoverflow.com/questions/1878001/how-do-i-check-if-a-c-string-starts-with-a-certain-string-and-convert-a-subs/1878467#1878467 2 Answer by Tom for How do I check if a C++ <string> starts with a certain string, and convert a substring to an int? Tom 2009-12-10T03:29:00Z 2009-12-10T03:29:00Z <p>At the risk of being flamed for using C constructs, I do think this <code>sscanf</code> example is more elegant than most Boost solutions. And you don't have to worry about linkage if you're running anywhere that has a Python interpreter!</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;string.h&gt; int main(int argc, char **argv) { for (int i = 1; i != argc; ++i) { int number = 0; int size = 0; sscanf(argv[i], "--foo=%d%n", &amp;number, &amp;size); if (size == strlen(argv[i])) { printf("number: %d\n", number); } else { printf("not-a-number\n"); } } return 0; } </code></pre> <p>Here's some example output that demonstrates the solution handles leading/trailing garbage as correctly as the equivalent Python code, and more correctly than anything using <code>atoi</code> (which will erroneously ignore a non-numeric suffix).</p> <pre><code>$ ./scan --foo=2 --foo=2d --foo='2 ' ' --foo=2' number: 2 not-a-number not-a-number not-a-number </code></pre> http://stackoverflow.com/questions/1855859/curving-from-one-point-to-another/1855947#1855947 0 Answer by Tom for Curving from one point to another Tom 2009-12-06T17:28:48Z 2009-12-06T17:28:48Z <p>Have a look at <a href="http://freespace.virgin.net/hugo.elias/models/m_perlin.htm" rel="nofollow">this page about Perlin Noise</a>, in particular the "Interpolation" section. The general idea is that instead of a linear transfer function over <code>t</code> in <code>[0, 1]</code>, you can apply something to result in smoother curves. The "smoothest" noise is a <code>cos(t)</code> function, but cubic or quintic polynomials can be used to approximate a cosine.</p> http://stackoverflow.com/questions/1844669/benefits-of-x87-over-sse 3 Benefits of x87 over SSE Tom 2009-12-04T03:33:24Z 2009-12-04T06:19:19Z <p>I know that x87 has higher internal precision, which is probably the biggest difference that people see between it and SSE operations. But I have to wonder, is there any other benefit to using x87? I have a habit of typing <code>-mfpmath=sse</code> automatically in any project, and I wonder if I'm missing anything else that the x87 FPU offers.</p> http://stackoverflow.com/questions/1793691/stdtime0-performance/1794286#1794286 0 Answer by Tom for std::time(0) performance Tom 2009-11-25T02:26:59Z 2009-11-25T02:26:59Z <p>To satisfy your curiosity, I'd like to point out that <code>std::time()</code> is <em>usually</em> a system call. However, I do know that in some cases, the OS may use approximations based on something like the hardware clock-tick counter (<code>rdtsc</code> instruction on x86) if the last call was executed recently. This is very efficient in the expected case, and IMHO it's not any less accurate, given that avoiding a system call results in much more deterministic behavior.</p> <p>But yeah, re-seeding your RNG shouldn't <em>ever</em> be the bottleneck in your application.</p> http://stackoverflow.com/questions/1692184/best-way-to-convert-epoch-time-to-real-date-time/1693298#1693298 0 Answer by Tom for Best way to convert epoch time to "real" date/time Tom 2009-11-07T14:55:11Z 2009-11-07T14:55:11Z <p>OK, so I know you're looking for a procedural solution... but if you haven't seen it already, check out <a href="http://www.epochconverter.com" rel="nofollow">http://www.epochconverter.com</a>. It is a very useful way to check your work :)</p> http://stackoverflow.com/questions/1658061/organising-project-dependencies/1658238#1658238 1 Answer by Tom for Organising project dependencies Tom 2009-11-01T20:37:09Z 2009-11-01T20:37:09Z <p>Some people may suggest the addon "Solution Build Environment". I would recommend you do NOT use that - use property sheets instead, as James says. Reasons to avoid Solution Build Environment:</p> <ol> <li>It doesn't work with batch builds - it uses the environment from the current configuration to build the entire batch, which will result in incorrect compiler/linker flags and hard-to-track build errors (because if you build one configuration at a time, the problem doesn't show up).</li> <li>It forces a third-party dependency onto your users. Someone needs to install this add-on in order to build with your projects.</li> <li>It varies per-solution instead of per-project. That means, someone else may bring in your projects as dependencies, but will not automatically bring in all of the environment settings your projects need.</li> <li>It is difficult to track down where settings come from. Property sheets are integrated into the GUI, and are fairly easy to browse. <code>.slnenv</code> files, on the other hand, have no IDE integration, and so changes will be harder to track down.</li> <li>Property sheets can define so many specific settings, that the actual settings in any given <code>.vcproj</code> file are empty. I define all of my settings in property sheets, and then individual projects only need to define which property sheets they inherit. Because Solution Build Environment only defines environment variables ("macros" as MS calls them), the project files will still be cluttered with settings, even if they all just refer to those environment variables. That's a mess.</li> </ol> http://stackoverflow.com/questions/740817/behavior-of-shutdownsock-shutrd-with-tcp/1616486#1616486 1 Answer by Tom for Behavior of shutdown(sock, SHUT_RD) with TCP Tom 2009-10-23T23:42:01Z 2009-10-23T23:42:01Z <p>Shutting down the read side of a socket will cause any blocked <code>recv</code> (or similar) calls to return <code>0</code> (indicating graceful shutdown). I don't know what will happen to data currently traveling up the IP stack. It will most certainly ignore data that is in-flight from the other side. It will not affect writes to that socket at all.</p> <p>In fact, judicious use of <code>shutdown</code> is a good way to ensure that you clean up as soon as you're done. An HTTP client that doesn't use keepalive can shutdown the write-side as soon as it is done sending the request, and a server that sees <code>Connection: closed</code> can likewise shutdown the read-side as soon as it is done receiving the request. This will cause any further erroneous activity to be immediately obvious, which is very useful when writing protocol-level code.</p> http://stackoverflow.com/questions/1615447/disable-tcp-delayed-acks 2 Disable TCP Delayed ACKs Tom 2009-10-23T19:28:25Z 2009-10-23T20:06:49Z <p>I have an application that receives relatively sparse traffic over TCP with no application-level responses. I believe the TCP stack is sending delayed ACKs (based on glancing at a network packet capture). What is the recommended way to disable delayed-ACK in the network stack for a single socket? I've looked at <code>TCP_QUICKACK</code>, but it seems that the stack will change it under my feet anyways.</p> <p>This is running on a Linux 2.6 kernel, and I am not worried about portability.</p> http://stackoverflow.com/questions/1610836/branchless-code-that-maps-zero-negative-and-positive-to-0-1-2/1610994#1610994 2 Answer by Tom for Branchless code that maps zero, negative, and positive to 0, 1, 2 Tom 2009-10-23T01:44:31Z 2009-10-23T01:44:31Z <p>I'm siding with Tordek's original answer:</p> <pre><code>int compare(int x, int y) { return (x &lt; y) + 2*(y &lt; x); } </code></pre> <p>Compiling with <code>gcc -O3 -march=pentium4</code> results in branch-free code that uses conditional instructions <code>setg</code> and <code>setl</code> (see this <a href="http://www.osdata.com/topic/language/asm/logicop.htm" rel="nofollow">explanation of x86 instructions</a>).</p> <pre><code>push %ebp mov %esp,%ebp mov %eax,%ecx xor %eax,%eax cmp %edx,%ecx setg %al add %eax,%eax cmp %edx,%ecx setl %dl movzbl %dl,%edx add %edx,%eax pop %ebp ret </code></pre> http://stackoverflow.com/questions/1610668/project-level-c-exception-handling-strategy/1610963#1610963 0 Answer by Tom for Project level c++ exception handling strategy Tom 2009-10-23T01:32:36Z 2009-10-23T01:32:36Z <p>Regardless of what you decide here, I would encourage you to pound--or at least gently tap--the notion of eception-safety into the other developers' heads. In my experience, the process of writing exception-safe code has resulted in more cleanly-designed, transactional code.</p> <p>As a benefit, that coding style works regardless of the presence of exceptions, whereas the reverse is not true.</p> http://stackoverflow.com/questions/1610029/getters-and-setters-style/1610939#1610939 1 Answer by Tom for getters and setters style Tom 2009-10-23T01:21:57Z 2009-10-23T01:21:57Z <p>Another issue no one else has mentioned is the case of function overloading. Take this (contrived and incomplete) example:</p> <pre><code>class Employee { virtual int salary() { return salary_; } virtual void salary(int newSalary) { salary_ = newSalary; } }; class Contractor : public Employee { virtual void salary(int newSalary) { validateSalaryCap(newSalary); Employee::salary(newSalary); } using Employee::salary; // Most developers will forget this }; </code></pre> <p>Without that <code>using</code> clause, users of <code>Contractor</code> cannot query the salary because of the overload. I recently added <code>-Woverloaded-virtual</code> to the warning set of a project I work on, and lo and behold, this showed up all over the place.</p> http://stackoverflow.com/questions/1601261/marking-standard-functions-as-deprecated-unusable 4 Marking standard functions as deprecated/unusable Tom 2009-10-21T14:37:02Z 2009-10-21T15:23:54Z <p>I have a large codebase that uses a number of unsafe functions, such as <code>gmtime</code> and <code>strtok</code>. Rather than trying to search through the codebase and replace these wholesale, I would like to make the compiler emit a warning or error when it sees them (to highlight the problem to maintenance developers). Is this possible with GCC?</p> <p>I already know about <code>__attribute__((deprecated))</code>, but AFAIK I can't use it since I don't have control of the header files where these functions are declared.</p> http://stackoverflow.com/questions/1584907/how-to-implement-monkey-patch-in-c/1585032#1585032 0 Answer by Tom for How to implement monkey patch in C++? Tom 2009-10-18T14:29:15Z 2009-10-18T14:29:15Z <p>To add to other answers, consider that any function exposed through a shared object or DLL (depending on platform) can be overridden at run-time. Linux provides the <code>LD_PRELOAD</code> environment variable, which can specify a shared object to load after all others, which can be used to override arbitrary function definitions. It's actually about the best way to provide a "mock object" for unit-testing purposes, since it is not really invasive. However, unlike other forms of monkey-patching, be aware that a change like this is global. You can't specify one particular call to be different, without impacting other calls.</p> http://stackoverflow.com/questions/1582790/network-programming-soap-vs-diy-marshalling-with-xml-library/1582874#1582874 0 Answer by Tom for Network programming: SOAP vs DIY marshalling with XML library? Tom 2009-10-17T18:25:04Z 2009-10-17T18:25:04Z <p>If you look around at RESTful interfaces on the net, you'll notice that SOAP is nearly universally <em>avoided</em>. SOAP is such a complex beast that it effectively locks out languages with no existing SOAP package, since nobody is going to implement it themselves. Raw XML, on the other hand, is pretty universal at this point, and not that difficult to implement in-house if necessary.</p> http://stackoverflow.com/questions/1574861/specify-the-name-of-compiled-binary-exe-within-source-code-in-visual-studio-2/1576024#1576024 0 Answer by Tom for Specify the name of compiled binary (*.exe) within source code in Visual Studio 2008 Tom 2009-10-16T01:29:45Z 2009-10-16T01:29:45Z <p>If you don't want to stray too far from a stock Visual C++ installation, you should consider using <a href="http://msdn.microsoft.com/en-us/library/dd9y37ha.aspx" rel="nofollow">NMake</a>. It can integrate with the IDE using project files, but it can also simply be run from the command-line very easily. It's also far more lightweight than project files for generating an arbitrary number of simple and similar executables.</p> http://stackoverflow.com/questions/1571901/c-fixed-length-string-class/1571977#1571977 0 Answer by Tom for C++ fixed length string class? Tom 2009-10-15T12:10:14Z 2009-10-15T12:10:14Z <p>There's probably something in boost that provides this (the closest I've personally seen is Boost.Array, which is insufficient). However, if you're just looking to model the "important subset" of <code>std::string</code>, it's not very difficult to make a fixed-length equivalent:</p> <pre><code>template &lt;typename N&gt; class fixed_string { // ... interface looks like std::string }; </code></pre> <p>For anyone asking about why bothering to do this at all, the main benefit is to avoid memory allocation without losing most of the useful <code>std::string</code> API. If there's another way to do this with <code>std::allocator</code>, I'd be curious to know.</p> http://stackoverflow.com/questions/1113943/should-i-use-defines-or-enums-for-commands-over-network/1114067#1114067 1 Answer by Tom for Should I use #defines or enums for commands over network? Tom 2009-07-11T16:30:21Z 2009-07-11T16:30:21Z <p>I would also recommend using a line-delimited text-based protocol. Aside from not having to worry about <code>enum</code>-vs.<code>#define</code> values, there are some other benefits:</p> <h3>hacking/testing</h3> <p>It's very easy to manually generate a set of commands for text-based protocols. Consider testing error conditions on an HTTP server:</p> <pre><code>$ telnet www.yahoo.com 80 Trying 69.147.76.15... Connected to www-real.wa1.b.yahoo.com. Escape character is '^]'. GOAT / HTTP/1.1 </code></pre> <p>I don't need anything fancy to understand how the server responded:</p> <pre><code>HTTP/1.1 400 Bad Request Date: Sat, 11 Jul 2009 16:20:59 GMT Cache-Control: private Connection: close Transfer-Encoding: chunked Content-Type: text/html; charset=iso-8859-1 </code></pre> <p>This is <em>great</em> for debugging. You can create a set of test scripts to feed into a <code>telnet</code>/<code>nc</code> and they'll be much easier to maintain than any binary-protocol test scripts.</p> <h3>portability</h3> <p>If you define your protocol in terms of ASCII text (or maybe UTF-8), you never have to worry about lower-level issues on new platforms. Endianness, structure alignment, and word size are all issues when dealing with a binary protocol. ASCII may require an extra serialize/deserialize step, but in a networking protocol that's generally necessary anyways.</p> <h3>sharing</h3> <p>If you want to work with other people on a project, it's great to be able to describe network operations as plain-ole-text. If someone else wants to develop their own client, there's no requirement for them to use your header files or anything, they just have to adhere to an RFC-like standard. This is not useful for a pet project, but it's a good thing to consider for anything that may get larger.</p> http://stackoverflow.com/questions/1056244/stdmap-and-performance-intersecting-sets/1056274#1056274 1 Answer by Tom for std::map and performance, intersecting sets Tom 2009-06-29T01:58:10Z 2009-06-29T01:58:10Z <p>Without knowing any more about your problem, "check with a good profiler" is the best general advise I can give. Beyond that...</p> <p>If memory allocation is your problem, switch to some sort of pooled allocator that reduces calls to <code>malloc</code>. Boost has a number of custom allocators that should be compatible with <code>std::allocator&lt;T&gt;</code>. In fact, you may even try this before profiling, if you've already noticed debug-break samples always ending up in <code>malloc</code>.</p> <p>If your number-space is known to be dense, you can switch to using a <code>vector</code>- or <code>bitset</code>-based implementation, using your numbers as indexes in the vector.</p> <p>If your number-space is mostly sparse but has some natural clustering (this is a big <em>if</em>), you may switch to a map-of-vectors. Use higher-order bits for map indexing, and lower-order bits for vector indexing. This is functionally very similar to simply using a pooled allocator, but it is likely to give you better caching behavior. This makes sense, since you are providing more information to the machine (clustering is explicit and cache-friendly, rather than a random distribution you'd expect from pool allocation).</p> http://stackoverflow.com/questions/973409/how-do-you-disable-closing-an-application-when-it-is-not-responding/973436#973436 1 Answer by Tom for How do you disable closing an application when it is not responding? Tom 2009-06-10T02:29:43Z 2009-06-10T02:29:43Z <p>Don't. No matter how important you think your application is, your users' ability to control their own systems is more important.</p> http://stackoverflow.com/questions/883414/what-can-i-do-if-two-methods-call-each-other-and-i-dont-want-to-make-one-of-them/891067#891067 1 Answer by Tom for What can I do if two methods call each other and I don't want to make one of them public in the header file? Tom 2009-05-21T01:48:34Z 2009-05-21T01:48:34Z <p>If you really want the functions to be private, you need to declare them as <code>static</code>. To eliminate the cyclic dependency, one should be declared before the other is defined. Here's a simple example:</p> <pre><code>static void b(); /* forward declaration */ static void a() { if (foo) b(); /* forward-declared, so we're ok */ } static void b() { if (bar) a(); /* already defined, so we're ok */ } </code></pre> <p>This is all valid C, and so based on the OP's comment I assume this is valid ObjC as well.</p> http://stackoverflow.com/questions/293142/whats-your-biggest-visual-studio-2008-annoyance/845590#845590 0 Answer by Tom for What's Your Biggest Visual Studio 2008 Annoyance? Tom 2009-05-10T16:11:00Z 2009-05-10T16:11:00Z <p>Two complaints:</p> <ul> <li><p>Custom build rules are source-based, instead of target-based, and they operate by file extension. That means if I want to add a custom step (such as unit-test boilerplate generation for <a href="http://cxxtest.tigris.org/" rel="nofollow">CxxTest</a>), I need to create a new type of file, <code>foo.unit</code> and define a rule that operates on <code>*.unit</code> files.</p></li> <li><p>Refusal to support C99 features. I want my <code>&lt;stdint.h&gt;</code>, <code>&lt;inttypes.h&gt;</code>. I know not a lot of people use C anymore, but C99 headers are at least accessible from C++, and I hate resorting to third-party projects for something like this.</p></li> </ul> http://stackoverflow.com/questions/845447/winsock-uncontrollably-spawns-several-persistent-threads/845568#845568 1 Answer by Tom for Winsock uncontrollably spawns several, persistent threads Tom 2009-05-10T16:00:16Z 2009-05-10T16:00:16Z <p>One direction to look in (just a guess): If these are TCP connections, these may be background threads to handle internal TCP-related timers. I don't know why they would use one thread per connection, but <em>something</em> has to do the background work there.</p> http://stackoverflow.com/questions/817337/i-notice-ints-and-longs-have-the-same-size-why/817348#817348 12 Answer by Tom for I notice ints and longs have the same size. Why? Tom 2009-05-03T15:47:17Z 2009-05-03T15:47:17Z <p>This is a result of the loose nature of size definitions in the C and C++ language specifications. I believe C has specific minimum sizes, but the only rule in C++ is this:</p> <pre><code>1 == sizeof(char) &lt;= sizeof(short) &lt;= sizeof(int) &lt;= sizeof(long) </code></pre> <p>Moreover, <code>sizeof(int)</code> and <code>sizeof(long)</code> are not the same size on all platforms. Every 64-bit platform I've worked with has had <code>long</code> fit the natural word size, so 32 bits on a 32-bit architecture, and 64 bits on a 64-bit architecture.</p> http://stackoverflow.com/questions/745897/reading-an-input-file-in-c/746027#746027 0 Answer by Tom for Reading an input file in C++ Tom 2009-04-14T01:42:13Z 2009-04-14T01:59:05Z <p>Just tested this... it works, and doesn't require anything outside of the C++ standard library.</p> <pre><code>#include &lt;iostream&gt; #include &lt;map&gt; #include &lt;string&gt; #include &lt;algorithm&gt; #include &lt;iterator&gt; #include &lt;cctype&gt; #include &lt;sstream&gt; using namespace std; // just because this is an example... static void print(const pair&lt;string, double&gt; &amp;p) { cout &lt;&lt; p.first &lt;&lt; " = " &lt;&lt; p.second &lt;&lt; "\n"; } static double to_double(const string &amp;s) { double value = 0; istringstream is(s); is &gt;&gt; value; return value; } static string trim(const string &amp;s) { size_t b = 0; size_t e = s.size(); while (b &lt; e &amp;&amp; isspace(s[b])) ++b; while (e &gt; b &amp;&amp; isspace(s[e-1])) --e; return s.substr(b, e - b); } static void readINI(istream &amp;is, map&lt;string, double&gt; &amp;values) { string key; string value; while (getline(is, key, '=')) { getline(is, value, '\n'); values.insert(make_pair(trim(key), to_double(value))); } } int main() { map&lt;string, double&gt; values; readINI(cin, values); for_each(values.begin(), values.end(), print); return 0; } </code></pre> <p>EDIT: I just read the original question and noticed I'm not producing an exact answer. If you don't care about the key names, juts discard them. Also, why do you need to identify the difference between integer values and floating-point values? Is <code>1000</code> an integer or a float? What about <code>1e3</code> or <code>1000.0</code>? It's easy enough to check if a given floating-point value is integral, but there is a clas of numbers that are both valid integers and valid floating-point values, and you need to get into your own parsing routines if you want to deal with that correctly.</p> http://stackoverflow.com/questions/736397/how-common-is-pear-in-the-real-world/736843#736843 4 Answer by Tom for How common is PEAR in the real world? Tom 2009-04-10T06:00:32Z 2009-04-10T06:00:32Z <p>In my (limited) experience, every PEAR project that was potentially interesting had major points against it:</p> <ul> <li>Code is targetted at the widest audience possible. There are hacks in place all over the place to deal with old/unsupported PHP versions. New useful features are ignored if they can't be emulated on older versions, meaning you end up lagging behind the core language development.</li> <li>Any given project tends to grow until it solves everyone's problem with a single simple <code>include</code>. When your PHP interpreter has to process all of that source code on every page hit (because the authors may not have designed it to be opcode-cache-friendly), there is a measurable overhead for processing thousands of unused lines of code.</li> <li>Style was always inconsistent. It never felt like I was learning generalizable APIs like in other languages.</li> </ul> <p>I used to use <code>PEAR::DB</code> at work. We discovered that most of our scripts spent their time inside PEAR code instead of our own code. Replacing that with a very simple wrapper around <code>pgsql_*</code> functions significantly reduced execution time and increased runtime safety, due to the use of <em>real</em> prepared statements. <code>PEAR::DB</code> used its own (incorrect at the time) prepared-statement logic for Postgres because the native <code>pgsql_</code> functions were too new to be used everywhere.</p> <p>Overall, I feel like PEAR is good as a "starter library" in many cases. It is likely to be higher quality code than any individual will produce in a short amount of time. But I would certainly not use it in a popular public-facing website (at least, not without a lot of tweaking by hand... maintaining my own fork).</p> http://stackoverflow.com/questions/695442/masters-degree-with-experience-would-you-hire-me-with-a-postgrad-degree/695669#695669 0 Answer by Tom for Masters Degree with Experience. Would you hire me with a postgrad degree? Tom 2009-03-30T00:11:28Z 2009-03-30T00:11:28Z <p>There are some obvious pros and cons that I notice when talking with PhD+ candidates:</p> <p>Pros:</p> <ul> <li>Generally interested in precision and correctness, as opposed to just hacking through a toothpicks-and-straws solution.</li> </ul> <p>Cons:</p> <ul> <li>Resume is <em>way</em> too long. Grad students get used to writing C.V.s and expect recruiters to wade through 4 pages of crap to find a few salient sentences. This probably shouldn't be a con, but the reality is that it is, because recruiters for the best jobs often have to wade through tons of resumes.</li> <li>CS Researchers generally have the luxury of defining the exact problem they can solve, and providing an optimal solution. In the workplace, the exact problem is provided by the existing environment, and optimal solutions don't exist. This can actually <em>hurt</em> someone's ability to do problem-solving on the job, because the constraints are so different.</li> </ul> <p>Personally, I've made a conscious effort to avoid generalization during the interview process, but I have encountered people who simply weren't interested in anyone who "spent too much time in school". <b>However</b>, that's not to say that you shouldn't get a higher degree. If you want to work in industry after college, make sure you work in industry in parallel with your degree (co-ops, internships, years off, etc). Anyone who can demonstrate both <b>rigor</b> and <b>pragmatism</b> is the best of both worlds.</p> http://stackoverflow.com/questions/693139/what-are-convincing-examples-where-pointer-arithmetic-is-preferable-to-array-subs/693282#693282 0 Answer by Tom for What are convincing examples where pointer arithmetic is preferable to array subscripting? Tom 2009-03-28T18:39:59Z 2009-03-28T18:39:59Z <p>You're asking about C specifically, but C++ builds upon this as well:</p> <p>Most pointer arithmetic naturally generalizes to the Forward Iterator concept. Walking through memory with <code>*p++</code> can be used for any sequenced container (linked list, skip list, vector, binary tree, B tree, etc), thanks to operator overloading.</p> http://stackoverflow.com/questions/691935/convert-int64t-to-double/692007#692007 4 Answer by Tom for Convert int64_t to double Tom 2009-03-28T01:55:17Z 2009-03-28T01:55:17Z <p>use <code>static_cast</code> as strager answers. I recommend <em>against</em> using the implicit cast (or even a C-style cast in C++ source code) for a few reasons:</p> <ul> <li>Implicit casts are a common source of compiler warnings, meaning you may be adding noise to the build (either now, or later when better warning flags are added).</li> <li>The next maintenance programmer behind you will see an implicit cast, and needs to know if it was intentional behavior or a mistake/bug. Having that <code>static_cast</code> makes your <em>intent</em> immediately obvious.</li> <li><code>static_cast</code> and the other C++-style casts are easy for <code>grep</code> to handle.</li> </ul> http://stackoverflow.com/questions/1930081/c-vs-c-code-optimization-for-simple-array-creation-and-i-o/1930116#1930116 Comment by Tom on C vs C++ code optimization for simple array creation and i/o Tom 2009-12-19T16:26:10Z 2009-12-19T16:26:10Z For a good compiler (and this includes recent versions of icc and gcc, not sure about msvc), <code>vector</code> produces identical code to C arrays. http://stackoverflow.com/questions/1911654/use-of-a-union-to-avoid-dynamic-allocation-headaches/1911946#1911946 Comment by Tom on Use of a Union to avoid Dynamic Allocation Headaches Tom 2009-12-16T05:04:17Z 2009-12-16T05:04:17Z Regardless, I still stand by unions for this sort of thing. I wonder, if <code>QUERY&#95;SERVICE&#95;CONFIG</code> has alignment requirements, is there a guarantee that <code>buffer</code> will be aligned simply due to its presence on the stack? http://stackoverflow.com/questions/1911654/use-of-a-union-to-avoid-dynamic-allocation-headaches/1911946#1911946 Comment by Tom on Use of a Union to avoid Dynamic Allocation Headaches Tom 2009-12-16T05:01:34Z 2009-12-16T05:01:34Z Ah, I stand corrected. I did not realize that char-arrays had a specific exemption from the strict-aliasing rules. http://stackoverflow.com/questions/1911654/use-of-a-union-to-avoid-dynamic-allocation-headaches/1911667#1911667 Comment by Tom on Use of a Union to avoid Dynamic Allocation Headaches Tom 2009-12-16T04:26:16Z 2009-12-16T04:26:16Z &quot;Using up a lot more stack space than necessary&quot; may be a lot better than dynamically allocating memory, in some contexts. http://stackoverflow.com/questions/1911654/use-of-a-union-to-avoid-dynamic-allocation-headaches/1911946#1911946 Comment by Tom on Use of a Union to avoid Dynamic Allocation Headaches Tom 2009-12-16T04:21:10Z 2009-12-16T04:21:10Z MSVC, GCC, and ICC all recognize that type of union as explicit aliasing. Your approach is not recommended for use within a single function scope, because strict-aliasing optimizations may break it. Fortunately, because QueryServiceConfig is a separate function that won't ever get inlined, it will not break... but it's a good habit to get into using unions for this type of overlay, instead of just casting pointers. http://stackoverflow.com/questions/141498/what-open-source-c-static-analysis-tools-are-available/144387#144387 Comment by Tom on What open source C++ static analysis tools are available? Tom 2009-12-15T05:40:04Z 2009-12-15T05:40:04Z Yuck, <code>-Weffc++</code> warns about <i>tons</i> of constructs that are perfectly fine in a large codebase. I second the suggestion of <code>-Wextra</code>, though; don't leave home without it! http://stackoverflow.com/questions/119949/when-to-use-test-scripts-over-unit-testing/120004#120004 Comment by Tom on When to use test scripts over unit testing? Tom 2009-12-15T05:29:30Z 2009-12-15T05:29:30Z This may be a bit of thread necromancy... but just because something is not a &quot;unit test&quot; doesn't mean that it's an acceptance test. There are many layers of verifying that the code is right, from the unit layer all the way up to the entire system fitting together. I use external test scripts at my place of work, and they are <i>definitely</i> only verifying that the code is right, and not that the right code is developed. http://stackoverflow.com/questions/1905079/using-exceptions-to-abort-series-of-user-inputs-good-bad/1905096#1905096 Comment by Tom on Using exceptions to abort series of user inputs - Good? Bad? Tom 2009-12-15T05:05:48Z 2009-12-15T05:05:48Z Exceptions are much more intrusive than most other forms of control flow. This is a case where the caller <i>wants</i> to handle the immediate error, so the benefit of deterministic stack-unwinding gives nothing. It's not actually any more code one way or another, but by putting your alternate-case in an exception catch block, the common program flow is disrupted. http://stackoverflow.com/questions/1905079/using-exceptions-to-abort-series-of-user-inputs-good-bad/1905093#1905093 Comment by Tom on Using exceptions to abort series of user inputs - Good? Bad? Tom 2009-12-15T05:02:56Z 2009-12-15T05:02:56Z -1 for <i>exceptions for exceptional circumstances</i> (it is self-referential and thus not useful, even if it sounds catchy)... but +1 for recommending against exceptions in general... so I guess I'll abstain from voting (^: http://stackoverflow.com/questions/1904857/which-is-better-to-use-short-or-int/1904961#1904961 Comment by Tom on Which is better? To use short or int? Tom 2009-12-15T03:35:30Z 2009-12-15T03:35:30Z @Joey - yuck! &lt;stdint.h&gt; for me, all the way. http://stackoverflow.com/questions/1894446/taking-advantage-of-sse-and-other-cpu-extensions/1894521#1894521 Comment by Tom on Taking advantage of SSE and other CPU extensions. Tom 2009-12-13T16:10:47Z 2009-12-13T16:10:47Z They all use &lt;xmmintrin.h&gt;, AFAIK. http://stackoverflow.com/questions/658196/poll-does-your-cto-actually-code/658226#658226 Comment by Tom on Poll: Does your CTO actually Code? Tom 2009-12-12T03:11:26Z 2009-12-12T03:11:26Z hilarious...... http://stackoverflow.com/questions/896654/cout-or-printf-which-of-the-two-has-a-faster-execution-speed-c/896746#896746 Comment by Tom on cout or printf which of the two has a faster execution speed C++? Tom 2009-12-12T03:10:22Z 2009-12-12T03:10:22Z -1 for assuming that every application that writes to its output is designed to be ready in realtime by a user. Many server applications log to stdout even in performance-sensitive contexts. http://stackoverflow.com/questions/1042110/using-scanf-in-c-programs-is-faster-than-using-cin/1042122#1042122 Comment by Tom on Using scanf() in C++ programs is faster than using cin ? Tom 2009-12-12T03:01:57Z 2009-12-12T03:01:57Z Why can't we use C functions in C++? Isn't that the whole point of interoperability with the language? <code>scanf</code> and <code>printf</code> avoid memory allocations and expensive object construction, which may be critical for high-performance C++ applications. http://stackoverflow.com/questions/664015/problem-with-lld-on-windows/664023#664023 Comment by Tom on Problem with %lld on Windows Tom 2009-12-12T02:51:49Z 2009-12-12T02:51:49Z It's nice to know that 2005 started supporting %lld.