User edg - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T10:14:31Zhttp://stackoverflow.com/feeds/user/4200http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1945202/creating-executables-using-parpackager-pp/1945397#19453970Answer by edg for Creating executables using PAR::Packager (pp)edg2009-12-22T10:08:34Z2009-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!";
<>; # pause for input
</code></pre>
http://stackoverflow.com/questions/1940182/what-does-1-mean-in-perl/1940246#19402465Answer by edg for What does 1; mean in Perl? edg2009-12-21T13:59:20Z2009-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>cat MyTest.pm
package MyTest;
use strict;
sub test { print "test\n"; }
#1; # commented out to show error
C:\temp>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>
</code></pre>
<p>Although it's customary to use "1;" anything that evaluates to true will work.</p>
<pre><code>C:\temp>cat MyTest.pm
package MyTest;
use strict;
sub test { print "test\n"; }
"false";
C:\temp>perl -e "use MyTest"
C:\temp> (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#18867591Answer by edg for Is it possible to find a job in operating systems development?edg2009-12-11T09:06:18Z2009-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#18398972Answer by edg for How can I get file's modification date in DDMMYY format in Perl?edg2009-12-03T13:33:15Z2009-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#18402001Answer by edg for Standard and Interesting Books for IT & Engineeringedg2009-12-03T14:29:00Z2009-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#18401051Answer by edg for Optimal number of items to keep queued for the thread pool in .NET?edg2009-12-03T14:14:49Z2009-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#18323829Answer by edg for How crucial is Model View Controller pattern for software?edg2009-12-02T11:35:23Z2009-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#18267849Answer by edg for How can I get all files in a directory, but not in subdirectories, in Perl?edg2009-12-01T15:05:30Z2009-12-01T15:18:22Z<pre><code>@files = grep { -f && (-M) < 5 } <$_/*> for @folders;
</code></pre>
http://stackoverflow.com/questions/1818595/how-do-i-identify-improvement-areas-for-software-development-in-my-team/1818674#18186746Answer by edg for How do i identify improvement areas for software development in my team?edg2009-11-30T09:08:53Z2009-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#18155715Answer by edg for how to delete a developers workspace edg2009-11-29T13:39:39Z2009-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#18133762Answer by edg for What should I name a table that maps two tables together?edg2009-11-28T18:50:16Z2009-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#18095211Answer by edg for How do I read paragraphs at a time with Perl?edg2009-11-27T16:02:06Z2009-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><DATA>
</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( <DATA> ) {
print "\n-------------------------\n\n";
print;
<>; # <-- 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#18078522Answer by edg for php regex too strictedg2009-11-27T10:11:25Z2009-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#17979463Answer by edg for SQL query, can i have WHERE as a wildcard?edg2009-11-25T16:02:09Z2009-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#17710140Answer by edg for Google Semantic results questionedg2009-11-20T15:01:31Z2009-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 & 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-happens1How can I detect condition that causes exception before it happens?edg2009-02-17T11:58:09Z2009-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-women92I need this baby in a month - send me nine women!edg2008-09-16T20:21:25Z2009-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-object0Identifying underlying sql connection of SqlConnection objectedg2009-02-20T14:15:48Z2009-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#16016070Answer by edg for Identifying underlying sql connection of SqlConnection objectedg2009-10-21T15:25:09Z2009-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#15366531Answer by edg for Tips to show similarities in filesedg2009-10-08T09:25:54Z2009-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-members27Making the most of below-average team membersedg2008-09-21T09:11:59Z2009-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-holiday42Best programming novel to take on holidayedg2008-09-25T14:08:46Z2009-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#14551100Answer by edg for How can I cycle through hex color codes in PHP?edg2009-09-21T15:28:00Z2009-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#14548895Answer by edg for How do I extract single characters or enclosed groupings from a string in Perl?edg2009-09-21T14:44:43Z2009-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#14381762Answer by edg for how to get list of port which are in use at serveredg2009-09-17T11:09:13Z2009-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-keyword6What's the point of the var keyword?edg2008-10-16T15:59:54Z2009-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-sqlconnections0Detecting unusable pooled SqlConnectionsedg2009-02-16T13:39:43Z2009-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#13291610Answer by edg for Detecting unusable pooled SqlConnectionsedg2009-08-25T15:47:38Z2009-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#13226583Answer by edg for How to document the "non-nullableness" of reference types in C#?edg2009-08-24T14:10:03Z2009-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#13213499Answer by edg for Adding digits at Even and Odd Places (C#)edg2009-08-24T09:28:31Z2009-08-24T09:28:31Z<pre><code> bool odd = false;
int oddSum = 1234567.ToString().Sum(c => (odd = !odd) ? c - '0' : 0 );
odd = false;
int evenSum = 1234567.ToString().Sum(c => (odd = !odd) ? 0 : c - '0' );
</code></pre>
http://stackoverflow.com/questions/1840156/standard-and-interesting-books-for-it-engineeringComment by edg on Standard and Interesting Books for IT & Engineeringedg2009-12-03T15:07:35Z2009-12-03T15:07:35ZJust barely programming relatedhttp://stackoverflow.com/questions/1840073/optimal-number-of-items-to-keep-queued-for-the-thread-pool-in-net/1840105#1840105Comment by edg on Optimal number of items to keep queued for the thread pool in .NET?edg2009-12-03T14:21:35Z2009-12-03T14:21:35ZSounds 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-perlComment by edg on How can I get file's modification date in DDMMYY format in Perl?edg2009-12-03T13:57:58Z2009-12-03T13:57:58Z...which changes the question. http://stackoverflow.com/questions/1832354/how-crucial-is-model-view-controller-pattern-for-software/1832382#1832382Comment by edg on How crucial is Model View Controller pattern for software?edg2009-12-02T11:46:32Z2009-12-02T11:46:32Zhe or she or they... <a href="http://www.askoxford.com/betterwriting/classicerrors/grammartips/hesheorthey" rel="nofollow">askoxford.com/betterwriting/classicerrors/…</a>http://stackoverflow.com/questions/1831237/my-plan-for-being-a-great-web-developer-with-ruby-on-rails-specialtyComment by edg on My Plan for Being a Great Web Developer (with Ruby on Rails specialty)edg2009-12-02T11:22:27Z2009-12-02T11:22:27Z@Vinko Before profit comes vital step 5.5: "???"http://stackoverflow.com/questions/1827214/find-regex-pattern-in-vim/1827249#1827249Comment by edg on find regex pattern in Vimedg2009-12-01T16:25:05Z2009-12-01T16:25:05ZNo, 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-tfsbuildComment by edg on What is/are the difference(s) between MSBuild and TFSBuildedg2009-12-01T12:09:43Z2009-12-01T12:09:43Z@John C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\tfsbuild.exehttp://stackoverflow.com/questions/1809469/how-do-i-read-paragraphs-at-a-time-with-perl/1809521#1809521Comment by edg on How do I read paragraphs at a time with Perl?edg2009-11-27T16:09:32Z2009-11-27T16:09:32ZI know, but <> is so close my smirking Friday brain couldn't resist leaping that little detail.http://stackoverflow.com/questions/1807831/php-regex-too-strict/1807852#1807852Comment by edg on php regex too strictedg2009-11-27T15:36:56Z2009-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 "hola" in a file containing "abc hold hole hulk holabc" 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#1807852Comment by edg on php regex too strictedg2009-11-27T11:41:14Z2009-11-27T11:41:14ZHuh? 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-folderComment by edg on Access a locked folderedg2009-09-18T09:45:31Z2009-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#316986Comment by edg on UK Vat change from 17.5 to 15% - How will this affect your code?edg2009-09-18T09:11:35Z2009-09-18T09:11:35ZThat 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#316778Comment by edg on UK Vat change from 17.5 to 15% - How will this affect your code?edg2009-09-18T09:09:54Z2009-09-18T09:09:54ZThis 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#316962Comment by edg on UK Vat change from 17.5 to 15% - How will this affect your code?edg2009-09-18T09:07:25Z2009-09-18T09:07:25ZThis is the method preferred by auditors of my acquaintance.http://stackoverflow.com/questions/1409552/cannot-start-a-windows-service-developed-in-vb-net/1409584#1409584Comment by edg on Cannot start a windows service developed in vb.netedg2009-09-11T16:10:41Z2009-09-11T16:10:41Zperhaps not, though not much else springs to mind. I'll delete this answer to see if it prompts other suggestions.