frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

PHP is Dead (and AI is to blame)

https://www.lifeofguenter.de/2026/09/php-is-dead-and-ai-is-to-blame
1•lifeofguenter•3m ago•0 comments

Show HN: Impress your boss with interactive Scikit-Learn Decision Tree

https://github.com/mljar/supertree
1•pplonski86•6m ago•0 comments

What makes $BigTechCompany's products bad, anyway?

https://herecomesthemoon.net/2026/09/why-is-big-tech-bad/
1•birdculture•7m ago•0 comments

Show HN: Project Estimator – a free, no sign-up software cost estimator

https://project-estimator.webround.net/
1•LucaSiviero•8m ago•0 comments

US claims Chinese AI firms are carrying out 'industrial-scale' theft

https://www.cnn.com/2026/09/08/politics/us-accuses-china-of-stealing-ai-technology
1•jllyhill•8m ago•0 comments

Primework by Kunst X

https://kunstx.online/primework/
2•kunstx•8m ago•1 comments

Bristol Myers' blood cancer cell therapy succeeds in mid-stage trial

https://www.reuters.com/business/healthcare-pharmaceuticals/bristol-myers-blood-cancer-cell-thera...
1•thunderbong•9m ago•0 comments

How Much of the Internet Is Written with AI?

https://www.pewresearch.org/data-labs/2026/08/20/how-much-of-the-internet-is-written-with-ai/
1•dp-hackernews•10m ago•0 comments

Steam now requires Australian users to verify their age with a credit card

https://www.reddit.com/r/Games/comments/1wbauz5/steam_now_requires_australian_users_to_verify/
1•haunter•10m ago•0 comments

Show HN: CreepyLink: A fun tool to turn safe URLs into suspicious looking links

https://www.creepylink.online
1•tangjei•12m ago•0 comments

Law schools tell students to put AI away

https://www.ft.com/content/8ddd3668-5858-45c3-b34f-a6bafc678187
4•1vuio0pswjnm7•14m ago•0 comments

Our Technological Wager

https://dissentmagazine.org/article/artificial-futures-ai-risk/
1•robtherobber•17m ago•0 comments

Italian tech collective Autistici/Inventati shut down by Trump administration

https://sabot.media/post/ai-shuts-down
2•kYuZz•18m ago•1 comments

ScanChess – Digitize handwritten chess scorebooks and diagrams into PGN/FEN

https://scanchess.com/
1•sudoai•21m ago•0 comments

Want to borrow a dinosaur fossil? Try California's taxidermy lending library

https://www.theguardian.com/us-news/2026/sep/08/san-diego-taxidermy-museum
1•rdmuser•22m ago•0 comments

Ryanair ATC disruption update with Synthesia AI representative [video]

https://www.youtube.com/shorts/pIfAvoHtj44
2•50kIters•23m ago•1 comments

The diversity hypothesis: diversity and scientific output/impact in the sciences

https://link.springer.com/article/10.1007/s11186-026-09714-x
2•mpweiher•23m ago•0 comments

Show HN: Compute Polynomials Twice as Fast

https://thomasahle.com/fast-polynomials/
1•thomasahle•23m ago•0 comments

The Fundamental Limits of LLMs at Scale

https://openreview.net/pdf?id=BIRDGVrom8
2•leeuw01•24m ago•0 comments

Diskless Kafka: Object Storage, KIP-1150, and Kafka's Future

https://softwaremill.com/diskless-kafka-object-storage-kip-1150-and-kafkas-future/
1•mmatloka•31m ago•0 comments

Gambling with our lives: AI researcher quits Anthropic with warning about safety

https://www.politico.eu/article/anthropic-openai-researcher-jacob-coxon-warns-ai-could-kill-humans/
3•taubek•34m ago•0 comments

Arm's C2-Ultra, G2-Ultra NX, and CSS N4 IP

https://chipsandcheese.com/p/arms-c2-ultra-g2-ultra-nx-and-css
1•rbanffy•34m ago•0 comments

Google warns lower quality as it revamps Europe search results to avoid EU fines

http://www.reuters.com/world/google-warns-lower-quality-it-revamps-europe-search-results-avoid-eu...
2•1vuio0pswjnm7•34m ago•0 comments

Bitap: My favorite string matching algorithm

https://jo3-l.dev/posts/bitap/
1•fanf2•35m ago•0 comments

CogniFind is now available for Windows

https://www.cognifind.co/
1•hisp•35m ago•1 comments

If I wanted to maximize AI risk

https://twitter.com/kellerjordan0/status/2097526284918419662
1•tosh•40m ago•0 comments

Building Jarvis: a better voice starts before training

https://fpl.dev/post/building-jarvis-tts-and-dataset-studio/
1•ajmwagar•42m ago•1 comments

Rails devs: heads up on JSON 3.0 gem

https://github.com/rails/rails/issues/58685
1•jjgreen•42m ago•1 comments

Teleporting ":3" – an introduction to quantum computing

https://blog.teddy55.com/Posts/24.06/quantum-computing-with-qsharp
1•Teddy__•50m ago•0 comments

People are more likely to ditch the car and use an e‑bike if they feel safe

https://theconversation.com/people-are-more-likely-to-ditch-the-car-and-use-an-e-bike-if-they-fee...
2•robtherobber•50m 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?