frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Nasal Demons

http://www.catb.org/esr/jargon/html/N/nasal-demons.html
1•djha-skin•2m ago•0 comments

Foreign National Gets 20 Yrs for Trafficing Nuclear, Narcotics, and Firearms

https://www.justice.gov/opa/pr/foreign-national-sentenced-20-years-prison-conspiring-traffic-nucl...
1•737min•2m ago•0 comments

Show HN: Moji – A read-it-later app with self-organizing smart collections

https://moji.pcding.com
1•desmonding•2m ago•0 comments

The free-energy principle: a unified brain theory?

https://www.nature.com/articles/nrn2787
1•devy•5m ago•0 comments

Data Center Signal

https://datacentersignal.com/
1•edwinorange•5m ago•0 comments

Show HN: MHA OC Maker – Create My Hero Academia Original Characters with AI

https://aiocmaker.com/oc-maker/mha-oc-maker
1•newsapling1988•6m ago•0 comments

Can A.I. Be Pro-Worker?

https://www.newyorker.com/news/the-financial-page/can-ai-be-pro-worker
3•randomrainbow•6m ago•1 comments

Uni-1, Luma's first unified understanding and generation model

https://lumalabs.ai/
1•aryamansharda•7m ago•0 comments

AI benchmarks: What Jellyfish learned from analyzing 20M PRs [video]

https://www.youtube.com/watch?v=DIHdZCj_xoc
1•mooreds•13m ago•0 comments

Ends and means; an inquiry into the nature of ideals (1969)

https://archive.org/details/endsmeansinquiry0000huxl
1•measurablefunc•13m ago•0 comments

Show HN: I made a design portfolio reviewer

https://www.evalv.ai/
2•eldardesign•14m ago•2 comments

Parsync, a tool for parallel SSH transfers – 7x faster than rsync

https://github.com/AlpinDale/parsync
1•AlpinDale•14m ago•0 comments

Show HN: Rent Your Idle OpenClaw Browser to AI Agents

https://rentmybrowser.dev
1•0xpasho•18m ago•0 comments

The largest emergency stockpile of crude oil is quickly falling apart

https://www.spglobal.com/energy/en/news-research/blog/crude-oil/061516-a-rare-tour-of-the-strateg...
1•KnuthIsGod•20m ago•0 comments

Show HN: A tool to make your text look fancy anywhere with Unicode

https://fontgen.cool/
2•liquid99•24m ago•0 comments

Statistical Uncertainties in the Non-Gravitational Acceleration of 3I/Atlas

https://arxiv.org/abs/2603.00782
1•Jimmc414•25m ago•0 comments

Codex Fast Mode – Increase GPT-5.4 Speed by 50% at 2x the cost

https://developers.openai.com/codex/speed/
2•prodigycorp•27m ago•0 comments

Show HN: Settle It – turn "Pizza or Thai?" into a shareable poll

https://settleit.now/
2•karlhills•30m ago•4 comments

Anthropic: Labor market impacts of AI – A new measure and early evidence [pdf]

https://cdn.sanity.io/files/4zrzovbb/website/dc7bcd0224644fce97cecb7f9e68dcd8434b35f1.pdf
2•jbredeche•32m ago•1 comments

Trump Bought Netflix Debt Amid Paramount's Fight for Warner Bros

https://www.hollywoodreporter.com/business/business-news/trump-bought-netflix-bonds-amid-paramoun...
10•geox•33m ago•2 comments

Windows key seller sentenced to 22 months in prison

https://www.justice.gov/usao-mdfl/media/1333961/dl?inline
4•doener•34m ago•2 comments

OpenWrt 25.12.0 – Stable Release

https://openwrt.org/releases/25.12/notes-25.12.0
3•FeistySkink•36m ago•1 comments

How to Install and Start Using LineageOS on Your Phone

https://lockywolf.net/2026-02-19_How-to-install-and-start-using-LineageOS-on-your-phone.d/index.html
4•todsacerdoti•37m ago•0 comments

Lise Meitner's Nuclear Vision

https://www.historytoday.com/archive/great-debates/lise-meitners-nuclear-vision
1•samizdis•39m ago•0 comments

Where things stand with the Department of War

https://www.anthropic.com/news/where-stand-department-war
66•surprisetalk•40m ago•29 comments

Third Kairos (Space One) launch fails

https://spacenews.com/third-kairos-launch-fails/
2•HardwareLust•40m ago•0 comments

The FCC Wants Your Next Customer Service Agent to Be in the U.S.

https://www.wsj.com/business/telecom/the-fcc-wants-your-next-customer-service-agent-to-be-in-the-...
2•petethomas•40m ago•1 comments

Show HN: Multicorn Shield – Open-source permissions and approvals for AI agents

https://github.com/multicorn-ai/multicorn-shield
1•rachelle-r•44m ago•1 comments

Vet

https://github.com/imbue-ai/vet
1•handfuloflight•44m ago•0 comments

Self-Learning Customer Engagement

1•davismartens•44m ago•0 comments
Open in hackernews

Packed Data Support in Haskell

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

Comments

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

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

carterschonwald•10mo ago
One thing that sometimes gets tricky in these things is handling Sub term sharing. I wonder how they implemented it.
tlb•10mo 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•10mo 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•10mo 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•10mo ago
honestly i wish more stuff worked this way - fewer hops in memory always makes me happy
lordleft•10mo ago
This was very well written. Excellent article!
NetOpWibby•10mo ago
Is this like MessagePack for Haskell?