Posts
Fuzzing an API with libfuzzer
January 23, 2024•1,851 words
[Edit] I was just told that libFuzzer is deprecated. I think the ideas presented are valid for any fuzzer, but the details will differ. When I ment...
Web Framework Quickstart Guide
January 16, 2024•1,236 words
Here's the quickest ways you can get up-and-running with templates for React, Angular, and Vue; using official tools.
Astro Healthcheck
December 29, 2023•346 words
Monitoring Your Blog for Issues
Angular's Templates Don't Work the Way You Think They Do
December 27, 2023•627 words
Angular templates are mission-critial for components. But how do they work? Using a compiler, yes, but how do they bind to the DOM itself? Read on to find out.
What is React's useActionState and useFormStatus?
December 20, 2023•1,469 words
React Server Actions are an awesome way to pass data to and from your React client and server. Like all functions, they need a way to return data.
What are React Server Actions?
December 19, 2023•1,917 words
While React Suspense APIs enable you to load data asynchronously from the server, Server Actions allow you to send data to the server from the client.