frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Apple's iCloud File Sharing Left Ex-Employees with Access to Secret Documents

https://www.macrumors.com/2026/08/03/apple-icloud-sharing-ex-employees/
1•speckx•35s ago•0 comments

AI's debt binge can't last, hidden borrowing reaches $1.65T

https://fortune.com/2026/07/31/ai-debt-hypescalers-capex-capital-spending-hidden-borrowing-bond-i...
1•mapping365•1m ago•0 comments

Ieepa Tariff Refund Process

https://www.ups.com/us/en/shipping/international-shipping/tariffs/tariff-refunds
2•thanhhaimai•4m ago•0 comments

Is Kentucky About to Give Billions in Tax Breaks to Data Centers?

https://kypolicy.org/kentucky-data-center-tax-breaks/
2•petethomas•6m ago•0 comments

Linux didn't just eat 10% of Windows share, AI bots are inflating the numbers

https://www.windowslatest.com/2026/08/03/linux-didnt-just-eat-10-of-windows-market-share-ai-bots-...
1•taubek•6m ago•1 comments

DDoS against Norwegian government IT infrastructure – status

https://status.digdir.no/incidents/d7hvqmf2yr3l
2•e12e•7m ago•0 comments

Thought Atlas of Human Culture Through Chronology

https://chronologyofculture.com/
1•fluxist•8m ago•0 comments

Ask HN: ThePirateBay vs. Anthropic

1•sarmadgulzar•8m ago•1 comments

Who's legally to blame for Anthropic and OpenAI's autonomous AI hacks?

https://techcrunch.com/2026/08/03/whos-legally-to-blame-for-anthropic-and-openais-autonomous-ai-h...
2•mikelgan•9m ago•1 comments

The 1990s Web vs. today's AI

https://arnoldkling.substack.com/p/the-1990s-web-vs-todays-ai
2•Ariarule•9m ago•0 comments

How do we prove our newsroom isn't AI?

https://www.reddit.com/r/Virginia/comments/1vent3o/ok_rvirginia_how_can_we_prove_our_newsroom_isn...
1•softwaredoug•9m ago•0 comments

When is it OK to use AI?

https://techtonic.fm/episodes/2026-05-18-when-is-it-ok-to-use-ai/
1•erikschoster•11m ago•0 comments

PicoEFI: Minimal build environment for EFI applications

https://github.com/PicoEFI/PicoEFI
1•mrunix•12m ago•0 comments

Global Aviation Incidents Map

https://crashatlas.com/
1•f1shy•12m ago•0 comments

As France's Elders Swelter in the Heat, Postal Workers Come to the Rescue

https://www.nytimes.com/2026/08/03/world/europe/france-postal-workers-older-people-heat.html
1•aaraujo002•13m ago•0 comments

Qwen3.8 Max Intelligence, Performance and Price Analysis

https://artificialanalysis.ai/models/qwen3-8-max
1•theanonymousone•13m ago•0 comments

Teacher Sent a Private Snapchat Complaining…Police Pulled Up to Her School

https://www.gadgetreview.com/student-teacher-sent-a-private-snapchat-complaining-about-her-workda...
3•awad•14m ago•0 comments

Show HN: AxiomCore – a Claude plugin that keeps your projects structured

https://github.com/protonium-labs/axiomcore-plugin
1•dybovalex•15m ago•0 comments

Kafka App? There's a Skill for That

https://www.etsy.com/codeascraft/kafka-app-thereas-a-skill-for-that
1•byt3h3ad•16m ago•0 comments

Online Safety Act – Call for Evidence

https://committees.parliament.uk/submission/3964/#/evidence/3964/call-for-evidence
2•big85•17m ago•1 comments

Web app turns hand gestures into electronic music

https://www.gesture.live/
1•JMiao•20m ago•0 comments

Working on Economics with Fable 5

https://wilsoniumite.com/2026/08/03/working-on-economics-with-fable-5/
2•Wilsoniumite•21m ago•0 comments

Science-backed tips on how to avoid distractions

https://www.nature.com/articles/d41586-026-01850-9
1•thinkingemote•21m ago•0 comments

It's 90 Degrees in the Arctic

https://www.scientificamerican.com/article/its-90-degrees-in-the-arctic-right-now/
4•speckx•22m ago•0 comments

Show HN: Yet Another OpenCode Plugin

https://github.com/smokeeaasd/yet-another-opencode-plugin
1•smokeeaasd•22m ago•0 comments

New York Will Require Digital ID Checks for Social Feeds

https://reclaimthenet.org/new-york-will-require-digital-id-checks-for-social-feeds
5•timr•23m ago•2 comments

Concern about AI spikes following OpenAI hacking incident

https://news.americanson.ai/p/concern-about-ai-spikes-following
2•colinhb•23m ago•0 comments

Reasoning walkthroughs for the ten problems [pdf]

https://cdn.openai.com/pdf/reasoning-walkthroughs.pdf
3•yusufozkan•23m ago•0 comments

The Dunning-Kruger Effect Is Probably Not Real

https://www.mcgill.ca/oss/article/critical-thinking/dunning-kruger-effect-probably-not-real
3•audreyfei•24m ago•0 comments

Modeling generative AI adoption and digital divide among Chinese rural teachers

https://www.nature.com/articles/s41598-026-64624-3
1•thinkingemote•25m 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?