frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Unauthenticated Object Write Vulnerability in MinIO

https://github.com/minio/minio/security/advisories/GHSA-9c4q-hq6p-c237
1•llui85•1m ago•0 comments

Show HN: Drowning in messages after 6 months as a CSM, I built a cat timer

https://apps.apple.com/us/app/purrrrrfocus-zen-cat-timer/id6753966008
1•louischen•3m ago•0 comments

Weather Prediction Markets Are Booming. Can They Improve Forecasts?

https://www.bloomberg.com/news/articles/2026-04-10/what-are-weather-prediction-markets-and-do-the...
1•fittingopposite•8m ago•0 comments

The Universal Standard Book Number

https://openusbn.org/
2•novalis78•9m ago•0 comments

'It's a special thing to be on Planet Earth': Artemis crew welcomed home in

https://www.bbc.com/news/videos/cd7jzj9rg1qo
1•hkhn•14m ago•0 comments

An LLM That Watches Your Logs and Kills Compromised Services at 3am

https://jonno.nz/posts/llm-kills-compromised-services-at-3am/
1•jonno-nz•15m ago•0 comments

The biggest advance in AI since the LLM

https://garymarcus.substack.com/p/the-biggest-advance-in-ai-since-the
3•hooch•21m ago•0 comments

Apollo Domain/IX User's Guide [pdf]

https://dn710900.ca.archive.org/0/items/bitsavers_apollo0058ideDec86_7208983/005803-01_DOMAIN_IX_...
1•drob518•25m ago•0 comments

Show HN: Minimalist template for scientific and academic resumes

https://github.com/pmichaillat/latex-cv
1•reomgdfsrtr•31m ago•0 comments

Electric Rail Bike for Abandoned Railroads [video]

https://www.youtube.com/watch?v=HhZNUNomXyo
1•phyzix5761•35m ago•0 comments

Powell, Bessent discussed Anthropic's Mythos AI cyber threat with major US banks

https://www.cnbc.com/2026/04/10/powell-bessent-us-bank-ceos-anthropic-mythos-ai-cyber.html
5•attentive•42m ago•0 comments

A new interpretation of the Riemann Hypothesis based on wave interaction (Flux)

https://zenodo.org/records/19515676
1•kimhanhee•42m ago•1 comments

Excellence Is a Habit

https://www.flyingbarron.com/2026/04/excellence-is-habit.html
3•mooreds•43m ago•0 comments

Ideas for marketing a dev centric product (2019)

https://www.mooreds.com/wordpress/archives/3197
2•mooreds•44m ago•0 comments

Is the 'Holy Grail of batteries' ready to bless us with its presence?

https://www.theverge.com/transportation/909480/solid-state-battery-donut-lab-ev-china
3•neilfrndes•45m ago•1 comments

New town every hour blue sky account

https://bsky.app/profile/townsusa.bsky.social
3•mooreds•45m ago•0 comments

Vance Says U.S.-Iran Peace Talks Break Down over Nuclear Issue

https://www.wsj.com/livecoverage/iran-war-latest-news-israel-us-lebanon-2026
5•kamaraju•49m ago•2 comments

iPhone 18 Pro Leaked Designs

https://9to5mac.com/2026/04/09/leaker-gives-iphone-18-pro-updates-on-two-design-changes/
2•anujbans•51m ago•1 comments

Bella: Hypergrah memory for AI agent(10x time horizon)

https://github.com/immartian/bellamem
1•newsathere•59m ago•0 comments

Online Phreak Box

https://phreaknet.org/bluebox/
1•etothet•1h ago•0 comments

The Local Universe's Expansion Rate Clearer Than Ever. But Still Doesn't Add Up

https://noirlab.edu/public/news/noirlab2611/?lang
1•nobody9999•1h ago•1 comments

Why meaningful days look like nothing while you are living them

https://pilgrima.ge/p/the-grand-line
2•momentmaker•1h ago•0 comments

Show HN: Posse – Open-Source Web UI for Anthropic Managed Agents

https://github.com/oguzbilgic/posse
1•obilgic•1h ago•0 comments

Jury reaches no verdict on first day deliberating at Live Nation monopoly trial

https://www.boston25news.com/entertainment/jury-starts/V36MJOVVPA373JW3P5TFJZJ7OI/
1•1vuio0pswjnm7•1h ago•0 comments

Building a better crossword page for my daily cryptic hit – Whitebeard's Realm

https://whitebeard.blog/posts/building-a-better-crossword-page/
1•techbelly•1h ago•0 comments

How Ship Anchors Work [video]

https://www.youtube.com/shorts/X7bWj115UwY
2•modinfo•1h ago•0 comments

Building a Z-Machine in the worst possible language – Whitebeard's Realm

https://whitebeard.blog/posts/building-a-z-machine-in-elm/
2•techbelly•1h ago•0 comments

A Mac Studio for Local AI – 6 Months Later

https://spicyneuron.substack.com/p/a-mac-studio-for-local-ai-6-months
4•try-working•1h ago•1 comments

My research has build errors now and honestly should have always worked this way

https://github.com/grainulation/wheat
3•volatilityfund•1h ago•0 comments

Beyond Quantum with Khrennikov

https://scottlocklin.wordpress.com/2026/04/09/beyond-quantum-with-khrennikov/
1•MrBuddyCasino•1h ago•0 comments
Open in hackernews

Packed Data Support in Haskell

https://arthi-chaud.github.io/posts/packed/
77•matt_d•11mo ago

Comments

nine_k•11mo 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•11mo ago
We are always reinventing wheels. If we didn't, they'd all still be made of wood.
Zolomon•11mo ago
They mention this in the article.
spockz•11mo ago
It reminds me more of flat buffers though. Does protobuf also have zero allocation (beyond initial ingestion) and no pointer jumps?
cstrahan•11mo ago
No, one example of why being variable sized integers.

See https://protobuf.dev/programming-guides/encoding/

carterschonwald•11mo ago
One thing that sometimes gets tricky in these things is handling Sub term sharing. I wonder how they implemented it.
tlb•11mo 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•11mo 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•11mo 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•11mo ago
honestly i wish more stuff worked this way - fewer hops in memory always makes me happy
lordleft•11mo ago
This was very well written. Excellent article!
NetOpWibby•11mo ago
Is this like MessagePack for Haskell?