frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tesla claims Cybercab driving employees at Giga Texas – in a parking lot

https://electrek.co/2026/07/11/tesla-cybercab-giga-texas-parking-lot/
1•root-parent•52s ago•0 comments

Mitigating Factual Hallucination in LRMs via Mixed-Mode Advantage Regularization

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

AI Fuels Startup Boom Across the US

https://www.bloomberg.com/news/features/2026-07-10/ai-powered-entrepreneurs-set-to-launch-record-...
2•Teever•4m ago•0 comments

Apple's failed self-driving car program left a legacy of powerful AI chips

https://www.theverge.com/tech/964519/apple-silicon-self-driving-car-ai-m7-ultra
2•droidjj•5m ago•0 comments

GPT-5.6, Fable 5, and Grok 4.5 rebuild Basecamp from the same spec

https://smw.ai/blog/basecamp-bench
3•aethelyon•6m ago•0 comments

The Battery Startup Taking on China's Giants

https://www.wired.com/story/prologium-battery-startup-betting-against-china/
2•joozio•7m ago•0 comments

The Trade in Looted Antiquities Endures for One Reason: Demand

https://news.artnet.com/art-world/matt-campbell-cambodia-looted-antiquities-2779870
2•derbOac•8m ago•0 comments

What Happened to Behaviorism?

https://medium.com/@plewis67/what-happened-to-behaviorism-0c1b155a593c
2•paulpauper•8m ago•0 comments

Stop Pretending That Intensive Parenting Doesn't Work

https://www.theatlantic.com/ideas/archive/2022/10/intensive-parenting-kids-happiness-health/671782/
2•paulpauper•9m ago•0 comments

Website is served from a 200KB binary

https://200kb.freelang.dev/
3•keepamovin•9m ago•0 comments

The Idols of Acceleration

https://democraticfuturist.substack.com/p/the-idols-of-acceleration
2•paulpauper•9m ago•0 comments

LARP – Revenue infrastructure for serious founders

https://www.larp.website/
2•BerislavLopac•12m ago•0 comments

Show HN: Shirei, cross-platform GUI framework in native Go

https://github.com/hasenj/go-shirei/
6•hsn915•13m ago•0 comments

Automation Without Understanding

https://arxiv.org/abs/2607.06377
2•root-parent•14m ago•0 comments

OpenAI's AI Beating Every Human at AtCoder

https://mlq.ai/news/openais-ai-sweeps-all-five-problems-at-atcoder-world-tour-finals-beating-ever...
2•amai•14m ago•0 comments

Blog-Doc Reloaded

https://lebcit.github.io/post/blog-doc-reloaded/
2•LebCit•16m ago•0 comments

Noto: A Typeface for the World

https://fonts.google.com/noto
3•geox•17m ago•0 comments

AI and the Future of Writing-roundtable of authors discuss ramifications for art

https://yalereview.org/article/ai-and-the-future-of-writing
2•pseudolus•18m ago•0 comments

Apple sues OpenAI over alleged trade secret theft

https://techcrunch.com/2026/07/10/apple-sues-openai-over-alleged-trade-secret-theft/
3•rbanffy•21m ago•1 comments

Britain's biggest community solar farm forced to shut over grid overload fears

https://www.theguardian.com/environment/2026/jul/12/solar-farm-forced-to-shut-derril-water-bigges...
3•speckx•24m ago•0 comments

Using AI to Let History Speak About Bank Runs

https://libertystreeteconomics.newyorkfed.org/2026/07/using-ai-to-let-history-speak-about-bank-runs/
2•gnabgib•28m ago•0 comments

'This was a righteous case. A holy war': the lawyer who took on Meta and Google

https://www.theguardian.com/media/2026/jul/12/mark-lanier-the-lawyer-who-took-on-meta-and-google-...
2•akbarnama•28m ago•0 comments

Show HN: Broll – an MCP server that gives coding agents a content studio

https://github.com/luke-fairbanks/broll
2•lukefairbanks•28m ago•0 comments

Show HN: A lightweight app to let LLM work for oncall

https://www.neatcontext.com/
3•tanglearncode•29m ago•1 comments

The Universal Scalability Law (USL)

https://www.perfdynamics.com/Manifesto/USLscalability.html
2•ksec•32m ago•0 comments

Show HN: The Line of Hope – how current teams compare to past champions

https://titlehopes.com/mlb/standings/index.html
2•marcreicher•35m ago•0 comments

Honeyprompt: LLM-first honeypot that talks back

https://github.com/alectrocute/honeyprompt
2•arm32•37m ago•0 comments

How to Start a Peptide Testing Company and Costs Involved

https://www.bluenexlabs.com/research-knowledge-canada-peptides/start-canadian-peptide-testing-com...
2•AliceKay•37m ago•0 comments

Show HN: Open-source browser mini-game where every level is provably solvable

https://www.hooping.io/
3•douvy•38m ago•1 comments

I connected my net worth tracker to Claude via MCP

https://getvalyou.co/claude
2•amandafranc•39m 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?