frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Swedish parliament abolishes permanent residence visas for migrants

https://www.riksdagen.se/en/news/articles/2026/jun/9/permanent-residence-permits-to-be-abolished_...
1•CGMthrowaway•2m ago•0 comments

When Did White-Collar Work Start to Look So Bleak?

https://www.newyorker.com/magazine/2026/06/22/mutiny-noam-scheiber-book-review-yuppies-dylan-gott...
1•littlexsparkee•2m ago•0 comments

Andy McLean: Rapidus MoU Boosts U.K. Access to 2-Nm Tech- EE Times

https://www.eetimes.com/andy-mclean-rapidus-mou-will-help-british-innovators-access-2-nm-technology/
1•rbanffy•6m ago•0 comments

Meta Employees Hate Zuckerberg's Plan for a Companywide AI Hackathon

https://www.wired.com/story/meta-employees-absolutely-hate-mark-zuckerbergs-hackathon-idea/
2•cdrnsf•10m ago•0 comments

Ask HN: Why did you open source your project?

1•david_shi•10m ago•0 comments

Micro Radar: a tiny open-source flight radar for your desk

https://github.com/AnthonySturdy/micro-radar
2•asturdy•11m ago•1 comments

You Can't Have Both Democracy and Billionaires

https://www.currentaffairs.org/news/you-cant-have-both-democracy-and-billionaires
2•jacquesm•14m ago•0 comments

Justice Department Decision to Allow Paramount Deal Surprised Investigators

https://www.wsj.com/business/media/justice-department-decision-to-allow-paramount-deal-surprised-...
1•JumpCrisscross•14m ago•0 comments

Qualcomm in Talks to Purchase Tenstorrent

https://www.reuters.com/technology/qualcomm-talks-buy-tenstorrent-information-reports-2026-06-15/
1•milleramp•16m ago•0 comments

Openfootmanager: Open-source football management simulation game

https://github.com/openfootmanager/openfootmanager
1•nateb2022•17m ago•0 comments

Show HN: AltiVerse: What If SIM, see different decisions affect an environment

https://github.com/LeoTheAIDev/Altiverse
3•leoTheCoderrr•18m ago•0 comments

SMTP Relay with Web Dashboard

https://github.com/toinbox/simplerelay
1•toinbox•19m ago•0 comments

Satellite Tracker 3D

https://satellitetracker3d.com/track?norad-id=44800
2•ColinWright•20m ago•0 comments

San Francisco Weighs PG&E Takeover Amid Soaring Utility Costs

https://www.kqed.org/news/12081882/san-francisco-has-been-trying-to-leave-pge-for-100-years-will-...
5•cdrnsf•24m ago•0 comments

Show HN: Phlox – Open-source self-hosted agentic web chat

https://github.com/robert-mcdermott/phlox
1•mcdermott•26m ago•1 comments

Show HN: A Framework with a Possible Application to Hybrid Cryptography

https://zenodo.org/records/20613435
2•A19dammer91•26m ago•0 comments

AWS WAF now lets content owners charge AI bots for access

https://aws.amazon.com/blogs/aws/aws-waf-adds-ai-traffic-monetization-capability-to-help-content-...
6•mak8•26m ago•0 comments

Why I Email Complete Strangers

https://www.goodinternetmagazine.com/why-i-email-complete-strangers/
6•karakoram•28m ago•0 comments

Show HN: Simple, lightweight, modern, turnkey, Java web server library

https://github.com/Petersoj/jet
1•Petersoj•29m ago•0 comments

Pinboard.in is not resolving DNS

https://pinboard.in
2•yevuard•29m ago•1 comments

The Backdoors Inside Smart Devices WSJ [video]

https://www.youtube.com/watch?v=apEPPKYgLL0
1•gastonmorixe•30m ago•0 comments

Show HN: When Will AI? – A timeline of top AI predictions

https://whenwill.ai
2•jaymeh13•31m ago•0 comments

What if it all came out?

https://nymag.com/intelligencer/article/your-digital-self-is-vulnerable.html
2•alwa•33m ago•0 comments

Passing Cloudflare Turnstile using two fingers

https://blog.gingerbeardman.com/2026/06/15/passing-cloudflare-turnstile-using-two-fingers/
2•zdw•35m ago•0 comments

DPBench: Structural Determinants of Multi-Agent LLM Coordination

https://arxiv.org/abs/2602.13255
1•najmul-hasan•37m ago•0 comments

Fedora 44 Gnome review – We're not in Kansas anymore

https://www.dedoimedo.com/computers/fedora-44-gnome.html
2•dxs•38m ago•0 comments

The Most Recognized English Word

https://irreal.org/blog/?p=13877
1•dxs•38m ago•0 comments

Show HN: Get your first set of users by supporting others

https://founderkarma.co
2•okiki-clickdrop•39m ago•0 comments

Node-Red 5 Released

https://nodered.org/blog/2026/06/09/version-5-0-released
2•kristopherleads•40m ago•1 comments

90s Kid – Nineties Nostalgia

https://notas.grod.es/en/90s-kid
1•grodes•40m 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?