Posts from '2017'
Setting up Rust development environment using VSCode on a Mac
Completion and highlighting While on Linux VSCode with the Rust plugin seems to work more or less out of the box, on a Mac I needed to spend some time configuring it. First things first though, let's start by installing Rust version manager, rustup. ... read more →
Adding graphs to posts in Nikola
Update as of April 2019 This blog no longer runs on Nikola so the embedded examples do not work anymore. The method described in the post is still valid though. I really like to teach, try to explain things in a simple manner. There is often no bett ... read more →
Upload your site to Netlify using their incremental deployment API
I've recently switched to a setup where I do all my builds for this blog on Travis. While doing so I needed to migrate away from using Netlify's internal build infrastructure. This resulted in a quick python script that allows you to upload arbitrary ... read more →
Running host programs in isolation inside one-off Docker containers
I am quite bad at remembering how to launch docker to have everything set up correctly. Hence the following - a script that launches any commandline specified in its arguments inside a new docker container. Current directory is mounted inside the con ... read more →