frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Flush door handles are the car industry's latest safety problem

https://arstechnica.com/cars/2025/09/flush-door-handles-are-the-car-industrys-latest-safety-problem/
2•mgh2•6m ago•0 comments

Functional Data Structures and Algorithms: a Proof Assistant Approach

https://fdsa-book.net/
1•SchwKatze•8m ago•0 comments

Show HN: Calcumake – A 3D print pricing calculator (Rails and Kamal)

https://calcumake.com/
1•moabjp•12m ago•0 comments

Back End Vulnerabilities of Snype Expose User Data and Alleged Shill Bidding

https://www.elitefourum.com/t/backend-vulnerabilities-of-snype-expose-user-information-alleged-pr...
1•donsupreme•14m ago•0 comments

Joint Embedding Predictive Architecture (JEPA) for AGI

https://www.turingpost.com/p/jepa
1•andsoitis•15m ago•0 comments

Terrestrials: The Trio

https://radiolab.org/podcast/terrestrials-the-trio240726
1•nkzednan•15m ago•0 comments

Iceberg, the Right Idea – The Wrong Spec

https://www.database-doctor.com/posts/iceberg-is-wrong-1.html
1•zX41ZdbW•19m ago•0 comments

In Which I Defend Fruit's Honor

https://mdickens.me/2025/06/08/defending_fruit%27s_honor/
1•surprisetalk•21m ago•0 comments

It Hurts the Face

https://lmnt.me/blog/it-hurts-the-face.html
1•surprisetalk•21m ago•0 comments

AHC056 Participation Record and Explanation of First Place Solution

https://blog.oimo.io/2025/11/22/ahc056/
1•surprisetalk•21m ago•0 comments

Migrating the Main Zig Repository from GitHub to Codeberg

https://ziglang.org/news/migrating-from-github-to-codeberg/
34•todsacerdoti•24m ago•6 comments

Lawsuit Challenges San Jose's Warrantless ALPR Mass Surveillance

https://www.eff.org/press/releases/lawsuit-challenges-san-joses-warrantless-alpr-mass-surveillance
4•duxup•25m ago•1 comments

Let's Rebuild the MySQL Community Together

https://www.percona.com/blog/lets-rebuild-the-mysql-community-together/
1•zX41ZdbW•27m ago•0 comments

The Iceberg Index: Measuring Workforce Exposure Across the AI Economy

https://arxiv.org/abs/2510.25137
1•gumshoe30•27m ago•0 comments

Show HN: Calisthenics Memory – Open-source bodyweight training tracker

https://codeberg.org/Gonbei774/CalisthenicsMemory
1•Gonbei774•28m ago•0 comments

Show HN: TwitterXZ – clean, fast Twitter/X video downloader(free and no signup)

https://twitterxz.com
1•mrasong•30m ago•0 comments

Sam Altman's Business Buddies Are Getting Burned

https://www.bloomberg.com/opinion/articles/2025-11-26/sam-altman-s-business-buddies-are-getting-b...
3•petethomas•32m ago•0 comments

Lasagna Cell

https://kaiserscience.wordpress.com/chemistry/electrochemistry/lasagna-cell/
2•choult•33m ago•0 comments

The Tesla Model Y Just Scored the Worst Reliability Rating in a Decade

https://www.autoblog.com/news/the-bestselling-tesla-model-y-just-scored-the-worst-reliability-rat...
19•whynotmaybe•39m ago•11 comments

Louise Herreshoff

https://en.wikipedia.org/wiki/Louise_Herreshoff
1•petethomas•40m ago•0 comments

Why I'm Building an App Platform for Robot Vacuums Instead of Humanoids

https://ovsy.com/posts/why-im-building-an-app-platform-for-robot-vacuums-instead-of-humanoids.html
1•iliaov•42m ago•1 comments

S&P cuts Tether stablecoin rating to 'weak' on disclosure gaps

https://www.reuters.com/business/finance/tethers-stablecoin-downgraded-weak-sp-assessment-2025-11...
4•JumpCrisscross•44m ago•0 comments

Rich and dynamic user interfaces with Flutter and generative UI

https://blog.flutter.dev/rich-and-dynamic-user-interfaces-with-flutter-and-generative-ui-178405af...
1•andsoitis•49m ago•0 comments

The 'Quiet Catastrophe' Brewing in Our Social Lives

https://podcasts.apple.com/us/podcast/the-ezra-klein-show/id1548604447?i=1000738305359
1•nkzednan•49m ago•0 comments

Flutter 3.38 and Dart 3.10: Building the future of apps

https://blog.flutter.dev/announcing-flutter-3-38-dart-3-10-building-the-future-of-apps-503429eeb685
1•andsoitis•50m ago•0 comments

Z-Image: Efficient Image Gen Model with Single-Stream Diffusion Transformer

https://tongyi-mai.github.io/Z-Image-homepage/
3•SerCe•50m ago•0 comments

OSMU Community member posts proof that certain Bitcoin mining pools are fugazi

https://github.com/mweinberg/stratum-speed-test/tree/main/findings
2•metaprinter•52m ago•0 comments

bonsai_term: A library for building dynamic terminal apps by Jane Street

https://github.com/janestreet/bonsai_term
2•azhenley•52m ago•0 comments

Solar's growth in US almost enough to offset rising energy use

https://arstechnica.com/science/2025/11/solars-growth-in-us-almost-enough-to-offset-rising-energy...
7•pseudolus•54m ago•0 comments

"we are not enron" says nvidia [video]

https://www.youtube.com/watch?v=ThUNhjblo24
3•xqcgrek2•57m ago•0 comments
Open in hackernews

Packed Data Support in Haskell

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

Comments

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

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

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