Skip to content

Instantly share code, notes, and snippets.

View mbarkhau's full-sized avatar
💭

mbarkhau

💭
  • Cyberspace
View GitHub Profile
@mbarkhau
mbarkhau / harvest_shortcuts_userscript.js
Last active June 9, 2017 18:02
harvest_shortcuts_userscript.js
// ==UserScript==
// @name Harvest Keyboard Shortcuts
// @namespace https://gist.github.com/mbarkhau/41d7594db0b4981a08007a596b85641c
// @version 0.1
// @description enter something useful
// @author Manuel Barkhau
// @match https://*.harvestapp.com/time/day/*
// @grant none
// ==/UserScript==
@mbarkhau
mbarkhau / euler_hack_006.ipynb
Created June 8, 2017 21:18
euler_hack_006.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mbarkhau
mbarkhau / proof_of_work_in_time_and_space.ipynb
Last active August 11, 2017 06:15
proof_of_work_in_time_and_space.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@mbarkhau
mbarkhau / placepaintbot4.js
Last active November 12, 2021 02:54
placepaintbot4.js
// ==UserScript==
// @name PlacePaintBot
// @namespace http://tampermonkey.net/
// @version 0.4
// @description Domination of Place!
// @author mbarkhau
// @match https://www.reddit.com/place?webview=true
// @grant none
// ==/UserScript==
@mbarkhau
mbarkhau / placepaintbot.js
Last active April 2, 2017 02:47
placepaintbot.js
// ==UserScript==
// @name PlacePaintBot
// @namespace http://tampermonkey.net/
// @version 0.2
// @description Domination of Place!
// @author mbarkhau
// @match https://www.reddit.com/place?webview=true
// @grant none
// ==/UserScript==
@mbarkhau
mbarkhau / pretty_json.py
Last active February 8, 2017 11:17
pretty_json.py
# -*- coding: utf-8 -*-
"""Prettify JSON
Usage:
pjson --help
pjson --test
cat my.json | pjson
"""
@mbarkhau
mbarkhau / .config_terminator_config
Last active June 9, 2016 07:45
utility configuration
[global_config]
inactive_color_offset = 0.92
[keybindings]
close_window = None
group_tab = <Primary><Alt>t
broadcast_group = <Super>g
broadcast_all = <Super>b
broadcast_off = <Shift><Super>b
new_tab = <Primary><Shift>t
ungroup_tab = <Primary><Shift><Alt>t
@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
@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 / 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)