Sun 06 August 2023
Tutorials
Dependencies between things are common, but they can be tricky to manage in code.
You might think of using a graph to model your system, but how can you ensure that
thing A happens before thing B? This is where the idea of a topological sort comes in.
This article …
Continue reading »
Sat 19 February 2022
Tutorials
Your phone's ability to identify any song it listens to is pure technological magic. In this article, I'll show you how one of the most popular apps, Shazam, does it. The founders of Shazam released a paper in 2003 documenting how it works, and I have been working on an …
Continue reading »
A detailed tutorial (simulator included)
Mon 18 May 2020
Tutorials
By the end of this tutorial, you'll have built your very own game and learned not only about game development, but Python and the BBC micro:bit too. What's more, you don't even need to own a micro:bit to follow along!
Continue reading »
Mon 10 June 2019
Tutorials
Recently, I was reading an interesting article on some under-used Python features. In the article, the author mentioned that from Python version 3.2, the standard library came with a built in decorator functools.lru_cache
which I found exciting as it has the potential to speed up a lot of …
Continue reading »
Thu 25 April 2019
Tutorials
Recently I've had two Flask projects with endpoints that take lots of parameters. While working on the first project, I noticed that I was writing a lot of code for validation in each method, and it ended up looking ugly and probably full of bugs. When I started the second …
Continue reading »