Skip to content

Instantly share code, notes, and snippets.

View goedel-gang's full-sized avatar

Izaak van Dongen goedel-gang

  • United Kingdom
View GitHub Profile
@goedel-gang
goedel-gang / subgoals.md
Created September 9, 2017 22:00
Sub goals in Markdown

Xem's sub goals

current: 538
peak: 538

  • 185 - rac1 ng+ packless blind run (meaning doing a run of rac1 ng+ without getting the helipack, the thruster pack, or the hydro pack)
  • 200 - uya ng+ TAS
  • 215 - youtube q&a
  • 230 - uya ng+ tutorial
  • 250 - One Man Opera (learning all the voice parts and the piano part to an opera and performing it live on twitch)
@goedel-gang
goedel-gang / scores.py
Created October 4, 2017 21:00
Getting dancing scores in Python
couples = "abcde"
judges = range(1, 6)
scores = {}
for couple in couples:
scores[couple] = []
for judge in judges:
sc = int(input("Judge {} enter score for couple {} > ".format(judge, couple)))
scores[couple].append(sc)
print("middle scores for couple {} are {}".format(couple, sorted(scores[couple])[1:-1]))
devices:Canon, Climax, Development, Fragmentation, Highlights, Hocif, Motif development, Repotition, Retrograde, unison
relationships:Accunilation, Counterpoint, Contact, Coupl ntzy, Contrast, Nanipulation of number, Lead and follow
techincal:Action content, Dynanic contant, Spatial content, Relationlhip content, Timing content, Rhythmic content
physical:Postuxo, Coordination, nobility, Extension, Mignnent, Control, suength, Isolation, Balance, Flaxibility
expressive:Choxeographic intention, Facial expression, Focul, Huaicality, Phrasinq, onjection, Sensicivity to others
mental:Movement memmory, Commitment, Concentxation, Confidence
@goedel-gang
goedel-gang / .bashrc
Last active May 31, 2018 10:41
Bash git prompt
# this is where it is on my system. Find a copy at
# https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh
source /usr/share/git/git-prompt.sh
# show if there are staged/unstaged changes
GIT_PS1_SHOWDIRTYSTATE=true
# pretty colours
GIT_PS1_SHOWCOLORHINTS=true
# show if there are untracked files
GIT_PS1_SHOWUNTRACKEDFILES=true
# this works quite nicely in a terminal, and can be more easily extended
from curses import wrapper
def main(stdscr):
ch = ''
while ch != 'q':
# getch returns codepoint, so convert to chr
# this makes things like [Left] behave strangely - if you want to
# capture those, don't call chr but instead look at which number is

Cambridge open day plans

see programme

  • morning colleges (9:30 - 4:30pm):
    • trinity (27)
    • caius (9)
    • christ's (1)
    • pembroke (18)
  • selwyn (25)
...........................................................................................................................................................
...........................................................................................................................................................
...........................................................................................................................................................
...........................................................................................................................................................
.........ccccccccccccccccccccccccccc::;;,''................................................................................................................
.........ooooooooooooooooooooooooooooooooooooolc:,.........................................................................................................
.........oooooooooooooooooooooooooooooooooooooooooool:,.................................
@goedel-gang
goedel-gang / 2019
Last active February 1, 2019 11:05
2019
Making the integers from 0-99 using the digits (2, 0, 1, 9) and various
mathematical operators, including the binary operators:
- addition
- subtraction
- multiplication
- division
- exponentiation
the unary operators:
- factorial
@goedel-gang
goedel-gang / Makefile
Last active April 30, 2019 16:33
Transposition
# because I want to time things
SHELL=bash
.PHONY: clean run destroy gist all
.FORCE:
DATAGEN_PYTHON = pypy3 # python3
TRANSPOSE_PYTHON = python3