Skip to content

Instantly share code, notes, and snippets.

View syncsynchalt's full-sized avatar
🏝️
Retired

Michael Driscoll syncsynchalt

🏝️
Retired
View GitHub Profile
From: ticketreply@systeminplace.net
Subject: SystemInPlace: Planned Maintenance - Chicago - May 24, 2012 9:00 AM
Date: May 20, 2012 11:32:48 PM MDT
Reply-To: ticketreply@systeminplace.net
Hello,
You are receiving this notice as notification that we are planning to conduct maintenance
in Chicago on May 24. In order to optimize usage of our resources we have renegotiated our
@syncsynchalt
syncsynchalt / gist:2348045
Created April 10, 2012 02:44
dang it perl
$ cat /tmp/foo.pl
#!/usr/bin/perl -w
use strict;
use XML::Simple;
use Data::Dumper;
print Dumper(XMLin('<xml attrib="foo&amp;bar"/>'));
$ perl5.12 /tmp/foo.pl
try
{
try
{
for( int retry=10; !success&&retry>0; retry-- )
{
try
{
#!/usr/bin/perl -w
use strict;
my %third = ( 'ous' => 'huh' );
my %second = ( 'i' => \%third );
my %ob = ( 'nox' => \%second );
print $ob{nox}{i}{ous}, "\n";