frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: What will AI coding look like for CS freshmen in 2029?

1•linzhangrun•39s ago•0 comments

Show HN: Local-first LaTeX editor – open-source

https://apps.microsoft.com/detail/9p6038j2bxtp?hl=en-US&gl=US
1•leonardosalasd•2m ago•0 comments

Canadian government spent $46.8M on a secret Palantir contract

https://theijf.org/brief/canadian-palantir-contract-amendments-obd
2•logickkk1•3m ago•0 comments

Sakana Fugu

https://sakana.ai/fugu/
1•Finbarr•12m ago•0 comments

Show HN: Free AI courses that require a short reflection to earn a certificate

https://www.abc.com.py
1•pfannl•12m ago•0 comments

Why the Human Genome's Tangled Physicality May Confound AI

https://www.quantamagazine.org/why-the-human-genomes-tangled-physicality-may-confound-ai-20260618/
1•Jimmc414•16m ago•0 comments

Tlbic: A Time-Limited Basic Income System Designed with AI, v7.0

https://drive.google.com/file/d/1MtiNjQeQO9ilLuEFXwVeKgWOzec4F2Dn/view?usp=drive_link
1•michikawa59•18m ago•1 comments

Staggeringly precise optical lattice clock has a wealth of practical application

https://www.nippon.com/en/in-depth/d01235/
1•anigbrowl•18m ago•0 comments

Rights for Gods

https://www.lrb.co.uk/blog/2026/june/rights-for-gods
1•mitchbob•21m ago•1 comments

Microbubbles in Medicine

https://worksinprogress.co/issue/microbubbles/
1•Jimmc414•21m ago•0 comments

Microsoft Activation Scripts – Activate Windows / Office / ESUs

https://github.com/massgravel/Microsoft-Activation-Scripts
1•beatthatflight•21m ago•0 comments

Watt lies beneath (Geothermal Energy)

https://worksinprogress.co/issue/watt-lies-beneath/
1•Jimmc414•24m ago•0 comments

Josh helps Rust manage code across multiple repositories

https://blog.rust-lang.org/inside-rust/2026/06/04/how-josh-helps-rust-manage-code-across-multiple...
2•Tiberium•32m ago•0 comments

My Opinion on RL

2•umjunsik132•37m ago•0 comments

The Art of Kite Flying (1430–1929)

https://publicdomainreview.org/collection/art-of-kite-flying/
2•benbreen•40m ago•0 comments

Show HN: Woltspace – a lodge for your coding agents

https://www.woltspace.com/
2•jerpint•44m ago•0 comments

GitHub Banned All CI for Our (OSS) Org Because of Bad Drive-By Contributors

5•BlueMatt•45m ago•0 comments

Americans and AI 2026: Chatbots, Smart Devices and Views on Impact

https://www.pewresearch.org/internet/2026/06/17/americans-and-ai-2026-chatbots-smart-devices-and-...
3•toomuchtodo•51m ago•1 comments

Rightwing populist 'El Tigre' wins Colombia election

https://www.ft.com/content/49294716-56be-40a4-ba31-b4e376ccb47f
2•petethomas•51m ago•0 comments

Zombie unicorns are haunting Silicon Valley

https://www.economist.com/business/2026/06/21/zombie-unicorns-are-haunting-silicon-valley
9•andsoitis•54m ago•1 comments

Crossary – AI-assisted field mapping that outputs signed Excel files

https://www.crossary.com
2•migueljpalmeida•54m ago•0 comments

Japan's Toto to invest $495M in chip materials, targeting 1-nm era

https://asia.nikkei.com/business/tech/semiconductors/japan-s-toto-to-invest-495m-in-chip-material...
6•Nrbelex•57m ago•2 comments

Never Too Late

https://stephengbarr.substack.com/p/its-never-too-late-practical-tips
2•SGBmedia•59m ago•0 comments

Remaking BBC test cards to teach you video processing

https://www.youtube.com/watch?v=U_6HxPkrgcg
1•unleaded•1h ago•0 comments

Job application asked for my SAT scores

https://mrmarket.lol/job-application-asked-for-my-sat-scores/
3•mrmarket•1h ago•0 comments

2k retired Google Pixel phones get a second life as a private cloud

https://www.theregister.com/on-prem/2026/06/18/2000-retired-google-pixel-phones-get-a-second-life...
3•joebuckwilliams•1h ago•1 comments

Early prototype of Stonehenge unearthed 3 miles from prehistoric landmark

https://www.nbcnews.com/world/united-kingdom/stonehenge-united-kingdom-prehistoric-prototype-summ...
2•gmays•1h ago•1 comments

Keogram: The Sky in 2025

https://apod.nasa.gov/apod/ap260621.html
1•mef51•1h ago•0 comments

Entity Core Protocol

https://github.com/EntityChurch/entity-core-protocol/blob/master/specs/ENTITY-CORE-PROTOCOL.md
1•billatbillslab•1h ago•1 comments

You're probably using Agent Skills wrong

https://notes.ansonbiggs.com/youre-probably-using-agent-skills-wrong/
4•MisterBiggs•1h 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?