I hereby claim:
- I am 14mrh4x0r on github.
- I am 14mrh4x0r (https://keybase.io/14mrh4x0r) on keybase.
- I have a public key ASChsmQhMHRDHuySqCrYo7wmAof9L4w2Ld2hMNBsdJNtJwo
To claim this, I am signing this object:
| " VimTeX - LaTeX plugin for Vim | |
| " | |
| " Maintainer: Karl Yngve Lervåg | |
| " Email: karl.yngve@gmail.com | |
| " | |
| function! vimtex#view#evince#new() abort " {{{1 | |
| call vimtex#jobs#run("gdbus wait --session --activate org.gnome.evince.Daemon") | |
| return s:viewer.init() | |
| endfunction |
| plugins { | |
| id "com.github.johnrengelman.shadow" version "2.0.1" | |
| id "java" | |
| } | |
| ext { | |
| base_version = '1.0' | |
| mc_version = '1.8.8' | |
| lib_version = '1.0' | |
| } |
| #!/usr/bin/env python | |
| import json | |
| import os | |
| import string | |
| import sys | |
| import urllib2 | |
| from array import array | |
| from collections import defaultdict | |
| from StringIO import StringIO | |
| from multiprocessing import Pool |
| /* invert colors, but keep their hues */ | |
| html { | |
| filter: hue-rotate(180deg) invert(100%); | |
| background-color: #0f1318; | |
| } | |
| /* invert images and icons back to normal */ | |
| img, i, span.emoji, .modal-backdrop, .media_modal_bottom_panel_wrap { | |
| filter: hue-rotate(180deg) invert(100%); | |
| } |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python | |
| import os | |
| import sys | |
| if __name__ == "__main__": | |
| # Unbuffer stdout | |
| sys.stdout = os.fdopen(sys.stdout.fileno(), 'w', 0) | |
| print "Loading world...", | |
| from pymclevel import mclevel |
| import hexchat | |
| __module_name__ = "Filter prefix-channel messages" | |
| __module_version__ = "0.3.1" | |
| __module_description__ = "Places messages to [prefix]#[channel] in their own tab" | |
| def filter_atmsg(word, word_eol, userdata, attrs): | |
| if len(word[2]) >= 2 and word[2][1] == '#' and word[2][0] != '#': | |
| user = word[0] | |
| bangind = user.find("!") |
| /* | |
| * Copyright © 2013 Willem Mulder | |
| * This program is free software. It comes without any warranty, to | |
| * the extent permitted by applicable law. You can redistribute it | |
| * and/or modify it under the terms of the Do What The Fuck You Want | |
| * To Public License, Version 2, as published by Sam Hocevar. See | |
| * http://www.wtfpl.net/ for more details. | |
| */ | |
| (function() { |
| function sl () { ls "$@" | perl -lpe "\$_ = reverse" | while read; do printf "%${COLUMNS}s" "$REPLY"; done; } |
| #!/bin/bash | |
| # Debug | |
| function debug() { | |
| oldopts="$-" | |
| function on_exit() { | |
| [[ "$oldopts" =~ .*x.* ]] && set +x | |
| } | |
| set -x | |
| trap on_exit EXIT |