Skip to content

Instantly share code, notes, and snippets.

View rynr's full-sized avatar

Rainer Jung rynr

View GitHub Profile
@rynr
rynr / resume.json
Last active December 13, 2023 09:47
resume.json
{
"basics": {
"name": "Rainer Jung",
"label": "Software Development / Architecture / Devops",
"image": "https://www.xing.com/image/7_9_4_d9b3656fd_30551_8/rainer-jung-foto.256x256.jpg",
"email": "r@iner.cc",
"phone": "+49 176 62843300",
"url": "https://ra.iner.cc/",
"summary": "Java, JavaScript and Ruby on Rails Developer · Architect · Agile-/Scrum-Enthusiast · Musician · Singer · Snowboarder · Biker · Rock-Climber · Diver",
"location": {
@rynr
rynr / SomeApp.java
Last active November 25, 2019 09:13
class-parameter-of-generic-type
public class SomeApp {
public static void main(String[] args) {
SomeApp someApp = new SomeApp();
// this line cannot be compiled:
someApp.someMethod(SomeInterfaceImpl.class);
}
public void someMethod(Class<? extends SomeInterface<?>> param) {
}
@rynr
rynr / root@pi.sh
Created June 2, 2019 11:08
Setup mailserver through tor
# Using networking without wifi, disabling wpa
systemctl disable wpa_supplicant.service
# Disabling global keystroke handling
systemctl disable triggerhappy.service
cat <<EOF >>/boot/config.txt
# Deactivate wifi and bluetooth via overlay
dtoverlay=pi3-disable-wifi
dtoverlay=pi3-disable-bt
EOF

Keybase proof

I hereby claim:

  • I am rynr on github.
  • I am rjung (https://keybase.io/rjung) on keybase.
  • I have a public key whose fingerprint is 7744 3F53 1DB0 4F55 8DAB 5BA0 D346 51B1 ECFD 2CFE

To claim this, I am signing this object:

@rynr
rynr / index.html
Last active February 19, 2018 10:44
Multiple Screen Display
<html>
<head>
<title>BMW EDV - Monitoring</title>
<style>
* {
margin: 0;
padding: 0;
background: none;
border: 0;
}
@rynr
rynr / .gitconfig
Last active February 1, 2019 07:03
System Setup
[branch "master"]
mergeoptions = --no-ff
[color]
branch = auto
diff = auto
grep = auto
interactive = auto
showbranch = auto
status = auto
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.rjung.service</groupId>
<artifactId>name</artifactId>
<version>0.0.0-SNAPSHOT</version>
<packaging>jar</packaging>
<name>name</name>
@rynr
rynr / TestHelper.java
Last active August 19, 2016 08:45
TestHelper.java
package org.rjung.tools.testing;
import java.math.BigInteger;
import java.security.SecureRandom;
public class TestHelper {
private static final int DEFAULT_STRING_LENGTH = 8;
private static final int DEFAULT_MAX_INT = 255;
private static SecureRandom random;
@rynr
rynr / backup-ignore.txt
Created March 30, 2016 06:36
DIrectories to exclude from backup
~/.gvfs
~/.m2
~/.rvm
~/.tmp
~/Downloads
~/VirtualBox VMs