Skip to content

Instantly share code, notes, and snippets.

@AKuederle
AKuederle / main.py
Created December 22, 2016 20:28
law-citing
import jinja2
import os
import shutil
test_cites = {'0':{'name': 'test0', 'case_id': 0}, '1':{'name': 'test1', 'case_id': 1}, '2':{'name': 'test2', 'case_id': 2}}
class Citation(object):
num_citations = 0
cited = {}
@AKuederle
AKuederle / file.txt
Last active June 16, 2016 07:18
A short example how to deal strange datatypes
Sequence_ID, Sequence_Length, Hit_Count, Start, End, Strand
NM_172887.2,1-10753,1,10453,10459,+
XM_006504928.1,1-10641,1,10364,10370,+
XM_006504927.1,1-10650,1,10373,10379,+
XM_006504926.1,1-10659,1,10382,10388,+
NM_147219.2,1-8339,1,7632,7638,+
XM_006533065.2,1-8166,1,7529,7535,+
NM_009592.1,1-5759,3,2822,2828,+
3867,3873,+
3971,3977,+
@AKuederle
AKuederle / i3lock_solaris
Created April 26, 2016 17:47
i3lock-color command with solaris dark colors
"i3lock -i ~/Pictures/Backgrounds/main_background.png -e -f --insidevercolor=268bd2bf --insidewrongcolor=dc322fbf --insidecolor=073642bf --ringvercolor=268bd2ff --ringwrongcolor=dc322fff --ringcolor=073642ff --textcolor=839496ff --separatorcolor=073642ff --keyhlcolor=2aa198ff --bshlcolor=cb4b16ff -r"
@AKuederle
AKuederle / hotkey.sh
Last active November 8, 2016 08:14
Get Windows like App Hotkey Start-up behavior. First Argument: Path to app. Second argument: App-class (wmctrl -lx)
#!/bin/bash
contains() {
[[ $1 =~ $2 ]] && return 0 || return 1
}
app_list=$(wmctrl -lx | awk '{print $3}')
if contains "$app_list" "$2";
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@AKuederle
AKuederle / gist:507f4d9a2fa00037ca69
Created June 28, 2015 23:12
Overwrite of powershell promt which works with gitposh and provides last argument and last command varibales
function global:prompt {
$realLASTEXITCODE = $LASTEXITCODE
$global:l = "$($(Get-History)[-1])"
$temp = "$($(Get-History)[-1])" -split " "
$global:lc = $temp[0]
$global:lp = $temp[1..($temp.length-1)]
# Reset color, which can be messed up by Enable-GitColors
$Host.UI.RawUI.ForegroundColor = $GitPromptSettings.DefaultForegroundColor
Write-Host($(Split-Path $pwd -Leaf)) -nonewline -foregroundcolor Blue
@AKuederle
AKuederle / auto_lock.sh
Created February 22, 2015 18:45
Lock the screen after 10 min of not using the PC when using xfce as a desktop enviroment. It has to be placed in .xinitrc.
xautolock -time 10 -notify 30 -notifier "notify-send 'Locking screen in 30 s' --icon=appointment" -locker xflock4
@AKuederle
AKuederle / textwidth.tex
Created February 11, 2015 11:31
Print the current textwidth inside your latex document
\the\textwidth
@AKuederle
AKuederle / find_nearest.py
Created February 11, 2015 10:50
simple Python function to find the index of an array, which corrosponding value is nearest to a given float
def find_nearest(array, value):
return (np.abs(array - value)).argmin()
@AKuederle
AKuederle / git-finder.sh
Last active August 29, 2015 14:15
Find the name of all folders, which have a .git repo inside. Can be used to find the name sof all Git "Projects" on the machine
find ~ -type d -name .git | xargs -n 1 dirname | xargs -n 1 basename