Browsing Tag
backend
67 posts
Clean Architecture in Go: A Practical Guide with go-clean-arch
What is the code architecture of your Go project? Hexagonal architecture? Onion architecture? Or perhaps DDD? No matter…
Proof & Completion – Dare Validation with AI
The most exciting part: users can submit proof of their completed dares. Features: Upload image, video, or text.…
If your app solves real problems, the frontend doesn’t matter.
❤️ • if you agree 🦄 • if you disagree
What I Learned Cleaning 1 Million Rows of CSV Data Without Pandas
Cleaning a small CSV? Pandas is perfect. Cleaning up a million rows on a limited machine or using…
Beyond `omitempty`: Understanding `omitzero` in Go 1.24
Preface In Go version 1.24, the encoding/json package introduced the omitzero tag, making the behavior of ignoring zero-value…
Run AI Models Entirely in the Browser Using WebAssembly + ONNX Runtime (No Backend Required)
Most devs assume running AI models requires Python, GPUs, or cloud APIs. But modern browsers are capable of…
Rust Error Handling Compared: anyhow vs thiserror vs snafu
Error handling is an indispensable part of Rust development. Rust’s Result provides fundamental support, but the specific implementation…
Redis Delayed Queue: Explained Once and for All
A delayed queue is essentially a message queue that delays execution. What business scenarios is it useful in?…
14 Rules for Designing MySQL Tables
1. Include These Common Fields When Designing a Table Generally, a table should include the following fields: id:…