frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Malaysia, Indonesia to Synchronise Cloud Seeding as Monsoon and El Niño Converge

https://www.malaymail.com/news/malaysia/2026/08/24/malaysia-indonesia-to-synchronise-haze-suppres...
1•nomilk•38s ago•0 comments

Writing Fast Attention Backward Kernel for 5090 in CUDA

https://hoanh.space/blog/attention-backward-5090-cuda/
1•hoanh•42s ago•0 comments

What to do (and not to do) when starting a new job

https://twitter.com/spakhm/status/2087162661481898093
1•tosh•1m ago•0 comments

Why MCP Code Mode Loses Cold, and Wins Warm

https://www.blacksmith.sh/blog/code-smith-code-mode
3•mrhether•3m ago•0 comments

The Boots Theory [video]

https://www.youtube.com/shorts/5BoNOKernpw
1•stefanv•3m ago•0 comments

How to succeed at an acquirer post-acquihire

https://twitter.com/spakhm/status/2091921711692140545
1•tosh•4m ago•0 comments

Using LLMs to Make the Emacs Web Browser Great Again

https://www.sammystraus.com/#using-llms-to-make-the-emacs-web-browser-great-again
1•sammy0910•4m ago•0 comments

LLM-native Markdown editor Mac app

https://www.benedictshegog.xyz/sidenote
1•bensg•6m ago•1 comments

Show HN: A path through time-series anomaly detection, z-scores to deep learning

https://github.com/JulienAu/anomaly-detection-tutorials
1•Julien-Au•7m ago•0 comments

Gatekeepers Are Dead, Long Live the Gatekeepers

https://brianschrader.com/archive/gatekeepers-are-dead-long-live-the-gatekeepers/
1•sonicrocketman•8m ago•1 comments

Show HN: GlassBox – what the browser reveals, and how identifiable you are

https://glassbox.codecanary.org
2•tke248•9m ago•0 comments

Please let me interact with your blog post

https://michaelharley.net/posts/2026/08/22/please-let-me-interact-with-your-blog-post/
1•speckx•9m ago•0 comments

CI Should Be Disposable

https://oppi.li/posts/disposable_ci/
1•abnercoimbre•9m ago•0 comments

US widens AI-driven investment gap with Europe

https://www.ft.com/content/77b94c4a-4b4b-4983-9138-7db6926150f4
1•mikhael•9m ago•0 comments

Data centers' 'oh shit' moment

https://www.politico.com/news/2026/08/24/data-centers-oh-s-t-moment-01046465
1•Alien1Being•9m ago•0 comments

How to Disagree

https://www.paulgraham.com/disagree.html
2•dargscisyhp•10m ago•0 comments

Can AI glasses replace the smartphone?

https://www.ft.com/content/3f25f892-2de2-40e6-9592-a7ac18682c6c
1•mikhael•10m ago•0 comments

Show HN: AICostBudget – Estimate monthly AI API costs before launch

https://aicostbudget.com/en/ai-api-cost-calculator
1•kingkemol888•12m ago•0 comments

Protocols for transactional usage of object storage

https://www.bitsxpages.com/p/protocols-for-transactional-usage
1•vmg12•12m ago•0 comments

Woman wrongly flagged by ID scanner as nationwide 'public safety concern'

https://www.cbc.ca/news/canada/manitoba/patronscan-id-winnipeg-riverside-bar-9.7312942
3•Drunk_Engineer•13m ago•1 comments

Is Infinity Even or Odd?

https://www.infinitelymore.xyz/p/is-infinity-even-or-odd
1•FillMaths•14m ago•0 comments

Can AI ever be conscious? The question stems from a misconception

https://www.nature.com/articles/d41586-026-02571-9
1•rndsignals•14m ago•0 comments

Scaling Laws, Honestly

https://www.completeskeptic.com/p/scaling-laws-honestly
1•gk1•14m ago•0 comments

The FTC's click-to-cancel rule was vacated. The statute underneath it wasn't

https://chargeninja.app/is-it-legal-to-make-cancelling-hard
2•kingodyssey•15m ago•0 comments

Show HN: PicoMQ – Durable Streams over HTTP, on object storage

https://picomq.com/
2•adesh_nalpet•15m ago•0 comments

Tallest timber tower tops out in Sydney

https://www.dezeen.com/2026/07/23/world-tallest-timber-tower-atlassian-central-sydney/
1•speckx•16m ago•0 comments

Show HN: Ruby script that prints a Ruby

https://github.com/Roshanjossey/ruby.rb/blob/main/ruby.rb
1•sudo_bangbang•16m ago•0 comments

If Eastern Europeans reported the world like the world reports Eastern Europe

https://www.badbaltic.com/if-eastern-europeans-reported-the-world-like-the-world-reports-eastern-...
3•stared•18m ago•0 comments

Emacs 31 Highlights

https://www.emacswiki.org/emacs/EmacsThirtyOneHighlights
2•pkal•18m ago•0 comments

Firefox intent to ship: JPEG XL

https://groups.google.com/a/mozilla.org/g/dev-platform/c/3YMV4MS34KA/m/iqfJV5cXEQAJ
7•cpeterso•18m ago•1 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?