frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Git Hash Chain Malleability

https://arxiv.org/abs/2607.02820
1•xqb64•58s ago•0 comments

Neural Geometry in Vision Models with Block-Sparse Featurizers

https://www.goodfire.ai/research/bsf-vision
1•babelfish•1m ago•0 comments

J-Space: Where Claude silently performs reasoning steps

https://twitter.com/AnthropicAI/status/2074185358678364414
2•jhatax•5m ago•2 comments

Bond Traders Stunned as Losses on SpaceX's New Debt Keep Growing

https://www.bloomberg.com/news/articles/2026-06-26/bond-traders-stunned-as-losses-on-spacex-s-new...
1•1vuio0pswjnm7•7m ago•0 comments

APS-CYBER: A state-transition security platform to detect attacks before impact

https://www.apslogic.org/cyber.html
1•lombardo_e•8m ago•0 comments

FrankenMarkdown

https://franken-markdown.com/
2•handfuloflight•13m ago•0 comments

Bees 'facial expressions' may be a sign of their inner lives

https://phys.org/news/2026-07-bees-facial.html
1•indynz•13m ago•0 comments

Why the rise of open source AI isn't hurting Anthropic yet

https://techcrunch.com/2026/07/07/why-the-rise-of-open-source-ai-isnt-hurting-anthropic-yet/
1•jack1689•15m ago•0 comments

Silent speech with ultrasound

https://alephneuro.com/blog/silent-speech
1•chrwn•15m ago•0 comments

Who's Keeping Fossil Fuels Alive? Taxpayers

https://www.bloomberg.com/opinion/articles/2026-07-05/who-s-really-keeping-fossil-fuels-alive-tax...
3•littlexsparkee•17m ago•1 comments

MIL – Moments in Life

https://mil.now/
1•untitled-now•18m ago•0 comments

Composing TLA+ Specifications with State Machines

https://www.hillelwayne.com/post/composing-tla/
1•Jimmc414•20m ago•0 comments

Constructing a lower-bound estimate of the global number of insect species

https://www.pnas.org/doi/10.1073/pnas.2524283123
1•rdmuser•21m ago•0 comments

The Wisdom of Holden Caulfield

https://www.theatlantic.com/books/2026/07/catcher-in-the-rye-75th-anniversary-holden-caulfield-ma...
2•petethomas•21m ago•0 comments

Create Your Language

https://conlang.app/
1•natbennett•22m ago•0 comments

Your Idea Is Brilliant, Your Idea Is Worthless (KS Lesson #204) (2016)

https://stonemaiergames.com/kickstarter-lesson-204-your-idea-is-brilliant-your-idea-is-worthless/
2•downbad_•25m ago•0 comments

U7in-32tb.224xlarge

https://instances.vantage.sh/aws/ec2/u7in-32tb.224xlarge?currency=USD
2•handfuloflight•30m ago•0 comments

Disney accuses US media regulator of trying 'to sit in the editor's chair'

https://www.ft.com/content/3b9be38f-0968-40f8-bb2c-a5ae2cc81cb4
5•petethomas•30m ago•0 comments

Qualcomm acquires Nexa AI, open-sources GenAI runtime for Hexagon NPUs

https://github.com/qualcomm/GenieX
3•BUFU•37m ago•1 comments

Chorus: A fast WAL for object storage

https://rockwotj.com/blog/chorus/
2•cbrewster•41m ago•0 comments

Google Earth Pro Desktop downloads will be unavailable starting June 2027

https://support.google.com/earth/thread/448773864/update-on-google-earth-pro-desktop-app-download...
5•KomoD•42m ago•0 comments

EU AI Act becomes applicable Aug 2: an engineering checklist

https://conformityengineering.com/playbook/
1•stevalsoto•42m ago•0 comments

Agent-CI: Run GitHub Actions on Your Machine

https://agent-ci.dev/
1•handfuloflight•43m ago•0 comments

Why I don't have a girlfriend: An application of the Drake Equation to love [pdf]

https://www.astro.sunysb.edu/fwalter/AST248/why_i_dont_have_a_girlfriend.pdf
2•kerim-ca•44m ago•0 comments

Graphene can hold multiple states of superconductivity, a new study finds

https://news.mit.edu/2026/graphene-can-hold-multiple-states-of-superconductivity-0629
3•rbanffy•45m ago•0 comments

Don't build your castle in other people's kingdoms (2021)

https://howtomarketagame.com/2021/11/01/dont-build-your-castle-in-other-peoples-kingdoms/
2•softwaredoug•45m ago•0 comments

Airbus to make first foray into engine manufacturing with hydrogen tie-up

https://www.ft.com/content/e8be97c7-af28-42f2-8d81-ce619d4c0de1
1•petethomas•45m ago•1 comments

Own Your Weights

https://moai.studio/blog/posts/own-your-weights.html
1•ionwake•49m ago•0 comments

The Science Behind Why Soccer Players the 26 World Cup Are Cutting Their Socks

https://www.wired.com/story/the-science-behind-why-soccer-players-at-the-2026-world-cup-are-cutti...
3•susiecambria•49m ago•1 comments

Show HN: Convergo – plan/build review loops for coding agents

https://github.com/gomilesf/convergo
1•gomilesfd•50m 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?