frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Control Flipper Zero with AI

https://github.com/elder-plinius/V3SP3R
1•hackerBanana•2m ago•0 comments

Notchi: macOS notch companion that reacts to Claude Code activity

https://github.com/sk-ruban/notchi
1•nateb2022•2m ago•0 comments

Claude dispatch: assign tasks to Claude from anywhere

https://support.claude.com/en/articles/13947068-assign-tasks-to-claude-from-anywhere-in-cowork
1•mottiden•3m ago•0 comments

Are we in for a super El Niño this year? Early projections say maybe

https://www.cbc.ca/news/science/super-el-nino-9.7133680
1•Fricken•4m ago•0 comments

Adding Live Reload to a Static Site Generator Written in Go

https://jon.chrt.dev/2026/03/20/adding-live-reload-to-a-static-site-generator-written-in-go.html
1•zimpenfish•5m ago•0 comments

We rewrote our Rust WASM Parser in TypeScript – and it got 3x Faster

https://www.openui.com/blog/rust-wasm-parser
2•zahlekhan•8m ago•0 comments

I vibe-coded a system that forces me to do my daily MonkeyType practice

https://github.com/Kshitiz1403/daily-monkey-type
1•Kshitiz1403•9m ago•0 comments

Ruby vs. Python: Why I Choose Happiness over Hype

https://norvilis.com/ruby-vs-python-why-i-choose-happiness-over-hype/
2•zilton•10m ago•0 comments

Trio charged over alleged plot to smuggle Nvidia chips from US to China

https://www.bbc.com/news/articles/cy41ly2d9wko
1•breve•10m ago•0 comments

Amazon plans smartphone comeback more than a decade after Fire Phone flop

https://www.reuters.com/technology/amazon-plans-smartphone-comeback-more-than-decade-after-fire-p...
1•0in•10m ago•0 comments

Tony Hoare and His Imprint on Computer Science

https://cacm.acm.org/blogcacm/tony-hoare-and-his-imprint-on-computer-science/
1•matt_d•13m ago•0 comments

Heart Attack and Stroke Risk Jumps When People Stop Taking GLP-1s

https://nautil.us/whiplash-heart-attack-and-stroke-risk-jumps-when-people-stop-taking-glp-1s-1279029
2•siquick•14m ago•0 comments

25 Years of Eggs

https://www.john-rush.com/posts/eggs-25-years-20260219.html
1•gaws•14m ago•0 comments

Covenant-72B is the largest decentralized LLM pre-training run in history

https://twitter.com/opentensor/status/2032567840189096404
1•_____k•17m ago•0 comments

Earliest evidence of buildings made from wood is 476,000 years old (2023)

https://www.newscientist.com/article/2392894-earliest-evidence-of-buildings-made-from-wood-is-476...
2•bookofjoe•17m ago•2 comments

ElevenHacks: A season of 11 hackathons. Build with ElevenLabs and partners

https://hacks.elevenlabs.io/
1•alcazar•19m ago•0 comments

Calculating pi with a lunar rover [video]

https://www.youtube.com/watch?v=IY0pf0-Daew
1•ColinWright•19m ago•0 comments

This is Microsoft's plan to fix Windows 11

https://www.theverge.com/news/897834/microsoft-windows-11-quality-performance-commitments-changes
1•HardwareLust•20m ago•0 comments

When Did Every AWS Service Launch?

https://medium.com/@brookejamieson/when-did-every-aws-service-launch-c4a414288b72
1•brookejamieson•23m ago•0 comments

FIFA Disciplinary Committee Sanctions Israel Football Association

https://inside.fifa.com/legal/judicial-bodies/media-releases/disciplinary-committee-sanctions-isr...
2•hggh•27m ago•0 comments

Hawaii dam at risk of 'imminent' failure as catastrophic flooding hits Oahu

https://www.cnn.com/2026/03/20/weather/hawaii-flooding-oahu-climate
8•rawgabbit•31m ago•0 comments

Glide-mq high performance, features rich, message queue based on valkey glide

1•anotherCodder•31m ago•0 comments

Defense workers' morale has plunged under Trump, survey finds

https://www.defenseone.com/policy/2026/03/defense-workers-morale-drop-trump-survey/412288/
1•speckx•32m ago•0 comments

Closure of Hormuz is 'greatest global energy security threat in history'

https://www.lemonde.fr/en/economy/article/2026/03/20/closure-of-strait-of-hormuz-is-greatest-glob...
3•geox•33m ago•0 comments

CBS News Radio to Shut Down

https://www.cbsnews.com/news/cbs-news-radio-to-shut-down/
2•agiacalone•33m ago•0 comments

In high school I found a mistake in the Martian, DM'd Andy Weir, and he replied

https://twitter.com/zachary_horvitz/status/2035060950697496599
1•jxmorris12•35m ago•0 comments

Fifty Years of Apple, Twenty Years for Me

https://www.theenthusiast.net/fifty-years-of-apple-twenty-years-for-me/
2•herbertl•37m ago•0 comments

Cursor's 'new' model is an unauthorized rip of KimiK2.5

https://old.reddit.com/r/singularity/comments/1ryrs2w/cursors_composer_2_model_is_apparently_just...
3•hackerBanana•37m ago•1 comments

Get Paid to Bully AI

https://memvid.com/ai-bully-job
1•herbertl•38m ago•0 comments

Hottest March temperature in US history recorded in Arizona

https://www.bbc.com/news/articles/cj40xgv5vpdo
2•blondie9x•39m ago•0 comments
Open in hackernews

Packed Data Support in Haskell

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

Comments

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

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

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