frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Jetway, a working airline GDS and message router

https://github.com/adamf/jetway
1•adam_gyroscope•3m ago•0 comments

Congratulations to the Winners of the 2026 Online Journalism Awards

https://awards.journalists.org/2026/09/03/congratulations-2026-oja-virtual-ceremony-winners/
2•rdmuser•8m ago•0 comments

Why I am so against volunteering in academia (ecology-edition)

https://statmodeling.stat.columbia.edu/2026/08/19/why-i-am-so-against-volunteering-in-academia-ec...
1•luu•14m ago•0 comments

British police try to track down theft of 70k pints worth of Guinness stout

https://apnews.com/article/guinness-heist-stout-stolen-truck-depot-pabst-pbr-88b7745450be79af57d3...
1•ChrisArchitect•14m ago•0 comments

Delve (YC W24) accused of misleading customers with 'fake compliance'

https://finance.yahoo.com/sectors/technology/articles/delve-accused-misleading-customers-fake-170...
2•mgh2•15m ago•2 comments

Where Europe Goes to Gig

https://europeancorrespondent.com/en/r/where-europe-goes-to-gig
1•gmays•20m ago•0 comments

Project Xanadu: Even More Hindsight

https://gwern.net/xanadu
2•andsoitis•21m ago•0 comments

Mercury Poisoning Situation at MIT [video]

https://www.youtube.com/shorts/Z78WXXQd4ok
1•fortran77•21m ago•0 comments

Patient Who Received Pig Kidney First to Progress to Human Kidney Transplant

https://hms.harvard.edu/news/patient-who-received-pig-kidney-becomes-first-progress-human-kidney-...
1•bookofjoe•22m ago•0 comments

Burning Man has become a wrinkled sausage fest of aging millennial men

https://nypost.com/2026/09/03/us-news/burning-man-has-become-a-wrinkled-sausage-fest-of-aging-mil...
1•fortran77•23m ago•0 comments

Stream Ciphers and ChaCha20-Poly1305

https://ekunazanu.foo/lab/stream-ciphers/
1•vismit2000•23m ago•0 comments

Release 13.1.5 · Grafana/Grafana

https://github.com/grafana/grafana/releases/tag/v13.1.5
1•kyisaiah47•24m ago•0 comments

Late Merge

https://third-bit.com/2026/06/03/late-merge/
1•greyface-•25m ago•0 comments

Show HN: a Rust compiler translating Joern CPGs to Nuclei templates

https://medium.com/@mhiritarek/why-i-built-a-deterministic-cpg-to-nuclei-compiler-in-rust-bcb6c7a...
1•Tarek-M•26m ago•0 comments

The Summer of Open Weights

https://martinalderson.com/posts/the-summer-of-open-weights/
1•gmays•31m ago•0 comments

What is Nueralese and Why is it Bad

https://www.lesswrong.com/posts/RCYF2rW8wgusidZk7/what-is-neuralese-and-why-is-it-bad
1•tristanMatthias•33m ago•0 comments

An Alternative to Jira ScriptRunner

https://github.com/ONES-com/onescript-workflow-automation
1•BeautifulONES•33m ago•0 comments

The Last Interview

https://nition.momentstudio.co.nz/p/the-last-interview
2•Nition•35m ago•0 comments

NuFinder, a macOS file manager with real RAID across S3-compatible buckets

https://nufinder.org/
1•LouisvilleGeek•41m ago•0 comments

Kalder CEO Pleads Guilty to Securities Fraud

https://www.justice.gov/usao-sdny/pr/kalder-ceo-pleads-guilty-securities-fraud
3•mgh2•41m ago•0 comments

BoardUI

https://github.com/BoardUI/boardui
1•handfuloflight•48m ago•0 comments

Ask HN: How do you break AI agents out of the "apologize and repeat" loop

2•Marvin_RunAI•49m ago•0 comments

Remember Bebo? Founder shares the story

https://www.youtube.com/watch?v=H3QXvlY-kYM
1•kirstyaden•50m ago•0 comments

ArtStation Should Put Artists First

https://magazine.artstation.com/2026/09/ai-updates-from-artstation/
2•doppp•54m ago•0 comments

Crew – A multiplayer AI workspace for humans and agents, now with iOS apps

https://github.com/JamelHammoud/crew
1•alihammoud21•55m ago•0 comments

Wikimedia Workers Overwhelmingly Win Union with 93% Yes Vote

https://www.wired.com/story/wikipedia-workers-vote-on-whether-to-unionize/
4•taftfartley•56m ago•0 comments

GPT‑6 Astra

https://simonwillison.net/2026/Sep/3/gpt6-astra/
1•doppp•57m ago•0 comments

MemWeaver – a vector DB with predictable memory usage

https://github.com/daib/mem_weaver
1•legosys•57m ago•0 comments

Shell.Online: live browser link for any terminal process

https://shell.online/
1•handfuloflight•58m ago•0 comments

The Latest YC Batch

https://www.neweconomies.co/p/y-combinator-summer-26-batch
1•ollieforsyth•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?