User Paul Nathan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T23:30:53Zhttp://stackoverflow.com/feeds/user/26227http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1823683/what-makes-code-complete-a-good-book/1823809#18238091Answer by Paul Nathan for What makes Code Complete a good book?Paul Nathan2009-12-01T03:27:39Z2009-12-01T03:27:39Z<p>Code Complete tells you what your professors didn't.</p>
http://stackoverflow.com/questions/1766873/collection-of-solved-lisp-problems/1766998#17669981Answer by Paul Nathan for Collection of solved Lisp problemsPaul Nathan2009-11-19T22:21:47Z2009-11-19T22:21:47Z<p>I ran into <a href="http://gigamonkeys.com/book/" rel="nofollow">http://gigamonkeys.com/book/</a> this book recently. It's pretty modern.</p>
http://stackoverflow.com/questions/1760748/why-do-i-lately-have-to-be-a-master-of-big-o-sorting-searching-trees-graphs/1760922#17609223Answer by Paul Nathan for Why do I lately have to be a master of big-O, sorting, searching, trees, graphs, large scale efficient data processing algorithms?Paul Nathan2009-11-19T04:42:24Z2009-11-19T04:42:24Z<p>"very good at struts, jsp, java, C++, Spring, perl, J2EE, javascript, http"</p>
<p>Well, that's fine. But I can be very good at writing in those languages/APIs too. If you are hiring me for a career-track position, you want me to be able to move to the <em>next</em> set of languages/APIs pretty seamlessly, and be able to write the fundamentals in the <em>next</em> language group just as well.</p>
<p>On the flip side, if you are doing a one-off contract, you're going to be a great applicant: there's no real goal of investing in an employee in the long-term. So I'd suggest you focus on contract work. </p>
<p>P.S.: get an algorithms book(Cormen is probably the most comprehensive after Knuth's TaoCP). That'll manage the issue in the long-term. :-)</p>
<p>Good luck.</p>
http://stackoverflow.com/questions/1759991/regular-expressions-performance-boost-vs-perl/1760153#17601530Answer by Paul Nathan for Regular expressions performance: Boost vs. PerlPaul Nathan2009-11-19T00:34:56Z2009-11-19T00:34:56Z<p>The perl interpreter is going to be a fixed cost. If the time saved by running your data through the interpreter greatly outweighs the interpreter costs(ie, you have a lot of data), you will have a performance boost. </p>
<p>It's probable that you're best of with pure C++ here, just because of the process invocation.</p>
<p>Sorry, I don't have data. Love to see your test results though.</p>
http://stackoverflow.com/questions/1758522/alarm-history-stack-or-queue/1758583#17585830Answer by Paul Nathan for Alarm history stack or queue?Paul Nathan2009-11-18T19:49:22Z2009-11-18T19:49:22Z<p>You definitely want a ring buffer. But you're right, the meta information is a bit...interesting.</p>
http://stackoverflow.com/questions/188043/security-crytography-stupid-challege-response-protocol/1757941#17579410Answer by Paul Nathan for Security, crytography: Stupid Challege - Response protocol??Paul Nathan2009-11-18T18:07:12Z2009-11-18T18:07:12Z<p>I believe the Diffie-hellman is a well-known and solid key exchange protocol?</p>
http://stackoverflow.com/questions/1755692/comments-opensource-software/1757306#1757306-2Answer by Paul Nathan for Comments & OpenSource software.Paul Nathan2009-11-18T16:35:41Z2009-11-18T16:35:41Z<p>Open source software has bad comments and bad documentation most of the time. There are various reasons why, some better than others. Usually they relate to laziness or the developers 'being in the moment'. None of the reasons are <em>good</em> reasons. </p>
http://stackoverflow.com/questions/1750311/list-of-multicore-embedded-cpus1List of multicore embedded CPUs [closed]Paul Nathan2009-11-17T17:06:38Z2009-11-18T09:31:48Z
<p>I'm working on compiling a list of <strong>hard-core</strong> <strong>multicore</strong> <strong>embedded</strong> cpus. </p>
<p>Hard-core: in contrast to soft-core devices such as the Microblaze, which are loaded onto FPGAs.</p>
<p>Currently I have:</p>
<ul>
<li>XMOS's XCore</li>
<li>Parallax's Propellor</li>
<li>RMI/Netlogic's Alchemy</li>
<li>Analog Device's Blackfin</li>
<li>ARM Cortex-A9 MPCore</li>
<li>Ubicom Ubicom32</li>
</ul>
http://stackoverflow.com/questions/1750942/good-reference-site-for-sql-rdbms1Good reference site for SQL/RDBMSPaul Nathan2009-11-17T18:46:16Z2009-11-17T19:15:35Z
<p>One of the aspects of computer science/practical software engineering I am weaker at is actually doing significant work in database systems. That is to say, I can do simple queries on smaller datasets, no problem. However, working with complex queries on large datasets invokes a level of understanding of databases beyond me right now. For example, I built an amusing query some time ago that computed a join using a n^2 size where n=20,000- the hosting server suspended my account for blowing the CPU. Shocking.</p>
<p>I am interested in bringing myself up to speed on how to design schema and queries that, well, don't bring down the server. Pursuant to that end, what materials do you recommend that discuss professional database/SQL design and writing?</p>
http://stackoverflow.com/questions/1750343/fastest-way-to-search-1gb-a-string-of-data-for-the-first-occurence-of-a-pattern/1750414#17504141Answer by Paul Nathan for Fastest way to search 1GB+ a string of data for the first occurence of a pattern in Python.Paul Nathan2009-11-17T17:23:04Z2009-11-17T18:13:26Z<p>Are you willing to spend a significant time preprocessing the string?</p>
<p>If you are, what you can do is build a list of n-grams with offsets.</p>
<p>Suppose your alphabet is hex bytes and you are using 1-grams. </p>
<p>Then for 00-ff, you can create a dictionary that looks like this(perlese, sorry)</p>
<pre><code>$offset_list{00} = @array_of_offsets
$offset_list{01} = #...etc
</code></pre>
<p>where you walk down the string and build the @array_of_offsets from all points where bytes happen. You can do this for arbitrary n-grams. </p>
<p>This provides a "start point for search" that you can use to walk. </p>
<p>Of course, the downside is that you have to preprocess the string, so that's your tradeoff.</p>
<p>edit:</p>
<p><hr></p>
<p>The basic idea here is to match prefixes. This may bomb out badly if the information is super-similar, but if it has a fair amount of divergence between n-grams, you should be able to match prefixes pretty well.</p>
<p>Let's quantify divergence, since you've not discussed the kind of info you're analyzing. For the purposes of this algorithm, we can characterize divergence as a distance function: you need a <em>decently</em> high <a href="http://en.wikipedia.org/wiki/Hamming%5Fdistance" rel="nofollow">Hamming distance</a>. If the hamming distance between n-grams is, say, 1, the above idea won't work. But if it's n-1, the above algorithm will be much easier.</p>
<p>To improve on my algorithm, let's build an algorithm that does some successive elimination of possibilities:</p>
<p>We can invoke <a href="http://en.wikipedia.org/wiki/Entropy%5F%28information%5Ftheory%29" rel="nofollow">Shannon Entropy</a> to define information of a given n-gram. Take your search string and successively build a prefix based upon the first m characters. When the entropy of the m-prefix is 'sufficiently high', use it later.</p>
<ol>
<li>Define p to be an m-prefix of the search string</li>
<li>Search your 1 GB string and create an array of offsets that match p.</li>
<li>Extend the m-prefix to be some k-prefix, k > m, entropy of k-prefix higher than m-prefix.</li>
<li>Keep the elements offset array defined above, such that they match the k-prefix string. Discard the non-matching elements.</li>
<li>Goto 4 until the entire search string is met. </li>
</ol>
<p>In a sense, this is like reversing Huffman encoding.</p>
http://stackoverflow.com/questions/205348/source-code-analysis-what-do-you-do14Source Code Analysis - what do you do?Paul Nathan2008-10-15T16:11:39Z2009-11-17T17:07:16Z
<p>Situation: I have some source code, and I'm boning up on what happens. Who calls what, what goes where, etc, etc. (There is minimal documentation/comments, so I have to work it out myself).</p>
<p>Now, my usual solution is to fire up a splitscreen text editor and stare at the code until I understand it, or maybe print it and write all over it with colored pens.</p>
<p>This is a horribly slow and inefficient way to go about it, I think. </p>
<p>What do you do/what tools do you use in these situations? </p>
http://stackoverflow.com/questions/1741599/reasons-to-start-a-new-project-in-cobol/1743617#17436170Answer by Paul Nathan for Reasons to start a new project in COBOLPaul Nathan2009-11-16T17:24:15Z2009-11-16T17:24:15Z<p>From my understanding, COBOL is great for mainframe work and business reports. If you aren't doing both, then it's probably the wrong language.</p>
<p>There's probably a mainframe/report language that's significantly more modern, but I don't personally know of one.</p>
http://stackoverflow.com/questions/1742700/does-a-destructor-always-get-called-for-a-delete-operator-even-when-it-is-overlo/1742908#17429081Answer by Paul Nathan for Does a destructor always get called for a delete operator, even when it is overloaded?Paul Nathan2009-11-16T15:29:48Z2009-11-16T15:29:48Z<p>No, it is not possible. </p>
<p><code>delete</code> calls the destructor.</p>
<p>You will need to work out some kind of logic to ensure that Stuff happens in the right order.</p>
http://stackoverflow.com/questions/1730749/how-can-i-format-columns-without-using-perls-format2How can I format columns without using Perl's format?Paul Nathan2009-11-13T17:29:20Z2009-11-14T03:22:49Z
<p>Often in Perl I want to print out column/row data, say, from a hash.</p>
<p>This is simple:</p>
<pre><code>foreach my $k(keys %h)
{
print $k, "\t", $h{$k}, "\n";
}
</code></pre>
<p>However, if the key happens to have a <strong>varying</strong> length, then the formatting just looks <strong>very</strong> jagged. I've investigated <a href="http://perldoc.perl.org/functions/format.html" rel="nofollow">format</a>, and its typically too heavyweight for what I'm looking for, which is a 'simple' column-row aligning pretty-printer. </p>
http://stackoverflow.com/questions/1717963/in-perl-how-can-i-get-the-fields-in-this-csv-string-into-an-array-without-spaces/1717990#17179902Answer by Paul Nathan for In Perl, how can I get the fields in this CSV string into an array without spaces?Paul Nathan2009-11-11T20:53:16Z2009-11-11T20:53:16Z<p>Here you go:</p>
<pre><code>@groups = split /,/, $string;
#remove whitespace now.
@groups = map { s/^\s+//; s/\s+$//; $_ } @groups;
</code></pre>
<p>Note: the regex can be simplified I'm pretty sure, just haven't worked it out yet.</p>
http://stackoverflow.com/questions/1716456/lisp-as-a-scripting-language-in-a-c-app/1716695#1716695-2Answer by Paul Nathan for Lisp as a Scripting Language in a C++ app...Paul Nathan2009-11-11T17:16:09Z2009-11-11T17:51:38Z<p>Lisp is a family of languages.</p>
<p>Common Lisp is an ANSI standard that is <em>huge</em>. Think C++ huge. Don't use it as a script language.</p>
<p>Unless you are targeting fairly hardcore programmers, Lisp as a scripting language is going to be...er....not well taking. <em>Probably</em>. Lua is likely a better bet as a script language. </p>
<p>That said, a Lisp is fine(technically) for implementing a scripting language. </p>
http://stackoverflow.com/questions/1712172/whats-your-take-on-the-programming-language-go/1716834#17168341Answer by Paul Nathan for What's your take on the programming language Go?Paul Nathan2009-11-11T17:37:58Z2009-11-11T17:37:58Z<ul>
<li>The only definitive improvement I see is the interface and type systems being untangled. </li>
<li>The concurrency model looks like it will cause profound performance issues related to data access. </li>
<li>Pretty much everything but the interface system is doable in C++ with the appropriate libraries/functions.</li>
<li>Type system is <em>probably</em> less expressive than C++, especially the lack of overloading.</li>
<li>They are correct in OO systems discussions having a focus on object modelling instead of solution finding.</li>
<li>Wait, another replacement for C++ with garbage collection?</li>
</ul>
<p>The typing approach has a certain value, I suspect, and would be interesting to explore at least.</p>
<p>I would conclude - here and now, in my opinion - I don't see a serious future for this language outside of a webserver market having to support many many lightweight threads. I may be quite wrong, of course. </p>
<p>Thoughts based off of: <a href="http://golang.org/doc/effective%5Fgo.html" rel="nofollow">http://golang.org/doc/effective%5Fgo.html</a> , <a href="http://golang.org/doc/go%5Ffor%5Fcpp%5Fprogrammers.html" rel="nofollow">http://golang.org/doc/go%5Ffor%5Fcpp%5Fprogrammers.html</a> , <a href="http://golang.org/doc/go%5Flang%5Ffaq.html" rel="nofollow">http://golang.org/doc/go%5Flang%5Ffaq.html</a> .</p>
http://stackoverflow.com/questions/1715714/is-there-a-better-way-while-loops-and-continues/1715791#17157910Answer by Paul Nathan for Is there a better way? While loops and continuesPaul Nathan2009-11-11T15:09:45Z2009-11-11T15:09:45Z<p>My instinctual approach is to build a polymorphic approach here, where you eventually wind up doing something like(modulo your language and exact logic):</p>
<pre><code>db_cursor cursor;
while(cursor.valid())
{
if(cursor.data.valid())
{
process();
}
cursor.next();
}
</code></pre>
<p>db_cursor would be a base class that your different table type classes inherit from, and the child classes would implement the validity functions.</p>
http://stackoverflow.com/questions/1711125/how-many-of-you-are-moving-to-html-5/1711216#17112160Answer by Paul Nathan for How many of you are moving to HTML 5?Paul Nathan2009-11-10T21:11:17Z2009-11-10T21:11:17Z<p>I would split the markup depending on which browser. IE6/(other HTML 4-only browsers) would get minimal spiffiness and a link to IE8/Firefox/Chrome upgrade installs.</p>
<p>Make a consistent push for your users to upgrade- don't require it, but suggest "for the full experience, upgrade"</p>
http://stackoverflow.com/questions/1707906/how-do-i-learn-a-poorly-documented-open-source-framework/1707942#17079422Answer by Paul Nathan for How do I learn a poorly documented open source framework?Paul Nathan2009-11-10T13:23:47Z2009-11-10T13:23:47Z<p>Find a different framework that pays attention to its users more.</p>
http://stackoverflow.com/questions/1703298/how-to-not-be-an-it-programmer/1703446#17034460Answer by Paul Nathan for How to not be an IT programmer?Paul Nathan2009-11-09T20:12:34Z2009-11-09T20:12:34Z<p>I would suggest getting the Master's, if you are interested in research-y or scientific applications. In the academic world, degrees and published papers are the biggest qualifications, typically. </p>
<p>If you want to be a hot code jockey on the cutting edge of development, you're probably best off learning the web stack and moving to Seattle or Silicon Valley or another one of the cities with a lot of startups/tech and contracting out there.</p>
http://stackoverflow.com/questions/1702762/how-to-create-an-empty-file-in-the-command-line/1702792#17027922Answer by Paul Nathan for How to create an empty file in the command line?Paul Nathan2009-11-09T18:21:30Z2009-11-09T18:21:30Z<p>You can write your own touch.</p>
<pre><code>//touch.cpp
#include <fstream>
#include <iostream>
int main(int argc, char ** argv;)
{
if(argc !=2)
{
std::cerr << "Must supply a filename as argument" << endl;
return 1;
}
std::ofstream foo(argv[1]);
foo.close();
return 0;
}
</code></pre>
http://stackoverflow.com/questions/1691924/building-professional-self-esteem-when-you-think-youre-a-hack/1691974#16919740Answer by Paul Nathan for Building professional self-esteem when you think you're a hackPaul Nathan2009-11-07T04:16:09Z2009-11-07T04:16:09Z<p>Go back to school and get a Bachelor's in Comp Sci. You will be able to cruise through the coding and really have a good take-away from the software engineering/algorithms/languages courses. Those are the knowledge areas you're lacking right now</p>
<p>And, yes, you're a hack. You need to graduate yourself from 'language/platform' questions to algorithmic/architectural questions. Spend the time and learn good C++(sorry, it's the best language to learn when really learning deep computer programming). Become a software engineer, not a programmer.</p>
<p>Both the degree and the self-learning are more or less required to be a good software engineer*. The degree gets you into the mental next level of thought process; the self-learning gets you a deep knowledge. </p>
<p>A degree <em>also</em> is a good way to get into a better job and be able to move into more interesting careers.</p>
<p>In total, it's about 3-4 years of work to move to where you need to be. That's OK. It's worth it. Nothing worth doing is easy or fast. </p>
<p>* Yes, there are exceptions. But the take-away is that they <em>are exceptions</em>. </p>
http://stackoverflow.com/questions/1685063/six-degrees-of-kevin-bacon-in-perl/1685130#16851306Answer by Paul Nathan for Six degrees of Kevin Bacon in PerlPaul Nathan2009-11-06T02:56:52Z2009-11-06T02:56:52Z<p>This isn't an <em>answer</em>, but it's hints towards your answer. </p>
<p>You are best served by first looking up what a Breadth First Search is in a graph. </p>
<p>Also, if you have not been given a regular expression, you may consider the <em>tokenizing</em> problem and look that up. Possibly that won't be needed. Check the assignment and see if you can just <em>slurp</em> in some information.</p>
http://stackoverflow.com/questions/1681174/besides-treat-warnings-as-errors-and-fixing-memory-leaks-what-other-ideas-shou/1681267#168126710Answer by Paul Nathan for Besides "treat warnings as errors" and fixing memory leaks, what other ideas should we implement as part of our coding standards?Paul Nathan2009-11-05T15:26:20Z2009-11-05T15:46:10Z<p>Typically, the level of precision/exactingness in coding standards/process is directly connected to the safety level required. E.g., if you are working in aerospace, you will tightly control pretty much everything. But, on the other end of the spectrum, if you are working on a computer gaming forum site...if something breaks, no biggie. You <em>can</em> have slop. So YMMV, depending on your field.</p>
<p>The classic book on coding is Code Complete 2nd edition, by Steve McConnell. Have a team copy & strongly recommend your developers purchase it(or have the company get it for them). That will satisfy probably 70% of the stylistic questions. CC addresses the majority of development cases.</p>
<p>edit:</p>
<p>Graphics software, C++, Mac/Windows.</p>
<p>Since you're doing cross-platform work, <em>I</em> would recommend having an automated "compile-on-checkin" process for your Mac(10.4(maybe), 10.5, 10.6), and Windows(XP(maybe), Vista, 7). This ensures your software at the least compiles, and you know when it doesn't.</p>
<p>Your source control(which you <em>are</em> using, I assume), should support branching, and your branching strategy can reflect cross-platformy-ness as well. It's also advantageous to have mainline branches, dev branches, and experimental branches. YMMV; you will probably need to iterate on that and consult with with people who are familiar with configuration management.</p>
<p>Since it's C++, you will probably want to be running Valgrind or similar to know if there is a memory leak. There are some static analyzers which you can get: I don't know how effective they are at the modern C++ idiom. You can also invest in writing some wrappers to help watch memory allocations. </p>
<p>Regarding C++...The books Effective C++, More Effective C++, and Effective STL(all by Scott Meyers) should be on someone's shelf, as well as Modern C++ by Andrescu. You may find Lippman's book on the C++ object model useful as well, I don't know.</p>
<p>HTH.</p>
http://stackoverflow.com/questions/1674864/how-to-synchronize-and-combine-results-from-multiple-threads-in-c/1674884#16748840Answer by Paul Nathan for How to synchronize and combine results from multiple threads in C++?Paul Nathan2009-11-04T16:15:11Z2009-11-04T16:15:11Z<p>Barriers are the canonical "synchronize all" operation.</p>
<p>However, it sounds like you want to have a "count result" variable in a critical section that is incremented when a certain amount is done. Then, you want to do a "block until variable is equal to x". That can be accomplished with a spin-lock against the count result variable.</p>
http://stackoverflow.com/questions/1651319/performing-permissions-change-ala-chmod-attrib-with-powershell1Performing permissions change ala chmod / attrib with PowershellPaul Nathan2009-10-30T17:44:02Z2009-10-30T21:46:39Z
<p>I would like to do the equivalent of <code>chmod -w+r-x foo</code> or <code>attrib +R foo</code> in Windows Powershell. Putzing around, I notice a fairly gnarly <code>Set-Acl</code> function that looks <em>significantly</em> fancier than what I need. </p>
<p>How do I do <code>attrib +R foo</code> in Windows Powershell?</p>
http://stackoverflow.com/questions/1651099/create-own-bibtex-style-or-customize-existing-one/1651230#16512300Answer by Paul Nathan for Create own BibTeX style or customize existing one?Paul Nathan2009-10-30T17:28:19Z2009-10-30T17:28:19Z<p>Find a standard bibtex stylesheet for your citation style: IEEE, ACM, MLA, specific journal, etc.</p>
<p>What style are you trying to conform to?</p>
http://stackoverflow.com/questions/1647557/ifstream-how-to-tell-if-specified-file-doesnt-exist0ifstream: how to tell if specified file doesn't existPaul Nathan2009-10-30T01:33:05Z2009-10-30T01:48:01Z
<p>I want to open a file for reading. However, in the context of this program, it's OK if the file doesn't exist, I just move on. I want to be able to identify when the error is "file not found" and when the error is otherwise. Otherwise means I need to quit and error.</p>
<p>I don't see an obvious way to do this with fstream.</p>
<p><hr /></p>
<p>I can do this with c's open and perror(). I presumed that there was a fstream way to do this as well.</p>
http://stackoverflow.com/questions/1645615/what-is-the-use-of-brainfuck/1645704#16457043Answer by Paul Nathan for What Is The Use Of BrainfuckPaul Nathan2009-10-29T18:33:12Z2009-10-29T21:42:13Z<p>It`s a <a href="http://en.wikipedia.org/wiki/Turing%5Ftarpit" rel="nofollow">Turing tarpit</a>.</p>
http://stackoverflow.com/questions/208959/c-variant/209037#209037Comment by Paul Nathan on C++ VariantPaul Nathan2009-11-25T13:26:57Z2009-11-25T13:26:57ZIt's OK to bypass the type system if you know what you're doing. C++/C are not 100% typed anyway.http://stackoverflow.com/questions/895296/how-can-you-tell-if-a-person-is-a-programmer/903738#903738Comment by Paul Nathan on How can you tell if a person is a programmer?Paul Nathan2009-11-20T21:13:07Z2009-11-20T21:13:07Z$1 is a perl special variable returned from the first regex match.http://stackoverflow.com/questions/1764090/what-are-the-biggest-potential-time-wasters-in-development/1764912#1764912Comment by Paul Nathan on What are the biggest potential time wasters in development?Paul Nathan2009-11-19T20:29:50Z2009-11-19T20:29:50ZI locally source control everything.http://stackoverflow.com/questions/1741599/reasons-to-start-a-new-project-in-cobol/1743617#1743617Comment by Paul Nathan on Reasons to start a new project in COBOLPaul Nathan2009-11-19T19:09:57Z2009-11-19T19:09:57Zso even if you have a mainframe already, COBOL is more expensive? ??http://stackoverflow.com/questions/1754020/good-ide-editor-for-c-suited-to-my-tastes/1754269#1754269Comment by Paul Nathan on Good IDE/editor for C++ suited to my tastesPaul Nathan2009-11-19T17:30:45Z2009-11-19T17:30:45ZEmacs is probably the best editor on the market. It has a C++ IDE add-on, tho' I've not used it. It is an investment to learn, though, takes about 1 month before proficiency.http://stackoverflow.com/questions/142948/how-can-i-use-functional-programming-in-the-real-world/142969#142969Comment by Paul Nathan on How can I use functional programming in the real world?Paul Nathan2009-11-19T00:36:29Z2009-11-19T00:36:29Z<a href="http://stackoverflow.com/questions/682710/does-f-provide-you-automatic-parallelism" rel="nofollow" title="does f provide you automatic parallelism">stackoverflow.com/questions/682710/…</a>http://stackoverflow.com/questions/1759613/what-c-idioms-should-c-programmers-useComment by Paul Nathan on What C++ idioms should C++ programmers use?Paul Nathan2009-11-18T22:50:24Z2009-11-18T22:50:24ZGreat question, by the way.http://stackoverflow.com/questions/1757745/how-can-i-debug-a-perl-cgi-scriptComment by Paul Nathan on How can I debug a Perl CGI script?Paul Nathan2009-11-18T20:30:59Z2009-11-18T20:30:59ZYou're going to have to isolate the problem a bit further; maybe post a sanitized version of some code at that point.http://stackoverflow.com/questions/1758522/alarm-history-stack-or-queue/1758541#1758541Comment by Paul Nathan on Alarm history stack or queue?Paul Nathan2009-11-18T19:47:07Z2009-11-18T19:47:07ZIt's not exactly wear levelling. He needs to focus on writing as few times as possible.http://stackoverflow.com/questions/1023608/a-c-program-to-remove-comments/1023636#1023636Comment by Paul Nathan on a C++ program to remove commentsPaul Nathan2009-11-18T18:23:56Z2009-11-18T18:23:56ZRegexs <i>are</i> state machines.http://stackoverflow.com/questions/1754145/c-wrapper-native-interop-enterprise-scale/1754350#1754350Comment by Paul Nathan on C++ Wrapper Native Interop Enterprise ScalePaul Nathan2009-11-18T17:57:24Z2009-11-18T17:57:24ZI'm just going to come out and suggest cream for the pimples(sorry, had to). :-)http://stackoverflow.com/questions/1755692/comments-opensource-software/1755705#1755705Comment by Paul Nathan on Comments & OpenSource software.Paul Nathan2009-11-18T17:00:00Z2009-11-18T17:00:00ZThere are <i>way</i> too many times where I'll read my code or someone else's code and I'll be asking myself, "what was he on when writing this ----". Comments are a must for a comprehensible code base.http://stackoverflow.com/questions/1755692/comments-opensource-software/1755705#1755705Comment by Paul Nathan on Comments & OpenSource software.Paul Nathan2009-11-18T16:47:10Z2009-11-18T16:47:10Z@ocdecio: code never speaks for itself. that line of thought is baloney.http://stackoverflow.com/questions/1752575/the-new-c-d-or-go/1752590#1752590Comment by Paul Nathan on The new C++: D or Go? Paul Nathan2009-11-17T23:40:31Z2009-11-17T23:40:31ZIMO, go is not designed to be a 'serious' language, it's designed to be a research language. Note the lack of overloading and inheritance(among other things). That said, it could be iterated into a serious language if the gothread concepts catch on. I could see the genetics analysis people being fond of it.http://stackoverflow.com/questions/1752575/the-new-c-d-or-goComment by Paul Nathan on The new C++: D or Go? Paul Nathan2009-11-17T23:38:15Z2009-11-17T23:38:15ZGo is not intended as a serious development language. It is an exploration of some language concepts, according to the documents on the site. D scratches an itch no one has, especially since C# is out. C++0x(or C++1x) is going to be the New C++. Also: Close vote for subjective/argumentative.