I recently came across this video on YouTube. It's a short tutorial on generating a Julia set fractal image in Rust. I've used Rust before but never with image generation or mathematics, so it looked interesting, and I followed along. By the end of the video, you have some code …
read moreOther articles
Investigating Deadlocks in Postgres
When performing transactions on the same tables in Postgres from multiple apps, you might face deadlocks.
You might get an error like this one (example from here):
read moreDBAPIError: (TransactionRollbackError) deadlock detected DETAIL: Process 61086 waits for ExclusiveLock on tuple (7217,55) of relation 626383 of database 380717; blocked by process …
Local Network Speed Test
There are multiple reasons why you might want to test the speed of you local network. For example you can test the speed between your router and your device. Or the speed between your device and a home server. For me it was the former. I wanted to make sure …
read morePublishing a Pelican site to GitHub Pages using GitHub Actions
I decided a while ago that I wanted to to start a blog, but despite GitHub Pages natively supporting Jekyll, I was put off because I didn't want to setup Ruby and the other dependencies just for a static site. Sometime later I was reading this article and I noticed …
read more