frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

What the Halting Problem Means for Python Security

https://nocomplexity.substack.com/p/what-the-halting-problem-means-for
1•runningmike•49s ago•0 comments

Tournesol – Collaborative Content Recommendations

https://github.com/tournesol-app/tournesol
1•Qision•2m ago•0 comments

The Truth About AI: It's Not Intelligence, It's a Trick – Prof Jiang Xueqin

https://www.youtube.com/watch?v=5llffhy3SFs
1•oxqbldpxo•3m ago•1 comments

Bring Back the Gatekeeper, Please

https://thewalrus.ca/bring-back-the-gatekeeper-please/
1•gmays•3m ago•0 comments

Heat adds to strains on areas with data centers

https://apnews.com/article/data-center-heat-wave-lowell-5607b4ea8ef9776b28268561060752a8
1•geox•4m ago•0 comments

Journey to the Moon by Jules Verne

https://www.lrb.co.uk/the-paper/v48/n12/raymond-n.-mackenzie/platinum-noses
1•mitchbob•5m ago•1 comments

Red-Pill Robots Only, Please (2012) [pdf]

https://kryten.mm.rpi.edu/SBringsjordMClarkRed-PillRobotsOnly.pdf
1•projektfu•6m ago•0 comments

Ask HN: Why are so many "AI evangelists" posting such insufferable content?

1•seattle_spring•6m ago•1 comments

Launchpanda: Save your product info once, launch everywhere

https://www.launchpanda.dev
2•welsenesbros•6m ago•0 comments

Ask HN: Will AI force CS to focus on what to build instead of how to build it?

1•amichail•6m ago•0 comments

Show HN: RetainFlow – Subscription Retention for WooCommerce

https://wordpress.org/plugins/retainwoo/
1•techstuff123•7m ago•0 comments

Interpretable Coreference Resolution Evaluation Using Explicit Semantics

https://aclanthology.org/2026.acl-long.2126/
1•petethomas•9m ago•0 comments

The Next Evolution in Human Logic

https://twitter.com/ctindale/status/2072632158624113083
1•jger15•9m ago•0 comments

Platonic Hydrocarbons

https://en.wikipedia.org/wiki/Platonic_hydrocarbon
1•chriskw•11m ago•0 comments

Meta makes cloud push to sell excess AI compute power capacity

https://www.cnbc.com/2026/07/01/meta-stock-cloud-ai-compute.html
1•geoffbp•12m ago•0 comments

No Te Dejes: La Lauren Pena Play

https://thecredentialproject.substack.com/p/no-te-dejes-the-lauren-pena-play
1•Xipitexa•12m ago•0 comments

Jujutsu (JJ) Release v0.43.0

https://github.com/jj-vcs/jj/releases/tag/v0.43.0
1•y1n0•13m ago•0 comments

Amodei told lawmakers that open-source AI is moving down a "dangerous path"

https://twitter.com/coinbureau/status/2071330294452666695
2•msalsas•13m ago•0 comments

Devin Desktop, Replacing Windsurf

https://cognition.com/blog/introducing-devin-desktop
1•thinkingemote•14m ago•0 comments

Valve explains why it isn't subsidizing the Steam Machine

https://www.theverge.com/games/952004/valve-steam-machine-price-not-subsidizing
3•tosh•14m ago•1 comments

Should I go open-source or give free trial and then charge the users?

1•akarshhegde18•15m ago•2 comments

Qwen-Image-Agent: Bridging the Context Gap in Real-World Image Generation

https://arxiv.org/abs/2606.26907
1•gmays•16m ago•0 comments

Show HN: Context.md – A proposed standard for AI project context

https://github.com/kerbelp/context-md
2•kerbelp•17m ago•0 comments

My Most Profitable Experience: How I'm Trying to Hit $800/Day Fast

2•odilelof•18m ago•1 comments

Messi or Ronaldo? Your political ideology may play a part

https://www.ntu.edu.sg/news/detail/messi-or-ronaldo--your-political-ideology-may-play-a-part
1•haunter•19m ago•0 comments

Google testing controversial webcam-based reCAPTCHA that asks for a hand scan

https://www.tomshardware.com/tech-industry/googles-camera-based-recaptcha-asks-for-a-hand-scan-to...
2•akyuu•19m ago•0 comments

"Dimension 20s" Lore Keeper, Skye Smith, on Why AI Can't Replace Her

https://www.businessinsider.com/dimension-20-lore-keeper-skye-smith-ai-2026-6
1•pavel_lishin•19m ago•0 comments

No laptop? No problem. Code on the Go brings the debugger to your phone

https://hackernoon.com/no-laptop-no-problem-code-on-the-go-brings-the-debugger-to-your-phone
2•taubek•19m ago•0 comments

iPhone 18 Pro Could Use Qualcomm Modem in the US and C2 Elsewhere

https://www.macrumors.com/2026/07/02/iphone-18-pro-could-use-qualcomm-modem-in-the-us/
1•tosh•21m ago•0 comments

Coordination Repository Pattern and Pi-Env

https://github.com/u2up/coordination-repository-pattern
1•samopog•21m 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?