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:
I hereby claim:
To claim this, I am signing this object:
/* 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%); | |
} |
#!/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 |
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' | |
} |
" VimTeX - LaTeX plugin for Vim | |
" | |
" Maintainer: Karl Yngve Lervåg | |
" Email: [email protected] | |
" | |
function! vimtex#view#evince#new() abort " {{{1 | |
call vimtex#jobs#run("gdbus wait --session --activate org.gnome.evince.Daemon") | |
return s:viewer.init() | |
endfunction |