frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: News Aggregator for Science and Technology

https://paperrun.news/popular
1•fingerz17•1m ago•0 comments

Xbox PC and Game Pass titles coming to Linux through 'Xodus' open-source project

https://www.tomshardware.com/software/linux/xbox-pc-and-game-pass-titles-are-coming-to-linux-thro...
1•sbulaev•4m ago•0 comments

Yen sinks as effect of US-Japan intervention fades

https://www.ft.com/content/47d2ab3c-0423-49ed-89ca-68683761ed98
1•petethomas•5m ago•0 comments

My Homelab Got Hacked – A Postmortem

https://phunky.cafe/my-homelab-got-hacked/
1•cdrnsf•7m ago•0 comments

Show HN: AI-powered App Store replies that sound like you

https://www.replyargus.com
1•wowinter15•7m ago•0 comments

Trump signs order calling for spacing out childhood vaccines

https://apnews.com/article/vaccine-research-autism-trump-kennedy-rfk-d10f81f221c4ae9f5b2f83dd0ee9...
4•choult•14m ago•2 comments

Separating sex and gender is statistical malpractice

https://blog.djnavarro.net/posts/2026-08-06_separating-sex-and-gender-is-statistical-malpractice/
3•panic•14m ago•0 comments

Learning Sed or Using Claude?

https://playtechnique.io/blog/learning-sed-or-using-claude.html
2•gwynforthewyn•19m ago•1 comments

A Watermark for Large Language Models

https://arxiv.org/abs/2301.10226
3•m-chrzan•23m ago•0 comments

Simulation of the light pollution effects of Reflect Orbital's mirror satellites

https://starryprinceton.org/scattering_calculations_renderings?
2•atomicthumbs•25m ago•1 comments

Why Reykjavik, Iceland Banned Dogs (2023)

https://allthingsiceland.com/reykjavik-banned-dogs-cats-rule/
1•thomassmith65•25m ago•1 comments

Olix raises $312M from Netflix's Reed Hastings, Arm, to build Nvidia rival

https://techfundingnews.com/olix-raises-312m-3-3b-valuation-nvidia-rival/
2•andsoitis•29m ago•0 comments

World Train Map – 1247 train routes around the world

https://worldtrainmap.com/
2•Flightmussy•29m ago•0 comments

Dark mode toggles: two states are enough

https://lea.verou.me/blog/2026/dark-mode-toggles/
2•nikolay•29m ago•0 comments

The Practice of Address: Loneliness and the Machines That Answer

https://www.newenglishreview.org/articles/the-practice-of-address-loneliness-and-the-machines-tha...
1•NaOH•33m ago•0 comments

Google Search Is Dying. What Comes Next Is Worse

https://thewalrus.ca/google-search-is-dying/
14•awnird•35m ago•3 comments

Trump Crypto Took $100M from a Businessman with Red Flags

https://www.nytimes.com/2026/08/09/us/politics/bobby-zhou-trump-crypto.html
5•iamben•35m ago•1 comments

MCP for Live NBA Game Recaps with Reddit Threads

https://github.com/temanuel1/nba-recap-mcp
1•temanuel38•36m ago•0 comments

Bernie Sanders calls for AI development pause

https://www.axios.com/2026/08/10/sanders-ai-development-pause
1•reasonableklout•36m ago•0 comments

Being a senior can get you fired early

https://blog.grandimam.com/posts/distorted-reality/
3•grandimam•36m ago•3 comments

Show HN: Pyrig – A tool that automates project setup and maintenance

https://github.com/Winipedia/pyrig
3•Winipedia•36m ago•0 comments

OpenAI has bought back $7B worth of shares in a secondary employee tender

https://www.bloomberg.com/news/articles/2026-08-10/openai-buys-back-7-billion-of-employee-shares-...
4•ahmadyan•36m ago•0 comments

Jensen Huang tells CNBC his chips are 'investable asset'

https://www.cnbc.com/2026/08/10/nvidia-wall-street-asset-managers-500-billion-ai-push.html
2•0xcafefood•36m ago•3 comments

We host YouTube videos on this site – and why we recommend uBlock Origin

https://buenaventura.it/senza-pubblicita/
1•oriettaxx•40m ago•0 comments

Mark Zuckerberg's Yacht Refused to Help Ship in Distress

https://nymag.com/intelligencer/article/zuckerbergs-yacht-booed-over-failing-to-help-stranded-boa...
5•master_crab•44m ago•0 comments

Catholic expert: "Security issues show AI needs greater human oversight"

https://www.detroitcatholic.com/news/security-issues-show-ai-needs-greater-human-oversight-say-ca...
2•supportm•47m ago•1 comments

Termdom – Build Terminal Apps with HTML, CSS and the DOM

https://termdom.org
4•philips•48m ago•0 comments

The Surveillance Network Tracking Cars Across the U.S.

https://www.nytimes.com/video/us/100000011056273/the-surveillance-network-tracking-cars-across-th...
7•bookofjoe•49m ago•1 comments

Nvidia AI Factory Compute Is Becoming an Investable Asset Class

https://twitter.com/JensenHuang/status/2086934705207959965
4•jawiggins•51m ago•0 comments

Tracking down a Zsh history data loss bug

https://michael.stapelberg.ch/posts/2026-08-09-zsh-history-truncation-bug/
1•birdculture•51m 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?