RSSAmplifier

Blog

Maarten Hus's blog

maartenhus.nlRSS feed ↗14 posts

Latest posts

Better react-hook-form Smart Form Components

Creating a betterSmart Form Components for react-hook-form that are type safe in TypeScript

Why I migrated from Jest to Vitest

The reasons I migrated my unit test framework from Jest to Vitest

My gripes with Next.js

Recounting my personal experiences using Next.js and listing my gripes with / the downsides of Next.js.

Comparing JavaScript Frameworks part 2: reactivity

Comparing the reactivity systems of React, Vue, Angular and Svelte.

Comparing JavaScript Frameworks part 1: templates

Comparing the template languages of React, Vue, Angular and Svelte.

10 Debugging Tips for Beginners Programmers

10 Debugging tips for beginning programmers that I wish I knew when I started programming

A Tetris clone in TypeScript

A tutorial on how to create the game tetris in Typescript using a HTML Canvas element

Matrix rain effect

A tutorial on how to create the Matrix Rain effect in a HTML Canvas element using TypeScript and React

The invention of the function keyword

Why using a const lambda to create functions is misleading, and when and why to use the lambda function instead of the function keyword.

Fantasy CPU emulator part 2

Creating a fantasy CPU emulator with React and TypeScript part 2

Fantasy CPU emulator part 1

Creating a fantasy CPU emulator with React and TypeScript part 1

Pipeline operator: Hack vs F#

Taking a look at the proposed pipeline operator in JavaScript, seeing why it is useful, and comparing the Hack vs F# proposals. Plus getting both sides of the debate.

Lodash's chain vs native methods

Comparing lodash's chain method versus the native methods of Array in JavaScript, and see how chain works under the hood.

Creating a Typewriter Effect

How to create a Typewriter effect in React using useEffect, CSS animations, and a generator function.