Skip to content

Instantly share code, notes, and snippets.

View dgags's full-sized avatar

David Gagliardi dgags

  • Far out in the uncharted backwaters of the unfashionable end of the Western Spiral arm of the Galaxy
View GitHub Profile
@dgags
dgags / keybase.md
Created March 9, 2017 22:31
keybase.md

Keybase proof

I hereby claim:

  • I am dgags on github.
  • I am dgags (https://keybase.io/dgags) on keybase.
  • I have a public key ASCuBl4EAITUG7O11YoXIf0ld1-AwmdaY7UvsBY3XkFCXgo

To claim this, I am signing this object:

@dgags
dgags / phillydev.pl
Created May 19, 2017 14:27
Daily Programmer - phillydevslack
#!/usr/bin/perl -W
#
use strict;
sub is_hex {
my ($s) = @_;
local $SIG{__WARN__} = sub { die };
return eval { scalar hex $s; 1 };
}