Skip to content

Instantly share code, notes, and snippets.

View thaljef's full-sized avatar

Jeffrey Ryan Thalhammer thaljef

View GitHub Profile
@thaljef
thaljef / bad-metadata-dists.txt
Created March 29, 2013 23:13
CPAN distributions that have invalid meta data (according to CPAN::Meta) as-of March 29, 2013
authors/id/A/AD/ADAMK/Class-Autouse-1.04.tar.gz
authors/id/A/AD/ADAMK/Class-Autouse-1.10.tar.gz
authors/id/A/AD/ADAMK/Class-Autouse-1.11.tar.gz
authors/id/A/AD/ADAMK/Class-Autouse-1.12.tar.gz
authors/id/A/AG/AGENT/Cookie-XS-0.04.tar.gz
authors/id/A/AG/AGENT/Cookie-XS-0.05.tar.gz
authors/id/A/AM/AMBS/Lingua/Lingua-TreeTagger-Installer-0.11.tar.gz
authors/id/A/AM/AMBS/Lingua/Lingua-TreeTagger-Installer-0.1.tar.gz
authors/id/A/AS/ASKSH/Apache2-Modwheel-0.2.1.tar.gz
authors/id/A/AS/ASKSH/Modwheel-0.01.tar.gz
@thaljef
thaljef / gist:5441247
Created April 23, 2013 06:26
MooseX classes used by Pinto
MooseX::Aliases
MooseX::ClassAttribute
MooseX::Configuration
MooseX::MarkAsMethods
MooseX::NonMoose
MooseX::SetOnce
MooseX::StrictConstructor
MooseX::Types
MooseX::Types::Moose
@thaljef
thaljef / gist:5545257
Created May 9, 2013 02:57
Packages I have installed on debian (squeeze)
ii adduser 3.112+nmu2 add and remove users and groups
ii apache2 2.2.16-6+squeeze8 Apache HTTP Server metapackage
ii apache2-doc 2.2.16-6+squeeze8 Apache HTTP Server documentation
ii apache2-mpm-worker 2.2.16-6+squeeze8 Apache HTTP Server - high speed threaded model
ii apache2-utils 2.2.16-6+squeeze8 utility programs for webservers
ii apache2.2-bin 2.2.16-6+squeeze8 Apache HTTP Server common binary files
ii apache2.2-common 2.2.16-6+squeeze8 Apache HTTP Server common files
ii apt 0.8.10.3+squeeze1 Advanced front-end for dpkg
ii apt-listchanges 2.85.7+squeeze1 package change history notification tool
ii apt-utils 0.8.10.3+squeeze1 APT utility programs
@thaljef
thaljef / gist:5545982
Created May 9, 2013 06:50
@hesco's command to install from remote repo
Replacing 'secret' with your actual password...
cpanm --mirror-only --mirror http://deploy:secret@puppet.yourmessagedelivered.com:3111/dev -L ~/tmp/sandbox YMD::Provision
@thaljef
thaljef / gist:6291049
Last active December 21, 2015 10:19
Stratopan Design Specification

Stratopan Project Specification

This describes the front-end design and development work required for the Stratopan.com website. The current state of the site is visible here:

https://alpha.stratopan.com

Overall Goals

@thaljef
thaljef / cpanfile-dumper
Created May 3, 2014 03:01
Dump a cpanfile into targets for Pinto
#!/usr/bin/env perl
# USAGE: cpanfile-dumper path/to/cpanfile | pinto -r path/to/repo pull
use strict;
use warnings;
use Module::CPANfile;
my $file = shift or die 'Must specify a cpanfile';
my $cpanfile = Module::CPANfile->load($file);