frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Self hosted excalidraw workspace with storage

https://github.com/PriyavKaneria/excalidraw-workspace
1•diginova•6m ago•0 comments

Help, my dentist started coding – or: a little history of low code solutions

https://thomas-witt.com/blog/help-my-dentist-started-coding/
1•thomas_witt•7m ago•0 comments

The Seinfeld Chronicles

https://seinfeld.visualisingdata.com
1•akashwadhwani35•7m ago•0 comments

A return to two-pizza culture

https://www.allthingsdistributed.com/2026/06/return-to-two-pizza-culture.html
1•theanonymousone•8m ago•0 comments

Study: Universities must rethink how they prepare students for an AI world

https://www.manchester.ac.uk/about/news/universities-must-rethink-how-they-prepare-students/
1•giuliomagnifico•9m ago•0 comments

Reliable OST to PST Conversion

https://blog.perfectdatasolutions.com/ost-to-pst-converter-software-2/
1•tieanderson•11m ago•0 comments

Boston Is Drinking Like It's 1776. The Founding Fathers Would Be Proud

https://www.nytimes.com/2026/07/02/us/brooke-barbier-revolutionary-era-drinks.html
1•koolba•12m ago•0 comments

DOGE self-deletes on July 4th. The grand experiment fell apart long before that

https://www.eenews.net/articles/doge-self-deletes-on-july-4th-the-grand-experiment-fell-apart-lon...
2•Anon84•13m ago•0 comments

The Founder Who Got Fired for Ignoring His Own Return-to-Office Rules

https://www.wsj.com/business/the-founder-who-got-fired-for-ignoring-his-own-return-to-office-rule...
2•bushwart•14m ago•0 comments

JavaScript still can't ship a full-stack module

https://wasp.sh/blog/2026/06/22/javascript-still-cant-ship-a-full-stack-module
1•infomiho•16m ago•0 comments

ClickHouse is winning the Observability Wars

https://matduggan.com/clickhouse-is-winning-the-observability-wars/
3•birdculture•16m ago•0 comments

In-browser programmable robot simulator

https://bittlex-sim.petoi.com/
2•lijay•18m ago•0 comments

Nocode: Way to write secure and reliable applications

https://github.com/kelseyhightower/nocode
1•yladiz•22m ago•0 comments

Carbon Engine – open-source tech powering EVE Online

https://github.com/orgs/carbonengine/repositories
1•regnerba•22m ago•0 comments

Show HN: A Simple Containerized Browser

https://spunto.net/blog/browser-remote
1•codehammer•25m ago•0 comments

Category Theory Illustrated – Monoids

https://abuseofnotation.github.io/category-theory-illustrated/03_monoid/
2•frenchie_sans•26m ago•0 comments

Thieves Are Now Targeting AI Data Center Construction Sites for Copper

https://www.vice.com/en/article/thieves-are-now-targeting-ai-data-center-construction-sites-for-c...
1•Gedxx•27m ago•0 comments

Bhopal's '90-degree' bridge turns out to bend 118 degrees (2025)

https://organiser.org/2025/09/14/315715/bharat/bhopals-90-degree-bridge-turns-out-to-bend-118-deg...
2•Tomte•28m ago•0 comments

Ask HN: How are you creating demo videos for your product?

1•akarshhegde18•34m ago•0 comments

Instagram running ads promoting child sexual abuse material in India, BBC finds

https://www.bbc.co.uk/news/articles/cvgm4e0316zo
2•shrikant•37m ago•0 comments

A big Markdown file should become a PDF you can navigate

https://demchaav.github.io/blog/posts/markdown-navigable-pdf/
1•demchaav•38m ago•0 comments

Very Average Prototypes

https://goodnameforablog.com/posts/very-average-prototypes/
1•robin_reala•39m ago•1 comments

Scaling Java-Based Real-Time Systems: Hidden Tradeoffs of Event-Driven Design

https://www.infoq.com/articles/tradeoffs-event-driven-design/
2•theanonymousone•40m ago•0 comments

The virtual power plant era has arrived

https://www.pv-magazine.com/2026/06/29/the-virtual-power-plant-era-has-arrived/
1•ndr42•41m ago•0 comments

Intent-addressable code for AI coding agents

https://github.com/croviatrust/causari
1•CroviaTrust•41m ago•0 comments

Show HN: Autosynth – generating synthetic data with strong/weak model filtering

https://github.com/Ahmad8864/autosynth
1•ahmadbabdallah•43m ago•0 comments

The Intimate Legacies of a White-Supremacist Coup

https://www.newyorker.com/news/letter-from-the-south/the-intimate-legacies-of-a-white-supremacist...
2•rbanffy•44m ago•1 comments

Guandimiao (Archaeological Site in Henan, China)

https://en.wikipedia.org/wiki/Guandimiao
1•tux3•45m ago•0 comments

Astrophysicists Puzzle over Webb's New Universe

https://www.quantamagazine.org/astrophysicists-puzzle-over-webbs-new-universe-20260702/
5•jnord•52m ago•0 comments

Diseconomies of scale in fraud, spam, support, and moderation

https://danluu.com/diseconomies-scale/
3•Liriel•52m ago•1 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?