A blog by Michał “Butla” Bultrowicz¶
It’s yet another Python / development / technical blog.
There are many like it, but this one’s mine!
Here is a list of most recent posts:
2023-04-08 - Rapid development workflow - tests with Docker Compose
Recently, I did a presentation about my development workflow for back-end applications.
2023-03-27 - Separating different kinds of tests
When I work on a project I differentiate three kinds of tests: unit, integrated, and external. In this post I’ll explain how I think about them.
2022-02-15 - Directory of Bultrowiczes
Is your last name Bultrowicz? Do you have your own website or a page on some site? Do you do anything interesting and want to share?
2021-12-30 - Make and entr for code validation during editing
For a while now, I’ve been wondering how to combine entr (which automatically runs commands on file changes) with the way I setup project validation (both for CI/CD and for local developer usage) with Makefiles. The best thing I got so far is the
validate_continously
target in my Makefile.2021-12-27 - Simple encrypted Linux folders with TAR and GPG
What’s the simplest way of encrypting a folder in Linux? Combining
tar
withgpg
, it seems.