BarCamp Regensburg 2019

Sessions 110 Sldies from Sascha Pallenberg Working out loud Creativity Techniques “Quantity beats Quality” 6-3-5 Methode 6 People – 3 ideas each – 5 times pass around Worldcafe Lessons Learned in Apprenticeship Impressions

New Blog Post

Individual sustainable lifestyle tips

Climate change, you know the drill. Believing in the 1% improvement thing / atomic habits I would start small but consistent. And also believing in the Management 3.0 experimenting culture I would run experiments. Some ideas: Household Switch to green electricity Buy more used / second hand stuff Especially books and furnitures https://www.afbshop.de/ https://www.gwv-shop.de/ https://www.medimops.de/…

SQL-LIKE and wildcards

This article is part of my SQL-Tutorial Motivation Sometimes you need to retrieve data from a database without knowing the exact string to look up so wildcards for the rescue Underscore Se_en represents a pattern with a wildcard character. The _ means you can substitute any individual character here without breaking the pattern. It matches…

Software Testing Concepts

My Tale of Woe When I graduated from university and had my first job as a software engineer at Harman Becker Automotive Systems GmbH I should do the parental leave cover for a colleague. He showed me his project, gave me some info e.g. contact person and went off to Canada. Literally on the second…

New Blog Post

lernOS Overview

lernOS is an operating system for lifelong learning and learning organizations. Inspired by Scrum, Working Out Loud, Getting Things Done and Objective and Key Results VUCA world (Volatility, uncertainty,_complexity_and_ambiguity) Networking over isolation Trust over suspiciousness Openness over silos Participation over exclusion Agility over stability Levels Individual Team Organizations lernOs sprints lernOS is practiced in time…

Python Package parameterized

DISCLAIMER! – This package seems to be no longer maintained. (Last release in March 2023) Stackoverflowing around I found this nice package https://github.com/wolever/parameterized Parameterized testing in Python sucks. parameterized fixes that. For everything. Parameterized testing for nose, parameterized testing for py.test, parameterized testing for unittest. Reading this description I had very high expectations 🙂 So…

PyConDE Berlin 2019

I’ve always wanted to go to a conference and with PyConDE I’ve found one that suited me well: The price point of 300 bucks for 3 days of conference, 2 days of workshops and the opportunity to go to Berlin and visit my friend Thomas was fascinating! The Venue Kosmos Day 1 Algo.rules – How…

My first iPhone app – Part 3

Waveform of Audio File Installing I’ve tried a component FDWaveformView. It uses CocoaPods, a dependecy management tool like Python’s pip or Rust’s cargo. sudo gem install cocoapods To add CocoaPods support to an existing project you must add a Podfile cd XcodeProjects/PlayalongTrainer touch Podfile The content of the Podfile is pretty straght forward: target ‘PlayalongTrainer’…