Skip to content

Instantly share code, notes, and snippets.

@balzer82
balzer82 / abgeordnetenwatch.ipynb
Created January 17, 2024 12:08
Anzahl Abgeordneter im Bundestag ohne Abschluss
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@balzer82
balzer82 / cwa-gource.sh
Created June 19, 2020 17:28
Visualization of the Development of the Corona Warn App
echo "Make a Gource Video of the Corona Warn App Development Process"
echo "1588432052|Begin of Development" > cwa-caption.txt
for repo in documentation server verification-server verification-portal verification-iam testresult-server app-ios app-android; do
# Clone the Repos
git clone https://github.com/corona-warn-app/cwa-${repo}.git
# Extract the Gource infos
@balzer82
balzer82 / wifiAnalyzer.py
Last active August 22, 2018 09:48
Graphical Output of MacOS airport Util to analyze Wifi
#!/usr/bin/python
# coding: utf-8
from datetime import datetime, timedelta
import subprocess
import os
import time
import csv
import matplotlib.pyplot as plt
@balzer82
balzer82 / Wirkungsgrad-Sankey.ipynb
Created May 3, 2018 08:34
Sankey Diagramme der Wirkungsgrade von Otto- und Elektromotor
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@balzer82
balzer82 / DNNRegressor-Example.py
Last active July 28, 2021 18:02
Example of a Deep Neural Network Regressor with Tensorflow Learn (contrib)
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Tensorflow DNNRegressor in Python
# CC-BY-2.0 Paul Balzer
# see: http://www.cbcity.de/deep-learning-tensorflow-dnnregressor-einfach-erklaert
#
TRAINING = True
WITHPLOT = False
@balzer82
balzer82 / skflow_iris_example.ipynb
Created November 20, 2017 13:46
Using Tensorflow to predict labels on the Iris Dataset
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@balzer82
balzer82 / simpleNeuralNetwork.ipynb
Last active March 9, 2016 12:42
A Simple Neural Network with Lasagne/Theano and Keras
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@balzer82
balzer82 / InverseSensorModels.ipynb
Created February 17, 2016 12:36
Parametrierung eines Mixture Density Sensor Models für Tinkerforge Ultraschall Bricklet
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@balzer82
balzer82 / tinkerforge-us-lookup-table.csv
Last active February 10, 2016 12:54
Lookup-Table for Tinkerforge Ultraschall Bricklet
RAW Distance[cm]
0 2.0
1 2.0
2 2.1
3 2.1
4 2.2
5 2.2
6 2.3
7 2.3
8 2.4
@balzer82
balzer82 / TimeSeries-Decomposition.ipynb
Last active June 20, 2022 14:38
TimeSeries Decomposition in Python with statsmodels and Pandas
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.