I hereby claim:
- I am lowks on github.
- I am lowkster (https://keybase.io/lowkster) on keybase.
- I have a public key whose fingerprint is 9621 75EB ED4B 3798 F2E5 1EEF B7E9 18E8 27A4 FFCC
To claim this, I am signing this object:
# Some inspiration: | |
# * https://github.com/chrisroberts/vagrant-boxes/blob/master/definitions/precise-64/preseed.cfg | |
# * https://github.com/cal/vagrant-ubuntu-precise-64/blob/master/preseed.cfg | |
# English plx | |
d-i debian-installer/language string en | |
d-i debian-installer/locale string en_US.UTF-8 | |
d-i localechooser/preferred-locale string en_US.UTF-8 | |
d-i localechooser/supported-locales en_US.UTF-8 |
I hereby claim:
To claim this, I am signing this object:
dependencies: | |
pre: | |
- script/circleci/prepare.sh | |
cache_directories: | |
- ~/dependencies | |
- ~/.mix | |
- _build | |
- deps | |
test: | |
override: |
docker run -i -t -v ~/projects/cot/trunk_new_subversion:/cot ubuntu:14.04 |
iex(12)> File.stat("/tmp") | |
{:ok, | |
File.Stat[size: 20480, type: :directory, access: :read_write, | |
atime: {{2014, 3, 21}, {19, 44, 1}}, mtime: {{2014, 3, 21}, {20, 15, 1}}, | |
ctime: {{2014, 3, 21}, {20, 15, 1}}, mode: 17407, links: 219, | |
major_device: 64769, minor_device: 0, inode: 3670017, uid: 0, gid: 0]} | |
iex(13)> {h, t} = File.stat("/tmp") | |
{:ok, | |
File.Stat[size: 20480, type: :directory, access: :read_write, | |
atime: {{2014, 3, 21}, {20, 16, 32}}, mtime: {{2014, 3, 21}, {20, 16, 33}}, |
(require 'package) | |
(dolist (source '(("marmalade" . "http://marmalade-repo.org/packages/") | |
;;("elpa" . "http://tromey.com/elpa/") | |
;; TODO: Maybe, use this after emacs24 is released | |
;; (development versions of packages) | |
("melpa" . "http://melpa.milkbox.net/packages/") | |
)) | |
(add-to-list 'package-archives source t)) | |
(package-initialize) |
(setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/") | |
("marmalade" . "http://marmalade-repo.org/packages/") | |
("melpa" . "http://melpa.milkbox.net/packages/"))) | |
(load-file "/home/lowks/.emacs.d/ergoemacs/site-lisp/site-start.el") | |
(setq-default indent-tabs-mode nil) | |
(setq tab-width 4) | |
(global-set-key (kbd "M-9") 'kill-whole-line) | |
(add-to-list 'custom-theme-load-path "~/.emacs.d/themes/") | |
(load-theme 'zenburn t) | |
;; Linux/Windows style |
[buildout] | |
parts = inupypi | |
[inupypi] | |
recipe = zc.recipe.egg | |
interpreter = python | |
eggs = | |
inupypi | |
pip |
# coding=utf-8 | |
from cot.lib.distcmd import * | |
class configure(MyCommand): | |
user_options = [ | |
('log-dir=', 'l', 'Location of log directory.'), | |
('output-dir=', 'o', 'Output directory.'), | |
('virtual-env=', 'e', 'Virtual Env'), |
from cot.lib.distcmd import * | |
from urlparse import urlparse | |
class dep(MyCommand): | |
user_options = [ | |
('index-url=', 'i', 'Url to the Python Package Index'), | |
('follow-links', None, 'Search for indirect dependencies in the ' |