frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: We made a full-featured Python HTTP client work inside WASI

https://niquests.readthedocs.io/en/latest/user/quickstart.html#running-as-a-wasi-component
1•mesahm•35s ago•0 comments

Netflix Sued for $105M After Hard Drive of Nicolas Cage Movie Stolen from Office

https://www.hollywoodreporter.com/business/business-news/netflix-lawsuit-unreleased-nicolas-cage-...
1•justin66•50s ago•0 comments

Freesocks: Free uncensored proxies for users in heavily-censored regions

https://freesocks.org/
1•surprisetalk•53s ago•0 comments

Fed up with Big Tech, communities turn to data collectives for control

https://restofworld.org/2026/ai-data-collectives-mozilla/
1•cdrnsf•1m ago•0 comments

Another Reason Not to Use "AI" for Your Writing

https://whatever.scalzi.com/2026/07/31/another-reason-not-to-use-ai-for-your-writing/
1•Tomte•2m ago•0 comments

Mass Psychosis in Food Science

https://www.sciencehistory.org/stories/disappearing-pod/mass-psychosis-in-food-science/
2•thunderbong•2m ago•0 comments

Figma for Agents: How Airflow's Creator Coordinates AI Ft. Maxime Beauchemin

https://motherduck.com/blog/figma-for-agents-airflow-creator-maxime-beauchemin/
1•zazuke•6m ago•0 comments

What Comes After the End of Reading? [video]

https://www.youtube.com/watch?v=uUIw704kvG8
1•mykowebhn•6m ago•0 comments

RL and search is a terrifying way to build AGI (an FAQ)

https://www.lesswrong.com/posts/KHyBocZncAmtu4Jbc/rl-and-search-is-a-terrifying-way-to-build-agi-...
1•yurivish•6m ago•0 comments

Kongtrol – orchestrate multiple VPN clients from one CLI

https://github.com/DerotLuna/vpn-kongtrol
2•derotluna•6m ago•0 comments

Models Write Messier Code Than the Human Who Fixed the Same Bug

https://codescan.dev/blog/messier-than-the-human
2•d-yoda•7m ago•0 comments

IP Camera Live Streaming: How to Set Up RTSP to WebRTC Streaming

https://www.red5.net/blog/ip-camera-live-streaming-rtsp-to-webrtc/
1•mondainx•7m ago•0 comments

Show HN: Provenance and decay for AI agent memory

https://github.com/stalebrainlabs/stalebrain
1•souravroy78•8m ago•0 comments

Money, Money, Money (and Investing) (2015)

https://philip.greenspun.com/materialism/money
1•downbad_•8m ago•0 comments

One embed for all your affiliate ads

https://betweenaffiliates.com/
1•johninen•8m ago•1 comments

Ask HN: Security advisory Azure trusted launch VMs

1•klaas-•8m ago•2 comments

Show HN: macOS PortKiller

https://github.com/jobehi/macos-process-killer
2•jobehi•10m ago•1 comments

Resource Curse

https://en.wikipedia.org/wiki/Resource_curse
1•EndXA•11m ago•0 comments

Sleek for a Better Future

1•silisleek•11m ago•0 comments

The Voyage 4 model family: shared embedding space with MoE architecture

https://blog.voyageai.com/2026/01/15/voyage-4/
1•Topfi•12m ago•0 comments

Seedance 2.5

https://seed.bytedance.com/en/seedance2_5
1•imtany•12m ago•0 comments

Autoregressive Language Model on the 6502 Processor

https://mattbeton.com/blog/bitnet-6502.html
1•nmstoker•13m ago•0 comments

Right to repair: New consumer rights for easy and attractive repairs

https://commission.europa.eu/news-and-media/news/right-repair-new-consumer-rights-easy-and-attrac...
2•vrganj•15m ago•0 comments

Which job schedulers fire on time? We tested ten

https://www.smplkit.com/blog/job-scheduler-latency-benchmark
1•mike-gorman•18m ago•1 comments

Free photo tools, no signup, no watermark

https://narcis.ai/tools
1•gaetanbe•18m ago•0 comments

Government Ownership Stakes in Companies Becoming Routine Under Trump

https://www.cato.org/blog/government-ownership-stakes-companies-becoming-routine-under-trump
2•throw0101d•19m ago•0 comments

GSC and GA4 and technical SEO audit

https://crawlraven.com
2•ayushchat•21m ago•2 comments

The Bayeux Tapestry: how optical techniques have let this artwork come home

https://physicsworld.com/a/the-bayeux-tapestry-how-optical-techniques-have-let-this-artwork-come-...
1•sohkamyung•22m ago•0 comments

Palette Vault – color palettes and extractor Chrome plugin

https://chromewebstore.google.com/detail/palette-vault-color-palet/njnhlacephcfkccghemekgggekioiekh
1•javatuts•22m ago•0 comments

Duane Arnold

https://tomasbjartur.substack.com/p/duane-arnold
1•zetalyrae•23m 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?