User Brad Gilbert - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T08:30:35Z http://stackoverflow.com/feeds/user/1337 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1877519/is-it-ok-to-put-comments-about-bug-fixes-in-the-source-code/1885029#1885029 0 Answer by Brad Gilbert for Is it ok to put comments about bug fixes in the source code? Brad Gilbert 2009-12-11T00:17:13Z 2009-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#1882676 0 Answer by Brad Gilbert for How can I read the lines of a file into an array in Perl? Brad Gilbert 2009-12-10T17:38:05Z 2009-12-10T17:45:33Z <p>This is the simplest version I could come up with:</p> <pre><code>perl -l040 -pe';' &lt; 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 (&lt;&gt;) { 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 -1 Answer by Brad Gilbert for Why a full stop, "." and not a plus symbol, "+", for string concatentanation in PHP? Brad Gilbert 2009-12-08T17:05:30Z 2009-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>-&gt;</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#1842557 0 Answer by Brad Gilbert for Perl to PHP With s///; Brad Gilbert 2009-12-03T20:09:27Z 2009-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#1840574 1 Answer by Brad Gilbert for How do you print hexadecimal digits to a Perl string? Brad Gilbert 2009-12-03T15:22:25Z 2009-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#1794534 1 Answer by Brad Gilbert for How do I push more than one matched groups as same element of array in Perl? Brad Gilbert 2009-11-25T04:04:23Z 2009-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, '&lt;', '/home/user/name' ); grep {chomp} &lt;$file&gt;; # $file is automatically closed }; # use 3 arg form of open open( my $file, '&gt;&gt;', '/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#1777886 1 Answer by Brad Gilbert for Code-Golf: What is the shortest program that compiles and crashes? Brad Gilbert 2009-11-22T05:15:41Z 2009-11-22T05:15:41Z <h1>Perl in only 2 chars.</h1> <pre><code>&amp;a </code></pre> <pre>Undefined subroutine &amp;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#1771419 10 Answer by Brad Gilbert for Code-Golf: What is the shortest program that compiles and crashes? Brad Gilbert 2009-11-20T15:56:25Z 2009-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#1763644 2 Answer 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 Gilbert 2009-11-19T14:25:44Z 2009-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, '&lt;:utf8', "hash_test.txt"; open my $out, '&gt;:utf8', "hash_result.txt"; my %hash = map { chomp; split ' ', $_, 2 } &lt;$in&gt;; 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, '&lt;: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#234173 1 Answer by Brad Gilbert for How does your favorite language handle deep recursion? Brad Gilbert 2008-10-24T16:05:58Z 2009-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] &lt; $_[1] ){ # return f( $_[0]+1, $_[1] ); @_ = ( $_[0]+1, $_[1] ); goto &amp;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] &lt; $_[1]; return $_[0]; } </code></pre> http://stackoverflow.com/questions/23930/factorial-algorithms-in-different-languages 35 Factorial Algorithms in different languages Brad Gilbert 2008-08-23T03:46:32Z 2009-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#1730610 5 Answer by Brad Gilbert for How do I use GetOptions to get the default argument? Brad Gilbert 2009-11-13T17:05:44Z 2009-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>&lt;&gt;</code> argument callback option.</p> <pre><code>use Getopt::Long qw'permute'; our %opt; GetOptions( \%opt, 'mode=s', '&lt;&gt;' =&gt; 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#1723450 2 Answer by Brad Gilbert for A Regex that will never be matched by anything Brad Gilbert 2009-11-12T16:19:59Z 2009-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>(?&gt;a+)a </code></pre> http://stackoverflow.com/questions/1719990/perl-subroutine-call/1723391#1723391 3 Answer by Brad Gilbert for perl subroutine call Brad Gilbert 2009-11-12T16:12:24Z 2009-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#1718130 2 Answer by Brad Gilbert for In Perl, how can I get the fields in this CSV string into an array without spaces? Brad Gilbert 2009-11-11T21:16:20Z 2009-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#1715892 7 Answer by Brad Gilbert for Separating unit and functional tests in Perl Brad Gilbert 2009-11-11T15:23:23Z 2009-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#1690846 12 Answer by Brad Gilbert for Perl equivalent of (Postgre)SQL BETWEEN operator? Brad Gilbert 2009-11-06T22:14:50Z 2009-11-06T22:14:50Z <p>There are a variety of ways to do that in Perl.</p> <pre><code>if( $a &lt; $x and $x &lt; $b ){ ... } ... if $a &lt; $x and $x &lt; $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#1684541 0 Answer by Brad Gilbert for How can I read key input on windows in Perl? Brad Gilbert 2009-11-06T00:05:51Z 2009-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#1674704 1 Answer by Brad Gilbert for Fastest Way To Find Mismatch Positions Between Two Strings of the Same Length Brad Gilbert 2009-11-04T15:52:26Z 2009-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 &lt;;&gt; nextstate(main 53 test.pl:15) # v:%,*,&amp;,$ 2 &lt;0&gt; pushmark # s 3 &lt;$&gt; gv(*_) # s 4 &lt;1&gt; rv2av[t3] # lK/3 5 &lt;0&gt; pushmark # sRM*/128 6 &lt;0&gt; padsv[$a:53,58] # lRM*/LVINTRO 7 &lt;0&gt; padsv[$b:53,58] # lRM*/LVINTRO 8 &lt;2&gt; aassign[t4] # vKS # 16: my $cmp = $a^$b; 9 &lt;;&gt; nextstate(main 54 test.pl:16) # v:%,*,&amp;,$ a &lt;0&gt; padsv[$a:53,58] # s b &lt;0&gt; padsv[$b:53,58] # s c &lt;2&gt; bit_xor[t6] # sK &lt;----- Single OP ----- d &lt;0&gt; padsv[$cmp:54,58] # sRM*/LVINTRO e &lt;2&gt; sassign # vKS/2 # 18: my @cmp; f &lt;;&gt; nextstate(main 55 test.pl:18) # v:%,*,&amp;,{,$ g &lt;0&gt; padav[@cmp:55,58] # vM/LVINTRO # 20: while( $cmp =~ /[^\0]/g ){ # match non-zero byte h &lt;;&gt; nextstate(main 57 test.pl:20) # v:%,*,&amp;,{,$ i &lt;{&gt; enterloop(next-&gt;r last-&gt;v redo-&gt;j) # v s &lt;0&gt; padsv[$cmp:54,58] # s t &lt;/&gt; match(/"[^\\0]"/) # sKS/RTIME &lt;----- Single OP ----- u &lt;|&gt; and(other-&gt;j) # vK/1 # 21: push @cmp, pos($cmp) - 1; j &lt;;&gt; nextstate(main 56 test.pl:21) # v:%,*,&amp;,$ k &lt;0&gt; pushmark # s l &lt;0&gt; padav[@cmp:55,58] # lRM m &lt;0&gt; padsv[$cmp:54,58] # sRM n &lt;1&gt; pos[t8] # sK/1 o &lt;$&gt; const(IV 1) # s p &lt;2&gt; subtract[t9] # sK/2 q &lt;@&gt; push[t10] # vK/2 r &lt;0&gt; unstack # v goto # s v &lt;2&gt; leaveloop # vK/2 # 24: return @cmp; w &lt;;&gt; nextstate(main 58 test.pl:24) # v:%,*,&amp;,{,$ x &lt;0&gt; pushmark # s y &lt;0&gt; padav[@cmp:55,58] z &lt;@&gt; return # K 10 &lt;1&gt; 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#1661833 12 Answer by Brad Gilbert for Why doesn't Perl support the normal [] operator to index a string? Brad Gilbert 2009-11-02T15:08:56Z 2009-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#1653313 2 Answer by Brad Gilbert for Does codegolf make a better programmer - or is it even useful? Brad Gilbert 2009-10-31T03:30:46Z 2009-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#1652268 3 Answer by Brad Gilbert for How can I check if a file is open by another program in Perl? Brad Gilbert 2009-10-30T20:53:59Z 2009-10-30T20:53:59Z <p>If you are running on Windows, you could call <a href="http://www.google.com/search?btnI=&amp;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=&amp;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#1647520 1 Answer by Brad Gilbert for Code Golf: Spider webs Brad Gilbert 2009-10-30T01:11:52Z 2009-10-30T03:32:16Z <h1>Perl 264 chars</h1> <p>shortened by in-lining the subroutines.</p> <pre><code>perl -E'$"="";($i=&lt;&gt;)++;@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=&lt;&gt;)++; @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=&lt;&gt;)++; $"=""; #" # 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#1644575 1 Answer by Brad Gilbert for Code Golf: Encode / Decode ascii binary Brad Gilbert 2009-10-29T15:33:42Z 2009-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#1641613 1 Answer by Brad Gilbert for Can I replace the binding operator with the smart match operator in Perl? Brad Gilbert 2009-10-29T04:26:49Z 2009-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#1638516 5 Answer by Brad Gilbert for Is using labels in Perl subroutines considered a bad practice? Brad Gilbert 2009-10-28T16:45:46Z 2009-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#1634858 0 Answer by Brad Gilbert for In Perl, how do you access a value from a reference in an array of hashrefs? Brad Gilbert 2009-10-28T02:23:27Z 2009-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' =&gt; 'somedir' } ]; my $tempdir = ${$allDirArray}[0]{'dir'}; # or my $tempdir = $allDirArray-&gt;[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#1634716 4 Answer by Brad Gilbert for Can I access a static method in a dynamically specified class in Perl? Brad Gilbert 2009-10-28T01:35:39Z 2009-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-&gt;{$_.'::'} for @depth; # $::{'Test::'}{'Class::'} $code = $glob-&gt;{'static_method'}; $code-&gt;('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 = &amp;{"${class}::static_method"}; # or my $code = *{"${class}::static_method"}{CODE}; $code-&gt;('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-&gt;can('static_method'); $code-&gt;('Hello','World'); </code></pre></li> </ul> http://stackoverflow.com/questions/1630710/extracting-particular-column-name-values-using-sed-awk-perl/1631233#1631233 1 Answer by Brad Gilbert for Extracting particular column name values using sed/ awk/ perl Brad Gilbert 2009-10-27T14:34:50Z 2009-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(&lt;&gt;){ my %kv = /([a-z])=([0-9])/ig; push @lines, \%kv; } for my $kv (@lines){ # $kv-&gt;{a} ||= 1; # next unless $kv-&gt;{c}; print "b=$kv-&gt;{b} " if defined $kv-&gt;{b}; print "b=$kv-&gt;{d} " if defined $kv-&gt;{d}; print "\n"; } </code></pre> http://stackoverflow.com/questions/1617106/efficient-way-to-compare-two-strings-ordering-of-characters-irrelevant/1617120#1617120 6 Answer by Brad Gilbert for Efficient way to compare two strings (ordering of characters irrelevant) Brad Gilbert 2009-10-24T06:06:47Z 2009-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#1889148 Comment by Brad Gilbert on What do people mean when they say “Perl is very good at parsing”? Brad Gilbert 2009-12-11T17:33:25Z 2009-12-11T17:33:25Z <code>/&#42; &#42;/</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#1855534 Comment by Brad Gilbert on What are some specific examples of backward incompatibilities in Perl versions? Brad Gilbert 2009-12-10T17:11:43Z 2009-12-10T17:11:43Z The internal &quot;hash order&quot; is randomized in the newer versions. http://stackoverflow.com/questions/1877607/are-listref-and-listref-equivalent-in-perl Comment by Brad Gilbert on Are @{$list_ref} and @$list_ref equivalent in Perl? Brad Gilbert 2009-12-10T17:01:07Z 2009-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#1881444 Comment by Brad Gilbert on Should I use YAML or JSON to store my Perl data? Brad Gilbert 2009-12-10T16:54:17Z 2009-12-10T16:54:17Z There 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#1877695 Comment by Brad Gilbert on Should I use YAML or JSON to store my Perl data? Brad Gilbert 2009-12-10T16:51:16Z 2009-12-10T16:51:16Z There 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#1867898 Comment by Brad Gilbert on Have you ever restricted yourself to using a subset of language features? Brad Gilbert 2009-12-09T16:59:03Z 2009-12-09T16:59:03Z Depends 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#1867975 Comment by Brad Gilbert on Have you ever restricted yourself to using a subset of language features? Brad Gilbert 2009-12-09T16:57:24Z 2009-12-09T16:57:24Z You 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#1864399 Comment by Brad Gilbert on How can I sort a Perl list in an arbitrary order? Brad Gilbert 2009-12-09T16:48:53Z 2009-12-09T16:48:53Z This 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#1868381 Comment by Brad Gilbert on Why a full stop, "." and not a plus symbol, "+", for string concatentanation in PHP? Brad Gilbert 2009-12-09T16:46:50Z 2009-12-09T16:46:50Z I'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#1865966 Comment by Brad Gilbert on How can I sum arrays element-wise in Perl? Brad Gilbert 2009-12-08T15:09:27Z 2009-12-08T15:09:27Z This 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#1849350 Comment by Brad Gilbert on Is there a Perl shortcut to count the number of matches in a string? Brad Gilbert 2009-12-04T20:37:46Z 2009-12-04T20:37:46Z You don't need any of those parenthesis. http://stackoverflow.com/questions/1848223/perl-puzzle-unexpected-behavior-w-r-t-m-m/1848344#1848344 Comment by Brad Gilbert on Perl puzzle: unexpected behavior w.r.t. m/$./m Brad Gilbert 2009-12-04T18:11:15Z 2009-12-04T18:11:15Z You can use <code>-E</code> instead of <code>-e</code> which does the same thing as -e'use feature ':5.10'<code> =&gt; `perl -0777 -wE'$b = &quot;a\nb\n&quot;; say $b =~ m/$./m'</code> http://stackoverflow.com/questions/1846176/how-do-i-setup-strawberry-perl-in-msys/1847030#1847030 Comment by Brad Gilbert on How do I setup Strawberry Perl in MSYS? Brad Gilbert 2009-12-04T16:12:14Z 2009-12-04T16:12:14Z I'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-windows Comment by Brad Gilbert on How can I send raw IP packets with Perl under Windows? Brad Gilbert 2009-12-03T21:32:06Z 2009-12-03T21:32:06Z I 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#1831536 Comment by Brad Gilbert on Why is 'last' called 'last' in Perl? Brad Gilbert 2009-12-03T14:39:46Z 2009-12-03T14:39:46Z You 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 )