15 articles

📰 Dev.to · Asaduzzaman Pavel

Articles from Dev.to · Asaduzzaman Pavel · 15 articles · Updated every 3 hours · View all reads

All ⚡ AI Lessons (10443) ArXiv cs.AIDev.to · FORUM WEBDev.to AIForbes InnovationOpenAI NewsHugging Face Blog
How I Organized over 100 NixOS Modules Without Going Crazy
Dev.to · Asaduzzaman Pavel 3d ago
How I Organized over 100 NixOS Modules Without Going Crazy
My first NixOS flake was a 500-line monster. Everything in one file: hardware config, user packages,...
I Assumed SvelteKit 5 Would Just Work. I Was Wrong About the Mental Model.
Dev.to · Asaduzzaman Pavel 3d ago
I Assumed SvelteKit 5 Would Just Work. I Was Wrong About the Mental Model.
SvelteKit 5 migration looked simple, but the runes mental model caught me off guard. Here is what I learned after three days upgrading a production app.
How I Actually Structure My Go Services
Dev.to · Asaduzzaman Pavel 3d ago
How I Actually Structure My Go Services
Every time I see a new Go project with a pkg/ directory, I already know it's going to be a junk...
Multi-Agent Orchestration in Go
Dev.to · Asaduzzaman Pavel 3d ago
Multi-Agent Orchestration in Go
I spent a whole day debugging why my agent kept hallucinating tool calls. The model would output...
Building Tool-Using AI Agents in Go with LangChainGo
Dev.to · Asaduzzaman Pavel 3d ago
Building Tool-Using AI Agents in Go with LangChainGo
I've been spending more time with AI agents lately, specifically looking at how to make them actually...
Go 1.26 new(expr) and the pointer problem I thought was solved
Dev.to · Asaduzzaman Pavel 3d ago
Go 1.26 new(expr) and the pointer problem I thought was solved
The new(expr) syntax in Go 1.26 should have let me delete my generic ptr[T] helpers. It almost did.
How I Built a Factorio 'Auto Mall' Generator in Go
Dev.to · Asaduzzaman Pavel 3d ago
How I Built a Factorio 'Auto Mall' Generator in Go
If you've played Factorio into the late game, you know the "Mall" problem. You need a central place...
Practical Notes on DRY: Why I'm Okay with a Little Duplication
Dev.to · Asaduzzaman Pavel 3d ago
Practical Notes on DRY: Why I'm Okay with a Little Duplication
I've lost count of how many PRs I've seen stalled because someone pointed out two similar-looking...
Cloudflare Workers: What I Learned Building With Them
Dev.to · Asaduzzaman Pavel 3d ago
Cloudflare Workers: What I Learned Building With Them
Everyone talks about "serverless" like it's some magic bullet, but most of the time you're just...
GitHub PR Checkout: Two Methods That Actually Work
Dev.to · Asaduzzaman Pavel 3d ago
GitHub PR Checkout: Two Methods That Actually Work
The first time someone asked me to review their pull request, I opened GitHub in one tab, Slack in...
Go Bitwise Flags and Bitmasks: Configuration Pattern Guide
Dev.to · Asaduzzaman Pavel 3d ago
Go Bitwise Flags and Bitmasks: Configuration Pattern Guide
How to use bitwise flags, bitmasks, and iota for configuration in Go. Learn bitwise OR, AND, XOR operations, set/clear/toggle patterns, and practical examples w