frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Reading the Prompt You Did Not Send: Detection at the Inference Boundary

https://medium.com/system-weakness/reading-the-prompt-you-did-not-send-detection-at-the-inference...
1•hevalon•1m ago•0 comments

Rocket Lab announces five-launch Neutron deal as it aims for late 2026 debut

https://spaceflightnow.com/2026/05/07/rocket-lab-announces-five-launch-neutron-deal-as-it-continu...
1•rbanffy•2m ago•0 comments

Deep codebase context cuts Claude Code's token cost by 47%

https://bito.ai/blog/codebase-context-cuts-claudes-token-cost/
1•Sushrutkm•4m ago•0 comments

Show HN: ShadowCat – file transfer through QR Codes in a Browser

https://github.com/unprovable/ShadowCat
1•unprovable•4m ago•1 comments

Twelve Ways to Be Wrong About AI-Assisted Coding

https://third-bit.com/2026/05/20/twelve-ways-to-be-wrong/
1•mpweiher•8m ago•0 comments

Amiga Programming Languages

https://en.wikipedia.org/wiki/Amiga_programming_languages
1•doener•9m ago•0 comments

Chess Invariants

http://muratbuffalo.blogspot.com/2026/05/chess-invariants.html
1•ingve•9m ago•0 comments

A top K-drama star faces explosive backlash over AI-manipulated voice evidence

https://www.koreatimes.co.kr/southkorea/law-crime/20260521/voice-file-messages-involving-actor-ki...
1•haebom•11m ago•0 comments

Google co-founder Sergey Brin donates $500k to California group

https://timesofindia.indiatimes.com/technology/tech-news/google-co-founder-sergey-brin-donates-50...
1•01-_-•12m ago•0 comments

SpaceX scrubs first launch attempt of its Starship Version 3 rocket

https://spaceflightnow.com/2026/05/21/live-coverage-spacex-to-launch-first-starship-version-3-roc...
1•rbanffy•12m ago•0 comments

Google I/O showed how the path for AI-driven science is shifting

https://www.technologyreview.com/2026/05/22/1137813/google-i-o-showed-how-the-path-for-ai-science...
1•joozio•13m ago•0 comments

Amiga 68000 (SEKA) → portable C transpiler

https://bitbucket.org/rhinoid/convert68000toc/src/main/
1•doener•15m ago•0 comments

The Invisible Engineer

https://comuniq.xyz/post?t=1132
1•01-_-•15m ago•0 comments

Wikigacha

https://wikigacha.com/?lang=EN
3•freeCandy•16m ago•0 comments

Which dating safety tips do you know?

2•facesift•19m ago•0 comments

DTLS Support Entering Node.js

https://github.com/nodejs/node/commit/436748fc28cc177596a0384b8894152a920e5d5a
2•austin-cheney•22m ago•0 comments

The Builder PM Trap

https://clementboutignon.com/posts/builder-pm-trap
2•clement_b•26m ago•0 comments

Unplug technofascism – Belgian activists are planning to occupy a datacenter

https://code-rouge.be/en/about-us/cr4-narrative/
3•pietervdvn•30m ago•1 comments

New York State passes bill requiring disclosure of food additives

https://foodpackagingforum.org/news/new-york-state-passes-bill-requiring-disclosure-of-food-addit...
5•geox•30m ago•1 comments

Free MongoDB GUI Tool to Browse Data, Run Queries, and Create Indexes

https://visualeaf.com/blog/free-mongodb-gui-tool/
3•roxana_haidiner•30m ago•0 comments

The case against boolean logic

https://abuseofnotation.github.io/boolean-thinking/
12•boris_m•31m ago•5 comments

Nyx Wave: an AI agent that extracted expert knowledge via email

https://splabs.io/nyx-wave-knowledge-extraction
2•k-thimmaraju•33m ago•0 comments

Most EVM monitoring breaks after the first swap

https://blog.bridgexapi.io/most-evm-monitoring-breaks-after-the-first-swap
2•Bridgexapi•34m ago•0 comments

Ban for Authors Submitting AI Content 'Welcome but Unenforceable'

https://www.insidehighered.com/news/faculty/books-publishing/2026/05/22/ban-authors-who-submit-ai...
2•50kIters•34m ago•0 comments

A Comma and a Question Mark

https://www.thetypicalset.com/blog/a-comma-and-a-question-mark
2•eigenBasis•37m ago•0 comments

Antigravity 2.0 Tops the OpenSCAD Architectural 3D LLM Benchmark

https://modelrift.com/blog/openscad-llm-benchmark/
15•jetter•38m ago•3 comments

Thermo-Nuclear Code Quality Review (Cursor Team Kit skill)

https://github.com/cursor/plugins/blob/3347cbab5b54136f6fba0994c3a01a56f7fb7fca/cursor-team-kit/s...
2•pramodbiligiri•40m ago•0 comments

What Google, Yahoo, Microsoft, and Apple are doing to your email

https://www.jacquescorbytuech.com/writing/what-google-yahoo-microsoft-and-apple-are-doing-your-email
5•iamacyborg•41m ago•1 comments

Camp: Static Site Generation for Racket

https://joeldueck.com/what-about/camp/
4•amai•45m ago•0 comments

Free Proxy List 2026

https://momoproxy.com/free-proxy-list
3•xbjamilnz•46m 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