Skip to content

Instantly share code, notes, and snippets.

View vstollen's full-sized avatar

Vincent Stollenwerk vstollen

View GitHub Profile
@vstollen
vstollen / thesis-build-instructions.md
Created April 27, 2025 20:22
Build instructions for the code of my Master's thesis.

Steps to reproduce, build, and use the code for my Master's Thesis

NebulaStream Stream - Unified Source

Building NebulaStream involves two steps:

  1. Building the NebulaStream dependencies
  2. Building the NebulaStream project

In my thesis, I changed both, as a result, you'll have to check out my forks of both repositories.

@vstollen
vstollen / rwth-sso-select-token.user.js
Last active January 24, 2025 09:21
RWTH SSO auto select 2FA token method
// ==UserScript==
// @name RWTH SSO token selector
// @namespace http://tampermonkey.net/
// @version 2024-08-11
// @description Automatically clicks the "continue" button on the token selector screen.
// @author Vincent Stollenwerk
// @homepage https://vstollen.me
// @downloadURL https://gist.githubusercontent.com/vstollen/255a4906d7ed627204e8cf63a9a67589/raw/rwth-sso-select-token.user.js
// @match https://sso.rwth-aachen.de/idp/profile/SAML2/Redirect/SSO*
// @icon https://www.google.com/s2/favicons?sz=64&domain=rwth-aachen.de
@vstollen
vstollen / TSPVisualizer.java
Last active August 18, 2020 17:55
Visualizer for the 2019 AuD Travelling Salesman Exercise at TU Darmstadt.
package lab;
import frame.City;
import javax.swing.*;
import java.awt.*;
import java.io.File;
import java.io.IOException;
import java.util.LinkedList;
import java.util.List;
class Democlass {
private int a;
private int b;
public Democlass(int a) {
this.a = a;
b = 42;
}
public int getA() {