Skip to content

Instantly share code, notes, and snippets.

View wolfgang-noichl's full-sized avatar

Wolfgang Noichl wolfgang-noichl

View GitHub Profile
@wolfgang-noichl
wolfgang-noichl / gitlab-ssh-copy-id.py
Last active March 5, 2017 10:54
ssh-copy-id - alike public SSH key upload for gitlab
#!/usr/bin/env python
"""
ssh-copy-id - alike public SSH key upload for gitlab
Needs python-gitlab, click.
"""
import click, gitlab, subprocess, re, sys, getpass, socket
from os.path import expanduser
@wolfgang-noichl
wolfgang-noichl / l.py
Last active August 29, 2015 13:59
Lenyard
# Proof of concept Schleiferlturnier-Teamfinder
# Sehr schlichte Implementierung; Idee: Simulated annealing
# Bisher umgesetzt: lediglich zufaelliges Austauschen bei _besserer_ "Energie",
# d.h. keine Fluktuationen mit hoeherer Energie moeglich.
# Weitere Verbesserungsmoeglichkeit: selektives Update Begegnungsmatrix (nicht
# bei jedem Energieupdate komplett von vorn berechnen!!!)
# Aber es scheint trotzdem einigermassen zu gehen :-D
import time
import numpy as np