I hereby claim:
- I am kynan on github.
- I am frathgeber (https://keybase.io/frathgeber) on keybase.
- I have a public key ASB5SYm7rBgwnwovMxDQDbfGg_al7HvhEknK4XuCHpb9two
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| """Extract pids from a BBC iPlayer programme page. | |
| usage: get_iplayer --pid $(getbbcpid <url>) | |
| """ | |
| from __future__ import print_function | |
| from bs4 import BeautifulSoup |
| from firedrake import * | |
| mesh = UnitSquareMesh(100, 100) | |
| V = FunctionSpace(mesh, "CG", 1) | |
| W = V*V | |
| gamma = Constant(0.005) | |
| D = Constant(10) | |
| q, v = TestFunctions(W) | |
| u = Function(W) | |
| u0 = Function(W) |
| from lxml import etree | |
| ns = 'http://docs.oasis-open.org/legaldocml/ns/akn/3.0/CSD11' | |
| ukm = 'http://www.legislation.gov.uk/namespaces/metadata' | |
| hPath = etree.XPath('.//a:heading//text()', namespaces={'a': ns}) | |
| iPath = etree.XPath('.//a:intro//text()', namespaces={'a': ns}) | |
| cPath = etree.XPath('.//a:content//text()|.//a:content//a:ref/text()', | |
| namespaces={'a': ns}) | |
| mdPath = etree.XPath('//ukm:PrimaryMetadata[1]', namespaces={'ukm': ukm}) | |
| yPath = etree.XPath('./ukm:Year/@Value', namespaces={'ukm': ukm}) |
| from copy import copy | |
| class GameOfLife: | |
| RULES = { | |
| (1,1,1): 0, | |
| (1,1,0): 0, | |
| (1,0,1): 0, | |
| (1,0,0): 1, | |
| (0,1,1): 1, | |
| (0,1,0): 0, |
| DEAD = 0 | |
| ALIVE = 1 | |
| evolve_cell = (left, middle, right) -> | |
| register = left*4+middle*2+right | |
| #console.log left, middle, right, register | |
| switch register | |
| when 4 then ALIVE # from [ALIVE,DEAD,DEAD] | |
| when 3 then ALIVE # from [DEAD,ALIVE,ALIVE] | |
| else |
| #!/bin/sh | |
| # | |
| # An example hook script to verify what is about to be committed. | |
| # Called by "git commit" with no arguments. The hook should | |
| # exit with non-zero status after issuing an appropriate message if | |
| # it wants to stop the commit. | |
| # | |
| # To enable this hook, rename this file to "pre-commit". | |
| if git rev-parse --verify HEAD >/dev/null 2>&1 |
| #!/bin/bash | |
| # | |
| # By Sirupsen @ http://sirupsen.dk | |
| # Original version: http://sirupsen.com/a-simple-imgur-bash-screenshot-utility | |
| # Modifications by Florian Rathgeber @frathgeber (https://github.com/kynan) | |
| # | |
| # Description: Very simple script to make you | |
| # select a region of your screen, which will be captured, and | |
| # then uploaded. The URL will then be injected into your clipboard. | |
| # |
| #!/usr/bin/python | |
| # .- coding: utf-8 -. | |
| # | |
| # irssi_log_merge.py. | |
| # Written by Lasse Karstensen <[email protected]>, 2008. | |
| # Released under GPLv2. | |
| # | |
| # Newest version available on http://hyse.org/irssi-log-merge/ . | |
| # | |
| # Modified by Florian Rathgeber <[email protected]> |