Skip to content

Instantly share code, notes, and snippets.

View mbarkhau's full-sized avatar
💭

mbarkhau

💭
  • Cyberspace
View GitHub Profile
@mbarkhau
mbarkhau / install_rusti.sh
Last active August 29, 2015 14:22
Installation script for rusti with racer (autocompletion) support
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
@mbarkhau
mbarkhau / parse_json_cfg.py
Last active March 29, 2016 16:34
Parses JSON allowing for trailing commas and comments using //
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)
@mbarkhau
mbarkhau / .gitconfig
Last active June 8, 2016 22:34
.gitconfig
[user]
name = Manuel Barkhau
email = [email protected]
[push]
default = simple
[alias]
co = checkout
amend = commit --amend
sts = status --short
stt = status --untracked-files=no
@mbarkhau
mbarkhau / pysix.py
Last active April 16, 2016 20:50
pysix.py
# -*- 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
@mbarkhau
mbarkhau / unchain.py
Created June 23, 2015 16:41
unchain.py
import sys
import itertools as it
PY2 = sys.version_info.major == 2
if PY2:
range = xrange
def unchain(elems, chain_size):
@mbarkhau
mbarkhau / todo.py
Created July 14, 2015 12:18
todo completion plugin for sublime
import datetime as dt
import sublime_plugin
DEV_NAME = "mb"
class TODOCommand(sublime_plugin.EventListener):
def _todo_str(self):
@mbarkhau
mbarkhau / minify.py
Last active August 29, 2015 14:25
script to minify javascript using google closure compiler
#!/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")
@mbarkhau
mbarkhau / int2str.py
Last active August 29, 2015 14:26
Convert between str using arbitrary base and integer (positive integers only)
DIGITS = (
string.digits +
string.ascii_lowercase +
string.ascii_uppercase +
string.punctuation
)
def int2str_converter(base):
assert 2 <= base <= len(DIGITS)
@mbarkhau
mbarkhau / sortedcounter.py
Last active September 2, 2015 19:11
Failed attempt at a performant SortedCounter based on sortedcontainers.SortedDict and defaultdict
"""
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
@mbarkhau
mbarkhau / .bashrc
Last active April 15, 2021 00:07
sublime helpers
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