frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I made DeepSeek a stock prophet in the chat

https://chat.deepseek.com/share/najhhfle4n4e9brimh
1•SKYNET800•46s ago•0 comments

Knowing Where to Type 'Zero' (2015)

https://randomascii.wordpress.com/2015/01/19/knowing-where-to-type-zero/
1•birdculture•1m ago•0 comments

OpenAI agent swarm posted two FBI database API keys, and hit two universities

https://twitter.com/kennethrdegraff/status/2096028829890625978
1•ericzawo•4m ago•0 comments

Over 5,400 hacked sites serve ClickFix payloads stored on the blockchain

https://www.bleepingcomputer.com/news/security/over-5-400-hacked-sites-serve-clickfix-payloads-st...
1•sbulaev•4m ago•0 comments

Bringing modern USB xHCI support to Windows 98/ME/2K

https://yeokhengmeng.com/2026/08/xhci98-usb-host-driver/
1•ingve•4m ago•0 comments

GPT-6 Astra might be too powerful to understand or control

https://www.transformernews.ai/p/openai-gpt-6-astra-might-be-too-powerful-to-understand-or-control
2•rome•7m ago•1 comments

Jsonquery – A native desktop GUI for querying JSON (jq, JSONPath, JMESPath)

https://github.com/nujufas/jsonquery_gui
1•nujufas•7m ago•0 comments

Jank reimagines C++ errors and gets an official native package repo

https://jank-lang.org/blog/2026-09-04-better-and-better/
1•birdculture•10m ago•0 comments

How OpenAI Agents planned their escape

https://www.youtube.com/watch?v=EbZr33dXFF4
3•arsen3d•10m ago•0 comments

An Underrated Refactor Saved 90% Memory Usage

https://tanstack.com/blog/tanstack-table-v9-memory-performance
1•fagnerbrack•10m ago•0 comments

Saying Goodbye to My Git Server's CGit Front End

https://www.worthe-it.co.za/blog/2026-09-05-saying-goodbye-to-my-git-servers-cgit-frontend.html
1•ingve•10m ago•0 comments

LeanHTTP: HTTP Client for Lean 4

https://github.com/theoriclabs/leanhttp
1•hargup•11m ago•0 comments

Fat City, Fifty Years Later: An Interview with Leonard Gardner

https://www.theparisreview.org/blog/2019/02/06/fat-city-fifty-years-later-an-interview-with-leona...
1•georgex7•11m ago•0 comments

TreasuryDirect is introducing a new login experience using ID.me

https://treasurydirect.gov/savings-bonds/idme-sep4/
1•foresto•13m ago•0 comments

Are warnings of uncontrollable AI coming true?

https://www.theguardian.com/technology/2026/sep/05/uncontrollable-ai-artificial-general-intellige...
2•fittingopposite•15m ago•0 comments

Why Google is helping homeowners buy heat pumps

https://www.fastcompany.com/91601909/why-google-is-helping-homeowners-buy-heat-pumps
1•caseyf7•17m ago•0 comments

KingFy – an AI super app orchestrating 1,200 specialized agents

https://www.kingfy.app
1•kingfyapp•18m ago•0 comments

Show HN: Myjs An accidental pure-Python JavaScript interpreter

https://pypi.org/project/myjs/
4•byteface•19m ago•0 comments

Context Layer for Product Decisions

https://www.atisbo.dev
1•Coleg•19m ago•0 comments

Trump threatens to halt trade with top partners unless Fed cuts rates

https://www.cnbc.com/2026/09/04/trump-fed-rates-jobs-trade.html
2•ivell•20m ago•0 comments

The Inter Typeface Family

https://rsms.me/inter/
1•azhenley•21m ago•0 comments

An Accidental Blackboard

https://martinfowler.com/articles/exploring-gen-ai/an-accidental-blackboard.html
1•saikatsg•21m ago•0 comments

Mudlarking: Searching the River Thames for Historical Artifacts [video]

https://www.youtube.com/watch?v=HBuixfZC-Ao
1•kzrdude•22m ago•0 comments

DartNative: Beyond the Limits of React Native and Flutter

1•iosephmagno•22m ago•0 comments

Reading About the (2008) Financial Crisis: A 21-Book Review, by Andrew Lo (2012) [pdf]

https://www.stat.berkeley.edu/~aldous/157/Papers/lo.pdf
1•ggcr•22m ago•0 comments

C++26: Std:Hive

https://www.sandordargo.com/blog/2026/09/02/cpp26-hive
1•jandeboevrie•24m ago•0 comments

People Keep Sneaking into New York City Sewers. No One Knows Why

https://www.nytimes.com/2026/08/30/nyregion/manholes-sewers-nyc.html
2•paulpauper•26m ago•0 comments

Continuous Profiling and UI Profiling

https://sentry.io/changelog/continuous-profiling-and-ui-profiling/
1•imangsgu•26m ago•0 comments

We built our house for LAN parties

https://lanparty.house/
3•fittingopposite•26m ago•0 comments

Controlling when CSS custom property values are computed

https://jakearchibald.com/2026/css-custom-property-compute-time/
1•ingve•28m 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