I hereby claim:
- I am godber on github.
- I am godber (https://keybase.io/godber) on keybase.
- I have a public key whose fingerprint is 454A 260E 0EAB A8EC C930 3C9B 07B8 D482 9552 521F
To claim this, I am signing this object:
Mar 26 23:11:01 localhost kernel: [178164.363434] python invoked oom-killer: gfp_mask=0x201da, order=0, oom_score_adj=0 | |
Mar 26 23:11:01 localhost kernel: [178164.363441] python cpuset=/ mems_allowed=0 | |
Mar 26 23:11:01 localhost kernel: [178164.363462] Pid: 8666, comm: python Tainted: GF 3.8.0-29-generic #42~precise1-Ubuntu | |
Mar 26 23:11:01 localhost kernel: [178164.363463] Call Trace: | |
Mar 26 23:11:01 localhost kernel: [178164.363482] [<ffffffff816de7d6>] dump_header+0x83/0xbb | |
Mar 26 23:11:01 localhost kernel: [178164.363486] [<ffffffff816de863>] oom_kill_process.part.6+0x55/0x2cf | |
Mar 26 23:11:01 localhost kernel: [178164.363497] [<ffffffff8113891d>] oom_kill_process+0x4d/0x50 | |
Mar 26 23:11:01 localhost kernel: [178164.363500] [<ffffffff81138c55>] out_of_memory+0x145/0x1d0 | |
Mar 26 23:11:01 localhost kernel: [178164.363502] [<ffffffff8113e507>] __alloc_pages_nodemask+0x977/0x990 | |
Mar 26 23:11:01 localhost kernel: [178164.363507] [<ffffffff8117aa1a>] alloc_pages_current+0xba/0x170 |
I hereby claim:
To claim this, I am signing this object:
{ | |
"metadata": { | |
"celltoolbar": "Slideshow", | |
"name": "", | |
"signature": "sha256:2894bbe74f16a255abf27e6a71f31cd708f3b84bfa63b3f619344aa8af6dc27c" | |
}, | |
"nbformat": 3, | |
"nbformat_minor": 0, | |
"worksheets": [ | |
{ |
import os | |
from scipy import misc | |
def split_anaglyph_file(infile): | |
""" | |
Splits Red/Cyan Anaglyph into Left and Right Images and writes those images | |
out into files with the same filename with '-left' or '-right' appended. | |
""" | |
image = misc.imread(infile) | |
if len(image.shape) == 3: |
/***************************************************************************** | |
* ODLv2 as Defined Here: http://pds.nasa.gov/documents/sr/Chapter12.pdf | |
*****************************************************************************/ | |
grammar ODLv21; | |
WS | |
: [ \t] -> skip | |
; |
#! /usr/bin/bash | |
# ncp - Netcat and Pigz based network file copy (faster than scp, but unencrypted) | |
# From this blog post | |
# http://intermediatesql.com/linux/scrap-the-scp-how-to-copy-data-fast-using-pigz-and-nc/ | |
FILE_FULL=$1 | |
REMOTE_HOST=$2 | |
FILE_DIR=$(dirname $FILE_FULL) |
#!/usr/bin/env python | |
# Being lazy here, everything is hardcoded. | |
# This takes a file like the following and generates CREATE TABLE command for | |
# PostgreSQL: | |
# http://pds-imaging.jpl.nasa.gov/data/msl/MSLMST_0007/INDEX/EDRINDEX.LBL | |
# Load it with this: | |
# psql -U postgres -h localhost -p 5432 -d mslpdsindex -f mcam-pds-index.sql | |
#!/bin/bash | |
export DISPLAY=:1 | |
while true; | |
do | |
xdotool key shift | |
sleep 5 | |
done |