(Rotterdam, The Netherlands)

Adding Tailwind v4 to Docusaurus v3

01 Mar 2025

Guide to setting up Tailwind v4 in a Docusaurus v3 project, including installation of necessary packages, creating a custom plugin and configuring Docusaurus to use it, and integrating Tailwind with your CSS setup.

How to inject runtime env vars to your Next.js app

17 Oct 2024

Learn how to inject runtime environment variables into your Next.js application by leveraging server-side execution and careful handling of 'use client' clauses. The method involves splitting the layout into a server-side and a client-side component and using 'unstable_noStore' to serve environment configuration dynamically.

Firebase credentials in node.js

29 Apr 2024

A practical guide to securely providing Firebase credentials in Node.js projects using environment variables instead of JSON files, including step-by-step instructions for encoding and using secrets

Zero-Knowledge Proof of new Merkle Tree root digest

16 Nov 2021

An exploration of how to construct a zero-knowledge proof for updating a Merkle Tree root digest, including practical considerations, proof strategies, and an example Zokrates circuit for verifying new root digests after leaf updates.

Global vaccination blockchain idea

02 Jan 2021

A conceptual proposal for a global COVID-19 vaccination certificate system using blockchain technology, focusing on privacy, verification, and authority management, with implementation ideas and discussion.

How to use tailwind css and not get lost in a long list of class names

05 Feb 2020

Tips and techniques for keeping Tailwind CSS class names organized and readable in React projects, including practical examples and alternative styling approaches.

Yarn workspaces and Docker

03 Dec 2019

Practical guide to using Yarn workspaces with Docker in monorepo projects, addressing dependency hoisting and Dockerfile setup for shared packages.

Apollo & Next.js refresh token authentication flow

21 Nov 2019

I will explain a concept of authentication flow I'm exercising recently in my full-stack projects. If you're crazy enough to build your own authentication with Apollo and JWT this may be an inspiration for you.

Very simple js p2p serverless chat on WebRTC

03 Nov 2019

A walkthrough of building a simple peer-to-peer chat application in JavaScript using WebRTC, enabling direct, serverless communication between users with code examples and practical tips.

Express with TypeScript setup

20 Sep 2019

Step-by-step guide to setting up a basic Express server with TypeScript, including configuration for linting, testing, development tools, and best practices for a modern Node.js project.

Setting up your create-react-app project with TypeScript & VSCode

18 Sep 2019

Step-by-step guide to configuring a new Create React App project with TypeScript and VSCode, including setup for eslint, prettier, and root import aliases for improved development workflow.

Code sharing in React & React Native apps

08 Sep 2019

Practical strategies for sharing code between React web and React Native mobile apps, including monorepo structure, syncing shared code, and overcoming common bundling challenges.