frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Europe's warm nights nearly doubled this summer

https://emot.substack.com/p/europes-warm-nights-nearly-doubled
1•emot•4m ago•0 comments

Anyone Got a Fenty.dev Invite?

1•penguinsnetwork•4m ago•0 comments

The Distractor

http://booktwo.org/notebook/the-distractor/
1•zetamax•5m ago•0 comments

Show HN: Clownbid.lol – pay to be the biggest clown on the internet

https://clownbid.lol/
1•nadermx•6m ago•0 comments

Give Your Coding Agent a Journal

https://doug.sh/posts/give-your-coding-agent-a-journal/
2•dougcalobrisi•7m ago•0 comments

If You Knew God Exists, Wouldn't You Become a Priest?

https://joecmarshall.com/posts/if-you-knew-god-exists-wouldnt-you-become-a-priest/
3•CoreSet•8m ago•0 comments

Are We Learning to Think Less?

https://socketstudy.com/sparks/are-we-learning-to-think-less/
1•wingrove•9m ago•1 comments

The Ternus Era at Apple Begins, but Cook Isn't Leaving

https://www.bloomberg.com/news/videos/2026-08-30/the-ternus-era-at-apple-begins-but-cook-isn-t-le...
2•sbulaev•13m ago•0 comments

Will anybody use AI as much as coders?

https://www.economist.com/business/2026/08/30/will-anybody-use-ai-as-much-as-coders
2•tagawa•13m ago•1 comments

Show HN: Break 5, the addictive, 5 minute, daily word game

https://break5.co.uk/
1•dwgebler•15m ago•0 comments

West Point prof fired for continuing to teach human causes of climate change

https://www.theguardian.com/us-news/2026/aug/27/west-point-climate-scientist-fired
2•randycupertino•17m ago•0 comments

Israel Is Running a Synthetic Think Tank to Influence AI Search Results

https://www.404media.co/israel-is-running-a-synthetic-think-tank-to-influence-ai-search-results/
4•Jimmc414•18m ago•0 comments

Show HN: Open-source hands-free mouse control with Tracky Mouse

https://github.com/1j01/tracky-mouse/
1•1j01•20m ago•0 comments

Debian developer resigns after corporate LLM use without disclosure wins vote

https://lists.debian.org/debian-devel/2026/08/msg00318.html
6•majorchord•22m ago•1 comments

Papers with wrong IDs on ArXiv more common

https://www.reddit.com/r/learnmachinelearning/comments/1w2u68z/heads_up_some_papers_are_citing_co...
4•marysminefnuf•27m ago•0 comments

Show HN: St. Louis Food Map

https://stlouing.com/food/
1•stlouing•28m ago•0 comments

Building software factories (with no slop)

https://twitter.com/dzhng/status/2090252351533973768/
1•zatkin•31m ago•0 comments

Packman package manager to be discontinued on 2026-12-31

https://lists.links2linux.de/pipermail/packman/2026-August/018314.html
1•epenn•31m ago•0 comments

"A big win for Android interoperability"

https://www.osnews.com/story/145665/a-big-win-for-android-interoperability/
2•aryonoco•32m ago•0 comments

Lady Gaga is now an AI-longevity biotech founder

https://www.regeneration.ai/p/lady-gaga-is-now-an-ai-longevity
1•Gaishan•35m ago•0 comments

The tests passed. The extension was still broken

https://channelfence.app/blog/the-tests-passed-the-extension-was-still-broken/
1•ChannelFence•37m ago•0 comments

No-Code Self-Documenting Makefiles

https://github.com/bahmanm/bmakelib/releases/tag/v0.9.0
1•bahman-m•37m ago•0 comments

Show HN: What Apple's OS updates silently change in the on-device AI model

https://umer9538.github.io/underfoot/
2•Umer2521•38m ago•0 comments

How to build a diffusion language model

https://kuleshov-group.github.io/blog/blog/2026/how-to-build-a-diffusion-language-model/
2•volodia•38m ago•0 comments

The Aviation Herald was sued

https://avherald.com/h?article=53c8958a&opt=0
1•kotaKat•40m ago•0 comments

Show HN: I timestamped 34 trading strategy sweeps before running them

https://mobinmoharami.github.io/sweep-registry/
1•mobinmohrarami•40m ago•0 comments

Matrox: Graphics for Professionals

https://www.abortretry.fail/p/matrox
3•BirAdam•40m ago•0 comments

California Passes AB-1856 for Open-Source Relief over Age Verification

https://www.phoronix.com/news/California-AB-1856-Passes
4•birdculture•56m ago•0 comments

Generating scenarios for extreme events, without extreme data

https://news.mit.edu/2026/generating-scenarios-extreme-events-without-extreme-data-0824
1•MarcoDewey•1h ago•0 comments

Accidental Aesthetics and Romance of Power Wires: Infrastructure Is Sexy

https://www.governance.fyi/p/accidental-aesthetics-and-romance
6•crescit_eundo•1h 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?