This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer
| #!/bin/bash | |
| # latest-firefox Version 1.6.3 | |
| # Contributer: drgibbon (thanks!) | |
| # This script will find the latest Firefox binary package, download it | |
| # and repackage it into Slackware format. | |
| # I don't use Firefox for regular browsing but it is handy for | |
| # comparative tests against Vivaldi. :P |
| user www-data; | |
| worker_processes 4; # number of cores on machine | |
| error_log /var/log/nginx/error.log; | |
| events { | |
| worker_connections 1024; | |
| } | |
| http { |
| #!/usr/bin/env perl | |
| use strict; | |
| use warnings; | |
| use Audio::Beep; | |
| use MIDI::ALSA qw( | |
| SND_SEQ_EVENT_NOTEON | |
| SND_SEQ_EVENT_NOTEOFF | |
| SND_SEQ_EVENT_PORT_UNSUBSCRIBED); |
This gist is part of a blog post. Check it out at:
http://jasonrudolph.com/blog/2011/08/09/programming-achievements-how-to-level-up-as-a-developer