frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Mental Health Clothing Brand

https://nosaddays.com/
1•samdreamin•2m ago•1 comments

The uphill climb of making diff lines performant

https://github.blog/engineering/architecture-optimization/the-uphill-climb-of-making-diff-lines-p...
1•angristan•4m ago•0 comments

How the Apple Watch defined modern health tech

https://www.theverge.com/column/906391/apple-watch-optimizer-apple-50-health-tech-wearables
1•brandonb•6m ago•0 comments

NextCloud, Proton and others fork OnlyOffice as true sovereign office suite

https://nextcloud.com/blog/press_releases/industry-initiative-launches-euro-office-as-true-sovere...
1•maxloh•6m ago•0 comments

Oracle Files H-1B Visa Petitions Amid Mass Layoffs

https://nationaltoday.com/us/tx/austin/news/2026/04/03/oracle-files-thousands-of-h-1b-visa-petiti...
3•kklisura•6m ago•0 comments

Artemis II Multimedia: Crew Photos, Videos and Mission Highlights

https://www.nasa.gov/artemis-ii-multimedia/
1•mpweiher•8m ago•0 comments

Show HN: Screenshot web components with one click

https://chromewebstore.google.com/detail/webcap/hiofbhgfmcaiohmbdlajagfbhkikpcim
1•ayakut•9m ago•0 comments

DropSmith – Generate structured NPC dialogue for games via MCP

https://www.npmjs.com/package/dropsmith-mcp
1•dropsmith•10m ago•0 comments

Show HN: Language Operator – Kubernetes operator for managing agents at scale

https://github.com/language-operator/language-operator
2•fretlessjazz•12m ago•0 comments

Carnus: Exploring the Privacy Threats of Browser Extension Fingerprinting [pdf]

https://www.cs.uic.edu/~polakis/papers/karami-ndss21.pdf
2•1vuio0pswjnm7•12m ago•0 comments

Run multi-service projects locally with AI-friendly unified dashboard

https://github.com/ykosyakov/simple-local
2•ykosyakov•14m ago•0 comments

Automatic Textbook Formalization

https://github.com/facebookresearch/repoprover
3•tzury•14m ago•1 comments

A simple and fast terminal-based note-taking app, build with rust

https://github.com/bakudas/ztlgr
1•bakudas•14m ago•0 comments

Show HN: LangChain Is Dead, Long Live TmuxIsFree

https://github.com/cochranblock/tmuxisfree
1•cochranblock•14m ago•0 comments

The Great Human Divorce

https://earthchronicles.substack.com/p/the-great-human-divorce
1•taguniversalsw•15m ago•1 comments

OpenAI's Fidji Simo Is Taking Medical Leave Amid an Executive Shake-Up

https://www.wired.com/story/openais-fidji-simo-is-taking-a-leave-of-absence/
1•philip1209•16m ago•0 comments

LLM coding is the wrong layer of abstraction

https://bbuyukliev.blogspot.com/2026/04/llm-coding-is-wrong-layer-of-abstraction.html
1•bluetomcat•16m ago•1 comments

Pupils in England losing their thinking skills because of AI, survey suggests

https://www.theguardian.com/technology/2026/apr/02/pupils-england-losing-thinking-skills-because-...
6•gnabgib•16m ago•0 comments

Tracing a Coordinated BLE Device Deployment Across Los Angeles

https://github.com/AndriiKempa/BLEIOT/discussions/34
1•KempaAndrii•16m ago•0 comments

Show HN: Autheona – The API That Stops Fake Sign-Ups

https://autheona.com/
1•lasgawe•16m ago•0 comments

Bike Safety Rules in Cities

https://decasia.org/tech/2026/04/bike-safety.html
1•decasia•19m ago•0 comments

Gajim 2.4.5 has been released – GTK XMPP/Jabber Chat Client – Communication

https://gajim.org/posts/2026-03-30-gajim-2.4.5-released/
1•neustradamus•19m ago•0 comments

Can a machine "understand" like a human? The Chinese room argument

https://en.wikipedia.org/wiki/Chinese_room
2•Muhammad523•20m ago•1 comments

A new Postcrossing stamp from the USA

https://www.postcrossing.com/blog/2026/03/31/a-new-postcrossing-stamp-from-the-usa
1•Tomte•24m ago•0 comments

New digital hall passes track bathroom breaks, gather data in NYC schools

https://gothamist.com/news/new-digital-hall-passes-track-bathroom-breaks-gather-data-in-nyc-schools
2•gnabgib•28m ago•1 comments

Show HN: Mrg – Clean miscellaneous files created by macOS

https://github.com/ilotoki0804/mrg
1•ilotoki0804•29m ago•0 comments

Review into mental health conditions, ADHD and autism: interim report

https://www.gov.uk/government/publications/independent-review-into-mental-health-conditions-adhd-...
1•irickt•30m ago•1 comments

New microwave frying technique could make French fries much healthier

https://www.sciencedaily.com/releases/2026/04/260402042803.htm
3•AdmiralAsshat•30m ago•0 comments

Show HN: Run Claude Code autonomously inside your Docker Compose stack (OSS)

https://github.com/sayil/dangerously
4•sayil•30m ago•0 comments

DiscoDB – Relational database stored 100% in a Discord guild

https://github.com/lasect/discodb
3•jedeusus•31m ago•0 comments
Open in hackernews

Packed Data Support in Haskell

https://arthi-chaud.github.io/posts/packed/
77•matt_d•11mo ago

Comments

nine_k•11mo ago
> Introducing the ‘packed’ data format, a binary format that allows using data as it is, without the need for a deserialisation step. A notable perk of this format is that traversals on packed trees is proven to be faster than on ‘unpacked’ trees: as the fields of data structures are inlines, there are no pointer jumps, thus making the most of the L1 cache.

That is, a "memory dump -> zero-copy memory read" of a subgraph of Haskell objects, allowing to pass such trees / subgraphs directly over a network. Slightly reminiscent of Cap'n Proto.

90s_dev•11mo ago
We are always reinventing wheels. If we didn't, they'd all still be made of wood.
Zolomon•11mo ago
They mention this in the article.
spockz•11mo ago
It reminds me more of flat buffers though. Does protobuf also have zero allocation (beyond initial ingestion) and no pointer jumps?
cstrahan•11mo ago
No, one example of why being variable sized integers.

See https://protobuf.dev/programming-guides/encoding/

carterschonwald•11mo ago
One thing that sometimes gets tricky in these things is handling Sub term sharing. I wonder how they implemented it.
tlb•11mo ago
> the serialised version of the data is usually bigger than its in-memory representation

I don’t think this is common. Perhaps for arrays of floats serialized as JSON or something. But I can’t think of a case where binary serialization is bigger. Data types like maps are necessarily larger in memory to support fast lookup and mutability.

nine_k•11mo ago
I suppose all self-describing formats, like protobuf, or thrift or, well, JSON are bigger than the efficient machine representation, because they carry the schema in every message, one way or another.
IsTom•11mo ago
If you use a lot of sharing in immutable data it can grow a lot when serializing. A simple pathological example would be a tree that has all left subtrees same as the right ones. It takes O(height) space in memory, but O(2^height) when serialized.
gitroom•11mo ago
honestly i wish more stuff worked this way - fewer hops in memory always makes me happy
lordleft•11mo ago
This was very well written. Excellent article!
NetOpWibby•11mo ago
Is this like MessagePack for Haskell?