frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

It's All About the Permissions Recovery

https://blog.master.dev/its-all-about-the-permissions-recovery/
1•ibobev•32s ago•0 comments

What the Hugging Face Incident Means for Security Leaders

https://www.netskope.com/blog/when-the-attacker-is-your-own-model-what-the-hugging-face-incident-...
1•danielmorozoff•47s ago•0 comments

Dropping eBPF CPU Cost by About 90% with Memoization (Not AI Gen)

https://nathannaveen.dev/posts/dropping-ebpf-cpu-cost-by-90/
2•nathannaveen•48s ago•0 comments

How to make the most out of community

https://www.pawlean.com/posts/how-to-make-the-most-out-of-community
1•mooreds•1m ago•0 comments

Michaelsoft Binbows '97

https://uploads.ungrounded.net/alternate/1819000/1819914_alternate_173941_r106.zip/
1•austinallegro•1m ago•0 comments

Hypothesis – The #1 Social Annotation Tool for Higher Education

https://web.hypothes.is/
1•Tomte•2m ago•0 comments

Graphic Rants: Nanite Tessellation

http://graphicrants.blogspot.com/2026/02/nanite-tessellation.html
1•ibobev•2m ago•0 comments

My Health Insurance Denied My Cancer Treatment. I Emailed the CEO

https://www.vanityfair.com/story/healthcare-cancer-treatment-essay
2•mooreds•2m ago•0 comments

Canada's oil windfall may yet wipe out its losses from tariffs

https://www.cbc.ca/news/politics/canada-oil-prices-trump-iran-trade-war-tariffs-9.7341298
1•JumpCrisscross•2m ago•0 comments

Canada seeks Ukraine loan role to deepen EU ties

https://www.ft.com/content/9cd8cc79-e98a-449f-a903-609b034a56e3
1•JumpCrisscross•3m ago•0 comments

Ask HN: Why do HN admins kill whistleblowers like orangeberrytea

2•WhyCensor•4m ago•0 comments

Show HN: Prmptree – AI email agent with a trust dial, not an on/off switch

https://www.prmptree.com/
1•doingmybest1•4m ago•0 comments

WebGPU-Bench: A WebGPU Microbenchmark

https://ben3d.ca/blog/introducing-webgpu-bench
2•bhouston•5m ago•0 comments

Anthropic team lead: AI >10% to kill all humans in next decade

https://twitter.com/EvanHub/status/2097497037956891126
2•highfrequency•5m ago•0 comments

Free Book "Rust Projects – Write a Redis Clone" 3rd Edition

https://rust-projects-write-a-redis-clone.github.io/#3.0.0
2•thedigicat•6m ago•0 comments

Show HN: Fluidify – A wiki of the industrial world being built (post-2026)

https://www.fluidify.org/map
2•gts_nesov•7m ago•0 comments

Agents building research-ready datasets in mins

https://mostlyright.md/
3•Bobono•7m ago•0 comments

Sunday Tool Scrutiny

https://randsinrepose.com/archives/sunday-tool-scrutiny/
2•mooreds•7m ago•0 comments

A repo gained 3,278 stars while GitHub showed Andrej Karpathy as a contributor

3•newshackee•7m ago•0 comments

We caught our coding agents reading the answer key

https://aistackimec.substack.com/p/we-caught-our-coding-agents-reading
2•flifenstein•8m ago•0 comments

WalShadow: Sub-second Postgres replication to ClickHouse from physical WAL

https://clickhouse.com/blog/introducing-walshadow
3•saisrirampur•9m ago•0 comments

Fuzzy Graph

https://fuzzygraph.com
1•vismit2000•10m ago•0 comments

Russian Navy paints ships to resemble homes to deceive AI drones

https://twitter.com/JayinKyiv/status/2099403626712068129
2•ilamont•11m ago•0 comments

Unintuitive Software, Incessant Updates and Bloat

https://www.containsmoderateperil.com/blog/2026/9/12/unintuitive-software-incessant-updates-and-b...
2•speckx•11m ago•0 comments

Roblox is making easier to build games with AI and play outside of it

https://techcrunch.com/2026/09/11/roblox-is-making-it-easier-to-build-games-with-ai-and-play-them...
1•ltononro•13m ago•0 comments

DoD poised to move all classified workloads off Anthropic

https://defensescoop.com/2026/09/11/dod-poised-to-move-all-classified-ai-workloads-off-anthropic-...
2•0xWTF•15m ago•1 comments

SubRunGear

https://www.subrungear.com/
2•kadesda•15m ago•0 comments

Fuse Separate Context Stores Dynamically into One LLM Conversation

https://promptowl.ai/resources/multi-nest-support/
1•sparkystacey•15m ago•0 comments

XLS: Accelerated HW Synthesis

https://google.github.io/xls/
1•Bluestein•15m ago•1 comments

Where has Construction Automation been successful?

https://www.construction-physics.com/p/where-has-construction-automation
1•ltononro•16m 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?