Building Dhrishti - Part 3: Testing on a Production Grade System
I was now done with the basic setup. However, during my time working at my startup, I have learnt to think about a project wearing multiple caps. One …
Latest AI & ML news from Tech News
I was now done with the basic setup. However, during my time working at my startup, I have learnt to think about a project wearing multiple caps. One …
Агенты сейчас пишут тесты уже за многими из нас, будем объективны, все больше людей кидаем таску ему - получают пачку аппрувов и погнали все это мержи…
We've all built that one MVP. You know the flow: Your bot spits out a USDT address. You ask the customer to reply with a transaction hash or, worse, a…
In the last article, I wrote about how programs make decisions using conditionals. We went through how a program can make a decision, choosing one pat…
> Zero-boilerplate SQL для Go. Опиши структуру тегами — и это всё. Если вы пишете на Go и работаете с SQL-базами, вы знаете эту боль. Каждый CRUD-з…
Three days before going open source, I deleted my parser's smartest feature. 333 lines. 6 functions. 12 passing tests. All green, all clever, all gone…
Flowork Agent is a self-hosted operating system for AI agents distributed as a single Go binary—no Docker, no Python, no separate database. It's a pra…
What is a package? In Go, every Go program is made up of packages. A package is a directory of .go files that share the same package declaration. The …
I built an autonomous SRE system where a local LLM diagnoses production incidents, proposes a fix, and a deterministic engine decides whether that fix…
The Problem: The Mysterious 2-Second Freeze Imagine your Go microservice is a chef in a busy kitchen. It processes orders (JSON payloads) super fast. …
If you've ever needed a database for your integration tests in CI, you've probably encountered one of these solutions: Docker-in-Docker. A separate do…
Hello, I'm Shrijith Venkatramana. I'm building git-lrc, an AI code reviewer that runs on every commit. Star Us to help devs discover the project. Do g…
There is a class of projects that teaches you more about a language than any tutorial ever could. Building a PDF engine from scratch in Go is one of t…
If you have ever found yourself searching for how to run ASP on Linux or trying to figure out how to containerize an old IIS-dependent application, yo…
Все мы любим терминал. Но мало кто помнит наизусть все флаги команды find или как правильно распаковать хитрый архив без гугла. Данный инструмент може…
There is a class of projects that teaches you more about a language than any tutorial ever could. Building a PDF engine from scratch in Go is one of t…
This is Part 2 of my series building Loom. 👉 Missed Part 1? Read it here Today: Reflection cache, stampede protection, and the deadlock that kept me u…
Today, I started learning Go(Golang), and I want to note down some key concepts that I think are important to understand and remember. Since this is b…
If you told me a few months ago that I would be obsessed with pointers, memory allocation, and low-level strings manipulation, I probably would have l…
Dearest learner I hope this post finds you well. If you're here because time.Now().Format("YYYY-MM-DD") isn't doing what you expected, pull up a chair…
This post is the Executive Summary of my 8-part long-form series: * Learning Path to Become a Core Banking Developer ** originally published on my blo…
Gubernator Orchestrator Update! Just shipped some major improvements examples to Gubernator (the lightweight Go container orchestrator): Premium Data …
In 2017 I was maintaining a Node.js ecommerce server when a new project landed on my desk — an IoT platform for vehicle tracking devices. Thousands of…
EU Directive 2010/40/EU mandates that every Member State operates a National Access Point (NAP) that publishes real-time traffic, safety, and multimod…
Hello, I'm Maneshwar. I'm building git-lrc, a Micro AI code reviewer that runs on every commit. It is free and source-available on Github. Star git-lr…
If you are a developer, you probably have a graveyard of side projects. For years, the formula for launching these projects was simple: push to Heroku…
The target scenario is not consumer calling. It is closer to B2B institutional device fleets: many shared devices, long-running uptime, centralized op…
I like writing SQL manually in Go. Especially with pgx or database/sql, it gives you explicit control over what happens: no hidden queries, no entity …
Introduction to Building Technologies from Scratch with Go Building technologies from scratch using Go is more than a learning exercise—it’s a gateway…
Let's explore structs in Go. If you know Go's basic types like string, int, and bool, structs let you handle more complex data. Say you're building a …