This file contains hidden or 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/perl | |
use v5.10; | |
use strict; | |
use warnings; | |
die "Directory does not exist!" unless -d $ARGV[0]; | |
my @files = glob( $ARGV[0] ); | |
# make the name column at least as wide as the longest filename | |
my( $workbook, $worksheet ) = get_book_and_sheet( 'attributes.xlsx', 'attributes' ); |
This file contains hidden or 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/local/bin/perl5.16.2 | |
use v5.10; | |
use strict; | |
use open qw(:std :utf8); | |
use Net::Twitter; | |
use XML::RSS; | |
my $twitter = create_twitter(); |
This file contains hidden or 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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Perl module dependency graph</title> | |
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.js?2.6.0"></script> | |
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.layout.js?2.6.0"></script> | |
<script type="text/javascript" src="http://mbostock.github.com/d3/d3.geom.js?2.6.0"></script> | |
<script type="text/javascript" src="jshashtable-3.0.js"></script> | |
</head> |
This file contains hidden or 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
{"names":["constant","Test","File::Listing","IO::Seekable","IO::HTML","Exporter","Test::Harness","Sub::Install","Params::Util","Net::FTP","POSIX","Carp","Test::Tester","warnings","IO::Uncompress::RawInflate","URI","Time::Local","Digest::base","HTTP::Size","Digest::MD5","HTTP::Cookies","LWP::MediaTypes","Socket","LWP::UserAgent","Encode::Locale","AnyDBM_File","overload","Test::More","Scalar::Util","Carp::Heavy","HTTP::Request::Common","HTTP::Status","MIME::QuotedPrint","File::Temp","IO::Uncompress::Bunzip2","B","HTTP::Headers::Util","URI::Escape","IO::Socket::INET","List::Util","File::Spec","HTTP::Response","Compress::Raw::Zlib","Encode","IO::Compress::Gzip","Capture::Tiny","Compress::Raw::Bzip2","HTML::LinkExtor","File::Basename","IO::Compress::Bzip2","HTTP::Headers","HTML::Entities","IO::Socket","Cwd","WWW::RobotRules","Test::Builder","Net::HTTP","Fcntl","Encode::Alias","strict","parent","IO::Uncompress::Inflate","HTML::SimpleLinkExtor","HTTP::Request","File::Path","HTML::Tagset","Sub::Exporter","IO::Compres |
This file contains hidden or 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
{"names":["Test::More","Scalar::Util","Tie::Cycle","Tie::Toggle","Test::Harness"],"links":[[0,3],[0,1],[1,0],[2,3],[4,0]]} |
This file contains hidden or 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
var modules = [ | |
{ name: "Tie::Toggle", parent : "Tie::Cycle" }, | |
... | |
}; |
This file contains hidden or 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
{ | |
"names":["Test::More","Scalar::Util","Tie::Cycle","Tie::Toggle","Test::Harness"], | |
"links":[[0,3],[0,1],[1,0],[2,3],[4,0]] | |
} |
This file contains hidden or 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
#!/Users/brian/bin/perls/perl5.20.0 | |
use strict; | |
use warnings; | |
use List::Util qw(shuffle); | |
use Term::ANSIColor; | |
my @colors = qw(red blue green); | |
my $QSORT_ORDER_GUESS = 2; | |
my $QSORT_MAX_STACK = 32; |
This file contains hidden or 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; | |
no strict 'refs'; | |
my ($VERSION) = '$Revision: 1.2 $' =~ /([.\d]+)/; | |
my (@fh, $i); | |
my @sep = ( "\t" ); | |
my $dash_ess = 0; |
This file contains hidden or 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/perl -s | |
use vars qw($b); | |
my @start_sizes = map { -s $_ } @ARGV; | |
foreach my $file ( @ARGV ) { | |
if( -d $file ) { | |
warn "Skipping directory [$file]!\n"; | |
next; |