Blog 

  1. Getting WiFi to work on a Razer Blade 14 (2022)

    I just spent way too much time trying to get Linux to work with the wireless card of the newest Razer Blade 14, so thought that I would briefly document the process. …


  2. Bitcoin serialization format

    I recently had to parse raw Bitcoin transactions and blocks for a project and struggled to find an easy to implement documentation. …


  3. Using Box on Linux

    This is a short post to detail what I found is currently the best way, at least for me, to use Box on Linux. …


  4. Managing user startup applications with systemd

    I recently switched to systemd to manage my startup applications, so this is a short post explaining the process. …


  5. Setting up Knowledge repo

    I found Knowledge Repo when looking for a simple tool to share Jupyter notebooks and it seemed to fit my needs so I decided to give it a try. …


  6. Profiling OCaml with gprof and jbuilder

    I am currently using OCaml for part of my research and ran into more trouble than expected when trying to profile my program. This post details step by step how to compile an OCaml program using dune(jbuilder) to profile the binary using gprof. …


  7. assertRaises in Python

    In this blog post, we will cover how assertRaises in unittest.TestCase works and implement a simplified version of it. For the sake of example, let’s say we want to check that next(iter([])) raises a StopIteration error. We will use a very simple Python script to try the code …


  8. What's coming in Elixir 1.3

    I recently gave a talk about Elixir 1.3 in Tokyo, and spoke about the changes, new features, improvements and all the awesome stuff coming in Elixir 1.3. I decided to write this as a blog post, with a little more details, and some links for those who want to check in more details. …


  9. Use Atom to edit in Chrome

    After GitHub added plenty of shortcuts to edit markdown in the browser, I had some problem editing directly, having all the native Emacs like shortcuts overridden. …


  10. Run commands only on git update with Ansible

    I have recently switched my automation workflow from Chef to Ansible, and just bumped into a simple issue. …