frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Saar Agentic Orchestration Platform

https://github.com/Poi5eN/Nexus
1•Poi5eN•1m ago•0 comments

OCaml 5.5.0 Released

https://discuss.ocaml.org/t/ocaml-5-5-0-released/18265
1•birdculture•5m ago•0 comments

Hilarious German Compound Nouns you won't want to miss

https://www.rayburntours.com/blog/2016/10/03/25-hilarious-german-compound-nouns-wont-want-miss/
2•Tomte•8m ago•1 comments

Reality has a surprising amount of detail (2017)

https://johnsalvatier.org/blog/2017/reality-has-a-surprising-amount-of-detail
1•tosh•10m ago•0 comments

Show HN: Onbalance – privacy-first cashflow planning app got a multiuser update

https://onbalance.app/
1•doctorsolberg•16m ago•0 comments

GitHub Copilot improves productivity 40%

https://arxiv.org/abs/2606.00438
1•copy-pashte•19m ago•0 comments

Data centers become the face of AI backlash

https://www.axios.com/2026/06/22/ai-data-center-backlash-poll
1•ilreb•23m ago•0 comments

Productivity: Bookmarkr Chrome plugin with Visual and organized grid

https://chromewebstore.google.com/detail/bookmarkr-—-visual-bookma/lianafemkbankodapdaokiefoffi...
1•mnomansd•24m ago•0 comments

Bitcoin is stuck near $64,000 as ETF outflows reach a sixth week

https://www.techsentiments.com/article/2026/06/22/live-markets-bitcoin-is-stuck-near-64000-as-etf...
1•rajsuper123•27m ago•0 comments

Black Box Probing: A Security Analysis of Xiaomi's MJA1 Secure Chip

https://blog.quarkslab.com/black-box-probing-a-security-analysis-of-xiaomis-mja1-secure-chip.html
1•ahlCVA•29m ago•0 comments

Show HN: Prismag – Per-block model routing for the terminal and any IDE

https://github.com/rufus-SD/prismag
1•arthur-G•36m ago•0 comments

UUID: NewV7() always generates a UUID with 7000 on browsers (Golang)

https://github.com/golang/go/issues/80084
1•mfrw•38m ago•0 comments

QUIC is more than a replacement for TCP

https://kerkour.com/quic-tcp
3•enz•38m ago•1 comments

In Mizoram, India, the Shops Have No Shopkeepers (2020)

https://matadornetwork.com/read/mizoram-india-shops-no-shopkeepers/
1•susam•43m ago•0 comments

Turning spoken commands into JSON tool calls on iPhones

https://blog.wildedge.dev/posts/in-app-voice-assistant
3•wojked•45m ago•0 comments

Lessons from Building Evals for Financial AI Agents

https://www.primerapp.com/blog/lessons-from-3-years-of-evals/
3•smallwoodal•46m ago•3 comments

I moved a broker's virtualization from Hyper-V to Proxmox with zero downtime

https://faridsaid.com/en/blog/migration-hyperv-proxmox.html
1•fawraw•50m ago•0 comments

Callback 8020 by Commodore – The Flip Phone Between Dumb and Smart

https://order.commodore.net/callback-privacy/
1•fmoronzirfas•53m ago•0 comments

Minia2a – A Marketplace Where AI Agents Earn Money

https://minia2a.uk
1•dgyte•53m ago•1 comments

Databricks vs. AWS managed service which one fits your need?

https://thedatabytes.substack.com/p/databricks-vs-aws-native-at-20tb
1•badhayaru•54m ago•0 comments

Natural Selection Maximizes Fisher Information

https://www.researchgate.net/publication/23496378_Natural_Selection_Maximizes_Fisher_Information
1•dtj1123•54m ago•0 comments

Safebucket – an open source file sharing platform with pluggable infrastructure

https://github.com/safebucket/safebucket
1•sebakubisz•55m ago•0 comments

Yann LeCun „World Models: Enabling the Next AI Revolution" [video]

https://www.youtube.com/watch?v=72Xj8k5WQX4
2•dgellow•56m ago•0 comments

Optimizing [sqlx:test] rebuild time

https://kobzol.github.io/rust/2026/06/21/optimizing-sqlx-test-rebuild-time.html
1•ibobev•57m ago•0 comments

Networking tool to host WireGuard servers with only outbound connections

https://github.com/klauscam/BastionRoute
1•tuta88•58m ago•0 comments

Anthropic's Mythos mess just keeps getting more complicated

https://www.theregister.com/ai-and-ml/2026/06/22/anthropics-mythos-mess-just-keeps-getting-more-c...
1•rbanffy•58m ago•0 comments

Agile and Coding: An Agent- and Human-Friendly Architecture

https://davidvujic.blogspot.com/2026/06/an-agent-and-human-friendly-architecture.html
1•BerislavLopac•58m ago•0 comments

PivCo-Huffman "Merge" Operations

https://fgiesen.wordpress.com/2026/06/21/pivco-huffman-merge-operations/
1•ibobev•58m ago•0 comments

Show HN: Cyclearchive.com – searchable archive of historical cycling literature

https://cyclearchive.com/
1•alastairr•58m ago•0 comments

Interlude: Using the Index Registers Effectively on the Z80

https://bumbershootsoft.wordpress.com/2026/06/20/interlude-using-the-index-registers-effectively-...
1•ibobev•59m 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?