I hereby claim:
- I am jokull on github.
- I am jokull (https://keybase.io/jokull) on keybase.
- I have a public key whose fingerprint is 433B F05A 668A 1878 2A74 FAC7 32EE 39EB 0247 7299
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| PATH=/usr/local/bin:/usr/local/sbin:$PATH | |
| PATH=/usr/local/share/npm/bin:$PATH | |
| PATH=/usr/local/heroku/bin:$PATH | |
| export HISTSIZE=1000 | |
| source /usr/local/Cellar/autoenv/0.1.0/activate.sh | |
| source /usr/local/etc/bash_completion.d/git-completion.bash | |
| export LC_CTYPE=is_IS.UTF-8 |
| [user] | |
| name = Jökull Sólberg Auðunsson | |
| email = [email protected] | |
| [core] | |
| excludesfile = ~/.gitignore | |
| editor = subl -n -w | |
| [difftool] | |
| prompt = false | |
| [diff] | |
| tool = Kaleidoscope |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| """pycache -- cache a python package from PyPI on S3. | |
| A simple script to collect a cache of packages locally and sync them up to an S3 bucket, using directories as namespaces so that different projects can have different dependencies. | |
| This is just about the simplest thing that could possibly work. | |
| """ | |
| import warnings | |
| warnings.filterwarnings('ignore') |
| queues = [] | |
| def retry_handler(job, exc_type, exc_value, traceback): | |
| # Returning True moves the job to the failed queue (or continue to | |
| # the next handler) | |
| job.meta.setdefault('failures', 1) | |
| job.meta['failures'] += 1 | |
| if job.meta['failures'] > 3 or isinstance(exc_type, (LookupError, CorruptImageError)): | |
| job.save() |
| { | |
| "auto_complete": false, | |
| "close_windows_when_empty": false, | |
| "color_scheme": "Packages/User/Tomorrow-Night.tmTheme", | |
| "draw_white_space": "all", | |
| "ensure_newline_at_eof_on_save": true, | |
| "find_selected_text": true, | |
| "fold_buttons": false, | |
| "folder_exclude_patterns": | |
| [ |
| # Disable opening and closing window animations | |
| defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false | |
| # Increase window resize speed for Cocoa applications | |
| defaults write NSGlobalDomain NSWindowResizeTime -float 0.001 | |
| # Expand save panel by default | |
| defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true | |
| # Save to disk (not to iCloud) by default |
| # encoding=utf-8 | |
| import sys | |
| import datetime | |
| import email | |
| import mimetypes | |
| import os | |
| import time | |
| import gzip | |
| import subprocess |
| # encoding=utf-8 | |
| from django.core.urlresolvers import reverse | |
| def burl_context(request): | |
| def burl(name, *args, **kwargs): | |
| external = kwargs.pop('_external') | |
| path = reverse(name, args=args, kwargs=kwargs) |