frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Integrating .NET GC in your C++ application

https://kant2002.github.io/en/dotnet/open-source/2026/07/12/dotnet-gc.html
1•kant2002•39s ago•1 comments

Show HN: Vibe-coding games with Claude, day 93: Rock Paper Scissors Lizard Spock

https://gamevibe.us/93-rock-paper-scissors-lizard-spock
1•pzxc•1m ago•0 comments

Cloudflare is now "Local First, Everywhere"

https://bsky.app/profile/jakelazaroff.com/post/3mqlpvpjswk2k
1•embedding-shape•2m ago•0 comments

Preview of Carbon's memory safety model

https://hachyderm.io/@chandlerc/116898796409614862
1•Georgelemental•4m ago•0 comments

A Longitudinal Study of AI Adoption in an Enterprise

https://arxiv.org/abs/2607.01904
1•solomatov•5m ago•0 comments

Platonic space: where cognitive and morphological patterns come from

https://thoughtforms.life/platonic-space-where-cognitive-and-morphological-patterns-come-from-bes...
1•jerlendds•6m ago•0 comments

MarkText – Realtime preview, beautiful typography, and zero distractions

https://marktext.me
1•amai•7m ago•0 comments

FJP-CONF: an open conformance standard for auditable agent decisions

https://steveharmon.com/fjp-essay.html
1•flowinfo•7m ago•0 comments

The disparity between benchmark score claims and reality

https://blog.jetbrains.com/research/2026/07/benchmark-meaning-gap/
2•katie_fraser•9m ago•0 comments

FDA authorized Zyn nicotine pouches without knowing what they were made of

https://www.statnews.com/2026/07/14/zyn-nicotine-pouches-fda-approval-microplastic-risk/
4•EA-3167•10m ago•0 comments

The Ramanujan Challenge for AI

https://arxiv.org/abs/2607.09721
1•root-parent•10m ago•0 comments

Show HN: Wireplug.org – Free roaming and NAT traversal for WireGuard

https://wireplug.org
1•alpn•12m ago•0 comments

Pseudpocalypse

https://dynomight.net/pseudpocalypse/
1•surprisetalk•13m ago•0 comments

Eliminating Go bounds checks with unsafe

https://blog.andr2i.com/posts/2026-07-06-eliminating-go-bound-checks-with-unsafe
1•abnercoimbre•13m ago•0 comments

Formalized Mathematics (Open Access Journal)

https://reference-global.com/journal/FORMA
1•danielam•13m ago•0 comments

Frame: A new X11 server – implemented directly in assembly

https://www.theregister.com/software/2026/07/14/frame-a-new-x11-server-implemented-directly-in-as...
2•sbulaev•14m ago•0 comments

Charts that explain America's alcohol epidemic

https://www.statnews.com/2026/07/14/alcohol-impact-health-data-deep-dive-deadliest-drug-series/
1•brandonb•15m ago•0 comments

Pentagon suspends CMMC phase two requirements, launches review of program

https://federalnewsnetwork.com/cybersecurity/2026/07/pentagon-suspends-cmmc-phase-two-requirement...
2•ok123456•15m ago•0 comments

LLMs racing to solve production incident

https://edgedelta.com/same-bug-four-minds
2•emrahsamdan•15m ago•0 comments

Farium – Native macOS Markdown Editor

https://farium.eu/
2•amai•15m ago•0 comments

Mizar: The first usable proof assistant for mathematics

https://lawrencecpaulson.github.io/2026/05/07/Mizar.html
2•danielam•17m ago•0 comments

Cooperate Like a Wolf

https://cathalharte.ch/essay-raised-by-wolves.html
2•cathalharte•19m ago•0 comments

Too Many Books?

https://www.nytimes.com/2026/07/09/style/too-many-books-new-york-city-apartment-scholar-landlord....
2•simplegeek•22m ago•1 comments

Why Shadow AI Detection Can Not Wait

https://konghq.com/blog/enterprise/shadow-ai-detection-enterprise-governance
1•axandriamier•22m ago•0 comments

Neon Handles Database Branching

https://bytesizedbets.com/p/how-neon-handles-database-branching
2•TheAnkurTyagi•23m ago•0 comments

A 2-in-1 OSINT suite for deep email and username metadata extraction

https://github.com/kaifcodec/user-scanner
2•json-hunter07•23m ago•0 comments

Show HN: I built source-verified SAT score profiles for hiring

https://showmyscore.com/
2•stony-builds•24m ago•2 comments

Show HN: Simulator for a custom 8-bit discreet logic computer

https://msap2.mehran.dk
2•mehrant•24m ago•0 comments

Spotify now has an AI assistant you can talk to

https://www.neowin.net/news/spotify-now-has-an-ai-assistant-you-can-talk-to/
1•jenic_•27m ago•1 comments

Allthevaccines.org

https://allthevaccines.org/
1•Gooblebrai•29m 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?