This file contains 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
cd rust-nightly-x86_64-unknown-linux-gnu | |
cd $HOME/rust-nightly-x86_64-unknown-linux-gnu | |
bash install.sh | |
cd $HOME | |
chown -R $USER:$USER rust-nightly-x86_64-unknown-linux-gnu | |
git clone https://github.com/murarth/rusti.git | |
chown -R $USER:$USER rusti | |
cd $HOME/rusti | |
cargo build |
This file contains 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
import re | |
import json | |
ONELINE_COMMENT_RE = re.compile(r""" | |
^ # comment must be at the start of the line | |
\s* # arbitrary whitespace | |
// # start of the comment | |
(.*) # the comment | |
$ # until the end of line | |
""", re.MULTILINE | re.VERBOSE) |
This file contains 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
[user] | |
name = Manuel Barkhau | |
email = [email protected] | |
[push] | |
default = simple | |
[alias] | |
co = checkout | |
amend = commit --amend | |
sts = status --short | |
stt = status --untracked-files=no |
This file contains 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
# -*- coding: utf-8 -*- | |
# "Writing Python 3 code that's compatible with Python 2 is | |
# much more rewarding than the opposite. Not only does that | |
# make your code more future-proof, but Python 3’s advantages | |
# (like the saner string handling) start shining quickly. | |
# Dealing with Python 2 becomes a backwards compatibility | |
# requirement" – "Porting to Python 3" from the Django Project | |
# This file provides boilerplate for scripts to run in both | |
# python2.7 and python3.4. As much as possible it attempts |
This file contains 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
import sys | |
import itertools as it | |
PY2 = sys.version_info.major == 2 | |
if PY2: | |
range = xrange | |
def unchain(elems, chain_size): |
This file contains 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
import datetime as dt | |
import sublime_plugin | |
DEV_NAME = "mb" | |
class TODOCommand(sublime_plugin.EventListener): | |
def _todo_str(self): |
This file contains 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
#!/usr/bin/env python | |
from __future__ import print_function | |
import os | |
import sys | |
import json | |
from zlib import compress | |
from httplib import HTTPSConnection | |
from urllib import urlencode | |
COMPILER_JAR_PATH = os.path.expanduser("~/closure-compiler/compiler.jar") |
This file contains 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
DIGITS = ( | |
string.digits + | |
string.ascii_lowercase + | |
string.ascii_uppercase + | |
string.punctuation | |
) | |
def int2str_converter(base): | |
assert 2 <= base <= len(DIGITS) |
This file contains 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
""" | |
Failed attempt at a performant SortedCounter based on | |
sortedcontainers.SortedDict and defaultdict | |
At least it is not useful for my use case which is insertion | |
heavy, YMMV. | |
Since the collections.Counter class doesn't keep the sort order | |
of its items, it has to recalculate the order for every call | |
to most_common is done. Also it doesn't provide any function |
This file contains 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
alias tiga='tig --all' | |
alias gs='git status --untracked-files=no' | |
alias gss='git status --short' | |
alias gsss='git status' | |
alias gls="git for-each-ref --count=15 --sort=-committerdate --format='%(objectname:short) %(committerdate:iso) %(authorname) %(refname:short)' refs/heads/" | |
alias gd="git diff --color-words" | |
alias gds="git diff --stat" | |
alias gap="git add --patch" | |
alias gaf="git add" # add file |