frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

US vs. Google amicus curiae brief of Y Combinator in support of plaintiffs [pdf]

https://storage.courtlistener.com/recap/gov.uscourts.dcd.223205/gov.uscourts.dcd.223205.1300.1.pdf
281•dave1629•7h ago•413 comments

Show HN: Xenolab – Rasp Pi monitor for my pet carnivourus plants

https://github.com/blackrabbit17/xenolab
8•malux85•46m ago•1 comments

A Critical Look at MCP

https://raz.sh/blog/2025-05-02_a_critical_look_at_mcp
244•ablekh•7h ago•141 comments

Reverse engineering the 386 processor's prefetch queue circuitry

http://www.righto.com/2025/05/386-prefetch-circuitry-reverse-engineered.html
85•todsacerdoti•5h ago•28 comments

For $595, you get what nobody else can give you for twice the price (1982) [pdf]

https://s3data.computerhistory.org/brochures/commodore.commodore64.1982.102646264.pdf
49•indigodaddy•3h ago•13 comments

The Price of Remission

https://www.propublica.org/article/revlimid-price-cancer-celgene-drugs-fda-multiple-myeloma
54•danso•2d ago•26 comments

Show HN: PLAttice, for assembling structures much larger than the 3D printer bed

https://zachfred.in/projects/plattice/plattice.html
9•zakqwy•1h ago•3 comments

Adventures in Imbalanced Learning and Class Weight

http://andersource.dev/2025/05/05/imbalanced-learning.html
14•andersource•2d ago•0 comments

Comparison of C/POSIX standard library implementations for Linux

https://www.etalabs.net/compare_libcs.html
66•smartmic•6h ago•21 comments

Show HN: Code Claude Code

https://github.com/RVCA212/codesys
76•sean_•6h ago•17 comments

Embracer Games Archive is preserving 75000 video games and needs contributions

https://embracergamesarchive.com/
115•draugadrotten•10h ago•57 comments

Vision Now Available in Llama.cpp

https://github.com/ggml-org/llama.cpp/blob/master/docs/multimodal.md
470•redman25•18h ago•102 comments

Microsoft Teams will soon block screen capture during meetings

https://www.bleepingcomputer.com/news/microsoft/microsoft-teams-will-soon-block-screen-capture-during-meetings/
49•josephcsible•2h ago•70 comments

Weave (YC W25) is hiring a founding engineer

https://www.ycombinator.com/companies/weave-3/jobs
1•adchurch•4h ago

Prolog's Eternal September (2017)

https://storytotell.org/prologs-eternal-september
63•Tomte•2d ago•49 comments

A simple 16x16 dot animation from simple math rules

https://tixy.land
309•andrewrn•18h ago•66 comments

Email Forwarding for Your Domain

https://mailwip.com
18•codazoda•2h ago•9 comments

Private Japanese lunar lander enters orbit around moon ahead of a June touchdown

https://phys.org/news/2025-05-private-japanese-lunar-lander-orbit.html
184•pseudolus•3d ago•57 comments

Building Local-First Flutter Apps with Riverpod, Drift, and PowerSync

https://dinkomarinac.dev/building-local-first-flutter-apps-with-riverpod-drift-and-powersync
21•kobieps•4d ago•11 comments

React Three Ecosystem

https://www.react-three.org/
91•bpierre•8h ago•31 comments

Gmail to SQLite

https://github.com/marcboeker/gmail-to-sqlite
276•tehlike•17h ago•87 comments

'It cannot provide nuance': UK experts warn AI therapy chatbots are not safe

https://www.theguardian.com/technology/2025/may/07/experts-warn-therapy-ai-chatbots-are-not-safe-to-use
79•distalx•6h ago•90 comments

Not a three-year-old chimney sweep (2022)

https://fakehistoryhunter.net/2022/07/26/not-a-3-year-old-chimney-sweep/
91•nixass•14h ago•55 comments

Intel: Winning and Losing

https://www.abortretry.fail/p/intel-winning-and-losing
71•rbanffy•10h ago•38 comments

Internet Roadtrip: Vote to steer

https://neal.fun/internet-roadtrip/
198•memalign•3d ago•35 comments

Unique Games Conjecture

https://en.wikipedia.org/wiki/Unique_games_conjecture
18•surprisetalk•5h ago•2 comments

The Deathbed Fallacy (2018)

https://www.hjorthjort.xyz/2018/02/21/the-deathbed-fallacy.html
221•mefengl•11h ago•104 comments

LLMs for Materials and Chemistry: 34 Real-World Examples

https://arxiv.org/abs/2505.03049
12•yz-exodao•3d ago•1 comments

Radxa Orion O6 brings Arm to the midrange PC (with caveats)

https://www.jeffgeerling.com/blog/2025/radxa-orion-o6-brings-arm-midrange-pc
78•goranmoomin•9h ago•57 comments

Lead Bullets (2011)

https://a16z.com/lead-bullets/
16•msukkarieh•6h ago•0 comments
Open in hackernews

Comparison of C/POSIX standard library implementations for Linux

https://www.etalabs.net/compare_libcs.html
66•smartmic•6h ago

Comments

ObscureScience•5h ago
That table is unfortunately quite old. I can't personally say what have changed, but it is hard to put much confidence in the relevance of the information.
snickerer•5h ago
Fun libc comparison by the author of musl.

My getaway is: glibc is bloated but fast. Quite unexpected combination. Am I right?

kstrauser•5h ago
It’s not shocking. More complex implementations using more sophisticated algorithms can be faster. That’s not always true, but it often is. For example, look at some of the string search algorithms used by things like ripgrep. They’re way more complex than just looping across the input and matching character by character, and they pay off.

Something like glibc has had decades to swap in complex, fast code for simple-looking functions.

weinzierl•4h ago
In case of glibc I think what you said is orthogonal to its bloat. Yes, it has complex implementations but since they are for a good reason I'd hardly call them bloat.

Independently from that glibc implements a lot of stuff that could be considered bloat:

- Extensive internationalization support

- Extensive backward compatibility

- Support for numerous architectures and platforms

- Comprehensive implementations of optional standards

kstrauser•4h ago
Ok, fair points, although internationalization seems like a reasonable thing to include at first glance.

Is there a fork of glibc that strips ancient or bizarre platforms?

dima55•3h ago
What problem are you trying to solve? glibc works just fine for most use cases. If you have some niche requirements, you have alternative libraries you can use (listed in the article). Forking glibc in the way you describe is literally pointless
kstrauser•1h ago
Nothing really. I was just curious and this isn’t something I know much about, but would like to learn more of.
SAI_Peregrinus•2h ago
It's called glibc. Essentially all that "bloat" is conditionally compiled, if your target isn't an ancient or bizarre platform it won't get included in the runtime.
kstrauser•1h ago
That’s mostly true, but not quite. For instance, suppose you aim to support all of 32/64-bit and little/big-endian. You’ll likely end up factoring straightforward math operations out into standalone functions. Granted, those will probably get inlined, but it may mean your structure is more abstracted than it would be otherwise. Just supporting the options has implications.

That’s not the strongest example. I just meant it to be illustrative of the idea.

timeinput•5h ago
My take away is that it's not a meaningful chart? Just in the first row musl looks bloated at 426k compared to dietlibc at 120k. Why were those colors chosen? It's arbitrary and up to the author of the chart.

The author of musl made a chart, that focused on the things they cared about and benchmarked them, and found that for the things they prioritized they were better than other standard library implementations (at least from counting green rows)? neat.

I mean I'm glad they made the library, that it's useful, and that it's meeting the goals they set out to solve, but what would the same chart created by the other library authors look like?

LeFantome•3h ago
A lot of the “slowness” of MUSL is the default allocator. It can be swapped out.

For example, Chimera Linux uses MUSL with mimalloc and it is quite snappy.

cyberax•41m ago
Not quite correct. glibc is slow if you need to be able to fork quickly.

However, it does have super-optimized string/memory functions. There are highly optimized assembly language implementations of them that use SIMD for dozens of different CPUs.

thrtythreeforty•4h ago
It really ought to lead with the license of each library. I was considering dietlibc until I got to the bottom - GPLv2. I am a GPL apologist and even I can appreciate that this is a nonstarter; even GNU's libc is only LGPL!
LeFantome•3h ago
musl seems to have displaced dietLibc. Much more complete yet fairly small and light.
yusina•40m ago
Note that dietlibc is the project of a sole coder in the CCC sphere from Berlin (Fefe). His main objective was to learn how low level infra is implemented and started using it in some of his other projects after realizing that there is a lot of bloat he can skip with just implementing the bare essentials. Musl has a different set of objectives.
jay-barronville•4h ago
Please note that the linked comparison table has been unmaintained for a while. This is even explicitly stated on the legacy musl libc website[0][0] (i.e., “The (mostly unmaintained) libc comparison is still available on etalabs.net.”).

[0]: https://www.musl-libc.org

pizlonator•2h ago
My own perf comparison: when I switched from Fil-C running on my system’s libc (recent glibc) for yololand to my own build of musl, I got a 1-2% perf regression. My best guess is that it’s because glibc’s memcpy/memmove/memset are better. Couldn’t have been the allocator since Fil-C’s runtime has its own allocator.
abnercoimbre•1h ago
Interesting! Will you stick around with the musl build? And if so, why?
edam•2h ago
Pretty obviously made by the musl authors.
deaddodo•49m ago
> "I have tried to be fair and objective, but as I am the author of musl"

Yeah, pretty obvious when they state as much in the first paragraph.

moomin•2h ago
No cosmopolitan, pity.