frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Major AI conference flooded with peer reviews written by AI

https://www.nature.com/articles/d41586-025-03506-6
1•EA-3167•33s ago•0 comments

How to do Localization and Internationalization properly on the Web

https://community.qbix.com/t/how-qbix-handles-text-translation-and-international/783
1•EGreg•1m ago•0 comments

Did We Just Solve the 100-Year War Between Quantum Theory and Gravity?

https://pajuhaan.medium.com/did-we-just-solve-the-100-year-war-between-quantum-theory-and-gravity...
1•pajuhaan•4m ago•1 comments

Show HN: Cool fonts you can use almost anywhere

https://fontgen.cool/
1•liquid99•4m ago•0 comments

Cree syllabics still used today

https://www.thecanadianencyclopedia.ca/en/article/cree-syllabics
1•ilamont•9m ago•0 comments

Show HN: Zenus – A note-taking app with Local, Server and Client mode

https://github.com/skorotkiewicz/zenus
1•modinfo•9m ago•0 comments

Stochastic Bohmian Framework for Retrocausal Quantum Communication

https://github.com/DOSAYGO-STUDIO/quacomms
1•keepamovin•9m ago•0 comments

Pointer Pop Quiz

https://dave.cheney.net/2025/11/27/pointer-pop-quiz
1•todsacerdoti•10m ago•0 comments

Show HN: LLM Inference Performance Analytic Tool for Moe Models (DeepSeek/etc.)

https://github.com/kevinyuan/llm-inference-perf-model
1•kevin-2025•11m ago•0 comments

Jeff Dean on AI Trends at Stanford AI Club [video]

https://www.youtube.com/watch?v=AnTw_t21ayE
1•guiambros•12m ago•0 comments

Electron vs. Tauri

https://www.dolthub.com/blog/2025-11-13-electron-vs-tauri/
2•todsacerdoti•14m ago•0 comments

LaSuite Keynote

https://www.youtube.com/watch?v=X6c-mYOWrvA
1•maelito•16m ago•0 comments

Study: First Visualization of the Internal Structure Behind AI Decision-Making

https://news.kaist.ac.kr/site/newsen/html/news/?mode=V&mng_no=55090&skey=&sval=&list_s_date=&list...
1•giuliomagnifico•19m ago•0 comments

Desperately Seeking Squircles (2018)

https://www.figma.com/blog/desperately-seeking-squircles/
1•williamjsdavis•19m ago•0 comments

iOS games that work on iPads that can not be upgraded past iOS 9

https://cjstewart88.github.io/vintage/
3•walterbell•20m ago•0 comments

All your LLMs ranked by speed every minute

https://metrik-dashboard.vercel.app/
2•mbouassa•20m ago•1 comments

Firm pioneers 3D printing copper coolers directly onto processors

https://www.tomshardware.com/3d-printing/firm-pioneers-3d-printing-copper-coolers-directly-onto-p...
1•Teever•22m ago•0 comments

Join the Parasite Rebellion on T-day

https://usop.substack.com/
2•richardatlarge•22m ago•0 comments

Ask HN: Why do people say LLMs create bad code "quality"?

2•chaidhat•24m ago•3 comments

Comparing Obelisk with DBOS

https://obeli.sk/blog/comparing-dbos-part-1/
1•todsacerdoti•26m ago•0 comments

The Context Tax: Why AI-Assisted Coding Fails Without Flow

https://arif.sh/book
1•Arifcodes•29m ago•0 comments

Training Foundation Models on a Full-Stack AMD Platform

https://arxiv.org/abs/2511.17127
2•srameshc•30m ago•0 comments

Age of "Don't do it yourself"

https://blog.rybarix.com/2025/11/26/age-of-dont-diy.html
4•sandruso•34m ago•1 comments

Anomalous electronic state opens pathway to room-temperature superconductivity

https://phys.org/news/2025-11-anomalous-electronic-state-pathway-room.html
2•rbanffy•34m ago•0 comments

Reminder that HN Active exists and is arguably better

https://news.ycombinator.com/active
5•loteck•34m ago•1 comments

What's Hiding Inside Haribo's Power Bank and Headphones?

https://www.lumafield.com/first-article/posts/whats-hiding-inside-haribos-power-bank-and-headphones
2•rozenmd•35m ago•0 comments

Show HN: MXP – A2A-compatible agent protocol, 37x faster than JSON

1•ferasawady•36m ago•0 comments

China completes first emergency mission to Tiangong space station

https://www.reuters.com/business/media-telecom/china-launch-shenzhou-22-spaceship-0411-gmt-state-...
3•Teever•37m ago•1 comments

France to bring in form of military service

https://www.bbc.co.uk/news/articles/c0edw7g7z79o
1•AIBytes•38m ago•0 comments

Z-Image, free online image generator

https://zimage.net
2•BruceWok•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•7mo ago

Comments

rvz•7mo 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•7mo 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•7mo 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