User - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T03:39:42Zhttp://stackoverflow.com/feeds/user/24558http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/161872/hidden-features-of-perl/163481#16348119Answer by timkay for Hidden features of Perl?timkay2008-10-02T17:11:11Z2009-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/&nbsp;/ /g;
s/<.*?>/ /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 (&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#12761321Answer by timkay for How can I refactor away this repeated series of "if" blocks?timkay2009-08-14T05:05:37Z2009-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 <= $col && $col <= 27 and $buffer{('A'..'AB')[$col]} = trim($val);
</code></pre>
<p>or</p>
<pre><code>24 <= $col && $col <= 27 and $buffer{('Y'..'AB')[$col - 24]} = trim($val);
</code></pre>
http://stackoverflow.com/questions/161872/hidden-features-of-perl/163532#16353224Answer by timkay for Hidden features of Perl?timkay2008-10-02T17:23:05Z2009-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 <> feature will decompress any @ARGV files that end with .gz.</p>
<pre><code>while (<>)
{
print;
}
</code></pre>
http://stackoverflow.com/questions/161872/hidden-features-of-perl/547210#5472100Answer by timkay for Hidden features of Perl?timkay2009-02-13T18:57:47Z2009-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 { $_ => 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#1634985Answer by timkay for Hidden features of Perl?timkay2008-10-02T17:15:17Z2009-02-13T18:53:32Z<pre><code>sub load_file
{
local(@ARGV, $/) = shift;
<>;
}
</code></pre>
<p>and a version that returns an array as appropriate:</p>
<pre><code>sub load_file
{
local @ARGV = shift;
local $/ = wantarray? $/: undef;
<>;
}
</code></pre>
http://stackoverflow.com/questions/161872/hidden-features-of-perl/163488#1634887Answer by timkay for Hidden features of Perl?timkay2008-10-02T17:12:40Z2008-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#1633521Answer by timkay for On 32-bit CPUs, is an 'integer' type more efficient than a 'short' type?timkay2008-10-02T16:38:12Z2008-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#791580Comment by on Alternative tools for Amazon EC2?2009-04-28T22:15:44Z2009-04-28T22:15:44ZThis 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#638917Comment 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:41Z2009-03-12T16:49:41ZYou might want to mention how your version is used:
replacer = strip_string_to_lowercase()
print replacer(s)
What a pain.