- Chappie
- Ex Machina
- Mad Max: Fury Road
- Snowpiercer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
predict: "procedure.py:run" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ 78407.321] | |
X.Org X Server 1.17.4 | |
Release Date: 2015-10-28 | |
[ 78407.321] X Protocol Version 11, Revision 0 | |
[ 78407.321] Build Operating System: Linux 4.2.5-1-ARCH x86_64 | |
[ 78407.321] Current Operating System: Linux tzadkiel 4.2.5-1-ARCH #1 SMP PREEMPT Tue Oct 27 08:13:28 CET 2015 x86_64 | |
[ 78407.321] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=/dev/sda2 rw | |
[ 78407.321] Build Date: 01 November 2015 10:36:50AM | |
[ 78407.321] | |
[ 78407.321] Current version of pixman: 0.32.8 |
I hereby claim:
- I am erbridge on github.
- I am erbridge (https://keybase.io/erbridge) on keybase.
- I have a public key ASDDkYEiDqgHkBcvgm16GWcT3TumJSMTGsEwtX2rNvgdnQo
To claim this, I am signing this object:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Date : (2014-03-07 10-21) | |
# Last revision : (2014-03-14 10-35) | |
# Wine version used : 1.7.16 | |
# Distribution used to test : Ubuntu 13.10 | |
# Authors : waneck-six, Damian-LinuxFan, Tomza (pogtoma@gmail.com) | |
# Contributors: Goran Grncaroski (running MonoDevelop), other people (testing solutions) | |
# Script licence : GPL v.2 | |
# Only For : http://www.playonlinux.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Retrieved from http://www.peterbe.com/plog/uniqifiers-benchmark | |
# | |
from random import shuffle, randint | |
import re | |
from sets import Set | |
def f1(seq): # Raymond Hettinger | |
# not order preserving | |
set = {} | |
map(set.__setitem__, seq, []) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# Adapted from: | |
# https://github.com/techbelly/dotfiles/blob/master/bash/aliases | |
if [ $# -ne 1 ] || ! [ -f $1 ]; then | |
echo "Usage: extract FILEPATH" >&2 | |
exit 1 | |
else | |
case $1 in |