Skip to content

Instantly share code, notes, and snippets.

https://stream.fosdem.org/janson.m3u8
https://stream.fosdem.org/k1105.m3u8

Keybase proof

I hereby claim:

  • I am northerner on github.
  • I am danielking (https://keybase.io/danielking) on keybase.
  • I have a public key ASAgS0v4_5KMOw2LJ4u7FGHG-6b5THd4alzeDlLi5-j-QAo

To claim this, I am signing this object:

@northerner
northerner / available.txt
Created February 11, 2018 13:17
Popular songs where the last word of title is a valid TLD ... and they're available to register!
walkon.by
livingforthe.city
itsamansmansmans.world
rockininthefree.world
wegottagetoutofthis.place
youarethesunshineofmy.life
whatslovegottodowith.it
thatsthewayofthe.world
icantmakeyoulove.me
nowhereto.run
@northerner
northerner / gist:76af63bec90d464f548cc1f1e385d4d8
Created January 27, 2018 20:17
next 10 sheffield meetups
curl 'https://opentechcalendar.co.uk/api1/area/40/events.json' | jq '.data[0,1,2,3,4,5,6,7,8,9] | .start.displaylocal + "___" + .summary' | column -t -c 2 -s '___'
class Llamabot < RTanque::Bot::Brain
NAME = 'llamabot'
include RTanque::Bot::BrainHelper
def tick!
@heading_modifier = 1
if sensors.ticks % 500 == 0
@heading_modifier = 1
else
@northerner
northerner / gist:6404755
Created September 1, 2013 14:22
Start up a vagrant box, ssh in, then halt the box after closing putty.
@echo off
D:
cd \vagrant
IF EXIST vagrantup (
echo last box not halted
pause
exit
)
echo running vagrant up
@northerner
northerner / gist:5415131
Created April 18, 2013 18:35
A simple Ruby script that connects to an IRC server and maintains the connection. Written to help me learn about TCP sockets.
require 'socket'
PORT = 6667
HOST = ''
CHANNEL = ''
NICK = 'rubyirc'
socket = TCPSocket.new(HOST, PORT)
socket.puts "USER #{NICK} #{NICK} #{NICK} #{NICK}"