User Harold Bamford - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T10:48:49Zhttp://stackoverflow.com/feeds/user/10574http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1180031/how-can-i-access-the-data-in-many-large-csv-files-quickly-from-perl7How can I access the data in many large CSV files quickly from Perl?Harold Bamford2009-07-24T20:34:51Z2009-07-27T18:37:47Z
<p>I have a number of scripts that currently read in a lot of data from some .CSV files. For efficiency, I use the <a href="http://search.cpan.org/perldoc/Text::CSV%5FXS" rel="nofollow">Text::CSV_XS</a> module to read them in and then create a hash using one of the columns as an index. However, I have a <strong>lot</strong> of files and they are quite large. And each of the scripts needs to read in the data all over again. </p>
<p>The question is: How can I have persistent storage of these Perl hashes so that all them can be read back in with a minimum of CPU?</p>
<p>Combining the scripts is not an option. I wish...</p>
<p>I applied the 2nd rule of optimization and used profiling to find that the vast majority of the CPU (about 90%) was in:</p>
<pre><code>Text::CSV_XS::fields
Text::CSV_XS::Parse
Text::CSV_XS::parse
</code></pre>
<p>So, I made a test script that read in all the .CSV files (<strong>Text::CSV_XS</strong>), dumped them using the <strong>Storable</strong> module, and then went back and read them back in using the <strong>Storable</strong> module. I profiled this so I could see the CPU times:</p>
<pre><code>$ c:/perl/bin/dprofpp.bat
Total Elapsed Time = 1809.397 Seconds
User+System Time = 950.5560 Seconds
Exclusive Times
%Time ExclSec CumulS #Calls sec/call Csec/c Name
25.6 243.6 243.66 126 1.9338 1.9338 Storable::pretrieve
20.5 194.9 194.92 893448 0.0002 0.0002 Text::CSV_XS::fields
9.49 90.19 90.198 893448 0.0001 0.0001 Text::CSV_XS::Parse
7.48 71.07 71.072 126 0.5641 0.5641 Storable::pstore
4.45 42.32 132.52 893448 0.0000 0.0001 Text::CSV_XS::parse
(the rest was in terms of 0.07% or less and can be ignored)
</code></pre>
<p>So, using <strong>Storable</strong> costs about 25.6% to load back in as compared to <strong>Text::CSV_XS</strong> at about 35%. Not a lot of savings...</p>
<p>Has anybody got a suggestion on how I can read in these data more efficiently?</p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/1180031/how-can-i-access-the-data-in-many-large-csv-files-quickly-from-perl/1189829#11898293Answer by Harold Bamford for How can I access the data in many large CSV files quickly from Perl?Harold Bamford2009-07-27T18:32:54Z2009-07-27T18:32:54Z<p>Well, I've taken the suggestion of Sinan Ünür (thanks!) and made an SQLite database and re-run my test program to compare getting the data via CSV files as compared to getting the data out of the SQLite data base:</p>
<pre><code>$ c:/perl/bin/dprofpp.bat
Total Elapsed Time = 1705.947 Seconds
User+System Time = 1084.296 Seconds
Exclusive Times
%Time ExclSec CumulS #Calls sec/call Csec/c Name
19.5 212.2 212.26 893448 0.0002 0.0002 Text::CSV_XS::fields
15.7 170.7 224.45 126 1.3549 1.7814 DBD::_::st::fetchall_hashref
9.14 99.15 99.157 893448 0.0001 0.0001 Text::CSV_XS::Parse
6.03 65.34 164.49 893448 0.0001 0.0002 Text::CSV_XS::parse
4.93 53.41 53.412 893574 0.0001 0.0001 DBI::st::fetch
[ *removed the items of less than 0.01 percent* ]
</code></pre>
<p>The total for CSV_XS is 34.67% as compared to 20.63% for SQLite which is somewhat better than the Storable solution I tried before. However, this isn't a fair comparison since with the CSV_XS solution I have to load the <strong>entire</strong> CSV file but with the SQLite interface, I can just load the parts I want. Thus in practice, I expect even more improvement than this simple-minded test shows.</p>
<p>I have not tried using BerkeleyDB (sorry, friedo) instead of SQLite, mostly because I didn't see that suggestion until I was well involved with trying out SQLite. Setting up the test was a non-trivial task since I almost never have occasion to use SQL databases.</p>
<p>Still, the solution is clearly to load all the data into a database and access via the DBI module. Thanks for everyone's help. All responses are greatly appreciated.</p>
http://stackoverflow.com/questions/975936/how-do-i-embed-version-information-into-a-windows-binary/978575#9785751Answer by Harold Bamford for How do I embed version information into a windows binary?Harold Bamford2009-06-10T23:08:42Z2009-06-10T23:08:42Z<p>This just showed up on CodeProject yesterday:</p>
<p><a href="http://www.codeproject.com/KB/install/VerPatch.aspx" rel="nofollow">Simple Version Resource Tool for Windows</a></p>
<p>It is a command line tool, but it should be easily operated from a script.</p>
http://stackoverflow.com/questions/924340/how-do-i-write-a-bash-alias-function-to-grep-all-files-in-all-subdirectories-for/928608#9286080Answer by Harold Bamford for How do I write a bash alias/function to grep all files in all subdirectories for a string?Harold Bamford2009-05-30T00:06:30Z2009-05-30T00:06:30Z<p>Many versions of grep have options to do recursion, specify filename pattern, etc.</p>
<pre><code>grep --perl-regexp --recursive --include='*.py' --regexp="$1" .
</code></pre>
<p>This recurses starting from the current directory (.), looks only at files ending in 'py', uses Perl-style regular expressions.</p>
<p>If your version of grep doesn't support --recursive and --include, then you can still use find and xargs, but be sure to allow for pathnames with embedded spaces by using the -print0 argument to find and the --null option to xargs to handle that.</p>
<pre><code>find . -type f -name '*.py' -print0 | xargs --null grep "$1"
</code></pre>
<p>should work.</p>
http://stackoverflow.com/questions/877873/after-go-to-definition-is-there-a-command-to-return-to-where-you-came-from/879192#8791920Answer by Harold Bamford for After "Go to Definition", is there a command to return to where you came from?Harold Bamford2009-05-18T18:47:40Z2009-05-18T18:47:40Z<p>If you have an MS mouse with the latest Intellipoint drivers installed, you can have program-specific commands associated with mouse buttons. Find out what the "Back" keyboard command is for your program. For VS .NET 2003/2005/2008 it is Ctrl+\ (control backslash) which is tied to View.NavigateBackward. Then go into the Control Panel for the mouse, click on the checkbox for "Enable program-specific settings" and then click on Settings.</p>
<p>Click on "Add" and pick your favorite Visual Studio and map Ctrl-\ to the left button.</p>
<p>Others programs of interest:</p>
<pre><code>uVision3 IDE (the Keil compiler): Alt-Left
Adobe Reader 9.0: Alt-Left
javaw (as in Eclipse): Ctrl-F2
VB6: Ctrl-Shift-F2
</code></pre>
<p>Actually, the Eclipse one isn't Ctrl-F2 but is something that cannot be mapped, so I added that mapping within Eclipse and then the new mapping in the mouse driver.</p>
<p>Hope that helps!</p>
http://stackoverflow.com/questions/619167/egrep-acts-strange-with-f-option/620806#6208060Answer by Harold Bamford for Egrep acts strange with -f optionHarold Bamford2009-03-06T23:02:09Z2009-03-06T23:02:09Z<p>The others have already come up with most of the things I would look at. The next thing I would check is the environment variable GREP_OPTIONS, or whatever it is called on your machine. I've gotten the strangest error messages or behaviors when using a command line argument that interfered with the environment settings.</p>
http://stackoverflow.com/questions/543570/getopt-in-vc/546575#5465750Answer by Harold Bamford for getopt() in VC++Harold Bamford2009-02-13T16:21:12Z2009-02-13T16:21:12Z<p>You will have to check out the license requirements, but the source to the GCC libraries is freely available. Just grab getopt() from there.</p>
http://stackoverflow.com/questions/497484/is-it-possible-to-teach-humility-to-a-smart-but-inexperienced-programmer/497617#4976170Answer by Harold Bamford for Is it possible to teach humility to a smart but inexperienced programmer?Harold Bamford2009-01-30T23:02:08Z2009-01-30T23:02:08Z<p>Try challenging him with a problem that <strong>sounds</strong> trivial but has brought down the masters: a Binary Search. According to this Wikipedia <a href="http://en.wikipedia.org/wiki/Binary_search#The_algorithm" rel="nofollow">article</a>:</p>
<blockquote>
<p>When Jon Bentley assigned it as a
problem in a course for professional
programmers, he found that an
astounding ninety percent failed to
code a binary search correctly after
several hours of working on it, and
another study shows that accurate code
for it is only found in five out of
twenty textbooks (Kruse, 1999).
Furthermore, Bentley's own
implementation of binary search,
published in his 1986 book Programming
Pearls, contains an error that
remained undetected for over twenty
years.</p>
</blockquote>
<p>Block access to the internet (to avoid "cheating" like a real world programmer would do). Give a time limit of, say, 1 hour--it is such a trivial program, after all. Then ensure you have some data that will test boundary conditions, gaps, etc.</p>
<p>After the failure, you may still not have a humble programmer, but you will feel a certain (malicious) satisfaction.</p>
<p>Of course, if he does it correctly under the constraints, you will never live it down...</p>
http://stackoverflow.com/questions/497421/internal-format-of-visual-studio-ncb-files0Internal format of Visual Studio .ncb filesHarold Bamford2009-01-30T21:58:48Z2009-01-30T22:20:38Z
<p>I have decided that I really need to get some flowcharts for reverse engineering some code I have inherited. I do not have the Team edition of VS so I cannot use Team's built-in capabilities with Visio. So I thought I would parse the .ncb (Parser Information) files and make charts with dot (from graphviz.org). How hard could that be? But I cannot find any documentation for the innards of that file.</p>
<p>I really don't want to use a commercial application to do the flowcharts. And the free addins I've seen all assume that I am using C# or VB. However, I am using C and C++.</p>
<p>I did try the Microsoft "Visual Studio Learning Pack" which has the "Visual Programming Flow Chart" tool. But it doesn't appear to work with C++. So close!</p>
<p>So, does anybody have pointers to the file format or other suggestions (keep it polite!)?</p>
http://stackoverflow.com/questions/165451/suggest-a-good-doxygen-stylesheet/480945#4809452Answer by Harold Bamford for Suggest a good Doxygen stylesheetHarold Bamford2009-01-26T19:03:31Z2009-01-26T19:03:31Z<p>I don't have a big problem with the default styles, <strong>EXCEPT</strong> that the base font size is fixed to 12pt (a recent change). Which means it will never be the right size and cannot be dynamically adjusted.</p>
<p>Below are some trivial changes I put into the default on my machine. Mostly I changed the hard-coded font sizes to named or relative sizes so that Ctrl-Mousewheel easily adjusts the size. Similarly, I also changed (not shown here) other sizes from (for instance) 11pt to 92% (based on original 12pt value).</p>
<p>I also added in <code>code</code>, <code>tt</code>, and <code>pre</code> as they looked a trifle strange to me.</p>
<p>Clearly nobody's CSS will be fully acceptable to somebody else. The best you can hope for is some kind of uniformity, usability and as little bloodshed as possible...</p>
<pre><code>body, table, div, p, dl {
font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif;
font-size: medium;
}
/* Ensure that <CODE> and <TT> text is as big as the <BODY> text and use a nicer font */
code, tt {
font-family: Consolas, Courier, monospace;
font-size: medium;
}
/* Need this as <PRE> makes the text look smaller due to different font */
pre {
font-size: 105%;
}
</code></pre>
http://stackoverflow.com/questions/375104/how-can-i-match-a-quote-delimited-string-with-a-regex/375362#3753622Answer by Harold Bamford for How can I match a quote-delimited string with a regex?Harold Bamford2008-12-17T17:37:24Z2008-12-17T18:37:20Z<p>I would suggest:</p>
<pre><code>([\"'])(?:\\\1|.)*?\1
</code></pre>
<p>But only because it handles escaped quote chars and allows both the ' and " to be the quote char. I would also suggest looking at this article that goes into this problem in depth:</p>
<p><a href="http://blog.stevenlevithan.com/archives/match-quoted-string" rel="nofollow">http://blog.stevenlevithan.com/archives/match-quoted-string</a></p>
<p>However, unless you have a serious performance issue or cannot be sure of embedded quotes, go with the simpler and more readable:</p>
<pre><code>/".*?"/
</code></pre>
<p>I must admit that non-greedy patterns are not the basic Unix-style 'ed' regular expression, but they are getting pretty common. I still am not used to group operators like (?:stuff).</p>
http://stackoverflow.com/questions/350323/open-a-file-in-visual-studio-at-a-specific-line-number9Open a file in Visual Studio at a specific line numberHarold Bamford2008-12-08T18:04:41Z2008-12-09T23:00:57Z
<p>Greetings,</p>
<p>I have a utility (grep) that gives me a list of filenames and a line numbers. After I have determined that devenv is the correct program to open a file, I would like to ensure that it is opened at the indicated line number. In emacs, this would be:</p>
<pre><code>emacs +140 filename.c
</code></pre>
<p>I have found nothing like this for Visual Studio (devenv). The closest I have found is:</p>
<pre><code>devenv /Command "Edit.Goto 140" filename.c
</code></pre>
<p>However, this makes a separate instance of devenv for each such file. I would rather have something that uses an existing instance.</p>
<p>These variations re-use an existing devenv, but don't go to the indicated line:</p>
<pre><code>devenv /Command "Edit.Goto 140" /Edit filename.c
devenv /Command /Edit filename.c "Edit.Goto 140"
</code></pre>
<p>I thought that using multiple "/Command" arguments might do it, but I probably don't have the right one because I either get errors or no response at all (other than opening an empty devenv).</p>
<p>I could write a special macro for devenv, but I would like this utility to be used by others that don't have that macro. And I'm not clear on how to invoke that macro with the "/Command" option.</p>
<p>Any ideas?</p>
<p><hr /></p>
<p>Well, it doesn't appear that there is a way to do this as I wanted. Since it looks like I'll need to have dedicated code to start up Visual Studio, I've decided to use EnvDTE as shown below. Hopefully this will help somebody else.</p>
<pre><code>#include "stdafx.h"
//-----------------------------------------------------------------------
// This code is blatently stolen from http://benbuck.com/archives/13
//
// This is from the blog of somebody called "BenBuck" for which there
// seems to be no information.
//-----------------------------------------------------------------------
// import EnvDTE
#pragma warning(disable : 4278)
#pragma warning(disable : 4146)
#import "libid:80cc9f66-e7d8-4ddd-85b6-d9e6cd0e93e2" version("8.0") lcid("0") raw_interfaces_only named_guids
#pragma warning(default : 4146)
#pragma warning(default : 4278)
bool visual_studio_open_file(char const *filename, unsigned int line)
{
HRESULT result;
CLSID clsid;
result = ::CLSIDFromProgID(L"VisualStudio.DTE", &clsid);
if (FAILED(result))
return false;
CComPtr<IUnknown> punk;
result = ::GetActiveObject(clsid, NULL, &punk);
if (FAILED(result))
return false;
CComPtr<EnvDTE::_DTE> DTE;
DTE = punk;
CComPtr<EnvDTE::ItemOperations> item_ops;
result = DTE->get_ItemOperations(&item_ops);
if (FAILED(result))
return false;
CComBSTR bstrFileName(filename);
CComBSTR bstrKind(EnvDTE::vsViewKindTextView);
CComPtr<EnvDTE::Window> window;
result = item_ops->OpenFile(bstrFileName, bstrKind, &window);
if (FAILED(result))
return false;
CComPtr<EnvDTE::Document> doc;
result = DTE->get_ActiveDocument(&doc);
if (FAILED(result))
return false;
CComPtr<IDispatch> selection_dispatch;
result = doc->get_Selection(&selection_dispatch);
if (FAILED(result))
return false;
CComPtr<EnvDTE::TextSelection> selection;
result = selection_dispatch->QueryInterface(&selection);
if (FAILED(result))
return false;
result = selection->GotoLine(line, TRUE);
if (FAILED(result))
return false;
return true;
}
</code></pre>
http://stackoverflow.com/questions/291792/win32-select-all-on-edit-ctrl-textbox/291949#2919491Answer by Harold Bamford for win32 select all on edit ctrl (textbox)Harold Bamford2008-11-15T01:25:30Z2008-11-15T01:25:30Z<p>I tend to use MFC (forgive me) instead of win32 so I cannot answer this definitively, but I noticed this comment added to a page on an MS site concerning talking with an Edit control (a simple editor within the Edit control):</p>
<blockquote>
<p>The edit control uses WM_CHAR for
accepting characters, not WM_KEYDOWN
etc. You must Translate() your
messages or you ironically won't be
able to edit the text in the edit
control.</p>
</blockquote>
<p>I don't know if this applies to BoltBait's response, but I suspect it does.</p>
<p>(I found this at <a href="http://msdn.microsoft.com/en-us/library/bb775462(VS.85).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb775462(VS.85).aspx</a>)</p>
http://stackoverflow.com/questions/127916/is-programming-style-important-how-important/154437#1544370Answer by Harold Bamford for Is Programming Style important? How Important?Harold Bamford2008-09-30T18:54:35Z2008-09-30T18:54:35Z<p>There are several views on this that have noted above. Basically, style and comments help with maintainability.</p>
<p>Code is written for programmers (including yourself!), not for the compiler. If we never needed to read the code, just punch it in with a hex pad (like a real programmer!) and be done with it! :-)</p>
<p>But that is almost never the case. Over the lifetime of the code, the compiler may spend a total of a few seconds processing it. But days may be spent by programmers. And those days may increase to weeks if it is hard to read or understand. Effort <strong>should</strong> be expended to make code self-documenting, but don't rely on it. Ever.</p>
<p>Indentation shows control flow. A bunch of lines with no indentation may have control flow but it means you have to read each line to detect it:</p>
<pre><code>if(someSituation) somethingElse++;
</code></pre>
<p>vs.</p>
<pre><code>if(someSituation)
somethingElse++;
</code></pre>
<p>The second version jumps out visually. You don't have to read and understand the code to see that a decision was made. Very important when scanning through some code to find something quickly.</p>
<p>Most IDEs and programming editors will allow you to indent a block of code instantly. This is so easy that you should do it just to ensure you don't have a dangling "else" or some other operator-headspace problem. Lack of indentation is <strong>very</strong> hard to justify.</p>
<p>Comments are also important. If the comments don't match the code, then they are both wrong (I don't remember who first said this, but s/he is dead on!).</p>
<p>I put in a comment block when first laying out the code, then code and debug, and then check the comments again. I may find that I have misunderstood the problem (change the comments) or I may have implemented the wrong thing (change the code). Or I may find that I have reimplemented a library function (temporarily comment it all out in case I need to do something strange after all) and put in the call to the function.</p>
<p>Sometimes you have to use a library function that is badly named. You can say RTFM and move on, or you can put in a summary comment and save the next programmer (perhaps yourself in 6 months) some effort.</p>
<pre><code>// This allocates space for the message queue and initializes
// some OS overhead. All that remains after this is adjusting
// priority and content and then send the message.
prepareMessage(&myMessage);
</code></pre>
<p>Further, if you have spent 2 days running down a bug and put in a small change in the code, there is a good chance that the change was not obvious at design time. Else it would have been there in the first place! So a comment is needed to prevent somebody in the future changing it back to the "obvious" implementation.</p>
<pre><code>memset(&myStatus, 0, sizeof(myStatus));
// The size member must be set before getting current values.
// This is used by library function GetCurrentStatus() to infer
// a version of the status structure.
myStatus.length = sizeof(myStatus);
GetCurrentStatus(&myStatus);
</code></pre>
http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/77999#7799916Answer by Harold Bamford for What is the single most effective thing you did to improve your programming skills?Harold Bamford2008-09-16T22:34:58Z2008-09-16T22:34:58Z<p>They say that 70% of good code is error checking and handling. When I started programming that way, my code got a lot better. Thinking about what can go wrong and then handling it right away has made a huge difference. It <em>feels</em> like doing all that checking is just getting in the way of getting the code up and running, but it shortens the time from start to finish by a factor of 2 to 4.</p>
<blockquote>
<p>Just who are these people "they" and where do "they" live?</p>
</blockquote>
http://stackoverflow.com/questions/58640/great-programming-quotes/68126#681266Answer by Harold Bamford for Great programming quotesHarold Bamford2008-09-16T00:08:53Z2008-09-16T00:08:53Z<p>I wish I could attribute this, but it is just something I heard 30 years ago and it still seems applicable:</p>
<p>All programs have at least one bug remaining and can be optimized by one byte. Thus, by mathematical induction, all programs can be reduced to one byte. And it won't work.</p>
http://stackoverflow.com/questions/1180031/how-can-i-access-the-data-in-many-large-csv-files-quickly-from-perl/1180055#1180055Comment by Harold Bamford on How can I access the data in many large CSV files quickly from Perl?Harold Bamford2009-07-27T18:34:45Z2009-07-27T18:34:45ZThanks for the suggestion; this is the way I went. Test results are posted in a separate answer.http://stackoverflow.com/questions/132241/hidden-features-of-c/980530#980530Comment by Harold Bamford on Hidden features of CHarold Bamford2009-06-30T21:50:31Z2009-06-30T21:50:31ZThis is also important in a multi-developer environment where, for instance, Eric adds in "baz," and then George adds in "boom,". If Eric decides to pull his code out for the next project build, it still compiles with George's change. Very important for multi-branch source code control and overlapping development schedules.http://stackoverflow.com/questions/1020192/how-is-assembly-language-incorporated-into-a-program/1020270#1020270Comment by Harold Bamford on How is assembly language incorporated into a program?Harold Bamford2009-06-20T00:06:46Z2009-06-20T00:06:46ZDon't forget small (8 or 16-bit) embedded programming. Assembly is quite common. And the bane of my existence! ☺
In general, assembly should be avoided and if used, heavily commented.http://stackoverflow.com/questions/924340/how-do-i-write-a-bash-alias-function-to-grep-all-files-in-all-subdirectories-for/928608#928608Comment by Harold Bamford on How do I write a bash alias/function to grep all files in all subdirectories for a string?Harold Bamford2009-06-08T22:27:09Z2009-06-08T22:27:09ZInteresting! I've never gotten the "recursive directory loop" as I usually run on a Windows box which doesn't have real symbolic links. I assume that is how you got that error?http://stackoverflow.com/questions/926390/how-can-i-deliberately-slow-windowsComment by Harold Bamford on How can I deliberately slow Windows?Harold Bamford2009-05-29T22:37:24Z2009-05-29T22:37:24ZActually, he said "reversably" so he's asking for a non-standard method! ☺http://stackoverflow.com/questions/639496/c-comparing-bunch-of-values-with-a-given-one/639706#639706Comment by Harold Bamford on C++ comparing bunch of values with a given oneHarold Bamford2009-03-12T20:39:51Z2009-03-12T20:39:51ZI'm not a big fan of boost but the answer here is perfectly respectable and doesn't deserve a down-vote.http://stackoverflow.com/questions/614794/c-c-detecting-superfluous-includes/614811#614811Comment by Harold Bamford on C/C++: Detecting superfluous #includes?Harold Bamford2009-03-05T17:23:25Z2009-03-05T17:23:25ZI use PCLint regularly and it does tell me of unused headers. I'm careful to comment out the header #include and re-compile to be sure that the header is truly unused...http://stackoverflow.com/questions/578304/how-would-you-shorten-this-so-that-action1-and-action2-only-show-up-once-in-code/578334#578334Comment by Harold Bamford on How would you shorten this so that action1 and action2 only show up once in code?Harold Bamford2009-02-23T16:44:03Z2009-02-23T16:44:03ZI agree. Optimization at this level is usually best left to the compiler. This is readable which is often more important than efficiency.http://stackoverflow.com/questions/497421/internal-format-of-visual-studio-ncb-files/497492#497492Comment by Harold Bamford on Internal format of Visual Studio .ncb filesHarold Bamford2009-02-04T16:54:00Z2009-02-04T16:54:00ZI have come to the conclusion that you are correct. However, it seems that there is something called the VCCodeModel which I might use to get the information I need. But no examples in ordinary C++...http://stackoverflow.com/questions/488081/how-do-i-read-the-contents-of-a-small-text-file-into-a-scalar-in-perl/488199#488199Comment by Harold Bamford on How do I read the contents of a small text file into a scalar in Perl?Harold Bamford2009-01-30T16:07:18Z2009-01-30T16:07:18Z$/ is obscure to a beginning Perl programmer. I just didn't see that this answer should be downgraded. I agree that the accepted answer is better on all counts. Possibly the best part about it is the reference to the Perl Cookbook.http://stackoverflow.com/questions/141498/what-open-source-c-static-analysis-tools-are-available/143202#143202Comment by Harold Bamford on What open source C++ static analysis tools are available?Harold Bamford2009-01-29T19:38:18Z2009-01-29T19:38:18ZVS2005/2008 Team onlyhttp://stackoverflow.com/questions/141498/what-open-source-c-static-analysis-tools-are-available/141564#141564Comment by Harold Bamford on What open source C++ static analysis tools are available?Harold Bamford2009-01-29T19:34:49Z2009-01-29T19:34:49Zsplint is for C, not C++. I don't know if they plan to expand coverage or not. Hope so!http://stackoverflow.com/questions/488081/how-do-i-read-the-contents-of-a-small-text-file-into-a-scalar-in-perl/488199#488199Comment by Harold Bamford on How do I read the contents of a small text file into a scalar in Perl?Harold Bamford2009-01-28T16:42:29Z2009-01-28T16:42:29ZIt satisfies the apparent needs of the questioner. It is easy to understand. It is virtually identical to the highest rated answer so far. And it doesn't require knowledge of obscure items like $/. I don't see a problem herehttp://stackoverflow.com/questions/303608/graphviz-for-documentation/370098#370098Comment by Harold Bamford on Graphviz for documentation.Harold Bamford2009-01-26T18:44:38Z2009-01-26T18:44:38ZFor those that really like Visio, you can use Graphviz to output in SVG format (-Tsvg) and then read that into Visio. Which can then be edited to get exactly the desired layout. Saves a lot of grunt work.http://stackoverflow.com/questions/375104/how-can-i-match-a-quote-delimited-string-with-a-regex/375362#375362Comment by Harold Bamford on How can I match a quote-delimited string with a regex?Harold Bamford2008-12-17T18:38:50Z2008-12-17T18:38:50ZIt was. I just now fixed it. I didn't understand the original comment (I thought there was some obscure escaping bug in SO). Sorry for the confusion.