I love building things. This blog in itself is one of these things. Feel free to shoot me an email.

Posts

  • Bike Repair

    I use my bike extensively. My commute is 15km per day and I don’t have a public transport ticket. I like the cold air blowing into my face in the morning. When spending 10+ hours a day in front of a screen, riding a bike is a relaxing part of the day. My bike was now turning 12 years old. More and more failures accumulated over time to the point...
    Read more...

  • 100ms in additional latency cost you 1 % revenue, don't they?

    When writing my master thesis about resource allocation in containers I wanted to show the relevance of performance by citing something I always knew to be true: 100ms in additional latency costs you 1 % revenue. Time to find a source for the references! All sources I could find eventually end up to be Greg Linden. He worked at Amazon for 5 years from 1997 to 2002 and worked on...
    Read more...

  • QuickStart for Let's Encrypt on Kubernetes

    EDIT 2019-10-31: I tried to update this guide to 0.11, as a lot of things have changed since the original publication. I haven’t tested the full guide in the new version yet, but it should work. EDIT 2019-12-09: Updated for 0.12 and helm3 This post will show you how to use cert-manager to automatically create and use certificates with Let’s Encrypt on Kubernetes. This is especially useful if you are...
    Read more...

  • A fork on Github is no fork

    Github may block access to your repos and there is nothing you can do about it A few years ago I made a project with a friend and we collaborated on Github in his private repo. After we finished the project I forked it, to be able to still access it independently from him. While I still have unlimited private repos, my friend let his Premium Account (Student) expire. The...
    Read more...

  • Machine Intelligence I - Learning Notes

    This semester learning notes are about supervised learning. Previous semester on unsupervised learning Performance Measurement Neural Networks Support Vector Machines Bayesian Networks Reinforcement Learning Statistical Learning Theory(Excluded from the exam and therefore neglected here)
    Read more...

  • Reinforcement Learning

    These are exam preparation notes, subpar in quality and certainly not of divine quality. See the index with all articles in this series In reinforcement learning an actor is in a world where she can perform different actions and perceive the environment. Sometimes there may be rewards. Reinforcement learning is about choosing a policy from which to derive actions that maximize the reward. Just like the real world there are...
    Read more...

  • Support Vector Machines

    These are exam preparation notes, subpar in quality and certainly not of divine quality. See the index with all articles in this series If you are stuck, read Wikipedia in parallel. The goal of SVMs is to divide two groups with a line that separates the data points as clearly as possible. There are two cases: Data points can be cleanly split into their classes At least some data points...
    Read more...

  • Performance measures

    These are exam preparation notes, subpar in quality and certainly not of divine quality. See the index with all articles in this series Choice of error function Usually squared error is used. Cross-Entropy \(c\) := different classes (classification / symbol representation) From Wikipedia: In information theory, the cross entropy between two probability distributions p and q over the same underlying set of events measures the average number of bits needed...
    Read more...