frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Stop Embedding Your Corpus Blindly

https://decompressed.io/learn/sample-first-rag
1•zacole•56s ago•0 comments

Toolcast – Turn any API into an AI agent tool with one command

https://github.com/Djsand/toolcast
1•Djsand•2m ago•0 comments

US warns EU to pass trade deal or risk losing 'favourable' access to LNG

https://www.ft.com/content/6bf153e4-11af-44d5-9d1c-48b5c7ad26ef
1•geox•4m ago•0 comments

Pkgmirror: self-host your own Zig mirror

https://devlog.hexops.org/2026/announcing-pkgmirror/
1•emidoots•4m ago•0 comments

Reasoning-Based Personalized Generation for Users with Sparse Data

https://arxiv.org/abs/2602.21219
1•PaulHoule•6m ago•0 comments

OpenCode-LLM-proxy – use any OpenCode model via OpenAI/Anthropic/Gemini API

https://github.com/KochC/opencode-llm-proxy
1•kochc•7m ago•2 comments

Show HN: Build AI Trading Agents in Cursor/Claude with an MCP Server

https://financialdata.net/mcp-server
1•financial-data•7m ago•0 comments

Anthropic throttles Claude subscriptions to meet capacity

https://www.infoworld.com/article/4151196/anthropic-throttles-claude-subscriptions-to-meet-capaci...
1•ceejayoz•8m ago•1 comments

More AI-Generated Slop (2026)

https://www.dotnetperls.com/2026_3_24_more-ai-generated-slop
1•speckx•8m ago•0 comments

Some uncomfortable truths about AI coding agents

https://standupforme.app/blog/some-uncomfortable-truths-about-ai-coding-agents/
2•borealis-dev•15m ago•0 comments

Show HN: Open-Source Animal Crossing–Style UI for Claude Code Agents

https://github.com/outworked/outworked/releases/tag/v0.3.0
7•ZeidJ•22m ago•0 comments

Show HN: We built Cursor, but for data transformations (open source)

https://github.com/zipstack/visitran
2•naren87•24m ago•0 comments

Show HN: Solution for Prompt Injection of AI Agents

https://github.com/safe-agentic-world/nomos
2•prudhvinomos•24m ago•0 comments

Scrolling Forward, Sliding Backward: Social Media Threatens Democracy

https://www.mdpi.com/2076-0760/15/2/143
2•PaulHoule•25m ago•0 comments

15 Years of Forking

https://www.waterfox.com/blog/15-years-of-forking/
1•MrAlex94•25m ago•0 comments

Byte Magazine Archive 1975 to 1995

https://www.worldradiohistory.com/Byte_Magazine.htm
2•oldnetguy•26m ago•1 comments

The Video Software That Powers the Internet (and Almost Nobody Knows It Exists)

https://roughcut.heyeddie.ai/p/the-video-software-that-powers-the
2•rantingdemon•28m ago•0 comments

Tapes: transparent AI agent telemetry

https://johncodes.com/archive/2026/02-09-introducing-tapes/
1•speckx•29m ago•0 comments

A foundation model of vision, audition, and language for in-silico neuroscience

https://ai.meta.com/research/publications/a-foundation-model-of-vision-audition-and-language-for-...
1•dkrylov•29m ago•0 comments

How to Kill a Tech Monopoly

https://www.fourplex.net/2026/03/25/how-to-kill-a-tech-monopoly/
1•bbsc•31m ago•0 comments

Beijing's surprise intervention on Meta's Manus rattles tech founders

https://www.cnbc.com/2026/03/27/meta-manus-china-review-singapore-washing-model-regulation-.html
2•inaros•32m ago•0 comments

Clawbolt: AI assistant for contractors, not knowledge workers

https://blog.mozilla.ai/the-hardest-part-of-running-a-small-business-in-the-trades/
1•river_otter•33m ago•1 comments

Show HN: A votable list of the one thousand best books

https://kylebenzle.com/bookreviews.php
1•hilliardfarmer•36m ago•0 comments

Show HN: Foundry: a Markdown-first CMS written in Go

https://github.com/sphireinc/Foundry
2•nsayoda•42m ago•2 comments

Jaybird 6.0.5 Released

https://firebirdsql.org/en/news/jaybird-6-0-5-and-jaybird-5-0-12-released
1•mariuz•43m ago•0 comments

Speculative Decoding: Performance or Illusion?

https://specdecode-bench.github.io/
2•matt_d•43m ago•0 comments

Ask HN: Mercury Bank closed account due to residency – alternatives?

1•salleisha•44m ago•1 comments

LLM Persuasion Benchmark: Multi-Turn Persuasion Between Models

https://github.com/lechmazur/persuasion
5•zone411•45m ago•0 comments

Confinia – a supervised market research runtime for live trading systems

https://github.com/bamhann/confinia
2•bamhann•45m ago•0 comments

Scaling Laws: Should AI Laws Be Subject to a Higher Standard? [video]

https://www.youtube.com/watch?v=sx7FdK6ufPg
1•verdverm•45m ago•0 comments
Open in hackernews

We Slashed API Response Times by 50% with Go Compiler Optimizations

https://medium.com/@utsavmadaan823/how-we-slashed-api-response-times-by-50-with-go-compiler-optimizations-3c2592c2d241
2•tanelpoder•11mo ago

Comments

rvz•11mo ago
So as I was saying in [0] and [1], there is no doubt that properly tuning the compiler for performance can make a significant real difference instead of wasting more money and risking an increase in costs just by throwing more servers at the problem.

Also, If you needed to re-architect the entire codebase to solve a performance issue, either you chose one of the most inefficient technologies / languages or the code itself was badly architected in the first place or both.

Before any architectural changes to the codebase first check if you can get performance gains from the compiler flags and measure it. That should be the industry standard practice for high quality efficient software.

We must learn from excellent SWEs teams such as DeepSeek which frankly embarrassed the entire AI industry due to their performance optimizations and savings in inference usage.

[0] https://news.ycombinator.com/item?id=43753443

[1] https://news.ycombinator.com/item?id=43753725

kristianp•11mo ago
> -ldflags="-s -w": Strips debugging info, making the binary smaller

> I was honestly shocked when this simple change gave us an 8% speedup right off the bat.

Is that all they did to get 8% speedup? Could be a measurement error?

potato-peeler•11mo ago
> Dave (our senior backend dev who’s been coding since before I was born) mumbled something like, “Wonder if we’re even using the Go compiler properly…” Most of us kinda ignored it at first — I mean, compiler optimizations? Really? That’s your big solution?

Young devs ignoring their seniors is a tale as old as time