-
Celebrating Summer with Greek Cuisine
After the heat wave of last week and with exams finished we had to go and celebrate with a nice dinner. We chose to go to a Greek restaurant called Tzikis Ouzeri. It is a family restaurant run by a couple of brothers. The weather was still good enough to sit outside which added to the summer vacation feeling. They have a couple of menus with a selection of their Mezze but this time made our own selection from the menu. What is nice about this style of food besides the taste is that you can order many small dishes…
-
100 Days of Programming Projects: Reflections and Tips after Day 14 and the Beginner Level Section of the Course
Day 14 marks the end of the beginner level. I just finished that and all in all as expected nothing fundamentally new learned so far. Still, I had some refreshers here and there and learned a couple of nice tricks. Most days ended with a guided programming project that used newly learned concepts of that day. The last couple of days of the beginner section were basically only a programming projects without guidance, only instructions and a demo about the program to make. Day 11 was the so called capstone project that involved all concepts learned so far but but…
-
The Expendables
Recently watched this movie from 2010 again. It was a bit of an ironical movie project from Stallone, bringing together action movie heroes from the past: The Expendables. In the movie the expendables are a group of mercenaries that get hired by the CIA to take out another CIA operative gone rogue as a drug baron on a remote island somewhere in South America. All of this is not revealed and a ‘simple’ assassination job turns out into a small war against the army on the island. Not much more of a story is to be expected when watching this…
-
FIH Pro League 2026: Matches in Wavre During a Heat Wave
Went to watch a couple of games in the FIH Pro League. First time it was hosted in the new stadium in Wavre where part of the 2026 World Championship in August will be played (matches are played in Wavre and Amsterdam). We are suffering from a heat wave so matches were delayed to start at 6PM. The women played first and it was still hot. We had a good spot under the roof that provided sufficient shade luckily, otherwise we would have been boiled like the players. Every 7.5 minutes there was a short hydration break but you could…
-
Understanding the Module Operator: Remainder in Python Explained
In another post I mentioned the module operator and explained it gives the remainder of a division. This description works for positive numbers and 5 % 3 gives 2 which is identical to the remainder but -5 % 3 gives 1 which doesn’t make much sense if it is supposed to be the remainder. If you divide 5 by 3 you have 1 + remainder 2 and if you divide -5 by 3 you have -1 with remainder -2. But if you type -5 % 3 in python you will get 1. What is going on? I had to google…
-
Mastering Python Basics: Essential Programming Concepts From the First 7 Days of 100 Days of Coding Bootcamp Course on Udemy
The first 14 days are labelled as beginner level. And so far I have certainly not learned any new concepts, it is all about the basics of programming really: variables, conditional statements, loops, functions and the like. Still, most of what I learned so far came from the daily programming projects. During those projects I rediscovered the random.choice() function in python as a simple way to select a random element from a list. I finally learned to appreciate the power of f-strings in python and I learned also a bit about ascii art and was catapulted back in time to…
-
Dining at Restaurant Barba in Leuven
Some weeks ago I went for dinner at Barba in Leuven. It is located in the city center and we were lucky we had made a reservation because it was completely packed. The interior is stylish with a modern touch but an somewhat studied old look and feel to it. It is housed in an old and quite narrow building so seating space is limited. On one side there are tables for 4 people and we sat on the other side at a table for 2 against the wall. The toilet is at the back and equally small. You have…
-
No Progress with the progress element in WordPress
A few posts ago I reported about the progress and meter elements in html5 and that I had found a way to add these to a WordPress blog. Unfortunately it didn’t work as expected. After entering the html code the block looked as expected but when I published the post I only say the labels back without progress bars. In fact, the label elements had been converted into h3 elements and the progress elements were simply gone. I figured I would give the meter element a try in this post and see what happens when I post if I get…
-
Gauss’s Formula for Summing Numbers Continued
In an earlier post I mentioned coming across the reasoning followed by Gauss to prove that the sum of the first n numbers is equal to n(n+1)/2. I started wondering if there is no generalization available for this formula: what is the sum of the whole number m to n, m and n included. Following the same reasoning as Gauss you can show that in this case the sum turns out to be (n+m)(n-m+1)/2. If you plug in m-1 you get the same formula as before.
-
Under Siege
After having watched Half Past Dead I decided to also watch Under Siege again, probably the best Steven Seagal movie. The whole movie takes place on a battleship that is overtaken by a group mercinaries. The crew is locked up while the mercenaries plan to remove all the warheads from the ship. Only 1 crew member, the cook, is not locked up with the rest of the crew but is instead locked up the freezer of the kitchen. When some mercenaries come to eliminate the cook he manages to neutralise them instead and escapes. What follows is a cat and…


