frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

New York State Sue Polymarket for Running Illegal Gambling Operation

https://www.governor.ny.gov/news/governor-hochul-and-attorney-general-james-announce-lawsuit-agai...
1•DeepLogin•3m ago•0 comments

The Appocalypse

https://chrysalisbyauke.substack.com/p/the-appocalypse
1•Poefke•5m ago•1 comments

Study reveals evolutionary history of bats, dating back 65M years

https://www.reuters.com/science/study-reveals-evolutionary-history-bats-dating-back-65-million-ye...
1•1659447091•11m ago•0 comments

Show HN: AtlasBurn – Know what your AI costs and stop runaway agents

https://atlasburn.com/
2•Akhil__Anand•12m ago•0 comments

Netanyahu calls Israel's war in Gaza 'opposite of genocide' in UN speech

https://www.theguardian.com/us-news/2026/sep/24/netanyahu-un-speech-mahmoud-abbas
4•hebelehubele•16m ago•0 comments

The Purpose Isn't What It Does

https://www.tbray.org/ongoing/When/202x/2026/09/24/The-Purpose-Isnt-What-It-Does
1•robin_reala•17m ago•0 comments

Tech Needs Humanists More

https://passo.uno/tech-needs-humanists-more-than-ever/
6•eigenBasis•18m ago•0 comments

Privacy.com does KYC using Peter Thiel's Persona [video]

https://www.youtube.com/watch?v=1P1y5YhMHXs
1•basilikum•19m ago•0 comments

Show HN: LabLoop – isolated infrastructure for LLM-driven scientific experiments

https://github.com/cloudcell/labloop
1•cloudcell•23m ago•0 comments

Dutch Hackers Collective Hacked

https://csirt.divd.nl/2026/09/24/when-not-if/
2•HelloUsername•23m ago•0 comments

Boards of Casio

https://www.ambionix.com/blog/boards-of-casio/
2•fidotron•24m ago•0 comments

AI as a Tool in Taste Research: decoding the taste of bitterness

https://www.leibniz-lsb.de/en/press-public-relations/pm-20260922-press-release-ai-as-a-tool-in-ta...
1•giuliomagnifico•25m ago•0 comments

Show HN: Selfime, a cassette-style recorder for meditations in your own voice

https://selfime.com/
1•loopfor•25m ago•0 comments

Show HN: Proxima Forma – Designs that my AI agents understand

https://proximaforma.com/
1•Modecir•27m ago•0 comments

Bootstrap Chain for NixOS: Building the System from a Hand-Auditable Binary Seed

https://chaos.social/@nzbr/115973847897716839
1•birdculture•30m ago•0 comments

What is the future for soace science missions after all this?

https://www.scientificamerican.com/article/nasa-goddards-shrinking-workforce-could-stifle-future-...
1•quasistasis•33m ago•1 comments

In Support of Agent Led Software Engineering

https://promptogether.com/posts/In_Support_of_Agent_Led_Software_Engineering/
1•brainless•34m ago•1 comments

NHS bodies in England impose 2-year minimum wait for ADHD and autism assessments

https://www.theguardian.com/society/2026/sep/24/nhs-integrated-care-boards-england-two-year-waiti...
1•chrisjj•35m ago•1 comments

Show HN: Apowerb, the open-source AI agent runtime (RAG, Text-to-SQL, webhooks)

https://github.com/apowerb/apowerb
1•Anis_FA•37m ago•0 comments

The last day of the dinosaurs, as an interactive painting

https://www.echohive.ai/experiments/dinosaurs
11•echohive42•52m ago•9 comments

Special Projects (2016)

https://openai.com/index/special-projects/
13•vinhnx•54m ago•1 comments

Colibri: CERN VHDL Common Library Released for Everyone to Use

https://ep-news.web.cern.ch/colibri-cern-vhdl-common-library-released-for-everyone-to-use/
1•nhatcher•54m ago•1 comments

Running local LLMs on your Mac: what fits, what's free, and what's overkill

https://typetab.app/blog/local-llms-on-your-mac
3•donk8r•56m ago•0 comments

Ex-Microsoft dev builds a new task manager for Linux

https://www.omgubuntu.co.uk/2026/09/tmog-task-manager-linux-beta
2•theanonymousone•1h ago•0 comments

A master class in decorators, patching and tracing

https://grahamdumpleton.me/posts/2026/09/a-master-class-in-decorators-patching-and-tracing/
1•lumpa•1h ago•0 comments

Who Is Open Source About?

https://blog.glyph.im/2026/09/who-is-open-source-about.html
3•lumpa•1h ago•1 comments

The Orient Cables IPO Explained

https://finshots.in/markets/orient-cables-ipo-explained/
1•vismit2000•1h ago•0 comments

HackMIT 2026

https://hackmit.org
2•vismit2000•1h ago•0 comments

The Collie and the Pug – HackMIT 2026 Keynote

https://3blue1brown.substack.com/p/the-collie-and-the-pug
2•vismit2000•1h ago•0 comments

Philosophy Bench

https://philosophybench.org/
3•mellosouls•1h 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?