frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

How Fast You Age During 40s May Predict Memory Lapses in Your 50s

https://nautil.us/how-fast-you-age-during-40s-may-predict-memory-lapses-in-your-50s-1285315
1•Brajeshwar•1m ago•0 comments

Tyndall Effect

https://en.wikipedia.org/wiki/Tyndall_effect
1•thunderbong•3m ago•0 comments

Ask HN: Allow agents access to cloud files with least privilege

1•beerglass•6m ago•0 comments

How JWT Authentication Works

https://medium.com/@Koukyosyumei/how-jwt-authentication-actually-works-b4246ed637eb
1•syumei•7m ago•0 comments

US Military disables ad trackers amid concerns over troops' safety

https://taskandpurpose.com/news/military-cybersecurity-ad-trackers-iran/
2•uxhacker•8m ago•1 comments

Getting Banned from NT for Apple Silicon Project for Booting Windows on Apple M6

https://twitter.com/Acelogic_/status/2104215415995982130
1•xlmnxp•8m ago•0 comments

Current ways of developing AI agents contribute to degradation of oversight

https://arxiv.org/abs/2608.23642
2•utiiiD•9m ago•0 comments

postmarketOS Rebrand: Nura

https://nura.eco/blog/2026/09/27/nura-rename/
5•HotGarbage•13m ago•0 comments

EU urges UK to raise tariffs on Chinese cars to avoid 'made in Europe' barriers

https://www.ft.com/content/5453be91-7bd9-4097-9e83-870354d3a248
1•ksec•14m ago•1 comments

DOE releases national quantum computing roadmap

https://news.fnal.gov/2026/09/doe-releases-national-quantum-computing-roadmap-following-field-wid...
1•donutloop•17m ago•0 comments

The Normalization of Inexplicable Failures

https://www.ihatethefuture.com/2026/09/the-normalization-of-inexplicable.html
3•pxx•18m ago•0 comments

I Gave My Life over to Meta's A.I. Agent and Was Blown Away

https://www.nytimes.com/2026/09/22/technology/meta-muse-ai-agent.html
1•lxm•19m ago•0 comments

We Outsourced the Verb

https://www.yesigiveafig.com/p/we-outsourced-the-verb
1•Ariarule•21m ago•0 comments

Show HN: High-performance, zero-dependency charting engine for Svelte

https://bonguynvan.github.io/tradecanvas/
2•bonguynvan•22m ago•0 comments

Thoughts on HTML's proposed previewsrc attribute

https://shkspr.mobi/blog/2026/09/some-thoughts-on-htmls-proposed-previewsrc-attribute/
2•ajdude•24m ago•0 comments

Numeric just declared war on the journal entry

https://karthikkolapalli.substack.com/p/numeric-just-declared-war-on-the
1•grmatelich•26m ago•0 comments

What's Up with Monomorphism? (2015)

https://mrale.ph/blog/2015/01/11/whats-up-with-monomorphism.html
2•Frotag•27m ago•0 comments

A20 Pro and on-device AI: It's showtime

https://rickytakkar.com/blog_a20_pro_ai.html?source=hn
1•nullnotzero•27m ago•0 comments

Show HN: Updated Ceptile AI Search Improved Answers and Research

https://www.ceptile.com/
1•ShauryaAgarwalr•30m ago•0 comments

Is AGENTS.md useful? What the research found

https://gethrbr.com/blog/is-agents-md-useful
2•shoustak•32m ago•0 comments

Snowmoon

https://vitalik.eth.limo/snowmoon/
1•mellosouls•35m ago•0 comments

What Improves Developer Productivity at Google? Code Quality

https://dl.acm.org/doi/pdf/10.1145/3540250.3558940
1•gavinhoward•35m ago•0 comments

Show HN: PedalTalk, a hands-free group bike intercom that keeps your music on

https://play.google.com/store/apps/details?id=net.mrlatte.pedaltalk&hl=en_US
1•jongha•36m ago•0 comments

Show HN: Digital Audio Workstation built with stock WebAudio nodes

https://seven.systems/xequence2/demo/demo-deploy/www/index.html
1•intrr•38m ago•0 comments

Ju! Ju! Tsu!

https://arialdo.codeberg.page/ju-ju-tsu/
2•signa11•38m ago•0 comments

Luarocks.org Security Incident, September 2026

https://luarocks.org/security-incident-september-2026
2•sondr3•39m ago•0 comments

Good News for American Renters

https://economist.com/graphic-detail/2026/09/24/good-news-for-american-renters
1•andsoitis•39m ago•0 comments

Show HN: The Standup, releases, advisories and outages for developers

https://standup.thecompound.tech
1•kyisaiah47•40m ago•0 comments

Teaching GPU programming in p5.js: now with compute shaders

https://www.davepagurek.com/blog/p5-compute-shaders/
1•signa11•40m ago•0 comments

Text Gag

https://textgag.com/
1•hackerbeat•45m 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?