frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Opus 5.5 turned Ozymandias into a cinematic browser animation

https://www.echohive.ai/ozymandias
1•echohive42•1m ago•0 comments

Who Wants Artificial?

https://blog.jim-nielsen.com/2026/who-wants-artificial/
1•Curiositry•7m ago•0 comments

Sandboxing with Minimal Effort

https://yorickpeterse.com/articles/sandboxing-with-minimal-effort/
1•thatslast•10m ago•0 comments

US Denmark agreement enhanced veto rights over Greenland econ and military

https://www.whitehouse.gov/briefings-statements/2026/09/agreement-between-the-government-of-the-u...
1•rzerowan•14m ago•0 comments

Making Linux prove a governed action before execution

https://github.com/KnowledgeeKZA3224/linux-coherence-gate
1•Knowledgee_KZA•20m ago•0 comments

Fpp – a utility to pick file paths out of command output

https://github.com/facebook/PathPicker
2•Curiositry•22m ago•0 comments

Pg_chdb, fast imports from object storage to Postgres using COPY

https://github.com/ClickHouse/pg_chdb
1•saisrirampur•23m ago•0 comments

Show HN: Is your repo giving coding agents two different answers?

https://www.zfinia.com/cursed
1•Aussie155•23m ago•0 comments

Google Found the Pages. ChatGPT Found the Entity

https://www.richresults.ai/same-entity-different-retrieval.html
2•spetschinka•29m ago•1 comments

Netflix is in the doldrums. A comeback is unlikely, Wells Fargo says

https://www.cnbc.com/2026/09/18/netflix-is-in-the-doldrums-a-comeback-is-unlikely-wells-fargo-say...
2•porridgeraisin•32m ago•0 comments

Irish data protection watchdog fines Google €403M over GDPR breaches

https://www.irishtimes.com/business/2026/09/21/irish-data-protection-watchdog-fines-google-403m-o...
2•1vuio0pswjnm7•36m ago•0 comments

TempleOS in 100 Seconds [video]

https://www.youtube.com/watch?v=h7gf5M04hdg
2•metadat•37m ago•0 comments

Silicon Valley Saw the iPhone Coming 13 Yrs Before Apple [video]

https://www.youtube.com/watch?v=34dAyDUglrI
3•bananaboy•38m ago•1 comments

Claude Pop – I'm Upping My P(Doom) [video]

https://www.youtube.com/watch?v=8j-hR4fJywU
2•z-mach9•39m ago•0 comments

Realtime Pathtracing in Octane

https://twitter.com/icelaglace/status/2102563197471584708
1•E-Reverance•41m ago•0 comments

TurboKain – A 1.2MB native radio astronomy pipeline that slices 17GB in 2.3s

https://github.com/ephemara/TurboKain
1•ephemara•42m ago•0 comments

Choice of over 600 LLMs across 9 providers

https://medium.com/@vektormemory/vektor-v1-9-5-is-live-your-choice-of-over-600-llms-across-9-prov...
1•vektormemory•46m ago•0 comments

Helium balloon lifts up to two tons of building material over Tibet's mountains

https://uk.news.yahoo.com/giant-helium-balloon-lifts-two-120039133.html
4•ksec•48m ago•0 comments

Show HN: Castrag – transcribe and semantically search a large podcast archive

https://github.com/snowmac/castrag
1•snow_mac•54m ago•0 comments

Show HN: Napkin – a scratchpad that holds texts and images for copy

https://github.com/sudomonas/napkin
2•ppnpm•56m ago•1 comments

Feynman-"what differs physics from mathematics" [video]

https://www.youtube.com/watch?v=B-eh2SD54fM
2•thelastgallon•1h ago•0 comments

What's Up with Liliputing?

https://liliputing.com/whats-up-with-liliputing-fall-2026-edition/
3•pmontra•1h ago•0 comments

America is in the wrong AI race with China

https://restofworld.org/2026/america-china-ai-race-trust/
5•billybuckwheat•1h ago•0 comments

-Delete-

https://www.thedailybeast.com/trump-humiliated-as-un-speech-bombs-with-bored-audience/
2•ksec•1h ago•3 comments

Big Banks Say They're Uneasy About People Shopping via AI Agents

https://gizmodo.com/big-banks-say-theyre-uneasy-about-people-shopping-via-ai-agents-2000815443
4•thm•1h ago•1 comments

LGBT tolerance slumps in the Netherlands as debate turns vicious

https://www.dutchnews.nl/2026/09/lgbt-tolerance-slumps-in-the-netherlands-as-debate-turns-vicious/
6•latexr•1h ago•1 comments

Show HN: Kern.md – Single-session long-running agent

https://github.com/oguzbilgic/kern-ai/blob/master/templates/KERN.md
1•obilgic•1h ago•0 comments

Anthropic classifiers prohibit kernel development

https://twitter.com/TheAhmadOsman/status/2102535871727857915/photo/1
9•nullbio•1h ago•2 comments

United Nations: AI Agents, Misalignment and the Risk of Losing Human Control [pdf]

https://www.un.org/independent-international-scientific-panel-ai/sites/default/files/2026-09/Them...
1•nsagent•1h ago•0 comments

Grammarly will send unhinged messages to all your users if you try to cancel

https://www.reddit.com/r/sysadmin/comments/1wjdpgx/psa_grammarly_will_send_unhinged_messages_to_all/
14•ksec•1h ago•1 comments
Open in hackernews

Packed Data Support in Haskell

https://arthi-chaud.github.io/posts/packed/
77•matt_d•1y ago

Comments

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

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

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