User Brad Gilbert - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T08:30:35Zhttp://stackoverflow.com/feeds/user/1337http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1877519/is-it-ok-to-put-comments-about-bug-fixes-in-the-source-code/1885029#18850290Answer by Brad Gilbert for Is it ok to put comments about bug fixes in the source code?Brad Gilbert2009-12-11T00:17:13Z2009-12-11T00:17:13Z<p>In the Perl5 source repository it is common to refer to bugs, with their associated Trac number in Test files.</p>
<p>This makes more sense to me, because adding a test for a bug will prevent that bug from ever going unnoticed again.</p>
http://stackoverflow.com/questions/1877330/how-can-i-read-the-lines-of-a-file-into-an-array-in-perl/1882676#18826760Answer by Brad Gilbert for How can I read the lines of a file into an array in Perl?Brad Gilbert2009-12-10T17:38:05Z2009-12-10T17:45:33Z<p>This is the simplest version I could come up with:</p>
<pre><code>perl -l040 -pe';' < test.txt
</code></pre>
<p><hr></p>
<p>Which is roughly equivalent to:</p>
<pre><code>perl -pe'
chomp; $\ = $/; # -l
$\ = 040; # -040
'
</code></pre>
<p>and:</p>
<pre><code>perl -e'
LINE:
while (<>) {
chomp; $\ = $/; # -l
$\ = " "; # -040
} continue {
print or die "-p destination: $!\n";
}
'
</code></pre>
http://stackoverflow.com/questions/1866098/why-a-full-stop-and-not-a-plus-symbol-for-string-concatentanation-in-p/1868381#1868381-1Answer by Brad Gilbert for Why a full stop, "." and not a plus symbol, "+", for string concatentanation in PHP?Brad Gilbert2009-12-08T17:05:30Z2009-12-09T16:43:44Z<p>Here is a bit of historical context.</p>
<ul>
<li>The PHP language started out as a set of Perl scripts.</li>
<li>As such, PHP gets most of it's syntax from Perl.</li>
<li><p>Perl, and by extension PHP, has untyped variables.</p>
<pre><code> "5" == 5
"5" + 5 == 10
"5" . 5 == 55
</code></pre></li>
<li>To be able to tell the difference between addition and concatenation, they had to be two different operators.</li>
<li>Perl copied the method access operator from C <code>-></code>.</li>
<li>This was <strong>before</strong> many of the <em>more modern</em> programming languages started to use <code>.</code> for method access.</li>
<li>Concatenation is one of the more common operations, and should use fewer characters. According to Huffman coding.</li>
<li><code>.</code> was one of the few characters available for this use. The only other one that would make sense to use is <code>~</code>, which is probably why that is now the Perl 6 concatenation operator.</li>
</ul>
http://stackoverflow.com/questions/1842464/perl-to-php-with-s/1842557#18425570Answer by Brad Gilbert for Perl to PHP With s///;Brad Gilbert2009-12-03T20:09:27Z2009-12-03T20:09:27Z<p>Could something like this work?</p>
<pre><code>$var = preg_replace('/^("+)(.*)\1$', '$2', $var, 1);
</code></pre>
http://stackoverflow.com/questions/1836083/how-do-you-print-hexadecimal-digits-to-a-perl-string/1840574#18405741Answer by Brad Gilbert for How do you print hexadecimal digits to a Perl string?Brad Gilbert2009-12-03T15:22:25Z2009-12-03T15:22:25Z<p>You could use <a href="http://perldoc.perl.org/functions/pack.html" rel="nofollow"><code>pack</code></a> and <a href="http://perldoc.perl.org/functions/unpack.html" rel="nofollow"><code>unpack</code></a>, to get the hexadecimal string.</p>
<pre><code>my $rgb = '#' . uc unpack 'H6', pack 'C3', $r, $g, $b;
</code></pre>
http://stackoverflow.com/questions/1792749/how-do-i-push-more-than-one-matched-groups-as-same-element-of-array-in-perl/1794534#17945341Answer by Brad Gilbert for How do I push more than one matched groups as same element of array in Perl?Brad Gilbert2009-11-25T04:04:23Z2009-11-25T04:04:23Z<p>If you are using Perl 5.10.1 or later, this is how I would write it.</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use 5.10.1; # or use 5.010;
use autodie;
my @lines = do{
# don't need to check for errors, because of autodie
open( my $file, '<', '/home/user/name' );
grep {chomp} <$file>;
# $file is automatically closed
};
# use 3 arg form of open
open( my $file, '>>', '/home/user/new' );
my @matches;
for( @lines ){
if( /(?:AB|CD)( (?:_[^_]+)+ )_W .+ txt/x ){
my @match = "$1" =~ /_([^_]+)/g;
say {$file} "@match";
push @matches, \@match;
# or
# push @matches, [ "$1" =~ /_([^_]+)/g ];
# if you don't need to print it in this loop.
}
}
close $file;
</code></pre>
<p>This is a little bit more permissive of inputs, but the regex should be a little bit more "correct", than the original.</p>
http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1777886#17778861Answer by Brad Gilbert for Code-Golf: What is the shortest program that compiles and crashes?Brad Gilbert2009-11-22T05:15:41Z2009-11-22T05:15:41Z<h1>Perl in only 2 chars.</h1>
<pre><code>&a
</code></pre>
<pre>Undefined subroutine &main::a called at test.pl line 1.</pre>
http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1771419#177141910Answer by Brad Gilbert for Code-Golf: What is the shortest program that compiles and crashes?Brad Gilbert2009-11-20T15:56:25Z2009-11-20T15:56:25Z<h1>Perl</h1>
<pre><code>die
</code></pre>
<pre>Died at test line 1.</pre>
<p><hr></p>
<h3><a href="http://perldoc.perl.org/functions/die.html" rel="nofollow">die</a></h3>
<blockquote>
<p>prints the value of LIST to STDERR and exits with the current value of $! (errno).</p>
</blockquote>
http://stackoverflow.com/questions/1762977/why-cant-i-use-the-map-function-to-create-a-good-hash-from-a-simple-data-file-in/1763644#17636442Answer by Brad Gilbert for Why can't I use the map function to create a good hash from a simple data file in Perl?Brad Gilbert2009-11-19T14:25:44Z2009-11-19T14:25:44Z<p>If you want to read/write UTF8 files, you should make sure that you are actually reading them in as <a href="http://perldoc.perl.org/PerlIO.html#%3autf8" rel="nofollow">UTF8</a>.</p>
<pre><code>#! /usr/bin/env perl
use Data::Dumper;
open my $in, '<:utf8', "hash_test.txt";
open my $out, '>:utf8', "hash_result.txt";
my %hash = map { chomp; split ' ', $_, 2 } <$in>;
print $out Dumper(\%hash),"\n";
print $out "$hash{abacus}\n";
print $out "$hash{abalone}\n";
print $out "$hash{abandon}\n";
</code></pre>
<p>If you want it to be more robust, it is recommended to use <code>:encoding(utf8)</code> instead of <code>:utf8</code>, for reading a file.</p>
<pre><code>open my $in, '<:encoding(utf8)', "hash_test.txt";
</code></pre>
<p>Read <a href="http://perldoc.perl.org/PerlIO.html" rel="nofollow">PerlIO</a> for more information.</p>
http://stackoverflow.com/questions/233013/how-does-your-favorite-language-handle-deep-recursion/234173#2341731Answer by Brad Gilbert for How does your favorite language handle deep recursion?Brad Gilbert2008-10-24T16:05:58Z2009-11-19T04:58:12Z<p>There is a way to improve upon the <code>Perl</code> code, to make it use a constant size stack. You do this by using a special form of <code>goto</code>.</p>
<pre><code>sub f{
if( $_[0] < $_[1] ){
# return f( $_[0]+1, $_[1] );
@_ = ( $_[0]+1, $_[1] );
goto &f;
} else {
return $_[0]
}
}
</code></pre>
<p>When first called it will allocate space on the stack. Then it will change its arguments, and restart the subroutine, without adding anything more to the stack. It will therefore pretend that it never called its self, changing it into an iterative process.</p>
<p><hr></p>
<p>You could also use the <a href="http://search.cpan.org/perldoc/Sub%3A%3ACall%3A%3ARecur" rel="nofollow">Sub::Call::Recur</a> module. Which makes the code easier to understand, and shorter.</p>
<pre><code>use Sub::Call::Recur;
sub f{
recur( $_[0]+1, $_[1] ) if $_[0] < $_[1];
return $_[0];
}
</code></pre>
http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages35Factorial Algorithms in different languagesBrad Gilbert2008-08-23T03:46:32Z2009-11-18T23:24:43Z
<p>I want to see all the different ways you can come up with, for a factorial subroutine, or program. The hope is that anyone can come here and see if they might want to learn a new language.</p>
<h2>Ideas:</h2>
<ul>
<li>Procedural</li>
<li>Functional</li>
<li>Object Oriented</li>
<li>One liners</li>
<li>Obfuscated</li>
<li>Oddball</li>
<li>Bad Code</li>
<li><a href="http://en.wikipedia.org/wiki/Polyglot_%28computing%29" rel="nofollow">Polyglot</a></li>
</ul>
<p>Basically I want to see an example, of different ways of writing an algorithm, and what they would look like in different languages.</p>
<p>Please limit it to one example per entry.
I will allow you to have more than one example per answer, if you are trying to highlight a specific style, language, or just a well thought out idea that lends itself to being in one post.</p>
<p>The only real requirement is it must find the factorial of a given argument, in all languages represented.</p>
<h1>Be Creative!</h1>
<h2>Recommended Guideline:</h2>
<pre>
# Language Name: Optional Style type
- Optional bullet points
Code Goes Here
Other informational text goes here
</pre>
<p>I will ocasionally go along and edit any answer that does not have decent formatting.</p>
http://stackoverflow.com/questions/1730333/how-do-i-use-getoptions-to-get-the-default-argument/1730610#17306105Answer by Brad Gilbert for How do I use GetOptions to get the default argument?Brad Gilbert2009-11-13T17:05:44Z2009-11-13T17:05:44Z<p><code>GetOptions</code> will leave any arguments that it didn't parse, in the <code>@ARGV</code> variable. So you can just loop over the <code>@ARGV</code> variable.</p>
<pre><code>use Getopt::Long;
my %opt;
GetOptions(
\%opt,
'mode=s'
);
for my $filename (@ARGV){
parse( $filename, \%opt );
}
</code></pre>
<p>There is another option, you can use the special <code><></code> argument callback option.</p>
<pre><code>use Getopt::Long qw'permute';
our %opt;
GetOptions(
\%opt,
'mode=s',
'<>' => sub{
my($filename) = @_;
parse( $filename, \%opt );
}
);
</code></pre>
<p>This is useful if you want to be able to work on multiple files, but use different options for some of them.</p>
<pre><code>perl test.pl -mode s file1 file2 -mode t file3
</code></pre>
<p>This example will set <code>$opt{mode}</code> to <code>s</code>, then it will call <code>parse</code> with <code>file1</code> as an argument. Then it will call <code>parse</code> with <code>file2</code> as the argument. It will then change <code>$opt{mode}</code> to <code>t</code>, and call <code>parse</code> with <code>file3</code>, as an argument.</p>
http://stackoverflow.com/questions/1723182/a-regex-that-will-never-be-matched-by-anything/1723450#17234502Answer by Brad Gilbert for A Regex that will never be matched by anythingBrad Gilbert2009-11-12T16:19:59Z2009-11-12T16:19:59Z<h3>Maximal matching</h3>
<pre><code>a++a
</code></pre>
<p>At least one <code>a</code> followed by any number of <code>a</code>'s, without backtracking. Then try to match one more <code>a</code>.</p>
<h3>or Independent sub expression</h3>
<p>This is equivalent to putting <code>a+</code> in an independent sub expression, followed by another <code>a</code>.</p>
<pre><code>(?>a+)a
</code></pre>
http://stackoverflow.com/questions/1719990/perl-subroutine-call/1723391#17233913Answer by Brad Gilbert for perl subroutine callBrad Gilbert2009-11-12T16:12:24Z2009-11-12T16:12:24Z<p>If you are going to call it with the parenthesis, why are you even using prototypes?</p>
<pre><code>sub f1(){ ... }
f1();
</code></pre>
<p>The only time I would use the empty prototype is for a subroutine that I want to work like a constant.</p>
<pre><code>sub PI(){ 3.14159 }
print 'I like ', PI, ", don't you?\n";
</code></pre>
<p>I would actually recommend against using Perl 5 prototypes, unless you want your subroutine to behave differently than it would otherwise.</p>
<pre><code>sub rad2deg($){ ... }
say '6.2831 radians is equal to ', rad2deg 6.2831, " degrees, of course.\n";
</code></pre>
<p>In this example, you would have to use parenthesis, if it didn't have a prototype. Otherwise it would have gotten an extra argument, and the last string would never get printed.</p>
http://stackoverflow.com/questions/1717963/in-perl-how-can-i-get-the-fields-in-this-csv-string-into-an-array-without-spaces/1718130#17181302Answer by Brad Gilbert for In Perl, how can I get the fields in this CSV string into an array without spaces?Brad Gilbert2009-11-11T21:16:20Z2009-11-11T21:16:20Z<p>You don't have to limit yourself to <code>split</code>, you just use a match with the <code>/g</code> modifier.</p>
<pre><code>my $string = " A, B,C, D , E ";
my @groups = $string =~ /\s*([^,]+?)\s*,?/g;
</code></pre>
http://stackoverflow.com/questions/1713580/separating-unit-and-functional-tests-in-perl/1715892#17158927Answer by Brad Gilbert for Separating unit and functional tests in PerlBrad Gilbert2009-11-11T15:23:23Z2009-11-11T15:23:23Z<p>Run <code>prove --state=all,save</code> once to get some info added to <code>.prove</code>.</p>
<p>Run <code>prove --state=slow -j9</code>if you have a multi-core machine, and your tests can be run at the same time.
This will cause your longest running tests to be started at the beginning, so that they will be more likely to finish before all of your other tests are done. This could reduce the overall time to completion, without preventing any tests from being run.</p>
http://stackoverflow.com/questions/1690654/perl-equivalent-of-postgresql-between-operator/1690846#169084612Answer by Brad Gilbert for Perl equivalent of (Postgre)SQL BETWEEN operator?Brad Gilbert2009-11-06T22:14:50Z2009-11-06T22:14:50Z<p>There are a variety of ways to do that in Perl.</p>
<pre><code>if( $a < $x and $x < $b ){ ... }
... if $a < $x and $x < $b;
</code></pre>
<pre><code>use 5.10.1;
if( $x ~~ [$a..$b] ){ ... }
given( $x ){
when( [$a..$b] ){ ... }
}
</code></pre>
<pre><code>use 5.11.0; # development branch
given( $x ){
... when [$a..$b];
}
</code></pre>
http://stackoverflow.com/questions/1683788/how-can-i-read-key-input-on-windows-in-perl/1684541#16845410Answer by Brad Gilbert for How can I read key input on windows in Perl?Brad Gilbert2009-11-06T00:05:51Z2009-11-06T00:05:51Z<p>On Win32, if you want full control over the console, you can do so with the use of <a href="http://search.cpan.org/perldoc/Win32%3A%3AConsole" rel="nofollow">Win32::Console</a>.</p>
http://stackoverflow.com/questions/1672782/fastest-way-to-find-mismatch-positions-between-two-strings-of-the-same-length/1674704#16747041Answer by Brad Gilbert for Fastest Way To Find Mismatch Positions Between Two Strings of the Same LengthBrad Gilbert2009-11-04T15:52:26Z2009-11-05T16:55:05Z<p>I don't know how efficient it is, but you could always xor the two strings you are matching, and find the index of the first mismatch.</p>
<pre><code>#! /usr/bin/env perl
use strict;
use warnings;
use 5.10.1;
my $str_source = "ATTCCGGG";
my $str1 = "ATTGCGGG";
my $str2 = "ATACCGGC";
my $str3 = "GTTCCGGG";
# this returns the index of all of the mismatches (zero based)
# it returns an empty list if the two strings match.
sub diff_index{
my($a,$b) = @_;
my $cmp = $a^$b;
my @cmp;
while( $cmp =~ /[^\0]/g ){ # match non-zero byte
push @cmp, pos($cmp) - 1;
}
return @cmp;
}
for my $str ( $str_source, $str1, $str2, $str3 ){
say '# "', $str, '"';
my @ret = diff_index $str_source, $str;
if( @ret ){
say '[ ', join( ', ', @ret), ' ]';
}else{
say '# match';
}
}
</code></pre>
<pre><code># "ATTCCGGG"
# match
# "ATTGCGGG"
[ 3 ]
# "ATACCGGC"
[ 2, 7 ]
# "GTTCCGGG"
[ 0 ]
</code></pre>
<p><hr></p>
<p>Running it through <a href="http://search.cpan.org/perldoc/B%3A%3AConcise" rel="nofollow">B::Concise</a> shows that the CPU expensive operations, happen as single opcodes. Which means that those operations are run in C.</p>
<pre><code>perl -MO=Concise,-exec,-compact,-src,diff_index test.pl |
perl -pE's/^[^#].*? \K([^\s]+)$/# $1/' # To fix highlighting bugs
</code></pre>
<pre><code>main::diff_index:
# 15: my($a,$b) = @_;
1 <;> nextstate(main 53 test.pl:15) # v:%,*,&,$
2 <0> pushmark # s
3 <$> gv(*_) # s
4 <1> rv2av[t3] # lK/3
5 <0> pushmark # sRM*/128
6 <0> padsv[$a:53,58] # lRM*/LVINTRO
7 <0> padsv[$b:53,58] # lRM*/LVINTRO
8 <2> aassign[t4] # vKS
# 16: my $cmp = $a^$b;
9 <;> nextstate(main 54 test.pl:16) # v:%,*,&,$
a <0> padsv[$a:53,58] # s
b <0> padsv[$b:53,58] # s
c <2> bit_xor[t6] # sK <----- Single OP -----
d <0> padsv[$cmp:54,58] # sRM*/LVINTRO
e <2> sassign # vKS/2
# 18: my @cmp;
f <;> nextstate(main 55 test.pl:18) # v:%,*,&,{,$
g <0> padav[@cmp:55,58] # vM/LVINTRO
# 20: while( $cmp =~ /[^\0]/g ){ # match non-zero byte
h <;> nextstate(main 57 test.pl:20) # v:%,*,&,{,$
i <{> enterloop(next->r last->v redo->j) # v
s <0> padsv[$cmp:54,58] # s
t </> match(/"[^\\0]"/) # sKS/RTIME <----- Single OP -----
u <|> and(other->j) # vK/1
# 21: push @cmp, pos($cmp) - 1;
j <;> nextstate(main 56 test.pl:21) # v:%,*,&,$
k <0> pushmark # s
l <0> padav[@cmp:55,58] # lRM
m <0> padsv[$cmp:54,58] # sRM
n <1> pos[t8] # sK/1
o <$> const(IV 1) # s
p <2> subtract[t9] # sK/2
q <@> push[t10] # vK/2
r <0> unstack # v
goto # s
v <2> leaveloop # vK/2
# 24: return @cmp;
w <;> nextstate(main 58 test.pl:24) # v:%,*,&,{,$
x <0> pushmark # s
y <0> padav[@cmp:55,58]
z <@> return # K
10 <1> leavesub[1 ref] # K/REFC,1
</code></pre>
http://stackoverflow.com/questions/1661796/why-doesnt-perl-support-the-normal-operator-to-index-a-string/1661833#166183312Answer by Brad Gilbert for Why doesn't Perl support the normal [] operator to index a string?Brad Gilbert2009-11-02T15:08:56Z2009-11-02T22:47:37Z<p>Do you want to index by bytes, characters, or graphemes?</p>
<p>This is why in Perl 6 <a href="http://perlcabal.org/syn/S32/Str.html" rel="nofollow"><code>length</code> is "banned"</a>, Instead you use one of the following:</p>
<ul>
<li><code>bytes</code><br />
Exactly one byte at a time</li>
<li><code>chars</code><br />
Depending on the source text this can be a single byte, or several bytes.</li>
<li><code>graphs</code><br />
This is similar to chars, but combines multiple "combining" characters together.</li>
</ul>
<p><hr /></p>
<p>If you really want it you can do something similar, using <a href="http://perldoc.perl.org/functions/split.html" rel="nofollow"><code>split</code></a>.</p>
<pre><code>( split '', $str )[$index];
</code></pre>
<p>It is probably better to just use <a href="http://perldoc.perl.org/functions/substr.html" rel="nofollow"><code>substr</code></a> though.</p>
<pre><code>substr $str, $index, 1;
</code></pre>
http://stackoverflow.com/questions/1652800/does-codegolf-make-a-better-programmer-or-is-it-even-useful/1653313#16533132Answer by Brad Gilbert for Does codegolf make a better programmer - or is it even useful?Brad Gilbert2009-10-31T03:30:46Z2009-10-31T03:30:46Z<p>At the very least it makes you think about all of the parsing rules, if only to remove a space that doesn't need to be there.</p>
<p>The better you know the parsing rules of a language, the better you will be at writing in that language.</p>
http://stackoverflow.com/questions/1651894/how-can-i-check-if-a-file-is-open-by-another-program-in-perl/1652268#16522683Answer by Brad Gilbert for How can I check if a file is open by another program in Perl?Brad Gilbert2009-10-30T20:53:59Z2009-10-30T20:53:59Z<p>If you are running on Windows, you could call <a href="http://www.google.com/search?btnI=&q=win32+api+createfile" rel="nofollow"><code>CreateFile</code></a> directly with a <code>dwShareMode</code> of <code>0</code>.</p>
<p>According to <a href="http://www.google.com/search?btnI=&q=win32+api+createfile" rel="nofollow">MSDN</a>:</p>
<blockquote>
<p>Prevents other processes from opening a file or device if they request delete, read, or write access.</p>
</blockquote>
<p>There may be a Perl module that handles this, otherwise you could use <a href="http://search.cpan.org/perldoc/Win32%3A%3AAPI" rel="nofollow"><code>Win32::API</code></a>, to call the function.</p>
http://stackoverflow.com/questions/1646887/code-golf-spider-webs/1647520#16475201Answer by Brad Gilbert for Code Golf: Spider websBrad Gilbert2009-10-30T01:11:52Z2009-10-30T03:32:16Z<h1>Perl 264 chars</h1>
<p>shortened by in-lining the subroutines.</p>
<pre><code>perl -E'$"="";($i=<>)++;@r=map{$p=$i-$_;@d=(" "x$_,(" ","\\")x$p,"/","_"x$_);($d="@d")=~y:\\/:/\\:;@d=reverse@d;$d.="|@d"}1..$i;say for reverse@r;$_=$r[0];y: _|:_ :;s:.(.*)\\.*/(.*).:$1_/ \\_$2:;say;y: _\\/:_ /\\:;say;$r[-1]=~y:_: :;say for grep{y:\\/:/\\:}@r;'
</code></pre>
<p>Expanded to improve readability.</p>
<pre><code>perl -E'
$"="";
($i=<>)++;
@r=map{
$p=$i-$_;
@d=(
" "x$_,
(" ","\\")x$p,
"/",
"_"x$_
);
($d="@d")=~y:\\/:/\\:;
@d=reverse@d;
$d.="|@d"
}1..$i;
say for reverse@r;
$_=$r[0];
y: _|:_ :;
s:.(.*)\\.*/(.*).:$1_/ \\_$2:;
say;
y: _\\/:_ /\\:;
say;
$r[-1]=~y:_: :;
say for grep{y:\\/:/\\:}@r;
'
</code></pre>
<p>This is the code before I minimized it:</p>
<pre><code>#! /opt/perl/bin/perl
use 5.10.1;
($i=<>)++;
$"=""; #" # This is to remove the extra spaces for "@d"
sub d(){
$p=$i-$_;
" "x$_,(" ","\\")x$p,"/","_"x$_
}
sub D(){
@d=d;
($d="@d")=~y:\\/:/\\:; # swap '\' for '/'
@d=reverse@d;
$d.="|@d"
}
@r = map{D}1..$i;
say for reverse@r; # print preceding lines
# this section prints the middle two lines
$_=$r[0];
y: _|:_ :;
s:.(.*)\\.*/(.*).:$1_/ \\_$2:;
say;
y: _\\/:_ /\\:;
say;
$r[-1]=~y:_: :; # remove '_' from last line
say for grep{y:\\/:/\\:}@r; # print following lines
</code></pre>
http://stackoverflow.com/questions/613390/code-golf-encode-decode-ascii-binary/1644575#16445751Answer by Brad Gilbert for Code Golf: Encode / Decode ascii binaryBrad Gilbert2009-10-29T15:33:42Z2009-10-29T15:33:42Z<h2>Perl 39 char encoder</h2>
<pre><code>perl -naF"" -E'say unpack"B*",$_ for@F'
</code></pre>
<h2>Perl 32 char decoder</h2>
<pre><code>perl -naE'say pack"B*",$_ for@F'
</code></pre>
<p><hr /></p>
<p>Example usage:</p>
<pre><code>perl -E'say a..z' | # abcd...\n
perl -naF"" -E'say unpack"B*",$_ for@F' | # 01100001\n01100010\n01100011 ...
perl -naE'say pack"B*",$_ for@F' # a\nb\nc\nd\n ...
</code></pre>
<p><hr /></p>
<p>If you want it to work without printing extra <code>\n</code>, or you need it to work on older Perls:</p>
<p>46 char encode</p>
<pre><code>perl -naF"" -e'print unpack("B*",$_)," "for@F'
</code></pre>
<p>34 char decode</p>
<pre><code>perl -naE'print pack"B*",$_ for@F'
</code></pre>
<pre><code>perl -e'print a..z,"\n"' |
perl -naF"" -e'print unpack("B*",$_)," "for@F' |
perl -naE'print pack"B*",$_ for@F'
</code></pre>
http://stackoverflow.com/questions/1637869/can-i-replace-the-binding-operator-with-the-smart-match-operator-in-perl/1641613#16416131Answer by Brad Gilbert for Can I replace the binding operator with the smart match operator in Perl?Brad Gilbert2009-10-29T04:26:49Z2009-10-29T04:26:49Z<p>If we go and look at what these two variants get transformed into, we can see the reason for this.</p>
<p><hr /></p>
<ul>
<li><p>First lets look at the original version.</p>
<pre><code>perl -MO=Deparse -e'while("abc" =~ /(.)/g){print "hi\n"}'
</code></pre>
<pre><code>while ('abc' =~ /(.)/g) {
print "hi\n";
}
</code></pre>
<p>As you can see there wasn't any changing of the opcodes.</p></li>
<li><p>Now if you go and change it to use the smart-match operator, you can see it does actually change.</p>
<pre><code>perl -MO=Deparse -e'while("abc" ~~ /(.)/g){print "hi\n"}'
</code></pre>
<pre><code>while ('abc' ~~ qr/(.)/g) {
print "hi\n";
}
</code></pre>
<p>It changes it to <a href="http://perldoc.perl.org/perlop.html#qr%2fSTRING%2fmsixpo" rel="nofollow"><code>qr</code></a>, which doesn't recognize the <code>/g</code> option.</p>
<p>This should probably give you an error, but it doesn't get transformed until after it gets parsed.</p>
<p><hr /></p>
<p>The warning you should have gotten, and would get if you used <a href="http://perldoc.perl.org/perlop.html#qr%2fSTRING%2fmsixpo" rel="nofollow"><code>qr</code></a> instead is:</p>
<pre>syntax error at -e line 1, near "qr/(.)/g"</pre></li>
</ul>
<p><br></p>
<p>The smart-match feature was never intended to replace the <code>=~</code> operator. It came out of the process of making <a href="http://perldoc.perl.org/perlsyn.html#Switch-statements" rel="nofollow"><code>given</code>/<code>when</code></a> work like it does.</p>
<blockquote>
<p>Most of the time, <code>when(EXPR)</code> is treated as an implicit <a href="http://perldoc.perl.org/perlsyn.html#Smart-matching-in-detail" rel="nofollow">smart match</a> of <code>$_</code>.<br />
...</p>
</blockquote>
http://stackoverflow.com/questions/1635955/is-using-labels-in-perl-subroutines-considered-a-bad-practice/1638516#16385165Answer by Brad Gilbert for Is using labels in Perl subroutines considered a bad practice?Brad Gilbert2009-10-28T16:45:46Z2009-10-28T16:45:46Z<p>There is usually no reason to use <code>goto LABEL</code>.</p>
<p>For example:</p>
<pre><code>my $i = 10;
Label:
# ...
goto Label if --$i;
</code></pre>
<p>Is better written as:</p>
<pre><code>my $i = 10;
{
# ...
redo if --$i;
}
</code></pre>
<p><hr /></p>
<p>The only reason I can think of to use a label, is to break out of multiple loops, or to continue an outer loop.</p>
<pre><code>my $i = 10;
OUTER: while(1){
# ...
while(1){
# ...
last OUTER unless --$i;
}
}
</code></pre>
<pre><code>my $i = 10;
OUTER: {
# ...
{
# ...
redo OUTER if --$i;
}
}
</code></pre>
http://stackoverflow.com/questions/1627945/in-perl-how-do-you-access-a-value-from-a-reference-in-an-array-of-hashrefs/1634858#16348580Answer by Brad Gilbert for In Perl, how do you access a value from a reference in an array of hashrefs?Brad Gilbert2009-10-28T02:23:27Z2009-10-28T02:23:27Z<p>Somehow you managed to make your anonymous hash into a string.</p>
<p>Here is a short example that causes that error.</p>
<pre><code>use strict;
use warnings;
my $allDirArray = [ ''.{ 'dir' => 'somedir' } ];
my $tempdir = ${$allDirArray}[0]{'dir'};
# or
my $tempdir = $allDirArray->[0]{'dir'};
</code></pre>
<pre>
Can't use string ("HASH(0x8555168)") as a HASH ref while "strict refs" in use at nameOfProgram.pl line 8.
</pre>
http://stackoverflow.com/questions/1634042/can-i-access-a-static-method-in-a-dynamically-specified-class-in-perl/1634716#16347164Answer by Brad Gilbert for Can I access a static method in a dynamically specified class in Perl?Brad Gilbert2009-10-28T01:35:39Z2009-10-28T01:35:39Z<p>As always with Perl, <a href="http://en.wikipedia.org/wiki/There%27s%5Fmore%5Fthan%5Fone%5Fway%5Fto%5Fdo%5Fit" rel="nofollow">there is more than one way to do it</a>.</p>
<pre><code>use strict;
use warnings;
{
package Test::Class;
sub static_method{ print join(' ', @_), "\n" }
}
</code></pre>
<ul>
<li><p>You can use the special <code>%::</code> variable to access the symbol table.</p>
<pre><code>my $class = 'Test::Class';
my @depth = split '::', $class;
my $ref = \%::;
$ref = $glob->{$_.'::'} for @depth; # $::{'Test::'}{'Class::'}
$code = $glob->{'static_method'};
$code->('Hello','World');
</code></pre></li>
<li><p>You could just simply use a <a href="http://perldoc.perl.org/perlref.html#Symbolic-references" rel="nofollow">symbolic reference</a>;</p>
<pre><code>no strict 'refs';
my $code = &{"${class}::static_method"};
# or
my $code = *{"${class}::static_method"}{CODE};
$code->('Hello','World');
</code></pre></li>
<li><p>You could also use a string <a href="http://perldoc.perl.org/functions/eval.html" rel="nofollow"><code>eval</code></a>.</p>
<pre><code>eval "${class}::static_method('Hello','World')";
</code></pre></li>
<li><p>The simplest in this case, would be to use <a href="http://perldoc.perl.org/UNIVERSAL.html#%24obj-%3ecan%28-METHOD-%29" rel="nofollow"><code>UNIVERSAL::can</code></a>.</p>
<pre><code>$code = $class->can('static_method');
$code->('Hello','World');
</code></pre></li>
</ul>
http://stackoverflow.com/questions/1630710/extracting-particular-column-name-values-using-sed-awk-perl/1631233#16312331Answer by Brad Gilbert for Extracting particular column name values using sed/ awk/ perlBrad Gilbert2009-10-27T14:34:50Z2009-10-27T14:40:58Z<p>Assuming you may want to do the something to the values in the future, other than just filtering, you could use this as a basis.</p>
<pre><code>#! /usr/bin/env perl
use warnings;
use strict;
my @lines;
while(<>){
my %kv = /([a-z])=([0-9])/ig;
push @lines, \%kv;
}
for my $kv (@lines){
# $kv->{a} ||= 1;
# next unless $kv->{c};
print "b=$kv->{b} " if defined $kv->{b};
print "b=$kv->{d} " if defined $kv->{d};
print "\n";
}
</code></pre>
http://stackoverflow.com/questions/1617106/efficient-way-to-compare-two-strings-ordering-of-characters-irrelevant/1617120#16171206Answer by Brad Gilbert for Efficient way to compare two strings (ordering of characters irrelevant)Brad Gilbert2009-10-24T06:06:47Z2009-10-24T06:06:47Z<p>Simply sort the characters of each string first, then compare them.</p>
<pre><code>rent == tern
enrt == enrt
</code></pre>
http://stackoverflow.com/questions/1888577/what-do-people-mean-when-they-say-perl-is-very-good-at-parsing/1889148#1889148Comment by Brad Gilbert on What do people mean when they say “Perl is very good at parsing”?Brad Gilbert2009-12-11T17:33:25Z2009-12-11T17:33:25Z<code>/* */</code> comments <b>can't</b> be nested in portable C code.http://stackoverflow.com/questions/1855493/what-are-some-specific-examples-of-backward-incompatibilities-in-perl-versions/1855534#1855534Comment by Brad Gilbert on What are some specific examples of backward incompatibilities in Perl versions?Brad Gilbert2009-12-10T17:11:43Z2009-12-10T17:11:43ZThe internal "hash order" is randomized in the newer versions.http://stackoverflow.com/questions/1877607/are-listref-and-listref-equivalent-in-perlComment by Brad Gilbert on Are @{$list_ref} and @$list_ref equivalent in Perl? Brad Gilbert2009-12-10T17:01:07Z2009-12-10T17:01:07Z<a href="http://perldoc.perl.com/" rel="nofollow">perldoc.perl.com</a>http://stackoverflow.com/questions/1876735/should-i-use-yaml-or-json-to-store-my-perl-data/1881444#1881444Comment by Brad Gilbert on Should I use YAML or JSON to store my Perl data?Brad Gilbert2009-12-10T16:54:17Z2009-12-10T16:54:17ZThere is currently some work to move the Pure Perl YAML module to YAML::PP. Then having a new YAML module that automatically chooses one of the implementations for you. ( This is what the JSON module currently does ).http://stackoverflow.com/questions/1876735/should-i-use-yaml-or-json-to-store-my-perl-data/1877695#1877695Comment by Brad Gilbert on Should I use YAML or JSON to store my Perl data?Brad Gilbert2009-12-10T16:51:16Z2009-12-10T16:51:16ZThere was a post somewhere on Stack Overflow about JSON being faster for a very simple, but large data structure than Storable.http://stackoverflow.com/questions/1867857/have-you-ever-restricted-yourself-to-using-a-subset-of-language-features/1867898#1867898Comment by Brad Gilbert on Have you ever restricted yourself to using a subset of language features?Brad Gilbert2009-12-09T16:59:03Z2009-12-09T16:59:03ZDepends on the language. In assembly you are almost required to use a goto.http://stackoverflow.com/questions/1867857/have-you-ever-restricted-yourself-to-using-a-subset-of-language-features/1867975#1867975Comment by Brad Gilbert on Have you ever restricted yourself to using a subset of language features?Brad Gilbert2009-12-09T16:57:24Z2009-12-09T16:57:24ZYou can also use <code>goto</code> for improving tail call recursion. You could also use Sub::Call::Recur for that though.http://stackoverflow.com/questions/1864267/how-can-i-sort-a-perl-list-in-an-arbitrary-order/1864399#1864399Comment by Brad Gilbert on How can I sort a Perl list in an arbitrary order?Brad Gilbert2009-12-09T16:48:53Z2009-12-09T16:48:53ZThis really seems like half of an answer.http://stackoverflow.com/questions/1866098/why-a-full-stop-and-not-a-plus-symbol-for-string-concatentanation-in-p/1868381#1868381Comment by Brad Gilbert on Why a full stop, "." and not a plus symbol, "+", for string concatentanation in PHP?Brad Gilbert2009-12-09T16:46:50Z2009-12-09T16:46:50ZI'm sure that I read that it was called Perl Home Page, sometime <b>before</b> it was released. That could just my mind playing tricks on me though. At any rate, I removed that item from the list, because this post seemed better without it.http://stackoverflow.com/questions/1865910/how-can-i-sum-arrays-element-wise-in-perl/1865966#1865966Comment by Brad Gilbert on How can I sum arrays element-wise in Perl?Brad Gilbert2009-12-08T15:09:27Z2009-12-08T15:09:27ZThis does actually loop through both arrays, it's just hidden inside of pairwise.http://stackoverflow.com/questions/1849329/is-there-a-perl-shortcut-to-count-the-number-of-matches-in-a-string/1849350#1849350Comment by Brad Gilbert on Is there a Perl shortcut to count the number of matches in a string?Brad Gilbert2009-12-04T20:37:46Z2009-12-04T20:37:46ZYou don't need any of those parenthesis.http://stackoverflow.com/questions/1848223/perl-puzzle-unexpected-behavior-w-r-t-m-m/1848344#1848344Comment by Brad Gilbert on Perl puzzle: unexpected behavior w.r.t. m/$./mBrad Gilbert2009-12-04T18:11:15Z2009-12-04T18:11:15ZYou can use <code>-E</code> instead of <code>-e</code> which does the same thing as -e'use feature ':5.10'<code> => `perl -0777 -wE'$b = "a\nb\n"; say $b =~ m/$./m'</code>http://stackoverflow.com/questions/1846176/how-do-i-setup-strawberry-perl-in-msys/1847030#1847030Comment by Brad Gilbert on How do I setup Strawberry Perl in MSYS?Brad Gilbert2009-12-04T16:12:14Z2009-12-04T16:12:14ZI'm not sure that would work inside of an MSYS environment. MSYS is a fork of Cygwin.http://stackoverflow.com/questions/1842971/how-can-i-send-raw-ip-packets-with-perl-under-windowsComment by Brad Gilbert on How can I send raw IP packets with Perl under Windows?Brad Gilbert2009-12-03T21:32:06Z2009-12-03T21:32:06ZI think I remember reading something about Microsoft removing the ability to send raw packets.http://stackoverflow.com/questions/1814447/why-is-last-called-last-in-perl/1831536#1831536Comment by Brad Gilbert on Why is 'last' called 'last' in Perl?Brad Gilbert2009-12-03T14:39:46Z2009-12-03T14:39:46ZYou can use say with Perl 5.10 too. <code>use feature qw'say'</code> or <code>use feature ':5.10</code> or <code>use 5.010</code> or <code>use 5.10.1</code> ( <code>use 5.10.0</code> gives a warning on Perl 5.10.0 )