frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

48000 Samsung workers ready to strike

https://www.engadget.com/2177466/samsung-strike-union-workers-korea/
1•lccerina•2m ago•1 comments

Solar cells on vehicles can take the pressure off the grid in Europe

https://www.ise.fraunhofer.de/en/press-media/press-releases/2026/solar-cells-on-vehicles-can-take...
1•doener•3m ago•0 comments

Show HN: IResearch – C++ search that beat Lucene and Tantivy on their benchmark

https://github.com/serenedb/serenedb/tree/main/libs/iresearch
1•gnusi•4m ago•0 comments

The Cyber Reality States Don't Want to Admit

https://arunninghacker.substack.com/p/the-cyber-reality-states-dont-want
1•weeha•4m ago•1 comments

ConverterToMarkdown – Convert Docx/PDF/XLSX/HTML to Markdown In-Browser

https://convertertomarkdown.com
1•FValero•5m ago•0 comments

WordPress Migration in 2026 (from A to Z guide)

https://focusreactive.com/blog/wordpress-migration/
1•katyadrozd•6m ago•0 comments

Infrawise – Give Claude Code real infrastructure context via MCP

https://www.npmjs.com/package/infrawise
1•sidd-2704•7m ago•0 comments

"Stick" – A primitive/fun interactive demo of a tiny rig to animate layout

https://cosmiciron.github.io/layoutmaster/exclusion-assembly.html
1•zhxiaoliang•7m ago•1 comments

Tarotui – A tarot reading experience in the terminal

https://github.com/Tsukeruu/tarotui
1•bart__1•8m ago•0 comments

Love is to be invested in someone's continual expansion

https://www.henrikkarlsson.xyz/p/love-and-change
1•jger15•10m ago•0 comments

UniFi Network 10.4

https://blog.ui.com/article/introducing-unifi-network-10-4
1•janandonly•12m ago•0 comments

Open-source energy system model for the ENTSOE Ten-Year Network Development Plan

https://open-tyndp.openenergytransition.org/
1•lyoncy•19m ago•0 comments

Learnings from 100K lines of Rust with AI (2025)

https://zfhuang99.github.io/rust/claude%20code/codex/contracts/spec-driven%20development/2025/12/...
5•pramodbiligiri•20m ago•0 comments

Google Just Killed Search as We Know It

https://www.thestateofbrand.com/news/google-just-killed-search-as-we-know-it
1•taubek•22m ago•1 comments

Artist with no technical experience stumbles upon the next generation of LLMs

1•itakechops•25m ago•0 comments

Carbon: open-source DNA foundation models with training code and data pipeline

https://huggingface.co/spaces/HuggingFaceBio/carbon-demo
1•victormustar•26m ago•0 comments

Cities: Skylines Uses a Stock-Market Analogy to Influence Gameplay

http://jkm.dev/posts/cities-skylines-trading-market/
2•birdculture•30m ago•0 comments

How Big Tech is harnessing the data of Indian factory workers to train robots

https://scroll.in/article/1092960/how-big-tech-is-harnessing-the-data-of-indian-factory-workers-t...
1•theletterf•30m ago•0 comments

Goodbye ChatGPT

https://alexieidingli.medium.com/goodbye-chatgpt-a60bcf6b7c5b
2•andsoitis•33m ago•1 comments

Bolt CEO let go of his HR team for creating problems that didn't exist

https://fortune.com/2026/05/19/bolt-ceo-ryan-breslow-cut-hr-department-causing-problems-fintech-s...
1•e2e4•34m ago•2 comments

Honeybee venom and melittin suppress growth in breast cancer (2020)

https://pubmed.ncbi.nlm.nih.gov/32923684/
1•blumomo•36m ago•0 comments

The Sky Heist

https://www.skyheist.me/
1•clivehays•47m ago•0 comments

Ask HN: How to make a mono-repo AI-Ready?

1•kasnaka•52m ago•1 comments

Velocipedia

https://www.gianlucagimini.it/portfolio-item/velocipedia/
2•vintagedave•53m ago•0 comments

PostgreSQL backup tool gets some backup of its own

https://www.theregister.com/databases/2026/05/20/postgresql-backup-tool-gets-some-backup-of-its-o...
3•jjgreen•57m ago•0 comments

Public have more fear than hope on AI and future of work, study finds

https://www.kcl.ac.uk/news/one-in-five-britons-think-ai-will-create-civil-unrest-study-finds
4•geox•58m ago•1 comments

Coding Slow Is Smooth, Coding Smooth Is Fast

https://daily.tinyprojects.dev/207
1•tinyprojects•1h ago•1 comments

Show HN: Kreuzberg Cloud – ultra fast content intelligence – in public beta

https://kreuzberg.dev
5•nhirschfeld•1h ago•4 comments

Show HN: Widget Cast – Video Widgets for Your iPhone and Apple Watch

3•kingofspain•1h ago•0 comments

Elevated radiation levels detected on Russian drone debris

https://unn.ua/en/news/elevated-radiation-levels-detected-on-russian-drone-debris-striking-elemen...
4•defly•1h 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?