Devpad - Blog Posts

Latest Posts

Recent posts

Set up a NextJS debugger in Nvim

nextjs nvim debuggerMay 08, 2025
Setting up a DAP-debugger for NextJS with Nvim is a little complicated; in my opinion, it might be one of the situations where it's better to use a GUI editor like VSCode. Though I must admit, seeing clientside console logs in your editor is really nice when you want to...

Developer Software for 2025

diff viewApril 28, 2025
During my first paid web development contract, I encountered numerous problems I hadn't seen before when developing. The main being related to the NTFS file-system using Windows. NTFS (or NSFW as I call it) is built to be robust compared to its faster Ext4 Linux counterpart... Unfortunately, the downside with...

Upgrading nvim v0.10 to v0.11

lsp-config nvim v0.11April 14, 2025
Two options for upgrading Nvim from v0.10 to v0.11 When upgrading from Neovim v0.10 to v0.11, I explored two different configurations--one using blink and one without it--each with its own trade-offs. I’m currently using the blink setup because I encountered some issues with SCSS snippets in the native configuration. That said,...

Github Commit Names

Post imageApril 14, 2025
💻 Contributing to Git Projects Like a Pro Contributing to open source (or even private repos at work) is more than just writing code—it's about making your contributions easy to understand, review, and maintain. Whether you're submitting a bug fix, adding a feature, or updating docs, a consistent and thoughtful approach...