Brad Gilbert

5,912
reputation
3910 views

Registered User

name Brad Gilbert
member for 1 year
seen 16 hours ago
website
location Waverly, IA, USA
age 27
Self taught programmer.
I mostly program in Perl.
16h
answered How to parse special CSV data using Perl?
Dec
16
comment How can I compare the performance of PHP to Perl?
Awesome answer. Could make a good blog post.
Dec
14
comment What are the lesser known but cool data structures ?
The regex engine in Perl 5.10 automatically creates tries.
Dec
14
comment Is there anything exciting in perl 5.11?
It has come out in v5.11.2
Dec
14
comment How can I use Perl to start a Win32 program and redirect its output to stdout?
Make sure that you aren't trying to run it with wperl.exe , otherwise it won't work.
Dec
14
revised ‘goto’ usage
Fixed first example, added tail call example.
Dec
13
revised How can I use a variable’s value as a Perl variable name?
Hopefully clarified title.
Dec
12
comment How can I break apart fixed-width columns in Perl?
A format of 'A23 A8 A7 A*' would also work.
Dec
11
comment What do people mean when they say “Perl is very good at parsing”?
/* */ comments can't be nested in portable C code.
Dec
11
awarded  Nice Answer
Dec
11
answered Is it ok to put comments about bug fixes in the source code?
Dec
10
revised How can I read the lines of a file into an array in Perl?
added 8 characters in body
Dec
10
answered How can I read the lines of a file into an array in Perl?
Dec
10
comment What are some specific examples of backward incompatibilities in Perl versions?
The internal "hash order" is randomized in the newer versions.
Dec
10
comment Are @{$list_ref} and @$list_ref equivalent in Perl?
perldoc.perl.com
Dec
10
comment Should I use YAML or JSON to store my Perl data?
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 ).
Dec
10
comment Should I use YAML or JSON to store my Perl data?
There was a post somewhere on Stack Overflow about JSON being faster for a very simple, but large data structure than Storable.
Dec
9
comment Have you ever restricted yourself to using a subset of language features?
Depends on the language. In assembly you are almost required to use a goto.
Dec
9
comment Have you ever restricted yourself to using a subset of language features?
You can also use goto for improving tail call recursion. You could also use Sub::Call::Recur for that though.
Dec
9
comment How can I sort a Perl list in an arbitrary order?
This really seems like half of an answer.
Dec
9
comment Why a full stop, “.” and not a plus symbol, “+”, for string concatentanation in PHP?
I'm sure that I read that it was called Perl Home Page, sometime before 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.
Dec
9
revised Why a full stop, “.” and not a plus symbol, “+”, for string concatentanation in PHP?
Removed name item.
Dec
8
answered Why a full stop, “.” and not a plus symbol, “+”, for string concatentanation in PHP?
Dec
8
comment How can I sum arrays element-wise in Perl?
This does actually loop through both arrays, it's just hidden inside of pairwise.
Dec
6
awarded  Necromancer
Dec
5
revised How can I store multiple values in a Perl hash table?
Added link to Data Structure Cookbook.
Dec
4
comment Is there a Perl shortcut to count the number of matches in a string?
You don't need any of those parenthesis.
Dec
4
comment Perl puzzle: unexpected behavior w.r.t. m/$./m
You can use -E instead of -e which does the same thing as -e'use feature ':5.10' => `perl -0777 -wE'$b = "a\nb\n"; say $b =~ m/$./m'
Dec
4
revised Perl puzzle: unexpected behavior w.r.t. m/$./m
Added link to perlvar page.
Dec
4
comment How do I setup Strawberry Perl in MSYS?
I'm not sure that would work inside of an MSYS environment. MSYS is a fork of Cygwin.
Dec
3
comment How can I send raw IP packets with Perl under Windows?
I think I remember reading something about Microsoft removing the ability to send raw packets.
Dec
3
answered Perl to PHP With s///;
Dec
3
answered How do you print hexadecimal digits to a Perl string?
Dec
3
comment Why is ‘last’ called ‘last’ in Perl?
You can use say with Perl 5.10 too. use feature qw'say' or use feature ':5.10 or use 5.010 or use 5.10.1 ( use 5.10.0 gives a warning on Perl 5.10.0 )
Nov
28
comment How do I read paragraphs at a time with Perl?
I would use {$/="\n";<>}
Nov
27
comment Win32.: How to scrape HTML without regular expressions?
Just embed Perl in your program. ... DONE.
Nov
25
answered How do I push more than one matched groups as same element of array in Perl?
Nov
25
comment How do I push more than one matched groups as same element of array in Perl?
push @array, [ $1, ... ] might be better.
Nov
24
comment Is Switch (Case) always wrong?
In Perl it is given / when
Nov
23
comment Need help with “pack” for perl and php
perldoc.perl.org/functions/pack.html
Nov
23
revised How do I retrieve the terminal width in Perl?
Link will now always point to most recent version.
Nov
22
comment Code-Golf: What is the shortest program that compiles and crashes?
I figured out a way to crash it in only 2 chars: stackoverflow.com/questions/1770427/…
Nov
22
comment Code-Golf: What is the shortest program that compiles and crashes?
2 chars &a stackoverflow.com/questions/1770427/…
Nov
22
answered Code-Golf: What is the shortest program that compiles and crashes?
Nov
21
comment What is your favourite cleverly written functional code?
You can do the same thing in Perl.
Nov
21
comment Code-Golf: What is the shortest program that compiles and crashes?
I suppose you could replace it with a()
Nov
20
comment Code-Golf: What is the shortest program that compiles and crashes?
To get this to fail in Perl, you would either need to turn on strict, or add parentheses. a()
Nov
20
answered Code-Golf: What is the shortest program that compiles and crashes?
Nov
19
answered Why can’t I use the map function to create a good hash from a simple data file in Perl?
Nov
19
revised How does your favorite language handle deep recursion?
Added Sub::Call::Recur example.