frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Road Trains Roam the Backroads of Australia

https://hackaday.com/2026/08/04/road-trains-roam-the-backroads-of-australia/
1•asdefghyk•53s ago•1 comments

OpenAI Models Joined Forces Months Ahead of Hugging Face Hack

https://www.bloomberg.com/news/articles/2026-08-06/openai-models-joined-forces-months-ahead-of-hu...
2•emersonmacro•3m ago•0 comments

What AI First Engineering Orgs Look Like

https://arpitbhayani.me/blogs/ai-first-org/
1•honey-badger•6m ago•0 comments

Federal appeals court OKs Florida anti-drag show law

https://www.tallahassee.com/story/news/state/2026/08/04/federal-court-backs-florida-anti-drag-sho...
1•allgirl•6m ago•1 comments

A New Kind of Bearing [video]

https://www.youtube.com/watch?v=RKvOfX1s3-k
1•pillars•7m ago•0 comments

Google Genie 3: Interactive worlds generated by AI

https://deepmind.google/blog/genie-3-a-new-frontier-for-world-models/
1•mehraban•8m ago•1 comments

France is banning unsolicited telemarketing calls starting next week

https://apnews.com/article/france-unsolicited-telemarketing-ban-4c946192a1e0d611fd80eacc708aa7da
2•geox•9m ago•0 comments

Biggest US law firms explore selling stakes to private equity

https://www.ft.com/content/475d573a-886d-4b75-b07c-f74c38b093f2
1•JumpCrisscross•10m ago•0 comments

Employers are hiring less but paying more

https://www.axios.com/2026/08/05/employment-pay-construction-adp
2•rustoo•14m ago•0 comments

ConvoKit: Conversational Analysis Toolkit

https://convokit.cornell.edu/
1•internetguy•15m ago•0 comments

'Sell America' Debate Re-Emerges as US Policies Sow Doubts

https://www.bloomberg.com/news/articles/2026-08-05/us-policies-reignite-debate-over-sell-america-...
2•petethomas•16m ago•0 comments

They Write the Right Stuff – (1996)[pdf]

https://www.eng.auburn.edu/~kchang/comp6710/readings/They%20Write%20the%20Right%20Stuff.pdf
2•gurjeet•16m ago•0 comments

Open Micro-Manipulator

https://github.com/0x23/MicroManipulatorStepper
2•pillars•18m ago•0 comments

You don't need to be a developer to build a real software today

https://initacademy.oyakoo.store/
2•NaaShormey•21m ago•0 comments

Voice Commanding the PRETTY Spacecraft over Amateur Radio (To Play Doom)

https://doom.lb6aj.net/
4•austinallegro•24m ago•0 comments

Stripe Lands in Minecraft

2•MetroidMincraft•24m ago•2 comments

WYSIWYG Markdown Editor: Paste webpages, spreadsheets and images directly

https://phcode.io/markdown-editor.html
2•charlypa•26m ago•1 comments

The Monty Hall Problem

https://www.usu.edu/math/schneit/StatsHistory/ProbabilityPrompts/MontyHall
3•andsoitis•28m ago•0 comments

Why Do We Tolerate Elon Musk's Racist Commentary?

https://www.nytimes.com/2026/07/29/opinion/elon-musk-far-right-remigration.html
2•vrganj•29m ago•2 comments

DeepSeek announced to raise its API price tremendously

2•alexwwang•29m ago•0 comments

The Zillion Encodings of NOP [video]

https://www.youtube.com/watch?v=8BvAKvcW31A
2•edward28•30m ago•0 comments

Two simple tests to see how your fitness compares with Elite older athletes

https://www.washingtonpost.com/wellness/2025/10/16/fitness-test-senior-athletes/
1•gurjeet•32m ago•0 comments

Teamsters sue California over self-driving truck rules

https://www.politico.com/news/2026/08/05/teamsters-sue-california-self-driving-truck-rules-01026055
1•JumpCrisscross•34m ago•0 comments

Two sizes fit most: Postgres and ClickHouse

https://clickhouse.com/blog/ai-best-of-breed-data-stack
1•saisrirampur•35m ago•0 comments

Touring the Consensus, Six Months In

https://theconsensus.dev/blog/2026/08/05/touring-the-consensus-six-months-in.html
1•tosh•37m ago•0 comments

How to Build an LLM-Powered Database Query Bot for Your Web App in 1 Day

https://www.semicolonandsons.com/articles/how-to-build-an-llm-powered-database-query-bot-for-web-...
1•shantanuo•38m ago•0 comments

Smalltalk Report from 1991 to 1996

https://github.com/Ducasse/SmalltalkReportPDFArchive
1•matt_d•39m ago•0 comments

Ask HN: Which model is best for pair-programming?

1•bridgettegraham•41m ago•2 comments

Caesars Entertainment – Responsible Gaming Exclusion

https://caesarsrewards.custhelp.com/app/answers/detail/a_id/650/~/caesars-entertainment---respons...
1•gregsadetsky•42m ago•0 comments

Half of vaccines are binned – 'fridge-free' versions could change that

https://www.bbc.co.uk/news/articles/ce85qe8j0nzo
3•asplake•42m 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?