frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

EMDR Bilateral Stimulation – Adjusted to You

https://medium.com/@chris.ahrweiler/emdr-bilateral-stimulation-adjusted-to-you-0ea7b1dcc4d1
1•docjojo•34s ago•0 comments

Ask HN: When AI models use harnesses who liable between model/harness/user?

1•spwa4•53s ago•0 comments

Agent Applications: A Reference Architecture for AI Agent Systems

https://agentapplication.io
1•amthewiz•2m ago•0 comments

Evals Are the Next Bottleneck

https://www.boolean.ai/blog/evals-are-the-next-bottleneck
3•ssatia•2m ago•0 comments

RNA droplets may have helped start life on Earth

https://www.buffalo.edu/alumni/at-buffalo.host.html/content/shared/university/news/news-center-re...
1•geox•3m ago•0 comments

Loose Navigation Grids

http://digestingduck.blogspot.com/2012/01/loose-navigation-grids.html
1•luu•3m ago•0 comments

LG Display Develops New OLED Panels with More Brightness and Longer Lifespans

https://www.forbes.com/sites/johnarcher/2026/08/19/lg-display-develops-new-oled-panels-with-more-...
1•ksec•3m ago•0 comments

Clicks Communicator: First Look [video]

https://www.youtube.com/watch?v=wMNdr8dV23A
1•hliyan•4m ago•0 comments

What breaks when you switch LLMs?

https://www.evalshift.dev/blog/what-breaks-when-you-switch-llms
1•babaliauskas•4m ago•0 comments

Show HN: The First 3D Map of North America's Underground Geology

https://drillerdb.com/underground
2•craig_vg•6m ago•0 comments

Bulgaria's Nuclear Plant Plans First Output Cut Due to Low Danube

https://www.bloomberg.com/news/articles/2026-08-20/bulgaria-s-nuclear-plant-plans-first-output-cu...
1•toomuchtodo•9m ago•1 comments

DuckDB v2.0: Your Database Deserves a Better Parser

https://duckdb.org/2026/08/20/duckdb-20-peg-parser
1•DanieltenW•9m ago•0 comments

Going Freestanding

https://antonz.org/going-freestanding/
1•matheusmoreira•11m ago•0 comments

Top Open Source MCP Gateways in 2026

https://www.getmaxim.ai/articles/top-5-open-source-mcp-gateways-in-2026/
1•aanthonymax•11m ago•0 comments

AI for science needs reasoning, not just data – Eric Schmidt and Suhas Mahesh

https://www.technologyreview.com/2026/08/10/1141384/ai-agents-for-science/
1•unprovable•11m ago•0 comments

Why can't you combine .tar.gz files with cat?

https://alexwlchan.net/2026/cat-confusion/
1•speckx•12m ago•0 comments

Same Tencent VPS plan in 8 regions: identical CPU different networks

https://webbynode.com/articles/tencent-same-vps-plan-8-regions-network-performance
1•gsgreen•13m ago•1 comments

Under Trump, Protected Wild Horses Are Going to Slaughter

https://www.nytimes.com/2026/08/20/us/trump-wild-horses-legal-loophole-slaughter.html
2•giwook•14m ago•0 comments

I'm done coding with AI [video]

https://www.youtube.com/watch?v=2ZU3j4GQ4K8
2•qwertox•14m ago•0 comments

Show HN: Pacer – Realtime Claude Code Usage Tracking / Pacing

https://github.com/EricAndrechek/Pacer
2•jwoodsworks•14m ago•1 comments

Everyone Says Assembly Is Untyped–Everyone Is Wrong

https://www.gingerbill.org/article/2026/08/20/designing-odins-inline-asm/
1•adamrezich•15m ago•0 comments

On Mount Etna, Lightning Has Claimed More Lives Than Eruptions Since 1980

https://www.discovermagazine.com/on-mount-etna-lightning-has-claimed-more-lives-than-eruptions-si...
2•bookofjoe•15m ago•0 comments

Show HN: RecoveryCodes – MFA inventory for auth outside IdPs

https://recoverycodes.eu/
2•CER10TY•17m ago•1 comments

We Ship Our Security Webhook Fail-Open

https://pandocore.io/blog/fail-open-webhook
2•eaferstl•19m ago•0 comments

Music Theory for Programmers

https://runjs.app/blog/music-theory-for-programmers
4•birdculture•20m ago•0 comments

Firefox Extensions Linked to Crypto Wallet and Credential Theft

https://socket.dev/blog/firefox-crypto-wallet-theft
2•speckx•21m ago•0 comments

Google Cloud us-west1 down

8•anurag•21m ago•4 comments

Google Maps adds agentic features, including food ordering and hotel bookings

https://techcrunch.com/2026/08/06/google-maps-adds-agentic-features-including-food-ordering-and-h...
2•toomuchtodo•22m ago•0 comments

No, Anthropic Won't Be the Only Company Left

https://forwardfuture.com/newsletter/originals/no-anthropic-won-t-be-the-only-company-left
2•the-mitr•23m ago•0 comments

Cognition and consciousness arise from analog computations, says new theory

https://picower.mit.edu/news/cognition-and-consciousness-arise-analog-computations-says-new-theory
4•arto•24m 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?