Perl On Method and database insertion

by iyf.myopenid.com, September 20, 2010 11:38

Thanks a lot for explaining...

55502f40dc8b7c769880b10874abc9d0 Talk
#!/usr/bin/env perl
use 5.012;
my @fields = qw( name description other_name etc );
...

Perl On Method and database insertion

by j1n3l0, September 19, 2010 23:22

And if you have a recent pe...

6db7c6ecdbe97a1e844c88ecf587f61f Talk
#!/usr/bin/env perl
use 5.012;
my @fields = qw( name description other_name etc );
...

Perl On Method and database insertion

by j1n3l0, September 19, 2010 23:21

And if you have a recent pe...

6db7c6ecdbe97a1e844c88ecf587f61f Talk
#!/usr/bin/env perl
use 5.012;
my @fields = qw( name description other_name etc );
...

Perl On Method and database insertion

by j1n3l0, September 19, 2010 23:20

And if you have a recent pe...

6db7c6ecdbe97a1e844c88ecf587f61f Talk
#!/usr/bin/env perl
use 5.012;
my @fields = qw( name description other_name etc );
...

Perl On Method and database insertion

by j1n3l0, September 19, 2010 23:17

And if you have a recent pe...

6db7c6ecdbe97a1e844c88ecf587f61f Talk
#!/usr/bin/env perl                                                                                               
use strict;
use warnings FATAL => 'all';
...

Perl On Method and database insertion

by j1n3l0, September 19, 2010 22:19

I'd advice the use of stric...

D41d8cd98f00b204e9800998ecf8427e Talk
aaaa1111

Perl On Random sentence generator

by antar, September 19, 2010 20:09

fgvkjf,kjsfngfrhyduejjhdhjh...

586dba1dcdf36d86af742b87e61c5538 Talk

Perl On Take Last modified file in ...

by bruce, August 10, 2010 09:02

hi what compilator do you u...

D41d8cd98f00b204e9800998ecf8427e Talk

Perl On Random sentence generator

by blaine, March 18, 2010 04:50

Maryland auto insurance age...

49bb95a2ecf58822c675597e329ce23b Talk
use strict;
use warnings;
use 5.010;
...

Perl On Restructuring Perl Sitemap ...

by draegtun, March 15, 2010 10:34

Have a look at the Perl5 wi...

29cb106071d163d703484e63839d89cb Talk
C:\Documents and Settings\Santa\Mis documentos\Smtp>perl scan.pl

Perl On Smtp Scanner

by Wood, March 09, 2010 00:55

good

0f0cd7056796fb836103386926b943a0 Talk
Arcane

Perl On Random sentence generator

by longhornsbaseball, February 23, 2010 02:51
D41d8cd98f00b204e9800998ecf8427e Talk
sub parse_decimal {
    my $input = shift;
    my $output = parse_grouping($input, ",", "."); # parse as 12,345,678.90
...

Perl On Handling both dots and comm...

by Neil Ostrove, January 25, 2010 16:35

Natuarally I messed up the ...

D41d8cd98f00b204e9800998ecf8427e Talk
use strict;
use warnings;
use Test::More;
...

Perl On Handling both dots and comm...

by Neil Ostrove, January 25, 2010 16:28

This gets rid the duplicate...

C644d3a078aa77de99147d83d8c8de31 Talk
my $end = do {
    my $month_ago = DateTime->now->subtract( months => 1 );
    sprintf '%02d%02d', substr( $month_ago->year, -2 ), $month_ago->month;
...

Perl On Processing files by date.

by draegtun, January 12, 2010 14:55

No probs trirnoth. It wa...

29cb106071d163d703484e63839d89cb Talk
File.open('/usr/local/teste/xml-cvs/ssp.xml').readlines.join.to_s.scan(/\>(.*)\</).uniq.sort.each {|dados| puts "#{dados};#{ File.open('/usr/local/teste/xml-cvs/ssp.xml').readlines.join.to_s.scan(/\>(.*)\</).count(dados)}"}

Perl On Perl one-liner to extract x...

by Antonio Pires de Castro Júnior, December 29, 2009 17:58

Uma única linha em RUBY pa...

C9dde8ac6e533576dd3ed5332beb2dc7 Talk

Perl On Processing files by date.

by trirnoth, December 04, 2009 16:41

I have no idea why I didn't...

B477db7638522c078d3f0b696b85aee5 Talk
@a{<>}.=print%a

Perl On deldup

by Anthony, November 17, 2009 21:55

Spews warnings, but works. ...

05b48b72766177b3b0a6ff4afdb70790 Talk
@a{<>}.=print keys%a

Perl On deldup

by Anthony, November 17, 2009 21:53

This gets down to a golf sc...

05b48b72766177b3b0a6ff4afdb70790 Talk

Perl On Hello world!

by Anthony, November 17, 2009 21:52

Sorry about that, posted on...

05b48b72766177b3b0a6ff4afdb70790 Talk
@a{<>}.=print keys%a

Perl On Hello world!

by Anthony, November 17, 2009 21:51

Golf score down to 20. I am...

05b48b72766177b3b0a6ff4afdb70790 Talk
perl -we '@a{<>} = 1; print keys %a'

Perl On deldup

by Anthony, November 17, 2009 21:34

Can go even shorter by usin...

05b48b72766177b3b0a6ff4afdb70790 Talk
sub parse_decimal {
    (my $input = shift) =~ s/[^\d,\.]//g;
    my %o = (','=>'.','.'=>',');
...

Perl On Handling both dots and comm...

by giftnuss, November 17, 2009 10:00

This is a useable implement...

16ce028e27993156566685b802365873 Talk

Perl On Handling both dots and comm...

by Thomas Salvador, November 16, 2009 20:20

hi.

here an idea on how to...

34db50b7ce2e115afadf5a765b950739 Talk
#!/usr/bin/perl

use strict;
...

Perl On Handling both dots and comm...

by johntrammell.myopenid.com, November 16, 2009 17:32

Definitely need to get rid ...

6e8ddfd51613a0bb512abb09b64dafef Talk