Blog

Notes on TypeScript, Next.js, SQL, Go, and the craft of building fast, pragmatic web products.

blog posts

Posts tagged "javascript" — 7 posts

I made an app… and now people all over the world use it (but no one pays)

Mar 26, 2026 • 4min read

A while ago I was bitten by the bug to put together a tool for a very specific pain: removing silences from videos without having to open a heavy editor. I started with a small script in ffmpeg, I pre...

javascriptaimacfinance

Nextjs server actions in depth

May 22, 2025 • 9min read

Next.js Server Actions offer us a very powerful way to handle mutations and server logic directly from our React components. This makes the lines between client/server a little blurred, but does it in...

nextjsreactjavascriptnodejsserver

Roman Numerals

Oct 26, 2024 • 2min read

A fun problem to practice general logic and problem solving.

leetcodejavascript

Palindrome

Oct 24, 2024 • 2min read

It seems knowing the built in methods goes a long way.

leetcodejavascript

Two Sum

Oct 23, 2024 • 6min read

My first attempt at leet code, and it was a mess, well not really right?.

leetcodejavascript

How to host your node and react application on your own VPS (2/2)

Feb 7, 2022 • 4min read

How to host your Node + React app on your own VPS (2/2) In this second part we finish the deployment: we put free HTTPS with Let's Encrypt, we leave Nginx fine as a reverse proxy, we test the app live...

reactnginxjavascriptnodejsserver

Javascript Arrays

Jan 8, 2021 • 3min read

In this tutorial you will be able to see 8 methods applicable to arrays in Javascript that will help us work better with them. Filter, map, some, includes, every, forEach, reduce, find Part 1 1.Fil...

javascriptfinance