This file contains 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
ssh-dss AAAAB3NzaC1kc3MAAAEBANuhNGNwlwQNzjUiHuHuTEFokl5W8aiMax0Elp6TI11cAQRNIiBNFbcEf+mRLalO+T9wun0x99FsjfCIS/czNq37wzXZUxY7Uea2o/cKBqjoPZd7REyi/TZHuGWAEZBTDEsqIiaAfeUNBwJgkg+MvHQgaoyyGsRhQBsbR9zCIWSyDVm/jeefvMlA9urrBZEsehmzqI59jgWtWIm1QAitLzlDHuFNRsadUDwGz4t9BrBXDP7GYCE5Lp/DH0WCXgMx4Xzw54SVhA8C6SVpqDbcYpEtiWCeg/FyCUfIir55WcfIAQeN0CqQcDUlH9P6C+k/zuwS8Ifc/0TlagKtGeoyNgkAAAAVALEY1QedNp4tfl362is0fmT+/tc3AAABAQDJqWp6Rq964NaHqPAjlfehnl8OrMy6DO6uF2WqFarl0Tjtnt4scbbtfLQU9A0m0tl4hEMENNKjS/UHDt46LOcR9r8yBm52OMatYrPIyrkSmv5hZuwoNkdMb9Y9LKErLHV43pEjdC+8z2N8SnOe4HN9AQfMATnoyjF8NxqBuGCdgfUKpJpMJqvE82Nr9eKfPCgpUEy4wgJ1DITfSWh7UuvRnafA/Z+Xjdw46aZyWtnbkmMJTRS6zwph7LtXhxMF0nWwg+0yz/LCClamA/XkTLwVHLBtt3BDYOHvpLfXWgHpCR8MXntltFJKDW7QChybzqVXtt7GBfW3DC2bSB2/K90sAAABAQCxY45wD1hArQf6te4dwM3LGRNpRYn09LQk3EP9qsob7xYqtQmGNOlPBBqsw3VTnw5cf8RRFZZ4dYrEkHVhENHI1FilwmO5WyXncXIk5VUwGG41cgjdUSbs32pel1zllbpacYmkoPHhmjRr6Md8l9MYNdXWrLwTeK3rMgAUhuqRIprR9Gq0c8jvNL0L7sU/dwcMP9j0M7ahhVQUXA19TxQP3NxFxIjOMjKru9B5FsWddenjwogcFbcZzzb6GHneQ8ugaoUg/TO0 |
This file contains 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
class Activity | |
def <=>(other_activity) | |
self.endtime <=> other_activity.endtime | |
end | |
end |
This file contains 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
exec { "pkg_add -r apache-2.0.63_2": | |
path => "/usr/sbin:/sbin:/usr/bin/:/bin", | |
onlyif => "test $(pkg_version apache |grep 2.0.63_2 |wc -l) != '1'" | |
} |
This file contains 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
desc "setup external displays" | |
task :displays do | |
system("xrandr --output VGA --mode 1024x768") | |
system("xrandr --output VGA --same-as LVDS") | |
end | |
desc "perform presentation" | |
task :perform => :displays do | |
options = "--transition Crossfade --transtime 250 -c persistent" | |
command = "keyjnote #{options} @#{File.dirname(__FILE__)}/order.txt" |
This file contains 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
/home/auxesis/Desktop/devopsdays/slides/blank.png | |
# http://www.flickr.com/photos/tim_norris/2600844073/ | |
/home/auxesis/Desktop/devopsdays/slides/scalable.png | |
# http://www.flickr.com/photos/barbour/404053639/ | |
/home/auxesis/Desktop/devopsdays/slides/distributed.png | |
# http://www.flickr.com/photos/numstead/535460927/ | |
/home/auxesis/Desktop/devopsdays/slides/nagios-plugin-format.png |
This file contains 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
desc "build pngs from svgs" | |
task :build do | |
Dir.glob("sources/*.svg").each do |file| | |
if modified?(file) | |
basename = File.basename(file, '.svg') | |
slide = "slides/#{basename}.png" | |
system("inkscape -e #{slide} -f #{file}") | |
end | |
end | |
end |
This file contains 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
slides/* | |
*.cache | |
cache/* |
This file contains 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/cucumber --require features/ features/example-script.feature |
This file contains 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
beanstalkd (1.2-0~ppa3) hardy; urgency=low | |
* rebuilding as debian source package for launchpad | |
-- Lindsay Holmwood (Launchpad Key) <lindsay@holmwood.id.au> Tue, 26 May 2009 15:10:00 +0100 | |
beanstalkd (1.2-0~ppa2) hardy; urgency=low | |
* Tweaked version number to remove ubuntu from the version number. | |
* Added enabled flag to the beanstalkd default options. | |
-- Sam Mulube <sam.mulube@gmail.com> Wed, 04 Feb 2009 22:29:00 +0000 |
This file contains 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
" sessions, backups, temporary files | |
"set backup " Enable creation of backup file. | |
"set backupdir=~/.vim/backups " Where backups will go. | |
set directory=~/.vim/tmp " Where temporary files will go. | |
set viminfo='100,f1 | |
" how long key sequences can take to complete | |
set timeoutlen=250 | |
" color schemes |
OlderNewer