frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Hex1bThe .NET Terminal Application Stack

https://hex1b.dev/
1•joshka•2m ago•0 comments

What If Everyone Saw Your Whole Digital Life?

https://nymag.com/intelligencer/article/your-digital-self-is-vulnerable.html
1•gaws•3m ago•0 comments

Ask HN: Would you want to know when and how you die?

2•JohnDSDev•5m ago•1 comments

The Technical Realities of Email Privacy

https://www.ivpn.net/privacy-guides/email-and-privacy/
3•jethronethro•5m ago•0 comments

Something Is Very Wrong in San Francisco

https://www.simplermachines.com/something-is-very-wrong-in-san-francisco/
1•danorama•6m ago•0 comments

Hubble tension, dark energy, and α from one number, zero free parameters

https://zenodo.org/records/19230547
1•yukky•8m ago•0 comments

All Gists Discussed on HN

https://news.ycombinator.com/from?site=gist.github.com&kind=comment
1•sillysaurusx•8m ago•1 comments

Discussion of GitHub repos on HN

https://news.ycombinator.com/from?site=github.com&kind=comment
1•sillysaurusx•9m ago•0 comments

"polarization" might, in part, be a proximity issue

https://justinjackson.ca/communication
2•YounesDz•10m ago•1 comments

France to ditch Palantir's AI data tools in favour of domestic provider

https://www.theguardian.com/world/2026/jun/16/france-ai-data-tools-palantir-chapsvision
6•devonnull•13m ago•0 comments

Property Graph Support in PostgreSQL 19

https://www.postgresql.org/docs/19/ddl-property-graphs.html
1•tharakam•13m ago•0 comments

How to Deploy Hermes AI Agent with Docker and HTTPS

https://devopness.com/blog/deploy-hermes-ai-agent-devopness/
1•Diegiwg•14m ago•0 comments

US moves to offer Iran sanctions relief

https://www.timesofisrael.com/liveblog_entry/us-to-allow-iran-to-begin-selling-oil-and-fuel-immed...
1•GreenSalem•15m ago•0 comments

Skill Fablize for Hermes

https://github.com/teixeirazeus/fablize-for-hermes
1•teixeirazeus•16m ago•0 comments

OBS Agentic Control Interface

https://github.com/DeepBlueDynamics/obsagent
1•kordlessagain•20m ago•0 comments

Trump admin tries to block Clean Air Act lawsuit over xAI's gas turbines

https://arstechnica.com/tech-policy/2026/06/trump-admin-helps-xai-fight-pollution-lawsuit-says-mi...
5•staplung•27m ago•1 comments

The Limits of Altruism

https://asindu.xyz/blog/the-limits-of-altruism/
1•asxndu•27m ago•0 comments

Web Search API for Agents 70x Cheaper Than Exa

https://www.searchspace.io/
2•carsonpoole•29m ago•0 comments

OpenAI spending hit $34B last year ahead of planned IPO, $21B losses

https://www.ft.com/content/e15b0d7e-ff6b-4f16-ba7a-4068feddb828
3•1vuio0pswjnm7•29m ago•0 comments

Building Production AI Apps on Claude Code and Cloudflare [video]

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

How HN: Nova BRAIN – STIG scanning and POA&M automation dashboard

https://dawitone.gumroad.com/l/fgwfzl
1•Butulove•33m ago•0 comments

GoJS – Interactive diagramming for every industry

https://gojs.net/latest/
1•simonsarris•33m ago•0 comments

How to make small models punch way above their weight with DeepClause

https://deepclause.substack.com/p/how-to-make-small-models-punch-way
1•schmuhblaster•33m ago•0 comments

Gravitational-wave detections double with new catalog

https://news.northwestern.edu/stories/2026/03/gravitational-wave-detections-double-with-new-catalog
1•wglb•33m ago•0 comments

Framer 3.0

https://www.framer.com/updates/framer-3
1•SpyCoder77•34m ago•0 comments

OpenAI's financials have leaked, showing $21B in losses against $13B in revenue

https://fortune.com/2026/06/16/openai-financials-leaked-losses-revenue-profit/
6•1vuio0pswjnm7•34m ago•1 comments

Spin separates giant planets from 'failed stars'

https://news.northwestern.edu/stories/2026/03/spin-separates-giant-planets-from-failed-stars
2•wglb•35m ago•0 comments

Show HN: I Built a Free Text Based Audio Editor

https://audioeditor.pro/
1•wbemaker•36m ago•0 comments

How SpaceX's arrival impacts the stock market

https://www.axios.com/2026/06/15/spacex-ipo-stock-retail
1•1vuio0pswjnm7•37m ago•0 comments

PP-OCRv6

https://huggingface.co/collections/PaddlePaddle/pp-ocrv6
3•gomizhuce•39m 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?