
Switching to zsh on Mac, 6 years late
For six years, I’ve seen this every time I open a new terminal: The default interactive shell is now zsh. To update your account to use zsh, please run `chsh -s /bin/zsh`. For more details, please...
For six years, I’ve seen this every time I open a new terminal: The default interactive shell is now zsh. To update your account to use zsh, please run `chsh -s /bin/zsh`. For more details, please...
The latest funny thing I saw around, is the TrackWeight app on MacOS which allows you to use the Trackpad of your Mac to weight stuff. If you have a recent Mac and a Trackpad, just install and play...
While reading the Fluent Python 2nd Edition, the very first example uses the collections.namedtuple. As a C++ developer, I was fascinated from this. import collections.namedtuple Card = collection...
Original Title: Où stocker ses données en 2023 ? A good recap of the current database landscape, with a bit of history to explain how we got here. The question being: what database should I choos...
This talk is a behind the scene in Kafka of what happens when you push an event. It’s important to know what happens because: there are a lot of things happening even before the event leaves for...
Original title: FoundationDB : le secret le mieux gardé des nouvelles architectures distribuées ! Here are some more notes from the talk by Pierre Zemb at Riviera DEV 2023. My full trip report is ...
Riviera DEV 2023 was my first Dev conference. It’s held in the French Riviera, it has a great atmosphere, exceptional food and provides no excuses for you not to attend. For all those reasons, and ...
Riviera DEV 2023 was my first Dev conference. It’s held in the French Riviera, it has a great atmosphere, exceptional food and provides no excuses for you not to attend. For all those reasons, and ...
Going for Chirpy Before Jekyll + Chirpy, I evaluated hugo and Wordpress. I almost went with Wordpress, but engineers are attracted to complexity as moth to the light. At the beginning I was a bit ...
I was wondering. Which one is faster: collect_list or collect_set? If you need your data in order and want to keep those precious duplicates, then collect_list is for you. If you don’t care about t...