Skip to content

Instantly share code, notes, and snippets.

View tik0's full-sized avatar
🤖
Beep Boop!

Timo Korthals tik0

🤖
Beep Boop!
  • University Bielefeld
View GitHub Profile
@tik0
tik0 / rsb-install-master.sh
Created January 4, 2018 12:09
RSB installing script
#!/bin/bash
echo "Installing rsb"
# Folder where the repositories are cloned into
REP_FOLDER=~/repositoriesRSB
# Spread location of "spread-src-4.4.0.tar.gz" aka "spread 3.0"
SPREAD_FOLDER=~/Downloads
# Installing location
PREFIX=/usr
# Branch of the repositories
BRANCH=0.11
@tik0
tik0 / export-chrome-bookmarks.js
Last active January 3, 2018 11:39 — forked from bgrins/export-chrome-bookmarks.js
Reminder of how to export bookmarks from Chrome as text.
/*
Export bookmarks from Chrome as text.
Go to Bookmarks Manager->Organize->Export to HTML file.
Then open that file with chrome, open console (Ctrl+Shift+J) and run this command:
*/
[].map.call(document.querySelectorAll("dt a"), function(a) {
return a.textContent + " - " + a.href
}).join("\n");
@tik0
tik0 / master2single.py
Last active March 31, 2020 08:37 — forked from restrepo/master2single.py
Convert a LaTeX master file into a flatten LaTeX with all the files included
#!/usr/bin/env python
# Author: Timo Korthals <tkorthals@cit-ec.uni-bielefeld.de>
# Template by https://gist.github.com/restrepo/4207109
# Function:
# Convert a master latex file
# into a single document by including hierarchically
# automatically all the LaTeX documents
# which are arguments of
# \include, \input, or \import
# ignoring any \includeonly