User - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T03:39:42Z http://stackoverflow.com/feeds/user/24558 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/161872/hidden-features-of-perl/163481#163481 19 Answer by timkay for Hidden features of Perl? timkay 2008-10-02T17:11:11Z 2009-08-23T21:43:58Z <p>The "for" statement can be used the same way "with" is used in Pascal:</p> <pre><code>for ($item) { s/&amp;‎nbsp;/ /g; s/&lt;.*?&gt;/ /g; $_ = join(" ", split(" ", $_)); } </code></pre> <p>You can apply a sequence of s/// operations, etc. to the same variable without having to repeat the variable name.</p> <p>NOTE: the non-breaking space above (&amp;‎nbsp;) has hidden Unicode in it to circumvent the Markdown. Don't copy paste it :)</p> http://stackoverflow.com/questions/1275828/how-can-i-refactor-away-this-repeated-series-of-if-blocks/1276132#1276132 1 Answer by timkay for How can I refactor away this repeated series of "if" blocks? timkay 2009-08-14T05:05:37Z 2009-08-14T05:05:37Z <p>If $col is in 24..27, then calculate the corresponding letter, and set the proper hash entry. Here are two ways to do it, depending on whether you want to save a few characters or save a few bytes:</p> <pre><code>24 &lt;= $col &amp;&amp; $col &lt;= 27 and $buffer{('A'..'AB')[$col]} = trim($val); </code></pre> <p>or</p> <pre><code>24 &lt;= $col &amp;&amp; $col &lt;= 27 and $buffer{('Y'..'AB')[$col - 24]} = trim($val); </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/163532#163532 24 Answer by timkay for Hidden features of Perl? timkay 2008-10-02T17:23:05Z 2009-07-31T10:32:33Z <p>Add support for compressed files:</p> <pre><code>s/.*\.gz$/zcat "$_" \|/ for @ARGV; </code></pre> <p><em>(quotes around $_ necessary to handle filenames with spaces in)</em></p> <p>Now the &lt;> feature will decompress any @ARGV files that end with .gz.</p> <pre><code>while (&lt;&gt;) { print; } </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/547210#547210 0 Answer by timkay for Hidden features of Perl? timkay 2009-02-13T18:57:47Z 2009-02-23T06:39:41Z <p>You might think you can do this to save memory:</p> <pre><code>@is_month{qw(jan feb mar apr may jun jul aug sep oct nov dec)} = undef; print "It's a month" if exists $is_month{lc $mon}; </code></pre> <p>but it doesn't do that. Perl still assigns a different scalar value to each key. <a href="http://search.cpan.org/perldoc?Devel::Peek" rel="nofollow">Devel::Peek</a> shows this. <code>PVHV</code> is the hash. <code>Elt</code> is a key and the <code>SV</code> that follows is its value. Note that each SV has a different memory address indicating they're not being shared.</p> <pre><code>Dump \%is_month, 12; SV = RV(0x81c1bc) at 0x81c1b0 REFCNT = 1 FLAGS = (TEMP,ROK) RV = 0x812480 SV = PVHV(0x80917c) at 0x812480 REFCNT = 2 FLAGS = (SHAREKEYS) ARRAY = 0x206f20 (0:8, 1:4, 2:4) hash quality = 101.2% KEYS = 12 FILL = 8 MAX = 15 RITER = -1 EITER = 0x0 Elt "feb" HASH = 0xeb0d8580 SV = NULL(0x0) at 0x804b40 REFCNT = 1 FLAGS = () Elt "may" HASH = 0xf2290c53 SV = NULL(0x0) at 0x812420 REFCNT = 1 FLAGS = () </code></pre> <p>An undef scalar takes as much memory as an integer scalar, so you might ask well just assign them all to 1 and avoid the trap of forgetting to check with <code>exists</code>.</p> <pre><code>my %is_month = map { $_ =&gt; 1 } qw(jan feb mar apr may jun jul aug sep oct nov dec); print "It's a month" if $is_month{lc $mon}); </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/163498#163498 5 Answer by timkay for Hidden features of Perl? timkay 2008-10-02T17:15:17Z 2009-02-13T18:53:32Z <pre><code>sub load_file { local(@ARGV, $/) = shift; &lt;&gt;; } </code></pre> <p>and a version that returns an array as appropriate:</p> <pre><code>sub load_file { local @ARGV = shift; local $/ = wantarray? $/: undef; &lt;&gt;; } </code></pre> http://stackoverflow.com/questions/161872/hidden-features-of-perl/163488#163488 7 Answer by timkay for Hidden features of Perl? timkay 2008-10-02T17:12:40Z 2008-10-02T17:12:40Z <pre><code>rename("$_.part", $_) for "data.txt"; </code></pre> <p>renames data.txt.part to data.txt without having to repeat myself.</p> http://stackoverflow.com/questions/163254/on-32-bit-cpus-is-an-integer-type-more-efficient-than-a-short-type/163352#163352 1 Answer by timkay for On 32-bit CPUs, is an 'integer' type more efficient than a 'short' type? timkay 2008-10-02T16:38:12Z 2008-10-02T16:38:12Z <p>If you are operating on a large dataset, the biggest concern is memory footprint. A good model in this case is to assume that the CPU is infinitely fast, and spend your time worrying about how much data has to be moved to/from memory. In fact, CPUs are now so fast that it is sometimes more efficient to encode (e.g., compress) the data. That way, the CPU does (potentially much) more work (decoding/coding), but the memory bandwidth is substantially reduced.</p> <p>Thus, if your dataset is large, you are probably better off using 16 bit integers. If your list is sorted, you might design a coding scheme that involves differential or run-length encoding, which will reduce memory bandwidth even more.</p> http://stackoverflow.com/questions/733013/alternative-tools-for-amazon-ec2/791580#791580 Comment by on Alternative tools for Amazon EC2? 2009-04-28T22:15:44Z 2009-04-28T22:15:44Z This tool also work well under Windows, and it also supports S3 and SQS. http://stackoverflow.com/questions/638893/what-is-the-most-efficient-way-in-python-to-convert-a-string-to-all-lowercase-str/638917#638917 Comment by on What is the most efficient way in Python to convert a string to all lowercase stripping out all non-ascii alpha characters? 2009-03-12T16:49:41Z 2009-03-12T16:49:41Z You might want to mention how your version is used: replacer = strip_string_to_lowercase() print replacer(s) What a pain.