I hereby claim:
- I am jwalgran on github.
- I am jwalgran (https://keybase.io/jwalgran) on keybase.
- I have a public key whose fingerprint is 47D7 2769 469F 5A31 7C70 EDA8 997C FC66 D67F 2779
To claim this, I am signing this object:
| function dmenv () { | |
| if [ -z "$1" ] | |
| then | |
| machine="default" | |
| else | |
| machine=$1 | |
| fi | |
| eval "$(docker-machine env $machine)” | |
| } |
| # -*- coding: utf-8 -*- | |
| from __future__ import print_function | |
| from __future__ import unicode_literals | |
| from __future__ import division | |
| from random import SystemRandom | |
| from django.core.management.base import BaseCommand | |
| from django.db import transaction |
| # Requires about 40GB of available disk space under /var | |
| --- | |
| - name: Install tools | |
| apt: pkg={{ item }} state=present | |
| with_items: | |
| - "zip" | |
| - "unzip" | |
| - name: Install Geospatial libraries | |
| apt: pkg={{ item }} state=present |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| import argparse | |
| from glob import glob | |
| def unique_file_list(*glob_strings): | |
| file_lists = map(glob, glob_strings) | |
| return list(set([item for sublist in file_lists for item in sublist])) | |
| package geotrellis.logic | |
| import geotrellis._ | |
| object Cons { | |
| def apply[A](opList:Op[List[A]], op:Op[A]):Op[List[A]] = { | |
| for (l <- opList; | |
| a <- op) yield a :: l | |
| } |
| ffmpeg -threads 2 -i purplerain.cdg -i purplerain.mp3 -b:v 1200k -vcodec mpeg4 -acodec libfaac -preset slower -qp 0 -b 450k -sws_flags print_info+neighbor -s 640x480 -r 30 -y purplerain.mp4 |
| apt-get install -y build-essential autoconf libtool subversion git curl wget | |
| apt-get install -y openssh-server | |
| apt-get install -y python-software-properties | |
| add-apt-repository -y ppa:keithw/mosh | |
| apt-get update | |
| apt-get install -y mosh | |
| # Postgres |
| $ ./utils/run | |
| Apache CouchDB 0.11.0a811576 (LogLevel=info) is starting. | |
| =CRASH REPORT==== 4-Sep-2009::20:17:46 === | |
| crasher: | |
| initial call: couch_event_sup:init/1 | |
| pid: <0.79.0> | |
| registered_name: [] | |
| exception exit: {{badmatch, | |
| {'EXIT', |
| /* | |
| * AppController.j | |
| * | |
| * Created by __Me__ on __Date__. | |
| * Copyright 2008 __MyCompanyName__. All rights reserved. | |
| */ | |
| @import <Foundation/CPObject.j> | |
| var UploadToolbarItemIdentifier = @"UploadToolbarItemIdentifier"; |