frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: Async version for Rust std::sync and more

https://github.com/fast/mea
1•tison•16m ago•0 comments

Safepay: Jobs get done. Payments get released. No stress, no surprises

https://safepayhq.com/
1•Mahmudahmed•17m ago•0 comments

Verbal Knobs. We owe the answers we proxy

https://fnhipster.com/posts/verbal-knobs
1•fnhipster•19m ago•1 comments

Candy Desk

https://en.wikipedia.org/wiki/Candy_Desk
1•65•20m ago•0 comments

104 elite skydivers set world record in physics-defying formation

https://www.indiatoday.in/science/story/watch-104-elite-skydivers-set-world-record-in-physics-def...
1•ashishgupta2209•28m ago•0 comments

Show HN: Cryptopp-modern – maintained Crypto++ fork with BLAKE3, Argon2, CMake

https://github.com/cryptopp-modern/cryptopp-modern
1•CoraleDev•31m ago•0 comments

Built a Free, Unlimited Screen Recorder Because Everything Else Annoyed Me

https://www.indiehackers.com/post/built-a-free-unlimited-screen-recorder-because-everything-else-...
2•showesome•37m ago•1 comments

Microsoft CEO taps advisor to 'rethink' the company's business for the AI era

https://www.businessinsider.com/nadella-taps-adviser-rethink-new-economics-ai-memo-shows-2025-11
2•SilverElfin•41m ago•0 comments

Baikonur pad damaged in Soyuz launch to ISS

https://spacenews.com/baikonur-pad-damaged-in-soyuz-launch-to-iss/
4•Anon84•44m ago•0 comments

"Disagree and Let's See"

https://mollyg.substack.com/p/disagree-and-lets-see
1•benwerd•48m ago•0 comments

The Writing Is on the Wall for Handwriting Recognition

https://newsletter.dancohen.org/archive/the-writing-is-on-the-wall-for-handwriting-recognition/
1•myth_drannon•48m ago•0 comments

The Gist of Western Philosophy

https://youtu.be/7XcwlDnwai0
2•m-hodges•54m ago•0 comments

Tkr.life

https://tkr.life/
1•agendacreativa•56m ago•1 comments

Tell HN: Regrets. Think carefully about how you spend your time

27•anonymous_ibex•1h ago•3 comments

Explosive Skill Acquisition

https://bengoldhaber.substack.com/p/explosive-skill-acquisition
1•lindowe•1h ago•0 comments

My Seeker Phone

https://avc.xyz/my-seeker-phone
2•wslh•1h ago•0 comments

Stopping bad guys from using my open source project (feedback wanted)

https://evanhahn.com/stopping-bad-guys-from-using-my-open-source-project/
15•emschwartz•1h ago•22 comments

Easily duped by his Stanford veneer with O realizing he's a CCP mouthpiece

https://twitter.com/Byron_Wan/status/1993489995156647971
1•737min•1h ago•1 comments

The Beguiling, Misunderstood Theremin

https://www.nytimes.com/2025/11/29/arts/music/theremin-instrument.html
2•Kaibeezy•1h ago•2 comments

EU to Target Apple Maps and Apple Ads Next

https://www.macrumors.com/2025/11/28/eu-targets-apple-maps-and-apple-ads/
2•Sir_Twist•1h ago•0 comments

Couple allegedly used hidden camera, earpieces to win $1.18M from Crown casino

https://www.theguardian.com/australia-news/2025/nov/30/couple-from-kazakhstan-allegedly-used-hidd...
3•defrost•1h ago•0 comments

Meshtastic

https://meshtastic.org/
12•debo_•1h ago•1 comments

YouTube Recommendation Algo

1•solarized•1h ago•1 comments

A new Little Prince museum has opened its doors in Switzerland

https://www.lepetitprince.com/en/events-around-the-world/a-new-little-prince-museum-has-opened-it...
5•gnabgib•1h ago•0 comments

Software Is Not the Service

https://green.spacedino.net/software-is-not-the-service/
3•surprisetalk•1h ago•0 comments

What's the Deal with Euler's Identity?

https://lcamtuf.substack.com/p/whats-the-deal-with-eulers-identity
2•surprisetalk•1h ago•0 comments

ASML Got EUV Lithography

https://www.factorysettings.org/p/how-asml-got-euv-lithography
2•surprisetalk•1h ago•0 comments

Sega Master System: Fancier Tile Graphics

https://bumbershootsoft.wordpress.com/2025/11/29/sega-master-system-fancier-tile-graphics/
1•ibobev•1h ago•0 comments

A Circle in the Hyperbolic Plane

https://www.johndcook.com/blog/2025/11/28/hyperbolic-circle/
2•ibobev•1h ago•0 comments

Monero Subaddresses

https://www.johndcook.com/blog/2025/11/28/monero-subaddresses/
2•ibobev•1h 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?