This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
# [2011-03-15] [email protected] | |
# Prints all old (SRC) RPM packages from specified directory. | |
# Assumed package format: name-version-release.distribution_optionalpatch.suffix.rpm | |
# | |
# Use case: | |
# | |
# $ ls test/ | |
# glibc-2.12-1.7.el6_0.3.src.rpm glibc-2.12-1.7.el6_0.4.src.rpm glibc-2.12-1.7.el6.src.rpm | |
# $ ./oldrpm.pl test/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use POE; | |
use POE::Component::Client::DNS; | |
my @ips = qw( 127.0.0.1 10.0.0.1 192.168.0.1 192.168.1.1 1.2.3.4 | |
8.8.4.4 8.8.8.8 208.67.220.220 208.67.222.222 ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Contributor: Viliam Pucik <[email protected]> | |
# Generator : CPANPLUS::Dist::Arch 1.19 | |
pkgname='perl-mojolicious' | |
pkgver='2.25' | |
pkgrel='1' | |
pkgdesc="Real-time web framework" | |
arch=('any') | |
license=('PerlArtistic' 'GPL') | |
options=('!emptydirs') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Contributor: Viliam Pucik <[email protected]> | |
# Generator : CPANPLUS::Dist::Arch 1.19 | |
pkgname='perl-html-wikiconverter' | |
pkgver='0.68' | |
pkgrel='2' | |
pkgdesc="Convert HTML to wiki markup" | |
arch=('any') | |
license=('PerlArtistic' 'GPL') | |
options=('!emptydirs') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use Benchmark ( 'cmpthese' ); | |
my $foo = ''; | |
cmpthese( 10000000, { | |
'direct' => sub { return $foo eq '' }, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use Digest::MD5 qw( md5 ); | |
# based on UUID::Tiny | |
sub uuid_v3 { | |
my ( $namespace, $name ) = @_; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
database => 'donut', | |
user => 'homer', | |
password => 'simpson', | |
quote => { | |
give => 'me', | |
the => 'number', | |
for => 911, | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select i * '5 minute'::interval + timestamp '2012-01-01 00:00:00', | |
trunc(100 * random()::numeric, 2) | |
from generate_series(0, 24 * 60 / 5 - 1) as t(i) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
# Taken from "There are too many ways to do it" presentation | |
# http://www.shlomifish.org/lecture/Perl/Lightning/Too-Many-Ways/slides/ | |
# | |
# The problem | |
# | |
# <sniperd> looking to write a regex that strips out all periods, except for | |
# the last one. ie, i have a string named perl.is.the.best.txt and I just | |
# want perlisthebest.txt | |
# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use PerlIO::gzip; | |
my $pattern = $ARGV[0]; | |
my $file = $ARGV[1]; | |
open my $z, '<:gzip', $file or die "gunzip failed: $!\n"; | |
while ( <$z> ) { | |
print if /$pattern/i; |
OlderNewer