Building NebulaStream involves two steps:
- Building the NebulaStream dependencies
- Building the NebulaStream project
In my thesis, I changed both, as a result, you'll have to check out my forks of both repositories.
Building NebulaStream involves two steps:
In my thesis, I changed both, as a result, you'll have to check out my forks of both repositories.
// ==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 |
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() { |