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
// ==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== |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
// ==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== |
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
// ==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== |
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 -*- | |
"""Prettify JSON | |
Usage: | |
pjson --help | |
pjson --test | |
cat my.json | pjson | |
""" |
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
[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 |
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 |
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
DIGITS = ( | |
string.digits + | |
string.ascii_lowercase + | |
string.ascii_uppercase + | |
string.punctuation | |
) | |
def int2str_converter(base): | |
assert 2 <= base <= len(DIGITS) |