ContentPosts from @pushpakbhoge..
Link
@faun shared a link, 1 week, 2 days ago

Everything I know about good API design

This guide lays out the playbook for running tough, user-first APIs: no breaking changes, stick to familiar patterns, honor long-lived API keys, and make every write idempotent. It pushes cursor-based pagination for heavy data, rate limits that come with context, and optional fields to keep things ..

Link
@faun shared a link, 1 week, 2 days ago

The unexpected productivity boost of Rust

Lubeno's backend is100% Rust, providing strong safety guarantees for refactoring confidence. Rust's type checker catches async bugs, unlikeTypeScript. Rust excels in tracking lifetimes and borrowing rules.Zig, on the other hand, can be alarming with its compiler choices, such as overlooking typos in..

Link
@faun shared a link, 1 week, 2 days ago

From Python to Go: Why We Rewrote Our Ingest Pipeline at Telemetry Harbor

Telemetry Harbor tossed out Python FastAPI and rebuilt its ingest pipeline inGo. The payoff?10x faster, no more CPU freakouts, and strongerdata integritythanks to strict typing. PostgreSQL is now the slowest link in the chain—not the app—which is the kind of bottleneck you actuallywant. Means the s..

From Python to Go: Why We Rewrote Our Ingest Pipeline at Telemetry Harbor
Link
@faun shared a link, 1 week, 2 days ago

Go is still not good

Go’s been catching flak for years, and the hits keep coming: stiff variable scoping, no destructor patterns, clunky error handling, and brittle build directives. Critics point out how Go’s design often blocks best practices like RAII and makes devs contort logic just to clean up resources or manage ..

Link
@faun shared a link, 1 week, 2 days ago

Lessons learned from building a sync-engine and reactivity system with SQLite

A dev ditched Electric + PGlite for a lean, browser-native sync setup built aroundWASM SQLite,JSON polling, andBroadcastChannel reactivity. It’s running inside a local-first notes app. Changes get logged with DB triggers. Sync state? Tracked by hand. Svelte stores update via lightweight polling, wi..

Lessons learned from building a sync-engine and reactivity system with SQLite
Link
@faun shared a link, 1 week, 2 days ago

Developer's block

Overdoing “best practices” can kill momentum. Think endless tests, wall-to-wall docs, airtight CI, and coding rules rigid enough to snap. Sounds responsible—until it slows dev to a crawl. The piece argues for flipping that script. Start scrappy. Build fast. Save the polish for later. It’s how you d..

Link
@faun shared a link, 1 week, 2 days ago

Bash Explained: How the Most Popular Linux Shell Works

Bash isn't going anywhere. It's still the glue for CI/CD, cron jobs, and whatever janky monitoring stack someone duct-taped together at 2am. If automation runs the show, Bash is probably in the pit orchestra. It keeps things moving on Linux, old-school macOS (think pre-Catalina), and even WSL. Stil..

Link
@faun shared a link, 1 week, 2 days ago

From GPT-2 to gpt-oss: Analyzing the Architectural Advances

OpenAI Returns to Openness. The company droppedgpt-oss-20Bandgpt-oss-120B—its first open-weight LLMs since GPT-2. The models pack a modern stack:Mixture-of-Experts,Grouped Query Attention,Sliding Window Attention, andSwiGLU. They're also lean. Thanks toMXFP4 quantization, 20B runs on a 16GB consume..

From GPT-2 to gpt-oss: Analyzing the Architectural Advances
Link
@faun shared a link, 1 week, 2 days ago

37 Things I Learned About Information Retrieval in Two Years at a Vector Database Company

A Weaviate engineer pulls back the curtain on two years of hard-earned lessons in vector search—breaking downBM25,embedding models,ANN algorithms, andRAG pipelines. The real story? Retrieval workflows keep moving—from keyword-heavy (sparse) toward embedding-driven (dense). Across IR use cases, the ..

Link
@faun shared a link, 1 week, 2 days ago

Introducing AWS Cloud Control API MCP Server: Natural Language Infrastructure Management on AWS

AWS dropped theCloud Control API MCP Server, a mouthful of a name for a tool that makes 1,200+ AWS resources manageable through a standard CRUDL API—using natural language. Think: describe what you want, and tools like Amazon Q Developer turn it into actual infra code. It doesn’t stop there. It val..

Introducing AWS Cloud Control API MCP Server: Natural Language Infrastructure Management on AWS