frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: Is there any Hacker News but for investing/trading/economics etc.?

1•fittingopposite•29s ago•0 comments

State-Oriented Consistency: Why We Stopped Looking for One Right Answer

https://keel-iot.eu/blog/state-oriented-consistency.html
1•fcravio•56s ago•0 comments

Doortrackr

https://doortrackr.com
1•samtato•2m ago•0 comments

Why police raided Starbucks Korea's headquarters

https://www.cnn.com/2026/08/05/asia/south-korea-raid-starbucks-tank-ad-intl-hnk
2•firefax•2m ago•0 comments

Onida – Leading Home Appliance Brand in India

https://onida.com/
1•gurjeet•4m ago•0 comments

The Wind at Your Back

https://yusufaytas.com/the-wind-at-your-back
3•yusufaytas•5m ago•0 comments

Unconscious Inference

https://en.wikipedia.org/wiki/Unconscious_inference
2•binyu•6m ago•0 comments

Ask GitHub SRE: How serious is the situation there?

1•laxk•7m ago•0 comments

Depot CI Compatibility with GitHub Actions

https://depot.dev/docs/ci/compatibility
2•da768•8m ago•0 comments

Google is talking about Gemini 4 while 3.5 Pro remains delayed

https://www.reuters.com/business/google-shakes-up-ai-leadership-deepmind-chief-shifts-role-2026-0...
2•BlueBerry2001•9m ago•0 comments

Agent Plugins Specification

https://github.com/agentplugins/agent-plugins-spec
3•Kydlaw•9m ago•1 comments

The Printer

https://alnwlsn.com/z/printer/index.html
1•Cider9986•9m ago•0 comments

LettuceDetect v2 in Semantic Router: Gen. Hallucination Detection vLLM Endpoint

https://vllm-sr.ai/blog/lettucedetect-v2-generative-hallucination-detection/
1•matt_d•9m ago•0 comments

Reducing AppSec false positives with paraconsistent logic instead of thresholds

https://github.com/castrogusttavo/lpa2v-appsec
1•castrogusttavo•10m ago•0 comments

AI can now design functional viruses – not the computer kind, either

https://www.theregister.com/offbeat/2025/09/18/ai-can-now-design-more-deadly-virus-genomes/1489318
2•joebuckwilliams•10m ago•1 comments

Continual Learning via Real-Time RL for Agents

https://rllm-project.com/post.html?post=realtime_rl.md
1•matt_d•11m ago•0 comments

Cynicism and Naïveté in the Summer of a Thousand Fires

https://www.meditationsinanemergency.com/cynicism-and-naivete-in-the-summer-of-a-thousand-fires/
1•cdrnsf•11m ago•0 comments

The DISTINCT in Your COUNT

https://boringsql.com/posts/distinct-in-your-count/
3•gmcabrita•14m ago•0 comments

Large genome models used to design new viruses

https://arstechnica.com/science/2026/08/large-genome-models-used-to-design-new-viruses/
1•pera•15m ago•0 comments

xAI Ignores Laws and Profits: Rules for Thee, Not for Me

https://illegal.solutions/posts/xai_pollution
24•speckx•16m ago•2 comments

Show HN: After 23 years, I finished my indie video game

https://www.missilemassacre.com
2•jevonsparadox•18m ago•1 comments

The Judgment Decorator

https://www.insideainative.com/p/the-judgment-decorator
1•mmayernick•19m ago•0 comments

Landscape and Perspective on Recursive Self-Improvement from a Neolab

https://poetiq.ai/posts/rsi_perspective/
1•gkapur•19m ago•0 comments

Emacs project adds official AGENTS.md

https://lists.gnu.org/archive/html/emacs-devel/2026-08/msg00077.html
4•untilted•19m ago•0 comments

We're Suing the Makers of I-Ready

https://www.educationprogress.org/p/were-suing-the-makers-of-i-ready
1•barry-cotter•21m ago•0 comments

Why ARM Disassembly Looks "Too Simple"

https://comuniq.xyz/post?t=1512
4•01-_-•21m ago•0 comments

AI designs a novel E. coli killer (first publicly announced AI-designed virus)

https://news.stanford.edu/stories/2026/08/evo-2-ai-tool-e-coli-killer-bacteriophages
4•alephnerd•21m ago•1 comments

Anhedonia

https://en.wikipedia.org/wiki/Anhedonia
2•klaussilveira•21m ago•0 comments

EV8: The Post-Ultimate Alpha [pdf]

https://research.ac.upc.es/pact01/keynotes/emer.pdf
1•twoodfin•25m ago•0 comments

Anybody tried Laguna S 2.1 (by Poolside)?

4•spottedmarley•27m 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