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
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
my %data = ( | |
subject => [ | |
'A <modifier> <person> named <name>', | |
'A <modifier> <person> named <name>', | |
'<title> <name>', |
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
package HexBase64; | |
use strict; | |
use warnings; | |
use base 'Exporter'; | |
our @EXPORT = (qw(base64_to_hex hex_to_base64)); | |
# lookup tables for conversion |
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
Steve: wtf is a gramophone | |
Alan: ben franklink invetned it | |
record player with the horn thing | |
Steve: dude | |
Alan: instead of speakers | |
Steve: is he like the oscar meyer version of ben franklin? | |
Alan: yup | |
Steve: awesome | |
does he taste like a hot god? | |
Alan: he was made of sausage links |
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
use base 'ZNC::Module'; | |
sub module_types { | |
$ZNC::CModInfo::UserModule; | |
} | |
sub description { | |
"Notify you when you are not attached to ZNC"; | |
} |
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
# This file was automatically generated by SWIG (http://www.swig.org). | |
# Version 2.0.4 | |
# | |
# Do not make changes to this file unless you know what you are doing--modify | |
# the SWIG interface file instead. | |
package ZNC; | |
use base qw(Exporter); | |
use base qw(DynaLoader); | |
package ZNCc; |
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
checking for file conflicts... | |
filesystem: /var/lock exists in filesystem | |
filesystem: /var/run exists in filesystem | |
fontconfig: /etc/fonts/conf.d/20-unhint-small-vera.conf exists in filesystem | |
fontconfig: /etc/fonts/conf.d/29-replace-bitmap-fonts.conf exists in filesystem | |
fontconfig: /etc/fonts/conf.d/30-metric-aliases.conf exists in filesystem | |
fontconfig: /etc/fonts/conf.d/30-urw-aliases.conf exists in filesystem | |
fontconfig: /etc/fonts/conf.d/40-nonlatin.conf exists in filesystem | |
fontconfig: /etc/fonts/conf.d/45-latin.conf exists in filesystem | |
fontconfig: /etc/fonts/conf.d/49-sansserif.conf exists in filesystem |
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
// Dock configuration | |
const int DOCK_TYPE = 50; // 50 Desk 100 Car | |
const int DOCK_CHARGE = 50; // 50 AC 100 USB | |
const int DOCK_AUDIO = 100; // 50 Yes 100 No | |
// Pin configuration | |
const int pinLed = 0; | |
const int pinData = 2; | |
void setup() { |
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
Scrotal Kabuki | |
Prison Grape | |
Ready to Receive Sausage | |
I Only Pull It Out When It's Wrinkly | |
Is It Winkin'? | |
Leech Blow Job | |
I Rock That Smell | |
Dick Smooch | |
You Can Rub It On Your Pants | |
Gettin' Lucky with Rufies |
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
how does this encode |
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
.PHONY: all clean server | |
all: htdocs/index.html htdocs/style.min.css | |
htdocs/index.html: data/* | |
perl blosxom.cgi -password=awesome | |
find htdocs -mindepth 2 -name 'index.rss' -delete | |
htdocs/style.min.css: style.less | |
lessc -x style.less > htdocs/style.min.css |