frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

FSF announces Librephone project

https://www.fsf.org/news/librephone-project
236•g-b-r•2h ago•75 comments

Beliefs that are true for regular software but false when applied to AI

https://boydkane.com/essays/boss
223•beyarkay•7h ago•184 comments

How bad can a $2.97 ADC be?

https://excamera.substack.com/p/how-bad-can-a-297-adc-be
192•jamesbowman•8h ago•98 comments

Hacking the Humane AI Pin

https://writings.agg.im/posts/hacking_ai_pin/
64•agg23•6d ago•14 comments

How AI hears accents: An audible visualization of accent clusters

https://accent-explorer.boldvoice.com/
161•ilyausorov•9h ago•65 comments

Unpacking Cloudflare Workers CPU Performance Benchmarks

https://blog.cloudflare.com/unpacking-cloudflare-workers-cpu-performance-benchmarks/
103•makepanic•5h ago•14 comments

Surveillance data challenges what we thought we knew about location tracking

https://www.lighthousereports.com/investigation/surveillance-secrets/
301•_tk_•5h ago•70 comments

SmolBSD – build your own minimal BSD system

https://smolbsd.org
126•birdculture•8h ago•9 comments

What Americans die from vs. what the news reports on

https://ourworldindata.org/does-the-news-reflect-what-we-die-from
393•alphabetatango•7h ago•217 comments

How to turn liquid glass into a solid interface

https://tidbits.com/2025/10/09/how-to-turn-liquid-glass-into-a-solid-interface/
74•tambourine_man•6h ago•52 comments

Meditating with mongooses: Backyard wildlife phtotography lessons

https://wildgundmi.com/meditating-with-mongooses
6•mylittlefinger•1h ago•0 comments

Astronomers 'image' a mysterious dark object in the distant Universe

https://www.mpg.de/25518363/1007-asph-astronomers-image-a-mysterious-dark-object-in-the-distant-u...
192•b2ccb2•11h ago•101 comments

A 12,000-year-old obelisk with a human face was found in Karahan Tepe

https://www.trthaber.com/foto-galeri/karahantepede-12-bin-yil-oncesine-ait-insan-yuzlu-dikili-tas...
241•fatihpense•1w ago•98 comments

GrapheneOS is ready to break free from Pixels

https://www.androidauthority.com/graphene-os-major-android-oem-partnership-3606853/
157•MaximilianEmel•3h ago•75 comments

Beating the L1 cache with value speculation (2021)

https://mazzo.li/posts/value-speculation.html
5•shoo•4d ago•1 comments

ADS-B Exposed

https://adsb.exposed/
278•keepamovin•15h ago•72 comments

AppLovin nonconsensual installs

https://www.benedelman.org/applovin-nonconsensual-installs/
130•jhap•5h ago•44 comments

Show HN: An open source access logs analytics script to block bot attacks

https://github.com/tempesta-tech/webshield
22•krizhanovsky•6h ago•2 comments

AI and Home-Cooked Software

https://mrkaran.dev/posts/ai-home-cooked-software/
32•todsacerdoti•1w ago•19 comments

Show HN: Metorial (YC F25) – Vercel for MCP

https://github.com/metorial/metorial
43•tobihrbr•11h ago•15 comments

Zoo of array languages

https://ktye.github.io/
145•mpweiher•14h ago•44 comments

Beyond the SQLite single-writer limitation with concurrent writes

https://turso.tech/blog/beyond-the-single-writer-limitation-with-tursos-concurrent-writes
53•syrusakbary•1w ago•49 comments

Preparing for AI's economic impact: exploring policy responses

https://www.anthropic.com/research/economic-policy-responses
17•grantpitt•6h ago•11 comments

Interior cancels largest solar project in North America

https://www.politico.com/news/2025/10/10/trump-interior-department-cancels-largest-solar-project-...
61•pseudolus•2h ago•45 comments

CSS for Styling a Markdown Post

https://webdev.bryanhogan.com/miscellaneous/styling-markdown/
8•bryanhogan•1w ago•3 comments

Prefix sum: 20 GB/s (2.6x baseline)

https://github.com/ashtonsix/perf-portfolio/tree/main/delta
75•ashtonsix•9h ago•30 comments

Show HN: Wispbit - Linter for AI coding agents

https://wispbit.com
23•dearilos•6h ago•11 comments

Testing a compiler-driven full-stack web framework

https://wasp.sh/blog/2025/10/07/how-we-test-a-web-framework
43•franjo_mindek•6d ago•9 comments

Why Is SQLite Coded In C

https://www.sqlite.org/whyc.html
123•plainOldText•5h ago•119 comments

Transverse Mercator with an accuracy of a few nanometers (2010)

https://arxiv.org/abs/1002.1417
3•nill0•1d ago•1 comments
Open in hackernews

SmolBSD – build your own minimal BSD system

https://smolbsd.org
126•birdculture•8h ago

Comments

dazzawazza•4h ago
I'm really enjoying some of the innovation in the BSD space at the moment.
hoppp•1h ago
BSD space has always been ahead in some ways. They can move more freely forward.
shoobiedoo•4h ago
Very cool. Love the mascot icon
erredois•3h ago
I was thinking about the smallest ssh server possible, and this looks interesting. I will try it later.
SpecialistK•2h ago
Wow, this looks like it will be a lot of fun to play with. As dazzawazza stated, very nice innovation going on. BSD deserves so much more love and attention!
jmmv•1h ago
If you like this, I'd also suggest reading on "Rumpkernels", which are also based on NetBSD. The core idea is (simplified): let's implement the kernel API in userspace so that we can take kernel-level components and run them as part of an application.

Rumpkernels then allow, for example, taking all file system drivers in the kernel and running them in userspace without having to rewrite all of the file system tricky logic. Think of "mtools" if you ever used them, but by reusing existing FAT code. Or making it trivial to create disk images from userspace without having to have special kernel primitives nor root access.

And also, they allow taking a userspace application and packaging it with the minimum set of drivers required to run "bare metal". Which is what the SSH example in the smol page brought to mind. See https://github.com/rumpkernel/wiki/wiki/Repo%3A-rumprun

signa11•36m ago
there is also this: https://mirage.io which does something similar.
ggm•52m ago
Does it do a minimisation of system calls and libc endpoints?
metadat•24m ago
Isn't FreeBSD already pretty small? I wonder what the LoC difference is between Smol, NetBSD and FreeBSD.