User Andy Lester - Stack Overflowmost recent 30 from stackoverflow.com2009-12-05T06:55:18Zhttp://stackoverflow.com/feeds/user/8454http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/197734/how-can-i-tune-the-php-realpath-cache0How can I tune the PHP realpath cache?Andy Lester2008-10-13T14:19:09Z2009-11-20T18:53:06Z
<p>Recent versions of PHP have a cache of filenames for knowing the real path of files, and require_once() and include_once() can take advantage of it.</p>
<p>There's a value you can set in your php.ini to set the size of the cache, but I have no idea how to tell what the size should be. The default value is 16k, but I see no way of telling how much of that cache we're using. The docs are vague: </p>
<p><a href="http://us2.php.net/manual/en/ini.core.php#ini.realpath-cache-size" rel="nofollow">Determines the size of the realpath cache to be used by PHP. This value should be increased on systems where PHP opens many files, to reflect the quantity of the file operations performed.</a></p>
<p>Yes, I can jack up the amount of cache allowed, and run tests with ab or some other testing, but I'd like something with a little more introspection than just timing from a distance.</p>
http://stackoverflow.com/questions/104756/how-do-you-count-your-lines-of-code/111935#1119355Answer by Andy Lester for How do you count your Lines of Code?Andy Lester2008-09-21T20:09:04Z2009-10-26T20:12:33Z<p>I'm dismayed by the use of cat.</p>
<pre><code>find . -regex '.+\.cc$' | xargs cat | wc
</code></pre>
<p>is the same as</p>
<pre><code>find . -regex '.+\.cc$' | xargs wc
</code></pre>
<p>and</p>
<pre><code>cat *.java | grep '[;{]' | wc -l
</code></pre>
<p>is the same as</p>
<pre><code>grep '[;{]' *.java | wc -l
</code></pre>
<p>or even</p>
<pre><code>grep -c '[;{]' *.java
</code></pre>
<p>One rarely needs to use cat.</p>
http://stackoverflow.com/questions/1604181/how-do-i-input-data-into-input-form-using-php/1604234#16042341Answer by Andy Lester for How do I input data into <input> form using PHP?Andy Lester2009-10-21T23:33:40Z2009-10-21T23:33:40Z<p>If you're not tied to PHP, and can use Perl, use WWW::Mechanize.</p>
<p><a href="http://search.cpan.org/dist/WWW-Mechanize/" rel="nofollow">http://search.cpan.org/dist/WWW-Mechanize/</a></p>
http://stackoverflow.com/questions/1188714/looping-through-get-post-and-cookie-to-sanitize/1188780#11887801Answer by Andy Lester for Looping Through GET, POST, and COOKIE to Sanitize?Andy Lester2009-07-27T15:17:10Z2009-07-27T15:17:10Z<p>Don't try to sanitize data. Use queries with placeholders. See <a href="http://bobby-tables.com" rel="nofollow">bobby-tables.com</a></p>
http://stackoverflow.com/questions/1112325/best-way-to-ask-force-an-employer-to-give-you-better-office-equipment-eg-chairs/1112727#11127270Answer by Andy Lester for Best way to ask/force an employer to give you better office equipment (eg. Chairs)Andy Lester2009-07-11T01:57:39Z2009-07-11T01:57:39Z<p>Businesses exist to make money, not to make you comfortable.</p>
<p>If you want something from a business, you need to show that it affects the business.</p>
<p>Business speaks two languages: Money and time.</p>
<p>Is there a negative impact on the business because of this chair? Something that translates to time or money? Then explain that.</p>
http://stackoverflow.com/questions/895574/what-are-some-good-code-optimization-methods/896051#8960519Answer by Andy Lester for What are some good code optimization methods?Andy Lester2009-05-22T01:34:22Z2009-05-22T01:34:22Z<p>The rules of Optimization Club:</p>
<ol>
<li>The first rule of Optimization Club is, you do not Optimize.</li>
<li>The second rule of Optimization Club is, you do not Optimize without measuring.</li>
<li>If your app is running faster than the underlying transport protocol, the optimization is over.</li>
<li>One factor at a time.</li>
<li>No marketroids, no marketroid schedules.</li>
<li>Testing will go on as long as it has to.</li>
<li>If this is your first night at Optimization Club, you have to write a test case. </li>
</ol>
<p><a href="http://xoa.petdance.com/Rules%5Fof%5FOptimization%5FClub" rel="nofollow">http://xoa.petdance.com/Rules_of_Optimization_Club</a></p>
<p>Rule #3 is the one that trips most people up. It doesn't matter how fast your calculations are if your program sits waiting for disk writes or network transfer.</p>
<p>Rules #6 and #7: Always have tests. If you're optimizing, you're refactoring, and you don't want to be refactoring without having a solid test suite.</p>
http://stackoverflow.com/questions/871795/how-to-know-where-a-form-came-from/871800#871800-2Answer by Andy Lester for How to know where a form came from?Andy Lester2009-05-16T05:50:46Z2009-05-18T18:46:03Z<p>You can't really tell. Why would it matter? If you're trying to detect if someone has forged a request, you can't.</p>
<p><strong>Amended</strong>: The green solution above does help some issues, but it doesn't address the question of if it came from your site, or if it was modified.</p>
http://stackoverflow.com/questions/863867/database-speed-optimization-few-tables-with-many-rows-or-many-tables-with-few-r/864011#8640114Answer by Andy Lester for Database speed optimization: few tables with many rows, or many tables with few rows?Andy Lester2009-05-14T15:24:01Z2009-05-14T15:24:01Z<p>Before you worry about query speed, consider the costs.</p>
<p>If you split the code into separate code, you will have to have code that handles it. Every bit of code you write has the chance to be wrong. You are asking for your code to be buggy at the expense of some unmeasured and imagined performance win.</p>
<p>Also consider the cost of machine time vs. programmer time.</p>
http://stackoverflow.com/questions/860378/using-semicolons-in-oracle-sql-statements/860423#8604239Answer by Andy Lester for Using Semicolons in Oracle SQL StatementsAndy Lester2009-05-13T21:03:37Z2009-05-13T21:03:37Z<p>It's not the semicolon. Rerunning the same query meant that the rows were already cached, so you got them back much faster.</p>
http://stackoverflow.com/questions/855450/sql-userid-name-profile-optimize-question/860149#8601491Answer by Andy Lester for sql userid + name + profile optimize questionAndy Lester2009-05-13T20:11:34Z2009-05-13T20:11:34Z<p>Please don't bother worrying about optimizing that lookup unless you are sure it needs to be. Please remember the rules of Optmization Club.</p>
<ol>
<li>The first rule of Optimization Club is, you do not Optimize.</li>
<li>The second rule of Optimization Club is, you do not Optimize without measuring.</li>
<li>If your app is running faster than the underlying transport protocol, the optimization is over.</li>
<li>One factor at a time.</li>
<li>No marketroids, no marketroid schedules.</li>
<li>Testing will go on as long as it has to.</li>
<li>If this is your first night at Optimization Club, you have to write a test case. </li>
</ol>
http://stackoverflow.com/questions/698038/windows-recursive-grep-command-line/842611#8426110Answer by Andy Lester for Windows recursive grep command-lineAndy Lester2009-05-09T03:53:00Z2009-05-09T03:53:00Z<p>Do you have Perl installed? You can use ack, available at <a href="http://betterthangrep.com/" rel="nofollow">http://betterthangrep.com/</a>.</p>
http://stackoverflow.com/questions/699401/while-grep-multiple-files-how-do-i-stop-after-first-match/842606#8426060Answer by Andy Lester for while grep multiple files, how do I stop after first match?Andy Lester2009-05-09T03:47:50Z2009-05-09T03:47:50Z<p>If you use ack, at <a href="http://betterthangrep.com/" rel="nofollow">http://betterthangrep.com/</a>, you can use the -1 flag for exactly this reason.</p>
http://stackoverflow.com/questions/842598/find-in-files-using-ruby-or-python/842603#8426031Answer by Andy Lester for find in files using ruby or pythonAndy Lester2009-05-09T03:45:06Z2009-05-09T03:45:06Z<p>If you'll expand your languages, take a look at ack at <a href="http://betterthangrep.com/" rel="nofollow">http://betterthangrep.com/</a></p>
http://stackoverflow.com/questions/764942/using-local-settings-through-ssh/764954#7649545Answer by Andy Lester for Using local settings through SSHAndy Lester2009-04-19T06:22:15Z2009-04-19T06:22:15Z<p>No, because it's not SSH using your config files, but the remote shell.</p>
<p>I suggest keeping your config files in Subversion or some other VCS. <a href="http://xoa.petdance.com/How%5Fto:%5FKeep%5Fyour%5Fhome%5Fdirectory%5Fin%5FSubversion" rel="nofollow">Here's how I do it</a>.</p>
http://stackoverflow.com/questions/549894/wiki-parser/550354#5503541Answer by Andy Lester for Wiki Parser?Andy Lester2009-02-15T04:59:20Z2009-02-15T04:59:20Z<p>You may get some ideas out of this Perl module:</p>
<p><a href="http://search.cpan.org/dist/HTML-WikiConverter-MediaWiki/" rel="nofollow">http://search.cpan.org/dist/HTML-WikiConverter-MediaWiki/</a></p>
<p>I understand you're looking for C/C++, but hey, you might get some goodness.</p>
http://stackoverflow.com/questions/550335/how-can-i-install-git-to-my-server-which-does-not-have-apt-get/550343#5503430Answer by Andy Lester for How can I install Git to my server which does not have apt-get?Andy Lester2009-02-15T04:49:02Z2009-02-15T04:49:02Z<p>Get the source from <a href="http://git.or.cz/" rel="nofollow">http://git.or.cz/</a></p>
http://stackoverflow.com/questions/248052/how-can-i-improve-this-sql-query1How can I improve this SQL query?Andy Lester2008-10-29T19:13:47Z2009-01-30T06:13:09Z
<p>I'm checking for existing of a row in in_fmd, and the ISBN I look up can be the ISBN parameter, or another ISBN in a cross-number table that may or may not have a row.</p>
<pre><code>select count(*)
from in_fmd i
where (description='GN')
and ( i.isbn in
(
select bwi_isbn from bw_isbn where orig_isbn = ?
union all
select cast(? as varchar) as isbn
)
)
</code></pre>
<p>I don't actually care about the count of the rows, but rather mere existence of at least one row.</p>
<p>This used to be three separate queries, and I squashed it into one, but I think there's room for more improvement. It's PostgreSQL 8.1, if it matters.</p>
http://stackoverflow.com/questions/344104/whats-quicker-an-array-lookup-including-array-build-or-an-if-stack/344148#3441483Answer by Andy Lester for What's quicker, an array lookup (including array build) or an IF stack?Andy Lester2008-12-05T15:21:17Z2008-12-05T15:21:17Z<p>First, it's easy to test it yourself.</p>
<p>Second, and more importantly, which is most appropriate for the code you're using? The amount of time you'll save is negligible in any case.</p>
http://stackoverflow.com/questions/316211/help-with-sql-query/316329#3163290Answer by Andy Lester for Help with SQL queryAndy Lester2008-11-25T03:58:02Z2008-11-25T03:58:02Z<p>Please don't put build SQL queries from outside, untrusted data. This is the Bobby Tables problem.</p>
<p>Please see a page like <a href="http://en.wikibooks.org/wiki/Programming:PHP:SQL_Injection#Use_Parameterized_Statements" rel="nofollow">this one</a> for details on using parameterized statements.</p>
http://stackoverflow.com/questions/310115/how-can-i-change-the-case-of-a-hash-key/310134#31013411Answer by Andy Lester for How can I change the case of a hash key?Andy Lester2008-11-21T20:43:54Z2008-11-21T20:43:54Z<p>Walk through the hash and replace any lowercase keys with their uppercase equivalents, and delete the old ones. Roughly:</p>
<pre><code>for my $key ( grep { uc($_) ne $_ } keys %hash ) {
my $newkey = uc $key;
$hash{$newkey} = delete $hash{$key};
}
</code></pre>
http://stackoverflow.com/questions/296389/best-practice-for-handling-worm-urls/296399#2963991Answer by Andy Lester for Best practice for handling worm URLsAndy Lester2008-11-17T18:22:31Z2008-11-17T18:22:31Z<p>I just return a GONE on stuff like that, so that it doesn't show up in my error_log.</p>
http://stackoverflow.com/questions/295798/how-can-i-obtain-file-meta-information-in-perl/295824#2958242Answer by Andy Lester for How can I obtain file meta information in Perl?Andy Lester2008-11-17T15:15:39Z2008-11-17T15:15:39Z<p>Take a look at File::Magic</p>
<p><a href="http://search.cpan.org/~rehsack/File-Magic-0.01/" rel="nofollow">http://search.cpan.org/~rehsack/File-Magic-0.01/</a></p>
http://stackoverflow.com/questions/290596/sql-server-complaining-about-this-if-not-exists-statement/290611#2906112Answer by Andy Lester for Sql server complaining about this IF NOT EXISTS statementAndy Lester2008-11-14T16:18:27Z2008-11-14T16:18:27Z<p>you want IF NOT EXISTS ( SELECT... ) AND NOT EXISTS ( SELECT .... )</p>
http://stackoverflow.com/questions/284608/how-do-i-make-subversion-use-a-third-party-diff-tool/284613#2846135Answer by Andy Lester for How do I make Subversion use a third-party diff tool?Andy Lester2008-11-12T16:59:10Z2008-11-12T16:59:10Z<p>Look at svn --diff-cmd.</p>
http://stackoverflow.com/questions/270895/why-does-this-map-statement-in-perl-not-compile/271086#2710862Answer by Andy Lester for Why does this map statement in Perl not compile?Andy Lester2008-11-07T02:42:53Z2008-11-07T02:42:53Z<p>Also, the other way to do what you're doing, initializing the hash, you can do like this:</p>
<pre><code>my @a = qw( a b c d e );
my %h;
@h{@a} = ();
</code></pre>
<p>That will create undef entries for each of the five keys. If you want to give them all true values, then do this.</p>
<pre><code>@h{@a} = (1) x @a;
</code></pre>
<p>You can also do it explicitly with a loop;</p>
<pre><code>@h{$_} = 1 for @a;
</code></pre>
http://stackoverflow.com/questions/270895/why-does-this-map-statement-in-perl-not-compile/271078#2710787Answer by Andy Lester for Why does this map statement in Perl not compile?Andy Lester2008-11-07T02:41:01Z2008-11-07T02:41:01Z<p>I prefer to write that as</p>
<pre><code>my %h = map { ("prefix-$_" => 1) } @a;
</code></pre>
<p>to show the intent, that I am returning a 2-element list.</p>
http://stackoverflow.com/questions/267721/mysql-strip-time-component-from-datetime/267733#2677331Answer by Andy Lester for Mysql strip time component from datetimeAndy Lester2008-11-06T05:45:14Z2008-11-06T05:45:14Z<p>In PostgreSQL you use the TRUNC() function, but I'm not seeing it for MySQL. From my brief Googling, it looks like you'll need to cast your DATETIME value to be just DATE.</p>
<pre><code>date_col = CAST(NOW() AS DATE)
</code></pre>
<p>See <a href="http://dev.mysql.com/doc/refman/5.0/en/date-and-time-types.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/date-and-time-types.html</a></p>
http://stackoverflow.com/questions/263202/run-binary-with-in-ubuntu/263221#2632219Answer by Andy Lester for Run binary with ./ in ubuntuAndy Lester2008-11-04T19:56:44Z2008-11-04T19:56:44Z<p>Yes, the current directory is not part of your PATH. You don't want it to be, because then you could be in a directory that had a malicious program you didn't know about that you run.</p>
<p>What if you were used to running /usr/bin/grep, but you happened to be in a directory that a Bad Person put a malicious copy of grep in, and this time you run grep, and you're running grep out of the current directory, rather than /usr/bin/grep.</p>
<p>You certainly can add ./ to your PATH in your ~/.profile or ~/.bash_profile, but I don't recommend it.</p>
<p>And if it makes you feel any better, I had the same frustration 15 years ago when I started using Unix-like systems.</p>
http://stackoverflow.com/questions/254345/how-can-i-extract-urls-from-a-web-page-in-perl/254687#25468719Answer by Andy Lester for How can I extract URLs from a web page in Perl?Andy Lester2008-10-31T19:40:37Z2008-10-31T20:04:34Z<p>Please look at using the <a href="http://search.cpan.org/dist/WWW-Mechanize/" rel="nofollow">WWW::Mechanize</a> module for this. It will fetch your web pages for you, and then give you easy-to-work with lists of URLs.</p>
<pre><code>my $mech = WWW::Mechanize->new();
$mech->get( $some_url );
my @links = $mech->links();
for my $link ( @links ) {
printf "%s, %s\n", $link->text, $link->url;
}
</code></pre>
<p>Pretty simple, and if you're looking to navigate to other URLs on that page, it's even simpler.</p>
<p>Mech is basically a browser in an object.</p>
http://stackoverflow.com/questions/249868/how-do-i-tell-for-a-php-page-if-someone-came-by-post-or-get/250341#2503412Answer by Andy Lester for How do I tell for a php page if someone came by POST or GET?Andy Lester2008-10-30T14:29:12Z2008-10-30T14:29:12Z<p>For questions like this, usually about environment variables, here's how I figure them out:</p>
<ul>
<li>Create a foo.php that just calls phpinfo();</li>
<li>GET foo.php</li>
<li>POST to foo.php</li>
<li>Compare the output of phpinfo(); and make my theories about what the behavior is</li>
<li>Verify my theory against the docs at php.net</li>
</ul>
<p>It is much much easier than trying to find the answer in php.net's doc swamp.</p>
http://stackoverflow.com/questions/1710296/aspiring-programmer-seeking-guidance/1710539#1710539Comment by Andy Lester on Aspiring programmer seeking guidance.Andy Lester2009-11-13T03:27:47Z2009-11-13T03:27:47ZThanks very much for the recommendation on my book. I hope it helps!http://stackoverflow.com/questions/239136/fastest-way-to-convert-string-to-integer-in-phpComment by Andy Lester on Fastest way to convert string to integer in PHPAndy Lester2009-10-21T19:06:45Z2009-10-21T19:06:45ZIf it doesn't hurt speed, why not do things in the most readable way possible?http://stackoverflow.com/questions/191640/get-null-null-in-sql/191649#191649Comment by Andy Lester on Get null == null in SQLAndy Lester2009-10-09T19:53:57Z2009-10-09T19:53:57ZThis falls apart if either value could legitimately be -1, and then you'll be pulling out your hair to find the bug.http://stackoverflow.com/questions/191640/get-null-null-in-sql/191648#191648Comment by Andy Lester on Get null == null in SQLAndy Lester2009-10-09T19:53:14Z2009-10-09T19:53:14ZYou have no need to use this approach at all. There's no reason to compare to dummy values when you can compare directly to actual NULL.http://stackoverflow.com/questions/713827/how-can-i-screen-scrape-with-perl/714369#714369Comment by Andy Lester on How can I screen scrape with Perl?Andy Lester2009-08-27T21:40:16Z2009-08-27T21:40:16ZHowever, Test::WWW::Mechanize <i>is</i> targeted just at automated testing. It is a wrapper around WWW::Mechanize.http://stackoverflow.com/questions/38210/what-non-programming-books-should-programmers-read/107175#107175Comment by Andy Lester on What non-programming books should programmers read?Andy Lester2009-08-23T23:18:49Z2009-08-23T23:18:49ZHeavens, the rules were violated!
Where's my sackcloth?http://stackoverflow.com/questions/277247/increase-days-to-php-current-date/277259#277259Comment by Andy Lester on Increase days to php current Date()Andy Lester2009-07-30T16:17:42Z2009-07-30T16:17:42ZSounds like premature optimization. If it's not in a time-critical piece of code, and we have no reason to think it is, burning a few milliseconds is nothing compared to the cost of programmer time.http://stackoverflow.com/questions/101439/the-most-efficient-way-to-implement-an-integer-based-power-function-powint-int/163547#163547Comment by Andy Lester on The most efficient way to implement an integer based power function pow(int, int)Andy Lester2009-05-30T20:37:44Z2009-05-30T20:37:44ZIndeed. You cannot optimize "efficiency" without knowing what sort of efficiency you're interested in. All optimizations are tradeoffs.http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237265#237265Comment by Andy Lester on What coding mistakes are a telltale giveaway of an inexperienced programmer?Andy Lester2009-05-20T16:46:50Z2009-05-20T16:46:50ZComparing function call to "single machine instruction" doesn't matter except in the cases where it actually does. The real problem is that it's not as clear.
Also, your two examples aren't the same. The first only accepts the string "Q", while the second accepts any command that begins with the letter 'Q'.http://stackoverflow.com/questions/237241/what-coding-mistakes-are-a-telltale-giveaway-of-an-inexperienced-programmer/237244#237244Comment by Andy Lester on What coding mistakes are a telltale giveaway of an inexperienced programmer?Andy Lester2009-05-20T16:44:39Z2009-05-20T16:44:39Z"When they expect to have more there" means that they're not familiar with the concept of YAGNI.http://stackoverflow.com/questions/11598/what-is-the-worst-interviewee-answer/11604#11604Comment by Andy Lester on What is the worst interviewee answer?Andy Lester2009-05-20T15:52:29Z2009-05-20T15:52:29ZRegardless of the question, telling the interviewer he asked a dumb question is a bad idea.http://stackoverflow.com/questions/193487/is-linux-ruining-my-chance-at-a-good-software-engineering-career/193492#193492Comment by Andy Lester on Is Linux ruining my chance at a good software engineering career?Andy Lester2009-05-08T16:45:13Z2009-05-08T16:45:13ZFollowup is on <a href="http://theworkinggeek.com/2009/05/do-i-need-to-learn-microsoft-technologies.html" rel="nofollow">theworkinggeek.com/2009/05/…</a>, since it's too long to post here.http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/201447#201447Comment by Andy Lester on What is the best regular expression for validating email addresses?Andy Lester2009-03-06T04:51:56Z2009-03-06T04:51:56ZYes, it will. I suggest you try it yourself.
$ perl -le'print q{foo@bar.co.uk} =~ /^\S+@\S+\.\S+$/ ? q{Y} : q{N}'
http://stackoverflow.com/questions/574199/how-do-i-extract-an-html-title-with-perl/574234#574234Comment by Andy Lester on How do I extract an HTML title with Perl?Andy Lester2009-02-22T03:27:50Z2009-02-22T03:27:50ZResults will be not what what you want if there's another </title> on the page after the end of the actual title.
In general, regular expressions for HTML parsing is a limited proposition.http://stackoverflow.com/questions/123911/c-download-all-files-in-http-directory/123921#123921Comment by Andy Lester on C# Download all files in HTTP directoryAndy Lester2009-02-17T16:31:06Z2009-02-17T16:31:06ZNot sure why using an external tool doesn't count as "programatically."