How to use the sys module in Python

Motivation Sometimes you need information about your system e.g. which Python version your program is running on. Enter the sys module Import import sys How to find the currently active Python interpreter current_interpreter = sys.executable assert current_interpreter == “/Users/jb/PycharmProjects/blog_content_creatronix/venv311/bin/python” How find out about your Python version sys.version assert sys.version == “3.11.0rc1 (v3.11.0rc1:41cb07120b, Aug 5 2022,…

BarCamp Regensburg 2022

Endlich wieder BarCamp! – Yeah! Zwei lange Jahren mussten wir auf das BarCamp Regensburg verzichten. Ich wusste nicht wie sehr ich es vermisst hatte. Als ich die Stufen zu Techbase hochstolperte fühlte es sich so an, als wäre ich gerade erst dort gewesen. Allerdings konnte ich diesmal direkt in der Nähe parken. Location Die Location…

How to configure git

Motivation Working on different projects with different user info and settings you may find it necessary to dive deeper into the git configuration. First of all you need to know that there are at least three git configuration files system global local worktree Each level overrides values in the previous level, so local overwrites global,…

Shortcuts for Screenshots on macOS

When you write articles you occasionally need a screenshot of a program or a website. macOS got you covered with several options. Here are some useful keyboard shortcuts to use them: Screenshot of the full screen Press Shift + Cmd + 3 simultaneously Part of the screen Press Shift + Cmd + 4 simultaneously Window…

Five Books every Junior Developer should own

Motivation When you start your career in software development you become bamboozled by the amount of material on the interwebs, the number of published books (print and ebooks) and the available courses online and offline. Let me lend you a helping hand! As I stated in Thoughts on building a library knowledge is power and…

Apple Watch 8 Unboxing

Motivation I skipped the first 7 series of Apple watches successfully but now Apple got me on the hook! As I become older I become more and more aware that I have to get my ass off the couch much more often and do more sports. And here comes Apple with their new watch 8…

DevOps Camp 2022 Recap

tl;df; it was a blast! Visiting my first barcamp since 2019 I know now what I’ve missed: Drinks, food and soulfood! Location DevOps Camp was hosted at Brandad Systems AG in Fürth Coffee Coffee was sponsored by cloudpunks Catering Catering was provided by Frau B. Incredible as always! Sessions Due to family business I couldn’t…