frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

GE Aerospace aircraft flies to mark high altitude hybrid-electric milestone

https://www.aerospacetestinginternational.com/news/ge-aerospace-aircraft-flies-at-farnborough-to-...
1•rbanffy•27s ago•0 comments

Mickey Mouse Sells a Bundle

https://www.marginpoints.com/essays/mickey-mouse-sells-a-bundle-hn
1•historian1066•1m ago•0 comments

First-ever X-rays in space offer hope for possible patients headed to the moon

https://www.space.com/space-exploration/human-spaceflight/1st-ever-x-rays-in-space-offer-hope-for...
1•gmays•1m ago•0 comments

The future of software isn't tests. It's proofs

https://github.com/astrio-labs/forall
2•Nolan_Lwin•2m ago•0 comments

How rare is a four leaf clover? [video]

https://www.youtube.com/watch?v=XfUFPHA0HIA
1•rwmj•2m ago•0 comments

Glassdoor is now part of Indeed

https://www.glassdoor.com/about/
1•mahdihabibi•2m ago•1 comments

Show HN: Chalk: a Mac app for technical diagrams with a built-in MCP for Claude

https://chalk.appkit.studio
2•davideweaver•3m ago•0 comments

A resource about cybernetics and the work of the father of the information age

https://www.norbertwiener.org/
1•stmw•5m ago•0 comments

Show HN: Dotflowy, the open source Workflowy alternative [video]

https://www.youtube.com/watch?v=S07dI6pIr_Q
2•campak•7m ago•1 comments

The Secret Origins of Amazon's Alexa

https://www.wired.com/story/how-amazon-made-alexa-smarter/
2•Anon84•7m ago•0 comments

Intelligence is not the main bottleneck

https://www.writingruxandrabio.com/p/intelligence-is-not-the-main-bottleneck
2•contemporary343•8m ago•0 comments

Charting RISC-V's Future in HPC

https://www.hpcwire.com/2026/07/20/charting-risc-vs-future-in-hpc/
1•rbanffy•8m ago•0 comments

Stages of Denial

https://nsl.com/papers/denial.html
1•veqq•9m ago•0 comments

METR introduces Expenditure Horizon metric

https://metr.org/blog/2026-07-21-expenditure-horizon/
1•qntmfred•10m ago•0 comments

We Don't Have to Die: Cryonics and Uploading – Allison Duettmann [video]

https://www.youtube.com/watch?v=knM7yHFH67o
1•turizzmo•12m ago•0 comments

Show HN: Claude Code built my ESP32 and fixed its UI by looking at a webcam

https://github.com/fcavalcantirj/claude-code-eyes
1•fcavalcantirj•15m ago•0 comments

Anaconda Acquires Kilo Code

https://www.anaconda.com/blog/anaconda-acquires-kilo-code
2•kristianp•17m ago•0 comments

Claude Opus 4.5 defied CEO, helped employee blow whistle about safety concerns

https://www.msn.com/en-us/news/technology/claude-opus-4-5-defied-its-ceo-and-helped-an-employee-b...
1•petethomas•18m ago•0 comments

No one wants to work in hospitality

https://chilblands.bearblog.dev/no-one-wants-to-work-in-hospitality/
2•speckx•19m ago•0 comments

Some more things about Django I've been enjoying

https://jvns.ca/blog/2026/07/21/more-nice-django-things/
1•surprisetalk•19m ago•0 comments

OpenAI announces models hacked Hugging Face during an eval

https://runtimewire.com/article/openai-announces-models-hacked-hugging-face-during-an-eval
2•ryanmerket•19m ago•1 comments

Now I Open source another desktop agent Teralexi

https://github.com/Naughty-Otters/Teralexi
1•teralexi•20m ago•0 comments

Taste Is the Spec

https://github.com/getlago/lago/wiki/Taste-is-the-spec
1•AnhTho_FR•20m ago•0 comments

Intel Compute Runtime Continues Building Out "Leo"

https://www.phoronix.com/news/Intel-CR-26.27.39122.11
1•rbanffy•22m ago•0 comments

Giant List of Classic Game Programmers Since 1992

https://dadgum.com/giantlist/
1•bookofjoe•22m ago•0 comments

Is Software Enshittified?

https://www.natemeyvis.com/is-software-enshittified/
3•speckx•24m ago•0 comments

120 users, 65 product submissions, and little traffic: what I learned

https://liftoapp.com/blog/120-users-65-product-submissions-very-little-traffic
1•riyadbkhsh•25m ago•0 comments

How did Apple cut launch time by 30% in iOS 27?

https://blog.jacobstechtavern.com/p/ios-27-launch-time
2•jakey_bakey•25m ago•0 comments

Sales of Valve's Steam Deck crater after recent price hike

https://arstechnica.com/gaming/2026/07/steam-deck-sales-are-losing-steam-since-mays-price-hike/
3•ViktorRay•25m ago•1 comments

Can a Candy Bar Price a Code Review?

https://blog.bolshakov.dev/2026/07/20/can-a-candy-bar-price-a-code-review.html
1•tema-bolshakov•26m 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?