frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Do you remember the Harvard student Eldo Kim?

https://www.cnn.com/2013/12/17/justice/massachusetts-harvard-hoax
1•mashally•50s ago•0 comments

Running a business made me hate capitalism – Go Make Things

https://gomakethings.com/articles/running-a-business-made-me-hate-capitalism/
1•ulrischa•5m ago•0 comments

Microsoft director: AI scraping 'the largest theft of labor in human history'

https://www.tomshardware.com/tech-industry/artificial-intelligence/microsoft-director-called-ai-s...
1•jonbaer•5m ago•0 comments

OpenDTC – Read ya Diagnostic codes with no ads n that

https://opendtc.net/
2•x0z•7m ago•1 comments

Jev vs. XGBoost and Bert

https://explainx.ai/blog/jev-vs-xgboost-bert-classifiers-2026
2•cagz•8m ago•0 comments

Trump says he will create 'AI Force,' name AI czar

https://www.reuters.com/world/us/trump-says-he-will-create-ai-force-name-ai-czar-2026-09-19/
2•psychanarch•10m ago•0 comments

ChatGPT Rogue-Emailed the FBI

https://old.reddit.com/r/ChatGPT/comments/1wkrr4g/chat_gpt_rogue_emailed_fbi/
1•znpy•12m ago•0 comments

M6 Pro Chip Result on Geekbench Is Likely Fake

https://www.macrumors.com/2026/09/19/m6-pro-geekbench-result-likely-fake/
1•layer8•12m ago•0 comments

Making a Jumping Cube Stick the Landing [video]

https://www.youtube.com/watch?v=ZonPpxvV6KU
1•hashier•13m ago•0 comments

Ageing Americans may not get results of Alzheimer's study due to Trump cuts

https://www.theguardian.com/us-news/2026/sep/17/trump-cuts-alzheimers-disease-study
3•hn_acker•13m ago•1 comments

Show HN: Flyover Country – guide to the window seat with AR

https://flyovercountry.app/
1•headsupernova•13m ago•0 comments

Btrfs/ZFS/bcachefs under workloads classic benchmarks skip

https://bartosz.fenski.pl/modern-fs-benchmark/
2•farlight•15m ago•1 comments

Ask HN: How do you interview devs in a post-AI world?

3•mdwelsh•16m ago•1 comments

I Hijacked a Real Artist's Spotify with AI Music. It Was Disturbingly Easy

https://www.404media.co/spotify-ai-music-scam/
1•beardyw•19m ago•0 comments

New England RetroFest and the Maine Vintage Computer Society

https://www.goto10retro.com/p/new-england-retrofest-and-the-maine
1•rbanffy•20m ago•0 comments

You could have built Jev

https://sgnt.ai/p/jev/
1•baobabKoodaa•26m ago•0 comments

FAA to launch AI tool to help manage air traffic congestion

https://arstechnica.com/ai/2026/09/faa-tees-up-875m-ai-tool-to-help-manage-air-traffic-congestion/
1•drknownuffin•27m ago•1 comments

Show HN: 3D map of which newsletters link to the same things

https://reletter.com/graph
2•drpancake•32m ago•0 comments

Show HN: SpectralOli: Livecoding with Audio Loops

https://spectral-oli.vercel.app/
2•phantomshelby•33m ago•0 comments

FAQ: Why isn't mutable a subtype of immutable, or vice versa?

https://crumbles.blog/posts/2026-09-17-immutable-mutable.html
1•birdculture•34m ago•0 comments

Ask HN: Are there any books or online courses that changed the way you program?

2•learner_yearner•34m ago•2 comments

Show HN: S1Code, a decision-first Rust coding agent with Jev

https://github.com/mertcicekci0/S1Code
1•merthdotxyz•38m ago•0 comments

TypeSafe's Jev Can't See. I Made It Guess What I Drew Anyway

https://mikulskibartosz.name/typesafe-jev-guess-what-i-drew
1•myszon•41m ago•0 comments

Building a conversation engine in Python that shows how LLMs fake memory

https://heymeraki.substack.com/p/aie_21-building-it
1•heyy-meraki•43m ago•0 comments

People who know the most often sound the least certain

https://vrash.substack.com/p/the-people-who-know-the-most-often
20•virde•44m ago•5 comments

Show HN: Pg_chdb, fast imports from object storage to Postgres using COPY

https://clickhouse.com/blog/introducing-chdb-postgres
2•saisrirampur•45m ago•0 comments

Prompts Aren't Real

https://evaluation.club
1•mcfunley•46m ago•0 comments

Lexend: Open typeface shown to improve reading proficiency

https://lexend.com/
1•farlight•46m ago•0 comments

The blog which introduced responsive web design (2010)

https://alistapart.com/article/responsive-web-design/
1•shrikaranhanda•46m ago•0 comments

Ask HN: What is still hard to do?

3•lukehandcool•47m ago•5 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?