I hereby claim:
- I am noah on github.
- I am nt (https://keybase.io/nt) on keybase.
- I have a public key whose fingerprint is 8A7B BF7B B3A9 49A8 53B6 68B0 C3D7 A4A5 2266 0FC3
To claim this, I am signing this object:
| #!/bin/sh | |
| user=noah | |
| MDIR=~/mail | |
| ODIR=~/.offlineimap | |
| A=Account-$user/LocalStatus | |
| RL=Repository-Local/FolderValidity | |
| RR=Repository-Remote/FolderValidity |
| pi@host ~ $ cat /etc/network/interfaces | |
| auto lo | |
| iface lo inet loopback | |
| auto wlan0 | |
| iface wlan0 inet static | |
| wpa-ssid myessid | |
| wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf | |
| address 192.168.1.xxx |
| easterEgg.BadWorder.list={ | |
| "4r5e":1, | |
| "5h1t":1, | |
| "5hit":1, | |
| a55:1, | |
| anal:1, | |
| anus:1, | |
| ar5e:1, | |
| arrse:1, | |
| arse:1, |
| % cat $(which rmmail) | |
| #!/bin/bash | |
| if [ $# -ne 1 ]; then | |
| echo "usage: $(basename $0) foldername" | |
| exit | |
| fi | |
| if [ -n "$1" ]; then |
| #!/bin/sh | |
| out= | |
| while [ -z "$out" ]; do | |
| echo "$(date) syncing..." | |
| cmdout="$(galileo --upload --https-only -d --force 2>&1)" | |
| #echo "cmdout: $cmdout" | |
| out="$(echo $cmdout|grep 'Synchronisation sucessfull')" # sic | |
| #echo "out: $out" |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env ruby | |
| # | |
| %w[nokogiri open-uri chronic].each{|lib| require lib} | |
| base = "https://blog.tilton.co" | |
| doc = Nokogiri::HTML open "#{base}/archive.html" | |
| doc.search('section.archives a').each do |post| | |
| post_link = post[:href] |
| #!/bin/zsh | |
| # N.K. Tilton <code@tilton.co> | |
| # LICENSE: MIT | |
| # | |
| # summarize music directory | |
| # | |
| # point it at a directory to find out which directories contain .mp3 | |
| # and/or .flac files, respectively |
| #!/usr/bin/env python2 | |
| print "ohai" |
| #!/usr/bin/python2 | |
| # rtorrent_xmlrpc | |
| # (c) 2011 Roger Que <alerante@bellsouth.net> | |
| # (c) 2013 Noah K. Tilton <lists@tilton.co> | |
| # | |
| # Python module for interacting with rtorrent's XML-RPC interface | |
| # directly over SCGI, instead of through an HTTP server intermediary. | |
| # Inspired by Glenn Washburn's xmlrpc2scgi.py [1], but subclasses the | |
| # built-in xmlrpclib classes so that it is compatible with features |