frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Marque – Domain Registrar on the AT Protocol

https://marque.at
1•scanash00•5m ago•0 comments

A New Register Allocator for ZJIT

https://railsatscale.com/2026-05-27-a-new-register-allocator-for-zjit/
1•thunderbong•6m ago•0 comments

Hermes Desktop – One-Click Installer for the Nous Research Hermes Agent

https://github.com/sir1st/hermes-desktop
1•sir1st•6m ago•0 comments

IBM commits $5B to secure open-source software

https://www.reuters.com/legal/transactional/ibm-commits-5-billion-secure-open-source-software-202...
2•giuliomagnifico•10m ago•0 comments

We need to own our computing experience

https://andregarzia.com/2026/05/we-need-to-own-our-computing-experience.html
1•soapdog•11m ago•0 comments

The Anatomy of an LLM

https://www.royvanrijn.com/anatomy-of-an-llm/
2•redcodenl•13m ago•2 comments

You can now use your Gmail account in Proton Mail

https://proton.me/blog/proton-mail-connect-gmail
2•berlianta•13m ago•0 comments

Show HN: Shaderbang – Shebang for Shaders

https://github.com/astefanutti/shaderbang
1•astefanutti•15m ago•0 comments

Machine Media: The Death of the Open Web

https://ipullrank.com/machine-media
1•iamacyborg•19m ago•0 comments

Midday – Open Source Invoicing, Time Tracking, File Reconciliation, Storage, etc

https://github.com/midday-ai/midday
1•peter_d_sherman•20m ago•0 comments

Motorola stops its phones from hijacking the Amazon app, which was 'unintended'

https://9to5google.com/2026/05/27/motorola-amazon-app-unintended/
3•mslusarz•23m ago•1 comments

Money Printer Pro – Open-source AI content generator

https://github.com/office233/MoneyPrinterPro
1•office233•25m ago•0 comments

Claude Opus 4.8 coming today?

https://twitter.com/synthwavedd/status/2059931370009272802
1•rebekkamikkoa•26m ago•0 comments

Show HN: Electrical Grid Mapping Launchpad

https://MapYourGrid.org/map-it/
2•andreashd11•31m ago•1 comments

DeepSeek-OCR Visualized

https://medium.com/advanced-deep-learning/deepseek-ocr-fully-visualised-843e2ba03976
1•coarchitect•32m ago•2 comments

Show HN: Generate Claude Code Workflows using Spec Driven Development approach

2•sermakarevich•34m ago•0 comments

Understand Vision Language Models

https://medium.com/advanced-deep-learning/how-ai-sees-and-reads-visualising-vision-language-model...
1•coarchitect•35m ago•1 comments

Show HN: AT4K Launcher - Apple TV inspired Launcher for Android TVs

https://at4klauncher.com
2•avadhesh18•35m ago•1 comments

Racket v9.2 is now available

https://blog.racket-lang.org/2026/05/racket-v9-2.html
2•spdegabrielle•36m ago•1 comments

Dirk and Linus discuss AI and kernel development

https://lwn.net/SubscriberLink/1073761/289a4e5513688987/
2•chmaynard•37m ago•0 comments

The lost Doves Type: A Thames mystery solved

https://www.londonmuseum.org.uk/blog/doves-type-thames-mystery-mudlarking/
1•ColinWright•39m ago•0 comments

Back from 1 week in SF from Paris

https://www.poxx.net/weblog/2026/05/back-from-san-francisco-s10e02.html
3•madflo•39m ago•1 comments

The Problem with the Ferrari Luce EV Offers a Lesson for Every Leader

https://www.inc.com/connor-jewiss/the-problem-with-the-ferrari-luce-ev-offers-a-lesson-for-every-...
12•connorjewiss•41m ago•5 comments

OLM to PST Converter PDS OLM to PST Converter

https://www.perfectdatasolutions.com/en/olm/olm-to-pst-converter.html
1•tieanderson•42m ago•1 comments

Norway will come under France's nuclear umbrella

https://www.reuters.com/world/europe/norway-will-come-under-frances-nuclear-umbrella-leaders-say-...
2•JumpCrisscross•46m ago•0 comments

China works on AI token futures market

https://www.reuters.com/world/china/china-works-ai-token-futures-market-sources-say-race-with-us-...
2•StromFLIX•48m ago•3 comments

The Thirty-Million-Line Problem (2015)

https://caseymuratori.com/blog_0031
1•tosh•49m ago•0 comments

Show HN: Open-source tool for deploying applications to K8s/OpenShift

https://github.com/nixys/nxs-universal-chart
2•nixys_nxs•53m ago•0 comments

The Witcher 3: Wild Hunt – Songs of the Past Announced

https://www.cdprojekt.com/en/media/news/the-witcher-3-wild-hunt-songs-of-the-past-announced/
2•marksully•53m ago•0 comments

Show HN: Reassign – a 24-hour dial for planning your day

https://reassign.app
4•smuk3c•53m ago•10 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?