Command Line Interface (CLI)

Open Source AI Coding Agents to Try for Free

OpenCode, pi, T3 Code, and Kilo are four open source AI coding agents you can try for free. I compare them by workflow fit, provider flexibility, Claude subscription access, and what "free" actually costs. [...]

Fixing zsh: command not found: nvm (and Node Not Found Across Terminals)

If you get "zsh: command not found: nvm" in a new terminal window, or node works in one terminal but not another after using nvm, the cause is usually the nvm loader lines being overridden in your shell profile or a missing default alias. Here's how to fix both. [...]

Elegant Console Logs With Consola

Creating beautiful and elegant console logs in consola, a console wrapper. Console logs are not always well structured and eye-pleasing. Unpleasant and messy console takes away [...]

Creating Git Hooks Using Husky

They are used to verify everything is as expected before or after executing a git command or action. Some common applications include formatting the code before committing, performing build step before pushing the code to production, etc. [...]

How to compile SASS/SCSS into CSS and watch for changes?

SASS/SCSS extends CSS which means that you can have all the features of CSS plus the features of SASS just like a cherry on top of a cake! [...]