frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Google illegally retains customer data,and I am taking legal action against them

https://medium.com/@istokovicsgyorgy79/google-illegally-retains-customer-data-and-i-am-taking-leg...
1•Bitu79•35s ago•0 comments

Unethical Ways to Manage Technical Debt: Is Ignoring It Unethical?

https://queue.acm.org/doi/10.1145/3830399
1•ohjeez•47s ago•0 comments

Cell therapy successful in treating rheumatoid arthritis

https://www.charite.de/en/service/press_reports/artikel/detail/cell_therapy_successful_in_treatin...
1•geox•1m ago•0 comments

Header-only C++20 sorting and selection for unsigned 32-bit and 64-bit integers

https://github.com/morishuz/RadixKit
1•oryx1729•3m ago•0 comments

George Orwell's essay on the atomic bomb anticipates Nineteen Eighty-Four

https://blog.plover.com/book/Orwell-atom-bomb.html
2•speckx•3m ago•0 comments

OpenGEMM: Open-source B200 GEMM kernels

https://github.com/aramesh10/OpenGEMM/tree/main
1•adityar2•5m ago•1 comments

Ask HN: How can I browse HN in dark mode?

5•herodoturtle•5m ago•3 comments

Show HN: Surraura – audio on your Mac in a simulated environment (Helps my ADHD)

1•jahala•6m ago•0 comments

Switching to GNU Guix: A Beginner's Perspective

https://whhone.com/posts/switching-to-gnu-guix/
2•signa11•6m ago•0 comments

Golang developers should try Odin

https://rm4n0s.github.io/posts/2-go-devs-should-learn-odin/
2•signa11•9m ago•0 comments

DeepDog 2: Outperforms Gemini and OpenAI deep research at a fraction of the cost

https://github.com/beneadie/deep_dog_2
2•beneadie01•10m ago•1 comments

Pennsylvania Data Center Limits Are a Threat to Gas Firms, Trade Group Says

https://www.bloomberg.com/news/articles/2026-09-11/pennsylvania-data-center-limits-are-a-threat-t...
1•cdrnsf•10m ago•0 comments

Did Trump Permanently Damage U.S.–Canada Relations? [video]

https://www.youtube.com/watch?v=lsRhHpwZfOk
2•mooreds•15m ago•1 comments

Flectar Mail – native cross-platform email client

https://flectar.com/mail/
1•bj-rn•15m ago•0 comments

Romania soccer introduces black card to 'combat abusive behaviour' from parents

https://www.nytimes.com/athletic/7586821/2026/09/12/football-black-card-referee/
4•thunderbong•16m ago•0 comments

The Smoital System – A method of timekeeping on Mars based on UTC

https://www.benjoffe.com/smoitus
1•mooreds•17m ago•0 comments

A fast, free, and open-source local AWS service emulator built for developers

https://floci.io/floci/
2•mooreds•18m ago•0 comments

Iris-mini – open search agent on Qwen3.6-35B-A3B

https://github.com/AllSpark-Research/Iris
1•iamsyr•18m ago•0 comments

Former CEO of AI Company Joonko Pleads Guilty to Securities Fraud

https://www.justice.gov/usao-sdny/pr/founder-and-former-ceo-artificial-intelligence-company-plead...
1•stikit•18m ago•0 comments

Recurrent Looped Transformer

https://yifanzhang-pro.github.io/recurrent-looped-tranformer/
2•meffmadd•20m ago•0 comments

Branch Ergonomic Chair Pro (Sega Edition) Review: Comfy, Not Boring

https://www.wired.com/review/branch-ergonomic-chair-pro-sega-edition/
1•joozio•23m ago•0 comments

Show HN: 1Baton – a no-code tool for chaining API calls

https://1baton.com
2•sagivy•25m ago•0 comments

MIT: Report on AI Use in Teaching, Learning, and Research Training

https://aiandeducation.mit.edu/
1•trauco•28m ago•0 comments

Mushroom leather may be ready for mass production

https://www.anthropocenemagazine.org/2026/09/plastic-free-fungus-based-leather-is-going-big/
2•speckx•31m ago•0 comments

David Sacks: OpenAI and Anthropic Don't Need Regulations to Pace Frontier Models

https://twitter.com/DavidSacks/status/2098973625252708460
24•kolanos•32m ago•2 comments

The Art and Science of Listening

https://www.gatesnotes.com/home/home-page-topic/reader/the-art-and-science-of-listening
1•andsoitis•33m ago•0 comments

A Cheesehead's View of the World

https://scottsumner.substack.com/p/a-cheeseheads-view-of-the-world
1•paulpauper•34m ago•0 comments

Rapidly scaling online storage to serve over 1B ChatGPT users

https://openai.com/index/scaling-storage-one-billion-users-part-one/
2•porridgeraisin•34m ago•0 comments

Iran 'blew the hell out of' base in Bahrain, acting Navy Secretary admits

https://taskandpurpose.com/news/navy-base-bahrain-iran-damage/
7•ilamont•34m ago•0 comments

Preventing AI Collusion: Are you paying attention now?

https://aiprospects.substack.com/p/preventing-ai-collusion-are-you-paying
1•paulpauper•34m 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?