Posts
All the articles I've posted.
Nix-flakes and Bun
Posted on:June 30, 2024 at 02:09 PMSmall update to my development flow and focus. How to get up and running with Bun.js in NixOS.
Setting Up Basic Auth in Tauri with Clerk
Posted on:May 24, 2024 at 10:49 AMThis blog post discusses how to set up basic authentication in a Tauri application using Clerk. The post begins by providing an introduction to Tauri and Clerk, highlighting their features and capabilities. Then, it delves into the steps involved in integrating Clerk's authentication system into a Tauri application, including setting up the Clerk SDK, configuring the authentication flow, and handling user authentication.
Corepack Debate
Posted on:February 26, 2024 at 01:58 PMThe current discourse within the Node.js community revolves around Corepack and its potential to revolutionize the bundling and distribution of package managers like npm. The discussion mainly focuses on the implications of enabling Corepack by default.
Corepack what is it
Posted on:February 9, 2024 at 11:15 PMCorepack is an experimental tool that acts as a zero-runtime-dependency Node script that allows developers to use these package managers without having to install them globally on their development machines or build servers.
Abusing TypeScript's Type System
Posted on:February 1, 2024 at 07:16 PMThis blog post dives deep into the world of TypeScript and explores the fascinating aspect of the `Exclude<Low, High>` utility type that increments `Low` by 1. It starts with a brief recall of what the `Range<Low, High>` type is and how it works in recursive types, before moving on to explain the role of `Exclude<Low, High>`.