frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Deno Desktop

https://docs.deno.com/runtime/desktop/
636•GeneralMaximus•7h ago•232 comments

GLM 5.2 vs. Opus

https://techstackups.com/comparisons/glm-5.2-vs-opus/
223•ritzaco•5h ago•172 comments

Codex logging bug may write TBs to local SSDs

https://github.com/openai/codex/issues/28224
208•vantareed•5h ago•109 comments

Help I accidentally a wigglegram

https://lmao.center/blog/wiggle-accidents/
348•gregsadetsky•2d ago•74 comments

Did my old job only exist because of fraud?

https://david.newgas.net/did-my-old-job-only-exist-because-of-fraud/
664•advisedwang•15h ago•287 comments

Munich 1991: The Roots of the Current AI Boom

https://people.idsia.ch/~juergen/ai-boom-roots-munich-1991.html
128•tosh•2d ago•48 comments

Apertus – Open Foundation Model for Sovereign AI

https://apertvs.ai/
451•T-A•15h ago•150 comments

Investors get real-time view of UK bond market activity for the first time

https://www.fca.org.uk/news/press-releases/investors-get-real-time-view-uk-bond-market-activity-f...
59•monkeydust•5h ago•23 comments

There is minimal downside to switching to open models

https://www.marble.onl/posts/cancel_claude.html
285•amarble•16h ago•236 comments

Manticore Search 27.1.5: Auth, sharding, conversational and faster vector search

https://manticoresearch.com/blog/manticore-search-27-1-5/
14•snikolaev•2h ago•0 comments

Sakana Fugu

https://sakana.ai/fugu/
149•Finbarr•11h ago•92 comments

Writing Postcards with a 3D Printer

https://severinbucher.com/posts/writing-postcards-with-a-3d-printer/
32•typesafeJ•3d ago•15 comments

My 1992 view of the problems of computer programming in 1992

https://blog.plover.com/prog/fortran-i.html
51•speckx•2d ago•12 comments

Memory Safe Inline Assembly

https://fil-c.org/inlineasm
133•pizlonator•2d ago•30 comments

Everything is logarithms

https://alexkritchevsky.com/2026/05/25/everything-is-logarithms.html
250•E-Reverance•16h ago•52 comments

Identity verification on Claude

https://support.claude.com/en/articles/14328960-identity-verification-on-claude
809•bathory•1d ago•678 comments

Good results fine tuning a local LLM like Qwen 3:0.6B to categorize questions

https://www.teachmecoolstuff.com/viewarticle/fine-tuning-a-local-llm-to-categorize-questions
166•dev-experiments•14h ago•32 comments

Lisp in the Rust Type System

https://github.com/playX18/lisp-in-types/
83•quasigloam•2d ago•4 comments

Danish privacy activist Lars Andersen raided by police

https://twitter.com/LarsAnders1620/status/2068208864747540516#m
311•I_am_tiberius•8h ago•262 comments

JSON-LD explained for personal websites

https://hawksley.dev/blog/json-ld-explained-for-personal-websites/
239•ethanhawksley•18h ago•75 comments

UTFS: A Tar-Like File System for Embedded Systems (2025)

https://clisystems.com/article-UTFS-intro/
12•zdw•4d ago•6 comments

Japanese verb conjugation the simple hard way

https://underreacted.leaflet.pub/3mmevu6woys27
122•valzevul•14h ago•184 comments

Show HN: Teach your kids perfect pitch

https://github.com/paytonjjones/bsharp
165•paytonjjones•1d ago•110 comments

How I play video games with spinal muscular atrophy

https://www.openassistivetech.org/how-i-actually-play-video-games-with-sma-the-tools-i-use-every-...
133•dannyobrien•3d ago•17 comments

Efficient C++ Programming for Modern 64-bit CPUs: Chapter 4/part 2

https://6it.dev/blog/infographics-operation-costs-in-cpu-clock-cycles-take-2-80736
76•birdculture•2d ago•17 comments

Minecraft: Java Edition 26.2, the first version with Vulkan 1.2

https://www.minecraft.net/en-us/article/minecraft-java-edition-26-2
171•ObviouslyFlamer•5d ago•72 comments

Why Drawing Tablet Brands Won't Collaborate on Linux Floss Drivers

https://www.davidrevoy.com/article1154/why-drawing-tablet-brands-wont-collaborate-on-linux-floss-...
12•Tomte•1h ago•0 comments

PowerFox Browser

https://powerfox.jazzzny.me/
150•thisislife2•15h ago•42 comments

Show HN: Criterion Closet as a website – pull any of 1,247 films off the shelf

https://the-criterion-closet.vercel.app
145•olievans•1d ago•45 comments

Rent collections are down in New York

https://www.politico.com/news/2026/06/21/rent-collections-are-down-in-new-york-and-no-ones-sure-w...
101•JumpCrisscross•15h ago•412 comments
Open in hackernews

UTFS: A Tar-Like File System for Embedded Systems (2025)

https://clisystems.com/article-UTFS-intro/
12•zdw•4d ago

Comments

voidUpdate•1h ago
One of my pet peeves is people using the letter "u" to mean micro. Its a greek letter mu, "μ", and seeing as the entire thing is capitalised here, it could also be "Μ" (uppercase greek mu, not uppercase latin M)
ale42•1h ago
The problem is that µ is usually hard to type (unless you have a Greek keyboard or a custom keyboard mapping). This said, although I tolerate stuff like "47 uF" in electronic schematics (also because legacy software didn't even allow the µ symbol), I definitely find horrible to see stuff like "us" instead of "µs" in an article.
voidUpdate•1h ago
I just googled it to type my comment. And if you're using it enough to need quick access, you can do alt + 0181 on your numpad on a windows system
laveur•53m ago
And it's option-m on a Mac.
ale42•1h ago
Interesting. The header size seems big for low-resources embedded systems (e.g. with only 256 bytes of EEPROM). I'd rather use a file identifier (e.g. a 8-bit number) to identify what a file is doing instead of arbitrary names.
q3k•1h ago
I don't think there's anything novel here?

It's one of those things that every embedded dev kind of cobbles together on their own as they discover the limit of struct arrays stored in EEPROM.

Except this one actually seems worse in some ways, because to find a file you have to keep following what is effectively a single linked list of file headers until you find the file you need.

The authors even acknowledge this is just a copy of tar's approach, and even acknowledge that that was in turn done this way due to a lack of random seeking on tape systems at the time. But a microcontroller's EEPROM/SPI/... data is nothing like this? You can just do arbitrary seeks. So I'm not sure what they were going for here.

The implementation is also full of obvious bugs that will cause crashes or hangs or worse when operating on an untrusted or simply just corrupted filesystem: https://github.com/clisystems/utfs/blob/5f1a6f049a0ca5435afb...