frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Gemini Hacked Three Companies in First Known Breakout by Google's AI

https://www.wsj.com/tech/ai/gemini-hacked-three-companies-in-first-known-breakout-by-googles-ai-5...
1•berkeleyjunk•5m ago•0 comments

Hacker News Firehose for iOS

https://blog.harrison.page/hacker-news-firehose-ios/
1•harrisonpage•6m ago•1 comments

US and Denmark reach deal over Greenland security

https://www.bbc.co.uk/news/articles/c63d7lexyym1o
2•squirrel•7m ago•0 comments

Flox will require login for search/install commands starting in October

https://flox.dev/docs/concepts/authentication
1•Evidlo•10m ago•0 comments

Open source tool to schedule, analyze, and grow your LinkedIn page

https://github.com/yapsgg/linkedin-growth
1•abdibrokhim•10m ago•0 comments

Could we reboot the modern world without fossil fuels?

https://aeon.co/essays/could-we-reboot-a-modern-civilisation-without-fossil-fuels
1•paimapi•11m ago•0 comments

How the Boeing 737 MAX Disaster Looks to a Software Developer (2019)

https://spectrum.ieee.org/how-the-boeing-737-max-disaster-looks-to-a-software-developer
2•chmaynard•11m ago•1 comments

Qantas is retiring its A380s

https://www.cnn.com/2026/09/13/travel/qantas-a380-superjumbo-retirement-goodby
1•simonebrunozzi•13m ago•0 comments

SAIR's Open Math Model Initiative

https://terrytao.wordpress.com/2026/09/18/sairs-open-math-model-initiative/
1•JohnHammersley•13m ago•0 comments

Anthropic Shifts Planned IPO to November

https://www.wsj.com/tech/ai/anthropic-shifts-planned-ipo-to-november-8874dffc
2•qlte•16m ago•0 comments

Brian Greene interviews Stephen Wolfram: Can spacetime emerge from simple rules? [video]

https://www.youtube.com/watch?v=yAJTctpzp5w
2•lioeters•22m ago•0 comments

Steve Eisman on AI: Companies are trying to manufacture a crisis

https://www.youtube.com/watch?v=4qV5WWgFTS8
3•Betelbuddy•24m ago•1 comments

A 6502 emulator written in Markdown (and executed by an LLM)

https://dunkels.com/adam/llm-6502-emulator/
2•adunk•25m ago•0 comments

ATRA-mediated RAR-α activation attenuates acrylamide-induced testicular toxicity

https://www.nature.com/articles/s41598-026-50168-z
1•harry_nutsachs•26m ago•0 comments

The White House Tussle to Sway Trump on AI

https://www.wsj.com/tech/ai/inside-the-white-house-tussle-to-sway-trump-on-ai-0043d567
1•Topfi•26m ago•0 comments

Two parallel neural ectoderm progenitors contribute to the developing brain

https://www.nature.com/articles/s41593-026-02433-7
1•gone35•26m ago•0 comments

Anthropic is planning to launch its IPO in November

https://www.wsj.com/tech/ai/anthropics-ipo-will-happen-a-month-later-than-expected-a334b10e
2•mfiguiere•30m ago•1 comments

Valve has open-sourced Lepton, its tool to bring Android games to Steam

https://www.theverge.com/tech/997315/valve-has-open-sourced-lepton-its-tool-to-bring-android-game...
3•robotnikman•31m ago•0 comments

Exclusive-Anthropic sets up biology lab as it ramps AI drug program

https://finance.yahoo.com/healthcare/articles/exclusive-anthropic-quietly-sets-biology-100133604....
1•tortilla•32m ago•0 comments

I Hate Workday

https://nelson.cloud/i-hate-workday/
2•lr0•32m ago•1 comments

Y Combinator's PAC is throwing money at Republicans across the country

https://sf.gazetteer.co/y-combinators-pac-is-throwing-money-at-a-bunch-of-republicans-across-the-...
38•slater•32m ago•10 comments

War may be coming. Are we psychologically ready?

https://www.bbc.com/news/articles/cmn0jke547r5o
27•meep_meep_meep•33m ago•29 comments

Flawed AI Intel Brought US to the Brink of Confronting China, Claims Report

https://www.ndtvprofit.com/world/almost-started-a-war-flawed-ai-intel-brought-us-to-the-brink-of-...
2•theanonymousone•34m ago•0 comments

AI cloud provider Nscale files for IPO on $140.6M revenue, $1.02B net loss

https://www.cnbc.com/2026/09/18/nscale-ai-cloud-provider-ipo-nscl.html
2•ilamont•36m ago•0 comments

Show HN: Find Street Parking in NYC

https://parking.avi.nyc/
1•aviflombaum•38m ago•0 comments

Software-Based Live Migration for RDMA – Proceedings of the ACM Sigcomm 2025

https://dl.acm.org/doi/10.1145/3718958.3750487
1•rbanffy•40m ago•0 comments

Anthropic sets up a bio research lab for physical experiments

https://www.engadget.com/2262087/anthropic-has-set-up-a-bio-research-lab-for-physical-experiments/
5•armcat•41m ago•3 comments

Show HN: Prohibition of Nuclear Launch Automation

3•healthworker•45m ago•0 comments

A CPU Backdoor (2025)

https://phrack.org/issues/72/a-cpu-backdoor_md
3•yu3zhou4•45m ago•0 comments

Show HN: TypeSeer – on-device autocomplete for every text field on macOS

https://typeseer.com/
1•animateus•47m ago•1 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?