New Blog Post

Python3: ChainMap

Since Python 3.3 You can chain dictionaries which contain the same key in a prioritized order: from collections import ChainMap prio_1 = {“param_1”: “foo”} prio_2 = {“param_1”: “foobar”, “param_2”: “bar”} combined = ChainMap(prio_1, prio_2) print(combined[“param_1”]) # outputs ‘foo’ print(combined[“param_2”]) # outputs ‘bar’ The param_1 from the prio_1 dictionary is dominant, so it isn’t overwritten by…

Celebration Grid

Everyone is talking about error culture and that companies should embrace it. Jurgen Appelo sheds some light on this topic by bisecting the term “error” and introducing a tool to celebrate the right kind of errors. The grid The term “error” is broken down into mistake and failure. Mistake is a behavior, failure is an…

The Agile Manifesto

When you are working in an agile team e.g. Scrum you might have heard about the agile manifesto. Formulated in 2001 it influenced a lot of software developers and methodologies like Scrum. The Agile Manifesto consists of 4 values and 12 principles: Values Principles Our highest priority is to satisfy the customer through early and…

Moving Motivators

An interesting technique from the Management 3.0 book “Managing for happiness” is the moving motivators exercise. What are the benefits of this exercise? It raises self-awareness about what motivates you, say what makes you get up in the morning. You can figure out what is important to your colleagues and support them in those areas.…

Kudo Cards

What is Kudo? Kudo is Greek for fame or honor. The idea behind Kudo Cards is to say “Thank You” in a meaningful way. By taking the time to specify and write down what you are actually grateful for. Variations As an alternative to just give a card to a co-worker, you can enhance the…