Skip to content

Instantly share code, notes, and snippets.

View SoerenHenning's full-sized avatar

Sören Henning SoerenHenning

  • Johannes Kepler University Linz, JKU/Dynatrace Co-Innovation Lab
  • Linz, Austria
View GitHub Profile

TeeTime Configuration Builder

With the TeeTime configuration builder you can simply connect your stages in a short, type-safe, and fluent way.

How to use it

Typically, you create your configurations by instantiating all stages and connecting them via lines of connectPorts(...) calls.

public class MyConfiguration extends Configuration {
@SoerenHenning
SoerenHenning / escapenet-load-and-exporter.js
Last active July 4, 2017 11:55
Get rid of clicking "Load more results for export" on the Escapenet's result page. Just copy the following code snippet to your browser's JavaScript console. Credits to @EyMaddis
var searchInterval;
var clickForMe = () => {
button = $('#loadNext')
if (button.length) {
button.click()
} else {
console.log('everything loaded')
clearInterval(searchInterval)
exportTo('/exportExcelResultsList?locale=en_EP')
}
@SoerenHenning
SoerenHenning / absolventen-2018-ifi-uni-kiel.sh
Last active January 27, 2019 20:42
Load all photos from Absolventenfeier 2018, Informatik Uni Kiel. Just run it via `./absolventen-2018-ifi-uni-kiel.sh <password>`
#!/bin/bash
password=$1
function download {
wget https://media.informatik.uni-kiel.de/galerie/absolventenverabschiedung/2018/$1/$2 -P $1 --password=$password --user=
}
function download-range {
for i in $(seq $2 $3);
@SoerenHenning
SoerenHenning / .gitignore
Created April 12, 2019 10:47
.gitignore for LaTeX repositories
## Core latex/pdflatex auxiliary files:
*.aux
*.lof
*.log
*.lot
*.fls
*.out
*.toc
*.fmt
*.fot
@SoerenHenning
SoerenHenning / embed-pdf-fonts.sh
Created April 18, 2019 10:57
Embed fonts in PDF using Ghostscript
gs -q -dNOPAUSE -dBATCH -dPDFSETTINGS=/prepress -sDEVICE=pdfwrite -sOutputFile=output.pdf input.pdf