Page Not Found
Sorry, this is the void.
13 |├── test ├── log-ntl-cablemodem-stats ├── CableModemStats │ ├── bin │ │ └── app.pl │ ├── t │ │ ├── 001_base.t │ │ └── 002_index_route.t │ ├── public │ │ ├── favicon.ico │ │ ├── images │ │ │ ├── perldancer.jpg │ │ │ └── perldancer-bg.jpg │ │ ├── dispatch.cgi │ │ ├── dispatch.fcgi │ │ ├── 404.html │ │ ├── 500.html │ │ └── css │ │ │ ├── error.css │ │ │ └── style.css │ ├── MANIFEST.SKIP │ ├── views │ │ ├── index.tt │ │ ├── stat.tt │ │ └── layouts │ │ │ └── main.tt │ ├── environments │ │ ├── production.yml │ │ └── development.yml │ ├── MANIFEST │ ├── Makefile.PL │ ├── config.yml │ └── lib │ │ └── CableModemStats.pm ├── schema-sqlite3.sql ├── schema-mysql.sql ├── README.pod ├── cablemodemstats-munin └── log-ntl-cablemodem-stats ├── dnstiming ├── README └── dnstiming.pl ├── jobs-alert ├── README └── jobs-alert ├── mysqldump-backups ├── README └── mysqldump-backups ├── avoid-moo-reapage ├── README └── lambdamoo-auto ├── find-duplicate-files ├── README └── find-duplicate-files.pl ├── diffr ├── README └── diffr.pl ├── auto-name-incoming ├── README └── auto-name-incoming ├── minecraft-stats-reporting ├── README ├── player-stats ├── player-stats.pl ├── compare-player-stats └── MinecraftStatsParser.pm ├── mp3-rename ├── README └── mp3-rename ├── lottery-pick └── lottery-pick ├── nagios_network_errors ├── README └── nagios_network_errors ├── darts-scoring-practice ├── README └── dartscoringpractice ├── sh-planning-search └── README.md ├── log-vm-superhub-stats ├── schema-sqlite3.sql ├── schema-mysql.sql ├── README.pod └── cablemodemstats-munin ├── tagtrack ├── README └── tagtrack ├── html-table-dump ├── README.md └── html-table-dump ├── fetch-xdslstats ├── schema.sql ├── README.md └── fetch-xdslstats ├── irssi └── wincommandsfixer │ ├── README.pod │ └── wincommandsfixer.pl ├── countrykitchen-meals-export ├── README.md ├── meals-summary.tt └── test-data.json ├── dancer-init.d ├── README └── dancer ├── chart-strip-cli-grapher ├── README.pod └── graph ├── set-slack-status ├── README.md └── set-slack-status ├── nagios_sensors_check ├── README.pod └── nagios_sensors_check ├── bot-basicbot-modules ├── WelcomeMibbit.pm ├── SayFromQueue.pm ├── DancerLinks.pm ├── RateLimitUsers.pm └── GitHubPullRequests.pm ├── vine-queue-watcher ├── README.pod └── check-for-vine-items ├── backup-google-stuff ├── README └── backup-google-stuff.pl ├── education ├── sums.tmpl └── generate-maths-worksheet ├── rip-dvd-handbrake-cli └── README.pod ├── stevenage-rubbish-reminder ├── README └── rubbish-reminder ├── rsync-log-collate ├── README.pod └── rsync-log-collate ├── mpdutils └── mpd-now-playing ├── show-tags ├── show-tags └── README ├── luton-flight-monitor ├── README.pod └── flight-monitor ├── set-pyrus-hi3518-cam-datetime ├── README.md └── set-pyruscam-datetime ├── retag-by-filename ├── README └── retag-by-filename ├── xchat-plugins ├── README.pod ├── xchat-parse-netlink-msgs.pl └── xchat-parse-trivia-hints.pl ├── cpants-scores ├── cpants-scores └── README.pod ├── odyssey-bookings-to-gcal ├── README.pod └── odyssey-bookings-to-gcal ├── nagios_rdiffbackup_check ├── README.pod └── nagios_rdiffbackup_check ├── nagios_adaptec_raid_check ├── README.pod └── nagios_adaptec_raid_check ├── fortivpn-connect-scripts ├── connect-fortivpn └── get-vpn-password ├── wordle-solver ├── README.md └── wordle-hint ├── misc └── check-abbie-polo-shirt ├── photo-frame-populate └── photo-frame-populate ├── shdc-rubbish-scraper └── shdc-rubbish-scraper.js ├── minecraft-utils └── diamondratio.ts ├── nagios_smart_log ├── nagios_smart_log └── README.pod ├── munin_am2302_dht ├── am2302_dht └── README.pod ├── munin_db_query ├── munin_db_query └── README.pod ├── lagmeter-log-munin ├── lagmeter-log-munin └── check-lagmeter-log ├── tabulate ├── README └── tabulate ├── nagios_check_mysql_stats └── README.pod ├── get-rm-pro-temp-reading └── get-rm-pro-temp-reading ├── fse ├── fse-flight-to-flightplan └── monitor-fbo-availability ├── get-esp-temp-reading └── get-esp-temp-reading ├── nagios_check_process_stats └── README.pod └── nagios_3ware_raid_check └── README.pod /test: -------------------------------------------------------------------------------- 1 | Just testing GitHub hooks. 2 | -------------------------------------------------------------------------------- /log-ntl-cablemodem-stats/CableModemStats/bin/app.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env perl 2 | use Dancer; 3 | use CableModemStats; 4 | dance; 5 | -------------------------------------------------------------------------------- /dnstiming/README: -------------------------------------------------------------------------------- 1 | A simple script I created to compare DNS resolver performance between my local 2 | DNS servers and OpenDNS/Google. 3 | -------------------------------------------------------------------------------- /jobs-alert/README: -------------------------------------------------------------------------------- 1 | A quickly thrown together script to run from cron and nag me when 2 | there are job listings waiting to be approved. 3 | -------------------------------------------------------------------------------- /mysqldump-backups/README: -------------------------------------------------------------------------------- 1 | mysqldump-backups 2 | 3 | Simple script to run from cron and back up all MySQL databases using mysqldump. 4 | 5 | 6 | -------------------------------------------------------------------------------- /log-ntl-cablemodem-stats/CableModemStats/t/001_base.t: -------------------------------------------------------------------------------- 1 | use Test::More tests => 1; 2 | use strict; 3 | use warnings; 4 | 5 | use_ok 'CableModemStats'; 6 | -------------------------------------------------------------------------------- /log-ntl-cablemodem-stats/CableModemStats/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigpresh/misc-scripts/HEAD/log-ntl-cablemodem-stats/CableModemStats/public/favicon.ico -------------------------------------------------------------------------------- /log-ntl-cablemodem-stats/CableModemStats/public/images/perldancer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigpresh/misc-scripts/HEAD/log-ntl-cablemodem-stats/CableModemStats/public/images/perldancer.jpg -------------------------------------------------------------------------------- /avoid-moo-reapage/README: -------------------------------------------------------------------------------- 1 | Log in to LambdaMOO, perform some actions, log out. 2 | 3 | Run from cron periodically to ensure character doesn't get reaped if it hasn't 4 | been used for a while. 5 | 6 | -------------------------------------------------------------------------------- /log-ntl-cablemodem-stats/CableModemStats/public/images/perldancer-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigpresh/misc-scripts/HEAD/log-ntl-cablemodem-stats/CableModemStats/public/images/perldancer-bg.jpg -------------------------------------------------------------------------------- /find-duplicate-files/README: -------------------------------------------------------------------------------- 1 | Loop through a directory and find duplicate 2 | files, based on the MD5 sum (therefore finding 3 | files with identical content even if their timestamp 4 | and attributes are different) 5 | 6 | -------------------------------------------------------------------------------- /log-ntl-cablemodem-stats/CableModemStats/MANIFEST.SKIP: -------------------------------------------------------------------------------- 1 | ^\.git\/ 2 | maint 3 | ^tags$ 4 | .last_cover_stats 5 | Makefile$ 6 | ^blib 7 | ^pm_to_blib 8 | ^.*.bak 9 | ^.*.old 10 | ^t.*sessions 11 | ^cover_db 12 | ^.*\.log 13 | ^.*\.swp$ 14 | -------------------------------------------------------------------------------- /log-ntl-cablemodem-stats/CableModemStats/views/index.tt: -------------------------------------------------------------------------------- 1 | 2 |
Sorry, this is the void.
13 |Wooops, something went wrong
13 || Date | 4 | [% FOREACH child IN children %] 5 |[% child %] | 6 | [% END %] 7 ||
|---|---|---|
| --- | ||
| [% date_to_display.$date %] | 19 | [% FOREACH child IN children %] 20 |[% meals.$date.$child || "PACKED LUNCH" %] | 21 | [% END %] 22 ||