frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

OpenAI Freezes Development of Top Models After Rogue Agents Leak User Images

https://openai.com/hugging-face-incident-and-misalignment/#model-misalignment-2026-09-25-data-tra...
1•justinc8687•4m ago•0 comments

Bill Clinton delivers keynote address:CGI 2026

https://www.youtube.com/watch?v=zbXbRpSwaiM
1•rasengan0•5m ago•0 comments

Sheep, duck and rooster balloon flight as a WebGL diorama

https://www.echohive.ai/experiments/versailles-balloon
1•echohive42•5m ago•0 comments

Show HN: Shipwithmuse.live – a catalog of things people built with Muse

https://shipwithmuse.live/
1•mdayan896•5m ago•0 comments

Show HN: MuseLIVE – lossless-audio live streaming platform for musicians

https://www.muse.live/
1•mdayan896•14m ago•0 comments

The internet discovers TLA+. Now what?

https://reasonable.io/blog/tla-tutorial/
2•matt_d•18m ago•0 comments

Four CHI '26 papers I wish I wrote

https://countingfromzero.blog/2026/04/24/four-chi-26-papers-i-wish-i-wrote/
1•luu•20m ago•0 comments

What Happens When Formalization Becomes Cheap?

https://yangky11.github.io/blog/ai-and-formalization/
1•matt_d•24m ago•0 comments

Show HN: Niral – Daily Tamil/Tanglish Puzzle Game

https://tamil.niral.games/
1•laxmena•29m ago•0 comments

LLM Agents Can Easily Tamper with Their Own Traces

https://arxiv.org/abs/2609.30266
1•sbulaev•37m ago•0 comments

An Introduction to Lithium Niobate Nanophotonics (2024)

https://www.latitudeds.com/post/an-introduction-to-lithium-niobate-nanophotonics
2•peter_d_sherman•37m ago•0 comments

Valley fever spreading to Central Valley cities, linked to oil drilling

https://www.latimes.com/science/story/2026-09-24/valley-fever-spreading-to-central-valley-cities-...
4•littlexsparkee•38m ago•0 comments

Show HN: Try SpikeUI (for free) and make .exe apps the easy way

https://nimoxi.com/spikeui/
1•Caronte3D•56m ago•0 comments

Ten Years of the Creative Independent

https://thecreativeindependent.com/ten-years/
2•cookingoils•56m ago•0 comments

Wall-mounted vegetable garden growing peppers over 2 meters tall [video]

https://www.youtube.com/watch?v=Wvb52q9TKKM
5•moltean•57m ago•0 comments

Qualcomm Unveils Snapdragon 8 Elite Gen 6 and Elite Extreme Gen 6

https://www.servethehome.com/qualcomm-unveils-snapdragon-8-elite-gen-6-and-elite-extreme-gen-6-ne...
1•cisc•1h ago•0 comments

Details of how Tumbler Ridge mass shooter used ChatGPT

https://www.cbc.ca/news/canada/british-columbia/mother-jones-chatgpt-safeguards-tumbler-ridge-bc-...
2•Alien1Being•1h ago•0 comments

Show HN: Twitter GIF Downloader and Conversation Browser-Based

https://twitee.co/twitter-gif-downloader
1•nohuman-labs•1h ago•0 comments

Getting root on OnePlus 15 from an untrusted app

https://blog.nns.ee/2026/09/24/oneplus-root/
1•shscs911•1h ago•0 comments

The Hannibal Directive

https://en.wikipedia.org/wiki/Hannibal_Directive
2•chasil•1h ago•1 comments

A free, keyless MCP Server for CVE data and per-CVE internet Exposure

1•echelongraph•1h ago•0 comments

Reelizer: Film Art, Curated

https://www.reelizer.com/about
1•thecosas•1h ago•0 comments

Stanford research suggests human brain might be two organs fused together

https://caliber.az/en/post/stanford-research-suggests-human-brain-might-be-two-organs-fused-together
2•wellpast•1h ago•1 comments

Earth microbes survive simulated conditions of Saturn moon's ocean

https://www.theguardian.com/science/2026/sep/25/earth-microbes-survive-conditions-enceladus-satur...
3•saikatsg•1h ago•0 comments

Technology and Marketing Law Blog

https://blog.ericgoldman.org/
3•peter_d_sherman•1h ago•0 comments

One, Two, Three, Eyes on Me (2017)

https://www.lrb.co.uk/the-paper/v39/n19/george-duoblys/one-two-three-eyes-on-me
2•Tomte•1h ago•0 comments

Show HN: The City – a native Mac app that shows Claude Code as a city of robots

https://github.com/Slaymish/theCity
1•slaymish•1h ago•0 comments

Show HN: Esh – English to Shell

https://github.com/numericalworks/esh
1•mindaslab•1h ago•0 comments

Unusual earthquake activity detected at site of former N. Korea nuclear facility

https://www.independent.co.uk/news/science/earthquake-north-korea-nuclear-mountain-mantap-b305227...
2•saikatsg•1h ago•0 comments

Online Sound Meter

https://asoundmeter.com/
1•artiomartiom•1h 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?