frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: RentBench – Levels.fyi for UK Rents

https://rentbench.fyi
1•lluiscamino•58s ago•0 comments

The Tao of Acme

https://chai.guru/pub/plan9/mirrors/tao-of-acme.html
1•naltun•1m ago•0 comments

Mamdani is the most popular elected official in NYC: poll

https://www.nydailynews.com/2026/09/23/mamdani-is-the-most-popular-elected-official-in-nyc-poll/
1•downbad_•1m ago•0 comments

Democratic megadonor who gave to Gavin Newsom and Kamala Harris linked to murky

https://nypost.com/2026/09/22/us-news/california-donor-faces-scrutiny-over-alleged-chinese-spy-ties/
1•harry_nutsachs•2m ago•0 comments

Probing picosecond depairing currents in type-II superconductors

https://www.nature.com/articles/s41567-026-03469-z
2•PaulHoule•5m ago•0 comments

Ask HN: How would you know if you have learned something?

1•rearview•6m ago•0 comments

SciUniverse: Can frontier models carry out scientific work?

https://c5r.net/sciuniverse/
5•famouswaffles•8m ago•0 comments

Compio: A thread-per-core async Rust runtime with IOCP/io_uring/polling

https://github.com/compio-rs/compio
2•bootlegbilly•10m ago•0 comments

Swarm Scaling

https://www.tobyord.com/writing/swarm-scaling
2•louiereederson•16m ago•0 comments

Cracking VFPU math functions using Claude (Sony PSP)

https://www.ppsspp.org/blog/vfpu-math-re/
3•hrydgard•17m ago•1 comments

ZeroDrift – A small model that finds and fixes compliance violations

https://zerodrift.com/model/anchor-3-benchmark
2•chobberoni•19m ago•0 comments

Show HN: Dunara

https://dunara-studio.com/
1•grebmann•19m ago•0 comments

Flux 3 Action Tops RoboLab, but Large Companies Can't Use It in a Product

https://topicqueue.substack.com/p/flux-3-action-tops-robolab-but-larger
1•DISCURSIVE•20m ago•0 comments

Astronomers capture an unprecedented view of gas giant formation in action

https://phys.org/news/2026-09-astronomers-capture-unprecedented-view-gas.html
3•PeterCorless•21m ago•0 comments

China Holds Sensitive F-35 Parts Diverted to Hong Kong from Australia

https://www.bloomberg.com/news/articles/2026-09-23/china-is-holding-sensitive-f-35-parts-diverted...
3•rbanffy•23m ago•2 comments

The "C" Word

https://blog.coredump.cx/p/the-c-word
2•zdw•23m ago•1 comments

Restaurants Are Using AI to Advertise Their Food and It's Making People Sick

https://www.wsj.com/tech/ai/restaurants-ai-food-image-generators-advertisements-efb787a9
2•victor106•24m ago•0 comments

Topcoat is pushing the boundary of server applications with Rust

https://tokio.rs/blog/2026-09-24-topcoat-server-applications
1•carllerche•24m ago•0 comments

Global Chat

https://global-chat.jojoban842.workers.dev/
1•theredpainter•25m ago•0 comments

Show HN: Offline recorder and transcriber on your MacBook's notch

https://memorynotch.app/
4•choyiny•26m ago•0 comments

Dailies: Daily games with friends and family, in your texts

https://www.dailies.world/
1•dvdhutch•26m ago•1 comments

Quanta's Thomas Lin Trusts the Public Can Handle Complex Ideas

https://www.insidehighered.com/opinion/columns/public-scholar/2026/09/08/quantas-thomas-lin-trust...
2•digital55•28m ago•0 comments

Sourcehut account takeover via build logs (XSS in ansi2html)

https://blog.arusekk.pl/posts/srht-account-takeover/
6•arusekk•33m ago•0 comments

A new data layer for robot learning

https://rerun.io/blog/data-layer-for-robot-learning
2•intrepidsoldier•33m ago•0 comments

How to stay smart in the age of AI: the science of critical thinking

https://www.nature.com/articles/d41586-026-02930-6
3•digital55•34m ago•0 comments

Why AI companies don't need new laws

https://twitter.com/Paul__Walsh/status/2102801667657748720
2•MrBuddyCasino•35m ago•1 comments

Alexandr Wang Is Meta's Not-So-Secret Weapon in the AI Agent Promo War

https://www.businessinsider.com/alexandr-wang-meta-muse-social-media-posts-pr-strategy-2026-9
3•Anon84•35m ago•0 comments

Tech leaders to UN: For sake of humanity, please control the AI tech we created

https://apnews.com/article/ai-artificial-intelligence-un-security-council-64519ea66b38e2600026f44...
5•ChrisArchitect•38m ago•3 comments

Anwar Gargash: Caught in the Middle of the Iran War, Foreign Affairs [video]

https://www.youtube.com/watch?v=zd4kPmPGgDk
1•verdverm•39m ago•0 comments

Show HN: XYVEL Trip – plan a trip in one sentence, with prices

https://xyvel.ch/en/trip
1•gladia92soussa•40m 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•1y ago

Comments

rvz•1y 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•1y 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•1y 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