I hereby claim:
- I am kunev on github.
- I am kunev (https://keybase.io/kunev) on keybase.
- I have a public key whose fingerprint is 1A89 8964 FF14 2DF6 EF0E C6C2 A3F7 AD9C FB5D 25E8
To claim this, I am signing this object:
#!/bin/bash | |
function config() { | |
./configure \ | |
--with-features=huge \ | |
--enable-multibyte \ | |
--enable-rubyinterp=yes \ | |
--enable-pythoninterp=yes \ | |
--with-python-config-dir=/usr/lib/python2.7/config-x86_64-linux-gnu \ | |
--enable-python3interp=yes \ |
#!/bin/bash | |
function currently_installed_kernel() { | |
yaourt -Qi linux | egrep '^Version\s+:\s+.+$' | sed -e 's/Version\s\+:\s\+//' | |
} | |
function currently_running_kernel() { | |
uname -a | grep -P '\S+(?=-ARCH)' -o | |
} |
#!/bin/env python | |
import os | |
import subprocess | |
import sys | |
import re | |
uri = sys.argv[1] | |
print(uri) | |
file_path_with_position = re.sub(r'editor://|vim://', '', uri) |
if [[ -z $TMUX ]]; then | |
new_session_token='START NEW SESSION' | |
no_session='DO NOT START TMUX' | |
choice=$( (echo $new_session_token; echo $no_session; tmux ls) | fzf | cut -d':' -f 1) | |
case "$choice" in | |
"$new_session_token") | |
tmux new-session | |
exit |
'<,'>s/\v("|')/\={'"': "'", "'": '"'}[submatch(0)]/g |
I hereby claim:
To claim this, I am signing this object:
@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul); | |
#PanelUI-button, | |
#bookmarks-menu-button, | |
#downloads-button, | |
#home-button, | |
#abp-toolbarbutton, | |
#urlbar-history-dropmarker, | |
#back-button, | |
#forward-button { |
#!/usr/bin/env python | |
# Save this in a file somewhere | |
# In your mutt config add the following line | |
# set display_filter="/PATH/TO/THIS/PYTHON/FILE" | |
import sys | |
import re | |
import os |
function pattach() { | |
if [[ $1 == "" ]]; then | |
PERCOL=percol | |
else | |
PERCOL="precol --query $1" | |
fi | |
sessions=$(tmux ls) | |
[ $? -ne 0 ] && return | |
session=$(echo $sessions | eval $PERCOL | cut -d : -f 1) | |
if [[ -n "$session" ]]; then |
import asyncio | |
@asyncio.coroutine | |
def open_file(name): | |
print("opening {}".format(name)) | |
return open(name) | |
@asyncio.coroutine | |
def close_file(file): | |
print("closing {}".format(file.name)) |