Skip to content

Instantly share code, notes, and snippets.

View Pro's full-sized avatar
🎯
Focusing

Stefan Profanter Pro

🎯
Focusing
View GitHub Profile
@Pro
Pro / open62541-cla
Last active August 18, 2017 15:49
open62541 CLA
open62541 Contributor License Agreement
Version 1.0.0 May 21, 2017
In order for You (as defined below) to make intellectual property Contributions
(as defined below) now or in the future to open62541 projects (as defined below),
You must agree to this Contributor License Agreement ("CLA"). If You have any questions
about this agreement, licensing, or anything related to intellectual property at the
open62541 developers, please send an email to one of the core developers listed on the
project's README.
##########################################################################
#
# xmldiff
#
# Simple utility script to enable a diff of two XML files in a way
# that ignores the order or attributes and elements.
#
# Dale Lane (email@dalelane.co.uk)
# 6 Oct 2014
#
@Pro
Pro / thw-theorie.user.js
Last active August 29, 2015 14:16
THW Theorie Shortcuts
// ==UserScript==
// @name THW Theorie Shortcuts
// @namespace *
// @include http://www.thw-theorie.de/index.php?show=fragen
// @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// ==/UserScript==
/* == Installation ==
1. Firefox Greasmonkey Addon Installieren: https://addons.mozilla.org/de/firefox/addon/greasemonkey/
2. Auf dieser Seite rechts oben auf die Schaltfläche "Raw" klicken
@Pro
Pro / fif
Created April 22, 2014 12:43
fif command (find in files)
#!/bin/bash
show_usage() {
echo -e "Usage: $0 SEARCH_STRING"
echo ""
}
if [ $# -lt 1 ]
then
show_usage
exit 1
@Pro
Pro / keybase.md
Created April 13, 2014 20:47
Keybase verify

Keybase proof

I hereby claim:

  • I am pro on github.
  • I am pro (https://keybase.io/pro) on keybase.
  • I have a public key whose fingerprint is 3544 1D5B 3C55 6D8E 4F6F 92F5 C2B6 ED46 9A59 0F46

To claim this, I am signing this object:

@Pro
Pro / NormalizeImage.py
Last active November 30, 2019 10:27
Normalize Image using Lab channel
__author__ = 'Stefan'
__docformat__ = 'restructedtext en'
import numpy as np
import scipy.misc
import skimage.color
import skimage.exposure