frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Ask HN: What to learn and do, that makes me least affected by AI in STEM?

1•s3arch•11m ago•0 comments

Write Thin to Write Fast (2021)

https://breck7.github.io/breckyunits.com/write-thin-to-write-fast.html
1•KTibow•12m ago•0 comments

Students Create a Self-Balancing, Self-Driving Bicycle

https://www.core77.com/posts/144138/Students-Create-a-Self-Balancing-Self-Driving-Bicycle
2•sizzle•21m ago•0 comments

Context windows are the wrong solution to AI memory

https://www.thesecondbrain.dev
1•rahilpirani•21m ago•0 comments

Pynear 2.3 Is Out

1•pcael•23m ago•0 comments

GitHub Actions Is a Trap

https://tylercipriani.com/blog/2026/04/24/on-the-software-supply-chain-doom-spiral/
1•thcipriani•26m ago•0 comments

Robustness Principle

https://en.wikipedia.org/wiki/Robustness_principle
1•bookofjoe•26m ago•0 comments

When Code Is Cheap, Does Quality Still Matter?

https://yusufaytas.com/does-code-quality-still-matter
1•thunderbong•29m ago•0 comments

The Culture of Childhood: We've Almost Destroyed It

https://petergray.substack.com/p/the-culture-of-childhood-weve-almost
1•rendx•29m ago•0 comments

Cards and Stars – Where the Cards Meet the Cosmos

https://cardsandstars.org/
1•Anon84•32m ago•0 comments

TikTok disproportionately served anti-Democratic videos during the 2024 election

https://www.psypost.org/tiktok-disproportionately-served-anti-democratic-videos-during-the-2024-e...
2•CharlesW•34m ago•1 comments

The Lottery – Shirley Jackson (1948)

https://www.newyorker.com/magazine/1948/06/26/the-lottery
2•jxmorris12•36m ago•0 comments

Gaza flotilla activists allege sexual assault and rape in Israeli detention

https://www.theguardian.com/world/2026/may/22/gaza-flotilla-activists-allege-sexual-assault-and-i...
7•0x54MUR41•38m ago•0 comments

Community response to Wikimedia layoffs and labor concerns

https://lists.wikimedia.org/hyperkitty/list/wikitech-l@lists.wikimedia.org/thread/NEZZ25FAX3VMBER...
8•rendx•39m ago•0 comments

California Evacuation Map as Chemical Tank Will Fail or Explode: 'Bad'

https://www.newsweek.com/garden-grove-california-evacuation-map-chemical-tank-fail-explode-orange...
4•SilverElfin•39m ago•1 comments

CVE-2026-9256: Nginx 1.31.1 and 1.30.1

https://www.cve.org/CVERecord?id=CVE-2026-9256
3•petecooper•44m ago•0 comments

Show HN: AI Guided 3D atomic orbital simulation

https://atom.plumocracy.com
1•plumocracy•44m ago•0 comments

SpaceX launches Starship v3 rocket

https://www.nbcnews.com/now/video/spacex-successfully-launches-prototype-of-starship-rocket-26383...
36•busymom0•44m ago•6 comments

Tobacco plant can produce five psychedelics, including psilocybin and DMT

https://phys.org/news/2026-04-tobacco-psychedelics-psilocybin-dmt.html
8•hyrix•45m ago•0 comments

I was bored so I turned my dev tools into an alien planet ruled by my dog

https://github.com/bkawa-bot/planet-maiko
7•bkawa-bot•46m ago•1 comments

Cheap AI Could Derail OpenAI and Anthropic's IPOs

https://www.cnbc.com/2026/05/20/cheap-ai-could-derail-openai-and-anthropics-ipos.html
2•gmays•49m ago•1 comments

Switchkraft

https://switchkraft.zone/
1•skogstokig•52m ago•0 comments

Panorama – Review Code, Faster

https://panorama.stagas.deno.net/
1•stagas•53m ago•0 comments

SendIt – browser-based file/text transfer tool

https://trysendit.app/
1•GrandpaCereal•53m ago•1 comments

Future of AI-Facilitated Medicine

https://www.amacad.org/publication/daedalus/future-ai-facilitated-medicine
2•dnw•57m ago•0 comments

Luminous: Rust Based Image Viewer

https://github.com/jaroslavszkandera/luminous
1•unk_•59m ago•0 comments

Capital and the Debt Trap

https://en.wikipedia.org/wiki/Capital_and_the_Debt_Trap
3•teleforce•59m ago•0 comments

Gas prices drive Georgia man to create a "mini car" costing $3 to fill up [video]

https://www.youtube.com/watch?v=c-QNFxkWktY
2•nxobject•1h ago•0 comments

Four Russian satellites are now within striking distance of an ICEYE radarsat

https://arstechnica.com/space/2026/05/a-satellite-company-supporting-ukraine-appears-to-be-in-rus...
10•fghorow•1h ago•0 comments

The Silent Merge Queue Corruption That Hit 658 GitHub Repos

https://failure-modes.dev/library/fm-029
2•birdculture•1h ago•1 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