frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

A free directory of ecommerce operations tools and checklists

https://www.storeops.directory/
1•jefffinds•47s ago•0 comments

Linus Torvalds to 'start being more hardnosed' about 'pointless pull requests'

https://www.theregister.com/oses/2026/05/25/linus-torvalds-to-start-being-more-hardnosed-about-po...
1•raybb•5m ago•0 comments

Introducing vtermux

https://www.mcpantz.org/blog/2026/05/24/introducing-vtermux/
1•angelixd•9m ago•0 comments

MCP Apps: interactive UIs for MCP tools

https://apps.extensions.modelcontextprotocol.io/api/
1•firasd•13m ago•0 comments

European social media newbies step forward as users drift from X

https://www.euractiv.com/news/european-social-media-newbies-step-forward-as-users-drift-from-x/
1•jruohonen•23m ago•0 comments

Vulnerability Spoiler Alert – Exposing Patches Before CVEs

https://vulnerabilityspoileralert.com
2•shaunpud•23m ago•0 comments

When you should bring in the heavy hitters (2017)

https://www.rawsignal.ca/newsletter-archive/when-you-should-bring-in-the-heavy-hitters/
1•downbad_•24m ago•0 comments

Eleata: Validate Peppol/XRechnung/Factur-X EU e-invoices in CI with fix hints

https://eleata.io/
1•hernanqwz•27m ago•0 comments

Claude's Mythos AI model may cause security issues for your money

https://www.rte.ie/brainstorm/2026/0517/1572343-claude-ai-model-security-issues-humans-work-infor...
1•austinallegro•33m ago•0 comments

Show HN: Porting my Newsletter to MCP – You set WHEN and HOW OFTEN to receive it

https://forwardpasstechnology.substack.com/p/you-decide-when-you-receive-forwardpass
1•AlatAnmoku•39m ago•0 comments

Why Do We Sleep Under Blankets, Even on the Hottest Nights? (2017)

https://www.atlasobscura.com/articles/blankets-summer-hot
2•downbad_•39m ago•0 comments

Google Wants to Own the Checkout Button

https://thingswithai.org/posts/google-universal-cart-agentic-commerce
2•UtkarshPatel13•45m ago•0 comments

Show HN: Bytery – a binary JSON protocol ~10x faster and ~10x smaller

https://github.com/jacksonsolid/Bytery
1•teamsolid•45m ago•0 comments

Becalled

https://becalled.eu
1•leaklords•48m ago•0 comments

Chrome and Android‑apps story that predicted today's Googlebooks moment

https://www.windowscentral.com/microsoft/windows-10/flashback-the-2016-chrome-and-android-apps-st...
1•theanonymousone•50m ago•0 comments

Quantifying Physical Activity Energy Expenditure (Compendium)

https://pacompendium.com/
1•rramadass•51m ago•1 comments

Gelatine Sculpt Metabolism Support – Weight-Loss Guide 2026

https://finance.yahoo.com/sectors/healthcare/articles/gelatine-sculpt-exploding-2026-viral-142500...
1•ragypalz•53m ago•0 comments

Femtosecond Jitter: High Performance White Rabbit Timing Receiver

https://gitlab.com/ohwr/project/ertm15-llrf-wr/-/wikis/home
1•KnuthIsGod•56m ago•0 comments

A curated list of static analysis (SAST) tools

https://github.com/analysis-tools-dev/static-analysis
1•saikatsg•58m ago•0 comments

James D. Johnston the father of perceptual audio coding

https://ethw.org/James_D._Johnston
1•KnuthIsGod•1h ago•0 comments

Kevin O'Leary wants AI data centre in Utah. Some residents aren't happy

https://www.cbc.ca/news/world/kevin-oleary-data-centre-utah-9.7207716
1•1vuio0pswjnm7•1h ago•0 comments

C array types are weird

https://anselmschueler.com/blogposts/2025-c-pointers/
1•signa11•1h ago•1 comments

ATV1sm: Bypass for the original Apple TV's EFI verification to boot any EFI OS

https://distrohopper39b.com/atv1sm/
1•866-RON-0-FEZ•1h ago•0 comments

Is PowerBuilder Legacy Technology in 2026?

https://medium.com/@kumaransystemsdm/is-powerbuilder-really-legacy-technology-in-2026-46df8324b7b9
1•rajkumarsekar•1h ago•0 comments

Exon Language: Invitation for Contributors

https://github.com/atdrez/exon/discussions/2
1•atdrez•1h ago•0 comments

How My minimal, memory-safe Go rsync steers clear of vulnerabilities

https://michael.stapelberg.ch/posts/2026-05-24-minimal-memory-safe-go-rsync-vulns/
2•signa11•1h ago•0 comments

Show HN: Antimemetic message that escapes screen capture

https://fx.leftium.com/static
2•Leftium•1h ago•0 comments

Evaluating Quarkdown for Agentic Typesetting

https://quarkdown.com/blog/agent-skill/
1•iamgioh•1h ago•0 comments

'It's called winning': Why a tech industry super PAC is running ads about ICE

https://www.washingtonpost.com/technology/2026/05/23/ai-industry-super-pacs-are-intervening-midte...
3•1vuio0pswjnm7•1h ago•0 comments

Show HN: Cadence – Small marker tracking for source files

https://github.com/skorotkiewicz/cadence
1•modinfo•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?