frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

HN: AI File Sorter 1.3 – Add your own Local LLM for offline file organization

https://github.com/hyperfield/ai-file-sorter/releases/tag/v1.3.0
1•hyperfield•58s ago•1 comments

Data General – The Fair Bastards

http://www.teamfoster.com/billteamfostercom
1•rbanffy•1m ago•0 comments

Sum Types in Julia and Rust

https://andreaskroepelin.de/blog/sum_types/
1•fanf2•3m ago•0 comments

Why Building Agents Is Hard

https://artificialinvestment.substack.com/p/interview-sanjin-bicanic-on-why-building
1•fovc•3m ago•1 comments

Archaeologists think they've solved Peru's 'band of holes' mystery

https://www.cnn.com/2025/11/21/science/peru-band-of-holes-mystery
1•giuliomagnifico•5m ago•0 comments

Linux Patches Improve Intel Nested VM Memory Performance Up to ~2353x in Test

https://www.phoronix.com/news/Intel-Nested-VM-Faster-Memory
1•rbanffy•6m ago•0 comments

SC25: HACCing over 500 Petaflops on Frontier

https://chipsandcheese.com/p/sc25-haccing-over-500-petaflops-on
1•rbanffy•8m ago•0 comments

Safe haven to sanctions: how Jersey sheltered Roman

https://www.theguardian.com/world/2025/nov/23/jersey-london-safe-haven-sanctions-roman-abramovich...
1•zeristor•11m ago•0 comments

Call Center Batik Air

1•Batikolangan•12m ago•7 comments

Ask HN: Vim, Emacs and the time spent configuring

1•not-so-darkstar•12m ago•0 comments

We're entering 'stage two of AI' where bottlenecks are physical constraints

https://fortune.com/2025/11/23/google-ai-data-centers-serving-capacity-contraints-gemini-google-c...
2•pretext•15m ago•0 comments

AI Ignites the Return of Bezos the Inventor

https://www.wsj.com/tech/ai/ai-ignites-the-return-of-bezos-the-inventor-c42d0075
1•pretext•15m ago•0 comments

Mind-reading devices can now predict preconscious thoughts: is it time to worry?

https://www.nature.com/articles/d41586-025-03714-0
1•bookofjoe•17m ago•1 comments

Shaders: How to draw high fidelity graphics with just x and y coordinates

https://www.makingsoftware.com/chapters/shaders
1•Garbage•18m ago•0 comments

Show HN: Sidemail – Email platform for SaaS (email API, newsletters, automation)

https://sidemail.io/
1•slonik•20m ago•0 comments

Show HN: Qeltrix:PoC for content-derived,parallel,streaming encryption container

1•hejhdiss•20m ago•0 comments

What Does the AGPL Require?

https://runxiyu.org/blog/agpl/
1•todsacerdoti•23m ago•0 comments

IKEA Mastered Furniture [video]

https://www.youtube.com/watch?v=0h8vAGCiRX0
1•vinhnx•24m ago•0 comments

Show HN: Page Cast – A single-file HTML host that hosts itself

https://gist.githack.com/Romelium/7513fc74536c3be15edf769cc416d10f/raw/4cebb56717ae4637de40403991...
1•Romelium•25m ago•0 comments

Titanic passenger's pocket watch sold for record £1.78M at auction

https://www.theguardian.com/uk-news/2025/nov/23/titanic-passenger-pocket-watch-sold-record-auction
1•stevekemp•27m ago•0 comments

Show HN: The AI homepage – A news homepage for AI related articles

https://www.theaihomepage.com/
1•maverick98•31m ago•0 comments

Game Theory Explains How Algorithms Can Drive Up Prices

https://www.wired.com/story/game-theory-explains-how-algorithms-can-drive-up-prices/
4•quapster•43m ago•0 comments

Microsoft says it will run Windows 11 File Explorer in background to load faster

https://www.windowslatest.com/2025/11/22/microsoft-says-it-will-always-run-windows-11-file-explor...
2•tosh•44m ago•2 comments

US Department of Transportation unveils first female-modeled crash test dummy

https://www.theguardian.com/world/2025/nov/21/transportation-department-first-female-crash-dummy
1•binning•44m ago•0 comments

The Many – and Contradictory – Histories of Mt. Rushmore

https://lithub.com/on-the-many-and-contradictory-histories-of-mt-rushmore/
1•bryanrasmussen•44m ago•0 comments

The battle between science and postmodernism: from Boyle's air pump to Dawkins

https://susanpickard.substack.com/p/the-battle-between-science-and-postmodernism
1•binning•48m ago•0 comments

Like the New Yorker but Better

https://thelambsconduitreview.neocities.org
1•rishirulzeworld•49m ago•0 comments

South Africa declares gender-based violence and femicide a national disaster

https://www.theguardian.com/society/2025/nov/22/south-africa-g20-protests-gender-based-violence-n...
2•binning•50m ago•0 comments

Show HN: I made it fast and easy to launch your own RAG-powered AI chatbots

https://www.chatrag.ai
1•carlos_marcial•50m ago•1 comments

Ask HN: Why GenAI is immoral but vibe coding is ok?

1•jb_briant•55m ago•4 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