I hereby claim:
- I am nepomuk on github.
- I am nepomuk (https://keybase.io/nepomuk) on keybase.
- I have a public key whose fingerprint is 0EFC 085D 7A66 C165 E3D6 5806 BEA5 5B72 AC23 AEED
To claim this, I am signing this object:
\documentclass{scdpg} | |
\begin{document} | |
\scBookLanguage{de} | |
\begin{scCollaboration} | |
\scCollaborationName{PANDA} | |
#for $person in $persons | |
\scAuthor{}{$person.firstname}{$person.lastname}{$person.institute} | |
#end for | |
#for $key, $value in enumerate($institutes) | |
#set $id = $key + 1 |
#!/bin/bash | |
ENCFS="/usr/local/bin/encfs" | |
ENCDIR="$HOME/Dropbox/Boxcryptor.bcc" | |
DECDIR="/Volumes/Boxcryptor" | |
if [ ! -d "$DECDIR" ]; then | |
mkdir -p $DECDIR | |
fi |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
prefix="cascade" | |
dataDir="data/prometheus/" | |
subDir="" | |
postfixes="pid_complete | |
reco_complete | |
cascade_ana-0" |
/** | |
* @file tableau_colors.cpp | |
* @Author André Goerres ([email protected]) | |
* @date 2015 | |
* @brief Tableau color scheme for ROOT | |
* | |
* This file adds predefined colors according to the tableau color palette. Two | |
* different namespaces are offered providing 20 nicely balanced colors or 10 | |
* colors color blind people can savely distinguish. | |
* -André |
#!/bin/bash | |
# restart all currently running jobs which are hanging for some reason | |
if [ "$1" == "qstat" ]; then | |
qstat=$(qstat -u $USER) | |
jobIDs=$(echo "$qstat" | awk -v col=1 'NR > 2 {print $col}' | sort | uniq) | |
taskIDs=$(echo "$qstat" | awk -v col=10 'NR > 2 {print $col}') | |
# kill currently running jobs | |
for id in $jobIDs; do |
#!/bin/bash | |
directory=$1 | |
dest=/Volumes/Andre_800G/Serien/ready/ | |
destBin="done" | |
cd $directory | |
if [ ! -d "$destBin" ]; then | |
echo "Creating folder $destBin..." |