Skip to content

Instantly share code, notes, and snippets.

View wlonk's full-sized avatar
🦊
I hope your day is wonderful!

Kit La Touche wlonk

🦊
I hope your day is wonderful!
View GitHub Profile
@wlonk
wlonk / .vimrc
Last active December 30, 2018 23:27
Test python-mode motions
" First, we don't care about vi compatability.
set nocompatible
" Need to turn filetype off when starting Vundle
filetype off
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
@wlonk
wlonk / ghosts.md
Last active February 24, 2018 22:52

Ghosts

A game for one ghost, and one GM.

You'll need a bunch of red dice, white dice, and black dice. Just normal six-sided dice.

You may also want some things to take notes.

You are a ghost

February 775. King Thurcytel, Infancy. Sælred Sælredsson regent, and the king's grandfather. Naïve Appeaser, Humble, Chaste, Patient, Slothful. General pattern: whatever will offend the fewest people, and take the least effort. His guardian: Mother, Gisela. Tought Soldier, Cynical, Paranoid, Cruel, Diligent. Will drive me hard. Carries a claim to the Kingdom of Francia.

I made Bishop Eadsige the court physician, as the slow fever stalks the land. He’s brilliant, well-educated, will know how to keep us safe from the plague, but also wouldn’t know a backstabbing plot if it bit him, so that’s good.

Keybase proof

I hereby claim:

  • I am wlonk on github.
  • I am wlonk (https://keybase.io/wlonk) on keybase.
  • I have a public key whose fingerprint is 6D25 F120 A1D5 2980 900F 3673 60AF 0368 E777 58A8

To claim this, I am signing this object:

@wlonk
wlonk / dictionary_defaults.py
Last active August 29, 2015 14:10
Return a dict with defaults.
foo = {
...
}
defaults = {
...
}
foo = dict(defaults, **foo) # Or assign to somewhere else, whatever, I'm not picky.