frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ukraine renews attacks on Russian energy sites – what has been hit?

https://www.reuters.com/business/energy/ukraine-renews-attacks-russian-energy-sites-what-has-been...
1•YZF•59s ago•1 comments

Is the Nutrition of an Egg the Same as in the Chick?

https://drjohnson.com/is-the-nutrition-of-an-egg-the-same-as-in-the-chick/
1•debo_•1m ago•0 comments

ReceiptBot – Stop Node.js AI agents from reading .env and burning your budget

https://github.com/redshadow912/ReceiptBot
1•LocalhostLegend•2m ago•1 comments

Show HN: Narrate – Generate multi-voice long-form audio with one command

https://github.com/zackham/narrate
1•zackham•12m ago•0 comments

Writing should have a soul and its own Claude Skill

https://getlago.substack.com/p/open-sourcing-my-writing-claude-skill
3•AnhTho_FR•13m ago•0 comments

Show HN: Yet another AI image ediotr and generator

https://imageditor.net/
1•shawnta•16m ago•0 comments

Ask HN: What was the limiting factor in growth of demand for fiber during 2000s?

1•AbstractH24•20m ago•2 comments

All elementary functions from a single binary operator

https://arxiv.org/abs/2603.21852
3•pizza•28m ago•0 comments

Moat: Run AI agents in isolated containers

https://majorcontext.com/moat/
2•cjbarber•32m ago•1 comments

State of Homelab 2026

https://mrlokans.work/posts/state-of-homelab-2026/
3•swq115•35m ago•0 comments

Level 3 Thinking: A Unified Theory of Self-Improvement

https://www.nateliason.com/blog/level-3-thinking
1•theorchid•37m ago•0 comments

OpenMAIC – Open Multi-Agent Interactive Classroom

https://open.maic.chat/
2•9woc•53m ago•0 comments

The Social Battery Paper: Gradient, Constraint, and the Extraction of Work In

https://www.academia.edu/165644285/The_Social_Battery_Paper_Gradient_Constraint_and_the_Extractio...
2•WilliamGriffin•55m ago•0 comments

Sabiondo: Compilador semántico universal – compilamos intención no sintaxis

https://github.com/K3iSoft/Sabiondo
1•K3iSoft•56m ago•0 comments

The Business Case for Vanilla JavaScript

https://lewiscampbell.tech/blog/250430.html
3•JSR_FDED•57m ago•0 comments

Internet down for you? X, GitHub, etc.

1•nvk•58m ago•1 comments

Trump will begin blockade of Strait of Hormuz within hours

https://www.dailymail.co.uk/news/article-15727239/Donald-Trump-Strait-Hormuz-Blockade.html
1•Bender•59m ago•5 comments

GraphAI – dual-graph $0 knowledge system with AI-native binary format

https://github.com/nehloo/graphAI
1•nehloo•1h ago•0 comments

Human Language Is the Best Programming Language

https://vanja.io/human-language-best-programming-language/
1•vpetreski•1h ago•0 comments

Externalization in LLM Agents

https://arxiv.org/abs/2604.08224
2•Anon84•1h ago•0 comments

Private Post-Training and Inference with TEEs for Frontier Models

https://www.workshoplabs.ai/blog/private-post-training
1•transpute•1h ago•0 comments

Unitree's H1 robot hits 10m/s sprint speed, getting close to 100M world record

https://www.globaltimes.cn/page/202604/1358712.shtml
2•teleforce•1h ago•0 comments

Show HN: A virtual office where you watch your AI agents code

https://github.com/ashxco/piedpiper
1•ashxsf•1h ago•0 comments

In search for a more precise cursor

https://unsung.aresluna.org/in-search-for-a-more-precise-cursor/
2•Doubleguitars•1h ago•0 comments

Cloudflare Agents week preview: What to expect

https://www.youtube.com/watch?v=nCrG-ixRoGg
1•emot•1h ago•0 comments

Unusual Behavior in Geosynchronous Orbit by Chinese Satellites, 2016–2025

https://www.csis.org/analysis/new-rhythms-geo-quantitative-analysis-unusual-behavior-geosynchrono...
2•mooreds•1h ago•0 comments

Tokyo: The Hard Life (1989)

https://www.theatlantic.com/magazine/archive/1989/03/tokyo-the-hard-life/668051/
1•mooreds•1h ago•1 comments

Should you be scared of bears when hiking in Japan?

https://www.emgoto.com/hiking-bears-japan/
3•mooreds•1h ago•0 comments

An Interview with Asana Founder Dustin Moskovitz about AI, SaaS, and Safety

https://stratechery.com/2025/an-interview-with-asana-founder-dustin-moskovitz-about-ai-saas-and-s...
1•theorchid•1h ago•0 comments

Google Stitch

https://stitch.withgoogle.com/
1•thatxliner•1h 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