frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Skeptics Question Whether SpaceX Is Worth $1.77 Trillion

https://www.nytimes.com/2026/06/11/technology/spacex-valuation-skeptics.html
1•petilon•1m ago•0 comments

Spark – Turn any article into a LinkedIn post without leaving the tab

https://spark.bhairav.ai/
1•chandanjha_dev•2m ago•0 comments

JEP 401 being merged into JDK 28?

https://mail.openjdk.org/archives/list/jdk-dev@openjdk.org/message/AIA3O3LHFZ6T7TIPH7KZT4WS4B6U72U5/
2•birdculture•2m ago•0 comments

Shall we play a game? – LLMs use tactical nukes in 95% of simulations

https://www.kennethpayne.uk/p/shall-we-play-a-game
2•nick238•3m ago•0 comments

Recognize and break the cycle of poor family upbringing

https://comuniq.xyz/post?t=1230
1•01-_-•4m ago•0 comments

Mtplx 1.0.0

https://github.com/youssofal/MTPLX/releases
1•rrevi•4m ago•1 comments

FAQ: The Secure Boot Disaster

https://www.heise.de/en/guide/FAQ-The-secure-boot-disaster-9751994.html
1•fh973•6m ago•0 comments

AI Learned How the Universe Works and Created Unexpected Problems for Physicists

https://gizmodo.com/ai-learned-how-the-universe-works-and-that-created-an-unexpected-problem-for-...
1•SVI•7m ago•0 comments

Refactoring English: Month 18

https://mtlynch.io/retrospectives/2026/06/
1•speckx•8m ago•0 comments

Powering the next era of Confidential AI

https://cloud.google.com/blog/products/identity-security/powering-the-next-era-of-confidential-ai
1•strstr•13m ago•0 comments

Show HN: PyTorch on Java

https://github.com/haifengl/smile/tree/master/deep
1•pdsminer•13m ago•0 comments

The three lines of CSS that saved me 40kb and might do the same for you

https://blog.welcomehome.city/b/three-lines/
3•speckx•13m ago•0 comments

Governing agent autonomy with Auto-review

https://cursor.com/blog/agent-autonomy-auto-review
1•davidgomes•14m ago•0 comments

The Great American AI Act (draft) [pdf]

https://obernolte.house.gov/sites/evo-subsites/obernolte.house.gov/files/evo-media-document/the-g...
5•verdverm•15m ago•1 comments

Anthropic launches $150M Claude Corps nonprofit fellowship program

https://qz.com/anthropic-claude-corps-fellowship-nonprofits-150-million-061126
2•01-_-•17m ago•0 comments

Ivanti Sentry pre-auth RCE (CVE-2026-10520) – CVSS 10.0, public PoC, CISA KEV

https://hellorecon.com/blog/cve-2026-10520
2•slvnx•19m ago•0 comments

Building a Personal RAG Chatbot in a Few Days

https://e-mahmoudi.me/blog/building-a-personal-rag-chatbot-in-a-few-days-learning-by-engineering/
1•jeyem•22m ago•1 comments

Show HN: A habit tracker for people who keep quitting their hobbies

https://streakup.pro/
1•mark_ka•22m ago•0 comments

How Diana Ross' 1994 opening ceremony penalty gaffe came about

https://www.telegraph.co.uk/football/2026/06/11/america-world-cup-opening-ceremony-diana-ross-pen...
1•austinallegro•23m ago•1 comments

When Weight-Loss Drugs Don't Work

https://www.nytimes.com/2026/03/12/well/weight-loss-drugs-response-wegovy-zepbound.html
1•paulpauper•23m ago•0 comments

Rust Programming Language learning roadmap

https://forwardevery.day/2024/03/26/rust-programming-language-learning-roadma/
1•mahirsaid•24m ago•0 comments

Building Hollywood Motion Capture from Scratch [video]

https://www.youtube.com/watch?v=kYVqL_DqBis
1•erichocean•24m ago•0 comments

Several things I like about macOS 27 Golden Gate that have nothing to do with AI

https://arstechnica.com/gadgets/2026/06/five-things-i-like-and-one-thing-i-still-want-in-the-maco...
1•rbanffy•24m ago•0 comments

When we ask how to help

https://sheets.works/data-viz/how-to-help
1•structuredPizza•25m ago•0 comments

Please, Use a Link

https://idiallo.com/blog/use-a-link-please
4•foxfired•25m ago•0 comments

An Introduction to Quantitative Spatial Economics

https://nicholasdecker.substack.com/p/an-introduction-to-quantitative-spatial
2•paulpauper•28m ago•0 comments

Ekbatan – Java persistence framework for event-driven systems

https://zyraz-io.github.io/ekbatan/
2•unikzforce•29m ago•0 comments

Only Law Can Prevent Extinction

https://www.lesswrong.com/posts/5CfBDiQNg9upfipWk/only-law-can-prevent-extinction
2•paulpauper•29m ago•0 comments

California woman sentenced to 4 years in deadly OnlyFans fetish encounter

https://ktla.com/news/california/escondido-death-case-involuntary-manslaughter-plea/
2•Bender•30m ago•0 comments

ITScape: Guest-to-Host Escape in KVM/ARM64 (CVE-2026-46316)

https://seclists.org/oss-sec/2026/q2/877
2•Wingy•30m 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?