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 | |
=head1 NAME | |
todo - The revolutionary way to keep track of your source code today! | |
=head1 SYNOPSIS | |
Do you find yourself using clunky, convoluted bug tracking and task management | |
software on a day to day basis? Does the thought of traditional bug trackers |
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
#!/bin/sh | |
# | |
# "Go away or I will replace you with a very small shell script" | |
# | |
# $ curl -sL http://bit.ly/mSEVHs | sh | |
# $ tag "IRC" | |
if [ `/usr/bin/uname` != 'Darwin' ]; then | |
echo "There's no point running this - OS X is required"; |
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 node | |
/* | |
* Bullshit Bingo Bot. | |
* 1) Fix the configuration to your liking and run | |
* 2) Use "!bullshit" and the word you want on the pile | |
* 3) ???? | |
* 4) BINGO! | |
* | |
* Send complaints, cheques or anthrax to [email protected]. |
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
#!/bin/sh | |
# | |
# PROVIDE: plack_app | |
# REQUIRE: LOGIN | |
# BEFORE: cron | |
# | |
# Add the following lines to /etc/rc.conf to enable the webapp: | |
# plack_app_enable (bool): Set to "NO" by default. |
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; | |
use warnings; | |
use Getopt::Long; | |
use Pod::Usage; | |
use constant ADOBE_EXTMNGR => '/Applications/Adobe Extension Manager CS5/'; | |
use constant ADOBE_APPFOLDER => 'Adobe Extension Manager CS5.app/Contents/MacOS/Adobe Extension Manager CS5'; |
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
:: Stop the NTP client | |
net stop w32time | |
:: Set the new time server | |
net time /setsntp:0.pool.ntp.org | |
:: Reset the NTP client | |
net start w32time |
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; | |
use warnings; | |
=head1 Overview | |
This script will download the current Earth Observatory Image of The Day from NASA, | |
and set it as your wallpaper. |