frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Get your Windows license refund

https://en.refund4freedom.org/
351•smartmic•3h ago•125 comments

Just the rumour of a bug is enough to find an exploit these days

https://anil.recoil.org/notes/rumour-is-the-exploit
66•avsm•1h ago•18 comments

U.S. sanctions against the A/I Collective

https://www.inventati.org/
217•exiguus•4h ago•198 comments

Inception-style curved map for turn-by-turn directions

https://www.orbify.eu/demo/
238•smoser•4h ago•81 comments

Htmx 4.0.0

https://four.htmx.org/announcements/2026-08-28-htmx-4.0.0-is-released
126•rmsaksida•3h ago•29 comments

GLM-5.3 is now open-weight

https://twitter.com/Zai_org/status/2093354097122455713
225•jeudesprits•1h ago•81 comments

Attimet (YC F24) Is Hiring Members of Technical Staff – Engineering and Research

https://www.ycombinator.com/companies/attimet/jobs/6btZFDg-member-of-technical-staff-engineering
1•kbanothu•19m ago

GUIs should be fully keyboard-driven

https://ckardaris.com/blog/2026/08/28/keyboard-driven-guis.html
67•ckardaris•2h ago•44 comments

State of the Map 2026

https://2026.stateofthemap.org/
77•lode•3h ago•23 comments

How Dactyl Works

https://dactyl.dev/blog/how-dactyl-works/
36•anorak27•1h ago•5 comments

The conservationists helping to restore Africa’s wild dog populations

https://www.smithsonianmag.com/science-nature/africa-wild-dogs-most-hated-carnivores-continent-he...
28•speckx•2h ago•10 comments

The Twelve-Factor App

https://12factor.net/
84•jxmorris12•18h ago•45 comments

OpenAI: Migrating to HTTPX2

https://github.com/openai/openai-python/blob/main/httpx2.md
149•tosh•5h ago•62 comments

Hilariously Fast Volume Computation with the Divergence Theorem (2018)

https://alyssarosenzweig.ca/blog/hilariously-fast-volume-computation-with-the-divergence-theorem....
198•luu•8h ago•51 comments

An investigation into the state of corvid–human relations

https://www.audubon.org/magazine/are-crows-really-our-friends
55•speckx•4h ago•37 comments

Verschlimmbesserung: The Word Your Software Updates Need

https://geekyschmidt.com/post/2026-08-25-verschlimmbesserung/
24•speckx•2h ago•7 comments

“It works better in the app”

https://shkspr.mobi/blog/2026/08/it-works-better-in-the-app/
536•blenderob•4h ago•347 comments

Barrier lake continues to pose flood risk, China warns

https://kathmandupost.com/national/2026/08/28/barrier-lake-continues-to-pose-flood-risk-china-warns
13•r721•1h ago•1 comments

Smaller reactors bring nuclear power closer to fulfilling its promise

https://www.nature.com/articles/d41586-026-02506-4
53•sohkamyung•4h ago•74 comments

Luanti removed from Google Play due to baseless AI copyright notice

https://blog.luanti.org/2026/08/27/luanti-dmca-tracer-ai/
265•miniBill•10h ago•77 comments

Global demand has spawned a worldwide boom in illegal sand mining (2015)

https://www.wired.com/2015/03/illegal-sand-mining/
7•EndXA•2d ago•0 comments

EasyEffects: Essential for Enhancing Laptop Speaker Sound on Linux Distributions

https://www.osnews.com/story/145883/easyeffects-should-be-part-of-every-linux-distribution-and-de...
7•birdculture•1h ago•2 comments

Don't use musl if you care about performance

https://blog.brokk.ai/dont-use-musl-if-you-care-about-performance/
24•jbellis•2h ago•11 comments

Show HN: SubSmith – Turn your own videos into language-learning material

https://subsmith.app
54•IbrahimF96•6h ago•42 comments

HTTPX2 – A next-generation HTTP client for Python

https://github.com/pydantic/httpx2
72•tosh•5h ago•25 comments

Judge rules Trump administration’s blacklisting of Anthropic was illegal

https://www.nytimes.com/2026/08/27/technology/anthropic-government-blacklisting-ruling.html
292•jbegley•15h ago•253 comments

Debugging my new network, when 10 Gigabit Ethernet Runs at 300 Megabits

https://www.hanselman.com/blog/debugging-my-new-network-when-10-gigabit-ethernet-runs-at-300-mega...
13•speckx•2h ago•2 comments

“Weird” is a weird word

https://www.deadlanguagesociety.com/p/weird-is-a-weird-word
31•pseudolus•3h ago•13 comments

Interactive Warhammer 40k Galaxy Map

https://cartographia40k.com/
109•gbxyz•8h ago•32 comments

I used AWS cognito for a startup. I wouldn't do it again

https://joshkaramuth.com/blog/aws-cognito-authentication-startup-nightmare/
131•speckx•3h ago•104 comments
Open in hackernews

Don't use musl if you care about performance

https://blog.brokk.ai/dont-use-musl-if-you-care-about-performance/
23•jbellis•2h ago

Comments

grep_it•56m ago
I think the size of linked binaries and simplicity were always the main features?
Joker_vD•45m ago
Yeah... I've recently had a chance to compare how fgets is implemented in both GNU libc and musl, and, well. With glibc, it was a challenge to even find where the fgets's code actually is.
marssaxman•52m ago
People have such different perspectives. 26% slower does not sound "terrible" to me; it sounds like quite a reasonable price one might choose to pay for the convenience musl offers. If musl's allocator were 2.6x slower, I might call that "not so great"... but in order to qualify as "terrible" I think the difference would have to be an order of magnitude!
loeg•24m ago
The 26% number at the top of the article is from using mimalloc (which is a high performance allocator, at least as fast as the glibc allocator) + musl for some task, and the slowdown is coming from (probably) slow musl implementations of memcpy/memset. The musl allocator is even worse.
delduca•51m ago
Also musl is not a complete runtime
OptionOfT•48m ago
Are there other options if I want to ship a 'FROM scratch' image with just a single Rust executable, and everything compiled in?

That to me is the main driver for MUSL.

nazgulsenpai•30m ago
Same usecase here, I use musl for compiling self contained Nim utilities I use on containers and servers without having to deal with glibc hell.
desdenova•24m ago
Most of musl's performance issues come from their allocator. Using it with a third party high performance allocator allows you to benefit from static linking with very little performance loss.
loeg•20m ago
> Most of musl's performance issues come from their allocator. Using it with a third party high performance allocator allows you to benefit from static linking with very little performance loss.

This is addressed and disputed very early in the article. The very first benchmark presented shows a 26% regression using musl + mimalloc, a high-performance 3rd party allocator.

bloppe•23m ago
This is only one aspect of "performance". glibc's allocator may be faster, but it also uses more memory.

For a much more technical discussion, see https://github.com/sharkdp/fd/issues/710

mattrighetti•15m ago
Posted this the other day but the whole musl allocator thing seems to be well known [0]

[0]: https://news.ycombinator.com/item?id=45143347