frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Iran threatens to hit Gulf states if US launches new strikes

https://www.reuters.com/world/middle-east/iran-threatens-hit-gulf-states-if-us-launches-new-strik...
2•mapping365•1m ago•0 comments

Disney and TikTok strike deal to let creators make videos with its characters

https://www.cnn.com/2026/08/05/media/disney-tiktok-partnership
1•1659447091•5m ago•0 comments

Wireless retinal implant approved for sale across 30 countries

https://newatlas.com/medical-tech/vision-restoring-retinal-implant-approval-europe/
1•geox•6m ago•0 comments

Notes on Engineering leadership

https://ianmccrystal.com/posts/notes-on-engineering-leadership/
1•matv•6m ago•0 comments

Trump pushes ahead on false claims that Reflecting Pool was vandalized

https://apnews.com/article/trump-pirro-reflecting-pool-3703eaedddf580f32ff9aca33bc11851
9•petethomas•11m ago•0 comments

Will You Become an Idol? Build your Football player from this game

https://www.idolojuego.com/
1•jeyzolo•12m ago•1 comments

Private LLM in a TEE, verified against Intel's root with no cloud in the chain

https://505labs.com/blog/private-llm-inside-a-tee
1•galgantar•12m ago•0 comments

The silent failure taxonomy: an autonomous pipeline's 32 ways of faking success

https://claude.ai/code/artifact/f66e6308-e81b-40fb-9474-b2b840cb4399
1•IgorVoytyuk•14m ago•0 comments

For an app claiming end-to-end encryption, what evidence would earn your trust?

2•Brandon-Coll•18m ago•0 comments

NASA Engineers Help Prolong Voyager 2's Science Mission

https://science.nasa.gov/blogs/voyager/2026/08/04/nasa-engineers-help-prolong-voyager-2s-science-...
1•sohkamyung•19m ago•0 comments

Birds and Frogs in Physics

https://3quarksdaily.com/3quarksdaily/2020/11/birds-and-frogs-in-physics.html
1•geneticdrifts•22m ago•1 comments

OpenAI, Anthropic AI agents implicated in new security breaches

https://www.reuters.com/legal/litigation/openai-anthropic-ai-agents-implicated-new-security-breac...
2•tagyro•24m ago•0 comments

Worth Accepting: Evaluating Mellum at JetBrains

https://evalovernite.substack.com/p/worth-accepting-mellum
1•scoresmoke•26m ago•0 comments

Unified Neuro Symbolic Engine AGPL 3.0

https://zenodo.org/records/21809861
1•hiddenarchitect•27m ago•0 comments

How to Improve the AI Frontier

https://www.chaidhat.com/blog
1•chaidhat•27m ago•0 comments

AI companies destroy physical books – let's scan rare books before it's too late

https://annas-archive.gl/blog/physical-destruction.html
3•EffrafaxOfWug•27m ago•2 comments

SpaceX Rocket Crashes into Moon

https://apnews.com/article/spacex-rocket-moon-crash-elon-musk-d64a98138fd19241700461c87b49e201
3•jumploops•27m ago•0 comments

Repurpose Your VR Content for Any Screen by Converting to Standard Video

https://news.qencode.com/posts/repurpose-your-vr-content-for-any-screen-by-converting-to-standard...
1•QencodeCorp•27m ago•0 comments

Modelregistry: Decentralizing distribution of open-source AI models

https://github.com/marella/modelregistry
1•simonpure•29m ago•0 comments

BasicSync and Synctrain: solid apps for bringing Syncthing to phones

https://manualdousuario.net/en/basicsync-android-synctrain-ios-syncthing-apps/
1•rpgbr•29m ago•0 comments

Impact Drones: Air Defense as a Service for Civilian Infrastructure

https://www.ycombinator.com/launches/SKo-impact-drones-air-defense-as-a-service-for-civilian-infr...
1•atlasunshrugged•30m ago•1 comments

Decimen Optical Transfer: fountain-coded QR file transfer

https://github.com/bashalarmistalt/decimen-optical-transfer/
1•rzk•32m ago•0 comments

No One Can Afford to Make Myst Games Anymore

https://www.wired.com/story/no-one-can-afford-to-make-myst-games-anymore/
2•littlexsparkee•34m ago•1 comments

El Nino Live

https://www.elninolive.com
2•Noaidi•39m ago•1 comments

Voice mode for Claude Code. Claude Code now answers you like a real person

https://heyski.io/
3•pattern-ai•40m ago•0 comments

Extinct toad from the Ice Age discovered at Los Angeles' La Brea Tar Pits

https://www.cnn.com/2026/08/05/science/ice-age-toad-la-brea-pits
3•1659447091•40m ago•0 comments

DuckDuckGo launches glasses and promises they're private

https://manualdousuario.net/en/duckduckgo-oculos-de-sol-normais/
3•rpgbr•41m ago•0 comments

The New DeepSeek Moment

https://cuecloud.substack.com/p/the-new-deepseek-moment-and-what
2•krav-sales•41m ago•0 comments

The Hidden Tax of Memory in Model Inference

https://cuecloud.substack.com/p/the-hidden-tax-of-memory-in-model
3•krav-sales•42m ago•0 comments

Literary Sins

https://www.thedial.world/articles/news/seven-literary-sins
1•lermontov•43m ago•0 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?