User edg - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T10:14:31Z http://stackoverflow.com/feeds/user/4200 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1945202/creating-executables-using-parpackager-pp/1945397#1945397 0 Answer by edg for Creating executables using PAR::Packager (pp) edg 2009-12-22T10:08:34Z 2009-12-22T10:08:34Z <p>If you don't get an error how do you know it dies?</p> <p>It's possible your program works just fine but the console window is closing before you can see the output.</p> <p>Perhaps try pausing after printing hello world?</p> <pre><code>print "Hello, World!"; &lt;&gt;; # pause for input </code></pre> http://stackoverflow.com/questions/1940182/what-does-1-mean-in-perl/1940246#1940246 5 Answer by edg for What does 1; mean in Perl? edg 2009-12-21T13:59:20Z 2009-12-21T14:12:15Z <p>Perl modules must return something that evaluates to true. If they don't, perl reports an error.</p> <pre><code>C:\temp&gt;cat MyTest.pm package MyTest; use strict; sub test { print "test\n"; } #1; # commented out to show error C:\temp&gt;perl -e "use MyTest" MyTest.pm did not return a true value at -e line 1. BEGIN failed--compilation aborted at -e line 1. C:\temp&gt; </code></pre> <p>Although it's customary to use "1;" anything that evaluates to true will work.</p> <pre><code>C:\temp&gt;cat MyTest.pm package MyTest; use strict; sub test { print "test\n"; } "false"; C:\temp&gt;perl -e "use MyTest" C:\temp&gt; (no error here) </code></pre> <p>For obvious reasons another popular return value is <strong>42</strong>. </p> <p>There's a list of cool return values maintained at <a href="http://returnvalues.useperl.at/values.html" rel="nofollow">http://returnvalues.useperl.at/values.html</a></p> http://stackoverflow.com/questions/1886700/is-it-possible-to-find-a-job-in-operating-systems-development/1886759#1886759 1 Answer by edg for Is it possible to find a job in operating systems development? edg 2009-12-11T09:06:18Z 2009-12-11T09:17:41Z <p>You could do worse than check out the links in <a href="http://stackoverflow.com/questions/43180/how-to-get-started-in-operating-system-development">this question</a>.</p> <p>And then, when qualified, candidates should stay away from recruiters <a href="http://thedailywtf.com/Comments/The-ShoeIn.aspx#289661" rel="nofollow">like this</a>.</p> http://stackoverflow.com/questions/1839877/how-can-i-get-files-modification-date-in-ddmmyy-format-in-perl/1839897#1839897 2 Answer by edg for How can I get file's modification date in DDMMYY format in Perl? edg 2009-12-03T13:33:15Z 2009-12-03T16:53:44Z <p><strong>UPDATE</strong>: Note that this answer was to the original question, which specifically excluded use of DateTime modules.</p> <p>To get modified time</p> <pre><code>my $mtime = (stat $filename)[9]; </code></pre> <p>This returns the last modify time in seconds since the epoch.</p> <p>Then, to translate to date components, use localtime -</p> <pre><code>my($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime($mtime); </code></pre> <p>Note that localtime returns 0 for Jan, 1 for Feb, etc, and $year is the number of years since 1900, so 109 -> 2009.</p> <p>Then to output in the format DDMMYY -</p> <pre><code>print substr('0'.$mday,-2), substr('0'.($mon+1),-2), substr($year+1900,-2); </code></pre> <p>So it's easier - and less error-prone - to simply use Date::Format if you can. </p> http://stackoverflow.com/questions/1840156/standard-and-interesting-books-for-it-engineering/1840200#1840200 1 Answer by edg for Standard and Interesting Books for IT & Engineering edg 2009-12-03T14:29:00Z 2009-12-03T14:29:00Z <p>Here's the answer that was given on Daniweb <a href="http://www.daniweb.com/forums/thread243196.html" rel="nofollow">when this was asked there</a>.</p> <p><a href="http://stackoverflow.com/questions/170208/must-have-books-on-your-bookshelf">http://stackoverflow.com/questions/170208/must-have-books-on-your-bookshelf</a></p> http://stackoverflow.com/questions/1840073/optimal-number-of-items-to-keep-queued-for-the-thread-pool-in-net/1840105#1840105 1 Answer by edg for Optimal number of items to keep queued for the thread pool in .NET? edg 2009-12-03T14:14:49Z 2009-12-03T14:24:16Z <p>Is it possible you could simplify the approach by modifying your items to first check they are still required before they do any work? This would skirt the problem of limiting the number in the pool, since you can simply add them all and when each item gets processed it will exit if no longer needed.</p> <blockquote> <p>The number of operations that can be queued to the thread pool is limited only by available memory; however, the thread pool limits the number of threads that can be active in the process simultaneously. By default, the limit is 250 worker threads per CPU and 1,000 I/O completion threads.</p> <p>You can control the maximum number of threads by using the GetMaxThreads and SetMaxThreads methods.</p> </blockquote> <p><a href="http://msdn.microsoft.com/en-us/library/0ka9477y.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/0ka9477y.aspx</a></p> http://stackoverflow.com/questions/1832354/how-crucial-is-model-view-controller-pattern-for-software/1832382#1832382 9 Answer by edg for How crucial is Model View Controller pattern for software? edg 2009-12-02T11:35:23Z 2009-12-02T11:35:23Z <p>On the one hand your architect is doing his job - provoking debate on important subjects.</p> <p>On the other hand your architect is being a jackass clown, and he probably knows it.</p> http://stackoverflow.com/questions/1826675/how-can-i-get-all-files-in-a-directory-but-not-in-subdirectories-in-perl/1826784#1826784 9 Answer by edg for How can I get all files in a directory, but not in subdirectories, in Perl? edg 2009-12-01T15:05:30Z 2009-12-01T15:18:22Z <pre><code>@files = grep { -f &amp;&amp; (-M) &lt; 5 } &lt;$_/*&gt; for @folders; </code></pre> http://stackoverflow.com/questions/1818595/how-do-i-identify-improvement-areas-for-software-development-in-my-team/1818674#1818674 6 Answer by edg for How do i identify improvement areas for software development in my team? edg 2009-11-30T09:08:53Z 2009-11-30T09:08:53Z <p>Having been in this tricky position a few times let me give you one piece of candid advice.</p> <p><strong>The person who gave you this task almost certainly has an idea in mind, and they would like you to reinforce that idea.</strong></p> <p>How you react to this is up to you and the environment in which you work.</p> http://stackoverflow.com/questions/1815562/how-to-delete-a-developers-workspace/1815571#1815571 5 Answer by edg for how to delete a developers workspace edg 2009-11-29T13:39:39Z 2009-11-29T13:39:39Z <p><a href="http://blogs.msdn.com/mrod/archive/2007/01/08/undoing-a-checkout-that-belongs-to-another-user.aspx" rel="nofollow">How to: Undo another users check-out</a></p> <p><a href="http://msdn.microsoft.com/en-us/library/ms245474.aspx" rel="nofollow">How to: Remove a Workspace</a></p> http://stackoverflow.com/questions/1813321/what-should-i-name-a-table-that-maps-two-tables-together/1813376#1813376 2 Answer by edg for What should I name a table that maps two tables together? edg 2009-11-28T18:50:16Z 2009-11-28T18:50:16Z <p>This is an <a href="http://en.wikipedia.org/wiki/Associative%5FEntities" rel="nofollow">Associative Entity</a> and is quite often significant in its own right.</p> <p>For example, a many to many relationship between TRAINS and TIMES gives rise to a TIMETABLE.</p> <p>If there's no obvious new entity (such as timetable) then the convention is to run the two words together, giving COLOUR_SHAPE or similar.</p> http://stackoverflow.com/questions/1809469/how-do-i-read-paragraphs-at-a-time-with-perl/1809521#1809521 1 Answer by edg for How do I read paragraphs at a time with Perl? edg 2009-11-27T16:02:06Z 2009-11-27T16:08:16Z <p>I guess you're expecting this line</p> <pre><code>local $/ = ""; </code></pre> <p>to change the behaviour of </p> <pre><code>&lt;DATA&gt; </code></pre> <p>to keep reading until the end of the data.</p> <p>But in fact it takes something like this</p> <pre><code>{ local $/; # $/ becomes undef in this block ... } </code></pre> <p>to enable <a href="http://www.perl.com/pub/a/2004/06/18/variables.html" rel="nofollow">slurp mode</a> (and to contain that mode to the scope inside the {curlys}).</p> <p>In effect it's saying "forget about thinking of newlines as the end-of-record marker",</p> <p>Besides that... there's a <a href="http://en.wikipedia.org/wiki/TIE%5Ffighter" rel="nofollow">tie fighter</a> in your code!</p> <pre><code>while( &lt;DATA&gt; ) { print "\n-------------------------\n\n"; print; &lt;&gt;; # &lt;-- Feel the power of the DARK SIDE!!! } </code></pre> <p>This little guy will read from STDIN, not from DATA - is that really what you want?</p> http://stackoverflow.com/questions/1807831/php-regex-too-strict/1807852#1807852 2 Answer by edg for php regex too strict edg 2009-11-27T10:11:25Z 2009-11-27T10:11:25Z <p>This part</p> <pre><code>@[\w\d.-]{2,} </code></pre> <p>is gobbling up </p> <pre><code>@gmail.com </code></pre> <p>leaving nothing for this part</p> <pre><code>[\w\d.-]{2,} </code></pre> <p>to match.</p> <p>Better to reuse something already proven, see for example <a href="http://www.regular-expressions.info/email.html" rel="nofollow">http://www.regular-expressions.info/email.html</a></p> http://stackoverflow.com/questions/1797661/sql-query-can-i-have-where-as-a-wildcard/1797946#1797946 3 Answer by edg for SQL query, can i have WHERE as a wildcard? edg 2009-11-25T16:02:09Z 2009-11-25T16:02:09Z <p><a href="http://xkcd.com/327/" rel="nofollow">Obligatory XKCD</a></p> http://stackoverflow.com/questions/1770964/google-semantic-results-question/1771014#1771014 0 Answer by edg for Google Semantic results question edg 2009-11-20T15:01:31Z 2009-11-20T15:01:31Z <p>Google is light with details, but here's what they said in their <a href="http://googleblog.blogspot.com/2009/11/new-site-hierarchies-display-in-search.html" rel="nofollow">announcement</a>.</p> <blockquote> <p>The information in these new hierarchies come from analyzing destination web pages. For example, if you visit the ProductWiki Spidersapien page, you'll see a series of similar links at the top, "Home> Toys &amp; Games> Robots." These are standard navigational tools used throughout the web called "breadcrumbs," which webmasters frequently show on their sites to help users navigate. By analyzing site breadcrumbs, we've been able to improve the search snippet for a small percentage of search results, and we hope to expand in the future.</p> </blockquote> http://stackoverflow.com/questions/556494/how-can-i-detect-condition-that-causes-exception-before-it-happens 1 How can I detect condition that causes exception before it happens? edg 2009-02-17T11:58:09Z 2009-10-21T16:36:54Z <p>I had no luck with <a href="http://stackoverflow.com/questions/553331/detecting-unusable-pooled-sqlconnections">this question</a> so I've produced this simple-as-possible-test-case to demonstrate the problem.</p> <p>In the code below, is it possible to detect that the connection is unusable before trying to use it?</p> <pre><code> SqlConnection c = new SqlConnection(myConnString); c.Open(); // creates pool setAppRole(c); // OK c.Close(); // returns connection to pool c = new SqlConnection(myConnString); // gets connection from pool c.Open(); // ok... but wait for it... // ??? How to detect KABOOM before it happens? setAppRole(c); // KABOOM </code></pre> <p>The KABOOM manifests as a error in the Windows event log;</p> <blockquote> <p>The connection has been dropped because the principal that opened it subsequently assumed a new security context, and then tried to reset the connection under its impersonated security context. This scenario is not supported. See "Impersonation Overview" in Books Online.</p> </blockquote> <p>...plus an exception in code.</p> <p>setAppRole is a simple method to set an application role on the connection. It is similar to this...</p> <pre><code>static void setAppRole(SqlConnection conn) { using (IDbCommand cmd = conn.CreateCommand()) { cmd.CommandType = CommandType.Text; cmd.CommandText = "exec sp_setapprole "; cmd.CommandText += string.Format("@rolename='{0}'",myUser); cmd.CommandText += string.Format(",@password='{0}'",myPassword); cmd.ExecuteNonQuery(); } } </code></pre> <p>In the real code an attempt is made to use <strong>sp_unsetapprole</strong> prior to closing the connection but it cannot always be guaranteed (inherited buggy multithreaded app). In any case it still seems reasonable to expect to be able to detect the kaboom before causing it.</p> http://stackoverflow.com/questions/76526/i-need-this-baby-in-a-month-send-me-nine-women 92 I need this baby in a month - send me nine women! edg 2008-09-16T20:21:25Z 2009-10-21T15:29:09Z <p>Under what circumstances - if any - does adding programmers to a team actually speed development of an already late project?</p> http://stackoverflow.com/questions/569688/identifying-underlying-sql-connection-of-sqlconnection-object 0 Identifying underlying sql connection of SqlConnection object edg 2009-02-20T14:15:48Z 2009-10-21T15:25:09Z <p>I can use GetHashCode() to identify an object but is there any way to identify the actual sql connection obtained by a SqlConnection object?</p> <p>I'm (still) trying to debug a problem involving pooled connections and application roles and if I could reliably identify the underlying sql connection it could help a lot.</p> <p>Here's some code that might illustrate the question</p> <pre><code>SqlConnection c = new SqlConnection(myConnString); c.Open(); // GetHashCode == "X" c.Close(); // returns connection to pool c.Open; // GetHashCode() == "X" but possibly different pooled connection? </code></pre> <p>As I write this question it occurs to me that what I probably want is the SPID of the connection. Sadly, SPID isn't available when the connection is dropped by SQL due to the bug I'm trying to resolve (so at the point I'm most interested in I can't run a command on that connection to obtain the SPID).</p> <p>Any other bright ideas? </p> http://stackoverflow.com/questions/569688/identifying-underlying-sql-connection-of-sqlconnection-object/1601607#1601607 0 Answer by edg for Identifying underlying sql connection of SqlConnection object edg 2009-10-21T15:25:09Z 2009-10-21T15:25:09Z <p>Not to say that this is impossible, but I've not yet found any way to do it.</p> http://stackoverflow.com/questions/1536643/tips-to-show-similarities-in-files/1536653#1536653 1 Answer by edg for Tips to show similarities in files edg 2009-10-08T09:25:54Z 2009-10-08T09:25:54Z <p>There is a Copy-Paste Detection (CPD) project on sourceforge; <a href="http://pmd.sourceforge.net/cpd.html" rel="nofollow">http://pmd.sourceforge.net/cpd.html</a></p> <p>But even in large projects I find my own knowledge of the code to be a reliable (although not foolproof) detection mechanism. </p> <p>Also see <a href="http://stackoverflow.com/questions/191614/how-to-detect-code-duplication-during-development">this question</a> for other suggestions.</p> http://stackoverflow.com/questions/110600/making-the-most-of-below-average-team-members 27 Making the most of below-average team members edg 2008-09-21T09:11:59Z 2009-10-06T10:17:07Z <p>In an ideal world every software development team would be populated with PhD-level team members, all highly motivated and working in harmony.</p> <p>But most businesses are not as well-funded and focused as, say, Google or Microsoft, and quite often a legacy of poor hiring practices means that a team of reasonable size (say 10 or more) will probably contain a few members that are distinctly average or below average.</p> <p>I expect some will say "just fire them", but it's not usually that simple for reasons that are interesting but not immediately relevant to this question (mostly political).</p> <p>Assuming that the team is bound to contain at least one or two of these below-average developers, what would you suggest is the best way to make the most of the situation?</p> <p>EDIT: "50% of all programmers are below average"... not true! You could have 9 stars in a team and 1 donkey, but only the donkey would be below average.</p> <p>EDIT: @Christophe Herreman makes an excellent distinction between below-average team members with potential and those without. </p> http://stackoverflow.com/questions/133556/best-programming-novel-to-take-on-holiday 42 Best programming novel to take on holiday edg 2008-09-25T14:08:46Z 2009-10-02T01:17:06Z <p>I am about enjoy a two week break in Spain where I expect to have lots of time for relaxing and reading. </p> <p>I normally read a lot of non-fiction so I'm looking for novel suggestions. </p> <p>If there is another <a href="http://en.wikipedia.org/wiki/Cryptonomicon" rel="nofollow">Cryptonomicon</a> out there I'd love to hear about it!</p> <p><strong>UPDATE</strong>: In the end I took four books including Quicksilver. Quicksilver was fantastic and I look forward to continuing the series. I was disappointed with Gen X (Coupland) and Pattern Recognition (Gibson). Upon arrival I also found The Monsters Of Gramercy Park (Leigh) which was enjoyable though sad. Thanks for all the recommendations, I'm sure to return to this list when I have more free time.</p> http://stackoverflow.com/questions/1455094/how-can-i-cycle-through-hex-color-codes-in-php/1455110#1455110 0 Answer by edg for How can I cycle through hex color codes in PHP? edg 2009-09-21T15:28:00Z 2009-09-21T15:28:00Z <p><a href="http://www.visibone.com/colorlab/" rel="nofollow">http://www.visibone.com/colorlab/</a></p> http://stackoverflow.com/questions/1454827/how-do-i-extract-single-characters-or-enclosed-groupings-from-a-string-in-perl/1454889#1454889 5 Answer by edg for How do I extract single characters or enclosed groupings from a string in Perl? edg 2009-09-21T14:44:43Z 2009-09-21T14:57:23Z <p>You could grep the results for non-empty elements;</p> <pre><code>my @list = grep /./, split(/(\[.*?\]|.)/, $str); </code></pre> <p>Alternatively, </p> <pre><code>my @list = $str =~ /\[.*?\]|./g; </code></pre> http://stackoverflow.com/questions/1438141/how-to-get-list-of-port-which-are-in-use-at-server/1438176#1438176 2 Answer by edg for how to get list of port which are in use at server edg 2009-09-17T11:09:13Z 2009-09-17T11:09:13Z <p>"TCPView is a Windows program that will show you detailed listings of all TCP and UDP endpoints on your system, including the local and remote addresses and state of TCP connections. On Windows Server 2008, Vista, NT, 2000 and XP TCPView also reports the name of the process that owns the endpoint. TCPView provides a more informative and conveniently presented subset of the Netstat program that ships with Windows. The TCPView download includes Tcpvcon, a command-line version with the same functionality."</p> <p><a href="http://technet.microsoft.com/en-us/sysinternals/bb897437.aspx" rel="nofollow">http://technet.microsoft.com/en-us/sysinternals/bb897437.aspx</a></p> http://stackoverflow.com/questions/209199/whats-the-point-of-the-var-keyword 6 What's the point of the var keyword? edg 2008-10-16T15:59:54Z 2009-08-27T12:39:01Z <p>The <a href="http://msdn.microsoft.com/en-us/library/bb384061.aspx" rel="nofollow">var</a> keyword does away with the need for an explicit type declaration and I have read with interest the <a href="http://stackoverflow.com/questions/41479/use-of-var-keyword-in-c">SO discussion</a> of when it might be appropriate.</p> <p>I have also read about (but not used) <a href="http://boo.codehaus.org" rel="nofollow">Boo</a> which seems to take things a step further by making it <a href="http://boo.codehaus.org/Type+Inference" rel="nofollow">optional to declare a local variable</a>. With Boo, both the type and the declaration can be implied.</p> <p>Which leads me to wonder, why did the C# language designers bother to include a var keyword at all? </p> <p><strong>Update</strong>: Yes, var supports Anonymous types, but anonymous types by themselves do not necessitate the var keyword...</p> <pre><code>var anon = new { Name = "Terry", Age = 34 }; </code></pre> <p>versus</p> <pre><code>anon = new { Name = "Terry", Age = 34 }; </code></pre> http://stackoverflow.com/questions/553331/detecting-unusable-pooled-sqlconnections 0 Detecting unusable pooled SqlConnections edg 2009-02-16T13:39:43Z 2009-08-25T15:47:38Z <p>When I attempt to set an application role on a SqlConnection with <a href="http://msdn.microsoft.com/en-us/library/ms188908.aspx" rel="nofollow">sp_setapprole</a> I sometimes get the following error in the Windows event log...</p> <blockquote> <p>The connection has been dropped because the principal that opened it subsequently assumed a new security context, and then tried to reset the connection under its impersonated security context. This scenario is not supported. See "Impersonation Overview" in Books Online.)</p> </blockquote> <p>... and a matching exception is thrown in my application.</p> <p>These are pooled connections, and there was a time when connection pooling was incompatible with app roles - in fact the old advice from Microsoft was to <a href="http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q229564" rel="nofollow">disable connection pooling</a> (!!) but with the introduction of <a href="http://msdn.microsoft.com/en-us/library/ms365415.aspx" rel="nofollow">sp_unsetapprole</a> it is now (in theory) possible to clean a connection before returning it to the pool.</p> <p>I believe these errors occur when (for reasons unknown) sp_unsetapprole is not run on the connection before it is closed and returned to the connection pool. sp_approle is then doomed to fail when this connection is returned from the pool.</p> <p>I can catch and handle this exception but I would much prefer to detect the impending failure and avoid the exception (and messages in the event log) altogether.</p> <p>Is it possible to detect the problem without causing the exception?</p> <p>Thoughts or advice welcome. </p> http://stackoverflow.com/questions/553331/detecting-unusable-pooled-sqlconnections/1329161#1329161 0 Answer by edg for Detecting unusable pooled SqlConnections edg 2009-08-25T15:47:38Z 2009-08-25T15:47:38Z <p>Nope, it's not possible.</p> http://stackoverflow.com/questions/1322644/how-to-document-the-non-nullableness-of-reference-types-in-c/1322658#1322658 3 Answer by edg for How to document the "non-nullableness" of reference types in C#? edg 2009-08-24T14:10:03Z 2009-08-24T14:10:03Z <pre><code>Debug.Assert(classInstanceRef != null); </code></pre> http://stackoverflow.com/questions/1321237/adding-digits-at-even-and-odd-places-c/1321349#1321349 9 Answer by edg for Adding digits at Even and Odd Places (C#) edg 2009-08-24T09:28:31Z 2009-08-24T09:28:31Z <pre><code> bool odd = false; int oddSum = 1234567.ToString().Sum(c =&gt; (odd = !odd) ? c - '0' : 0 ); odd = false; int evenSum = 1234567.ToString().Sum(c =&gt; (odd = !odd) ? 0 : c - '0' ); </code></pre> http://stackoverflow.com/questions/1840156/standard-and-interesting-books-for-it-engineering Comment by edg on Standard and Interesting Books for IT & Engineering edg 2009-12-03T15:07:35Z 2009-12-03T15:07:35Z Just barely programming related http://stackoverflow.com/questions/1840073/optimal-number-of-items-to-keep-queued-for-the-thread-pool-in-net/1840105#1840105 Comment by edg on Optimal number of items to keep queued for the thread pool in .NET? edg 2009-12-03T14:21:35Z 2009-12-03T14:21:35Z Sounds like it is certainly worth a try, especially if it means avoiding this other complexity in sizing and managing the pool by hand. http://stackoverflow.com/questions/1839877/how-can-i-get-files-modification-date-in-ddmmyy-format-in-perl Comment by edg on How can I get file's modification date in DDMMYY format in Perl? edg 2009-12-03T13:57:58Z 2009-12-03T13:57:58Z ...which changes the question. http://stackoverflow.com/questions/1832354/how-crucial-is-model-view-controller-pattern-for-software/1832382#1832382 Comment by edg on How crucial is Model View Controller pattern for software? edg 2009-12-02T11:46:32Z 2009-12-02T11:46:32Z he or she or they... <a href="http://www.askoxford.com/betterwriting/classicerrors/grammartips/hesheorthey" rel="nofollow">askoxford.com/betterwriting/classicerrors/&hellip;</a> http://stackoverflow.com/questions/1831237/my-plan-for-being-a-great-web-developer-with-ruby-on-rails-specialty Comment by edg on My Plan for Being a Great Web Developer (with Ruby on Rails specialty) edg 2009-12-02T11:22:27Z 2009-12-02T11:22:27Z @Vinko Before profit comes vital step 5.5: &quot;???&quot; http://stackoverflow.com/questions/1827214/find-regex-pattern-in-vim/1827249#1827249 Comment by edg on find regex pattern in Vim edg 2009-12-01T16:25:05Z 2009-12-01T16:25:05Z No, it won't. It will only match where there is no comma before the spaces. http://stackoverflow.com/questions/1070658/what-is-are-the-differences-between-msbuild-and-tfsbuild Comment by edg on What is/are the difference(s) between MSBuild and TFSBuild edg 2009-12-01T12:09:43Z 2009-12-01T12:09:43Z @John C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\tfsbuild.exe http://stackoverflow.com/questions/1809469/how-do-i-read-paragraphs-at-a-time-with-perl/1809521#1809521 Comment by edg on How do I read paragraphs at a time with Perl? edg 2009-11-27T16:09:32Z 2009-11-27T16:09:32Z I know, but &lt;&gt; is so close my smirking Friday brain couldn't resist leaping that little detail. http://stackoverflow.com/questions/1807831/php-regex-too-strict/1807852#1807852 Comment by edg on php regex too strict edg 2009-11-27T15:36:56Z 2009-11-27T15:36:56Z @Newb - OK let me take wild guess at what you're asking. You're asking if all FIND operations use RegEx? The answer is no. Why should they? If I want to search for string &quot;hola&quot; in a file containing &quot;abc hold hole hulk holabc&quot; I can just look for the string itself, no Regex magic required. RegEx allows you (the developer) to search for a variety of strings using one expression (the regex) instead of many expressions (literal strings). Is that what you're asking about? http://stackoverflow.com/questions/1807831/php-regex-too-strict/1807852#1807852 Comment by edg on php regex too strict edg 2009-11-27T11:41:14Z 2009-11-27T11:41:14Z Huh? The behaviour of Ctrl+F depends entirely on which application receives those keys when I hit them. http://stackoverflow.com/questions/1443449/access-a-locked-folder Comment by edg on Access a locked folder edg 2009-09-18T09:45:31Z 2009-09-18T09:45:31Z <a href="http://superuser.com" rel="nofollow">superuser.com</a> http://stackoverflow.com/questions/316757/uk-vat-change-from-17-5-to-15-how-will-this-affect-your-code/316986#316986 Comment by edg on UK Vat change from 17.5 to 15% - How will this affect your code? edg 2009-09-18T09:11:35Z 2009-09-18T09:11:35Z That kind of excitement I'm sure I can live without. http://stackoverflow.com/questions/316757/uk-vat-change-from-17-5-to-15-how-will-this-affect-your-code/316778#316778 Comment by edg on UK Vat change from 17.5 to 15% - How will this affect your code? edg 2009-09-18T09:09:54Z 2009-09-18T09:09:54Z This is the classic approach but not the approach preferred by real life auditors. http://stackoverflow.com/questions/316757/uk-vat-change-from-17-5-to-15-how-will-this-affect-your-code/316962#316962 Comment by edg on UK Vat change from 17.5 to 15% - How will this affect your code? edg 2009-09-18T09:07:25Z 2009-09-18T09:07:25Z This is the method preferred by auditors of my acquaintance. http://stackoverflow.com/questions/1409552/cannot-start-a-windows-service-developed-in-vb-net/1409584#1409584 Comment by edg on Cannot start a windows service developed in vb.net edg 2009-09-11T16:10:41Z 2009-09-11T16:10:41Z perhaps not, though not much else springs to mind. I'll delete this answer to see if it prompts other suggestions.