Abhishek Amralkar·May 14Meet Argus: Local AI Vulnerability ScannerHow a RAG pipeline, DuckDB, and a local LLM turned dependency scanning into something I actually enjoy running
Abhishek Amralkar·Apr 26How to Fine-Tune and Run a Local LLM with Ollama on a CPU-Only MachineWhy This MattersA response icon1A response icon1
Abhishek Amralkar·Apr 15Run LLMs on Your LaptopThree commands. That’s all it takes to have a fully capable large language model running locally on your machine — no internet connection…
Abhishek Amralkar·Mar 9Building a CLI Todo App (Part 3 — Upgrading to a Database)In Part 1, we built a todo app that lived entirely in memory — fast, but forgetful. In Part 2, we fixed that by saving tasks to a db.json…
Abhishek Amralkar·Feb 11Building a CLI Todo App (Part 2 — File-Based Persistence)In Part 1, we built a simple CLI todo application using in-memory storage with Go slices. It worked great… until we closed the terminal…
Abhishek Amralkar·Feb 9Building a CLI Todo App (Part 1 — In-Memory Storage)Let's build a real-world CLI application in Go, starting from the basics and progressively making it better. By the end of this series…
Abhishek Amralkar·Jan 31My Terminal Setup: A Deep Dive into My Zsh ConfigurationMoving from Oh-My-Zsh after 10 years
Abhishek Amralkar·Jan 28Modern CLI Tools to Supercharge Your WorkflowRust is a systems programming language that has been gaining popularity due to its emphasis on safety, speed, and concurrency. It’s a…
Abhishek Amralkar·Jan 9, 2025My Zig with GhosttyGhostty is a fast, feature-rich, and cross-platform terminal emulator that uses platform-native UI and GPU acceleration. Ghostty is written…
Abhishek Amralkar·Aug 23, 2024Building a Word Frequency Analyzer in Go: A Step-by-Step GuideIn this blog post, we will walk through a Go program that reads text input, counts the frequency of each unique word, and sorts and…