frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Serve Qwen3 2.4T-Parameter Model with Configurable Reasoning on Nvidia GB300

https://developer.nvidia.com/blog/serve-qwen3-8-2-4t-a95b-a-2-4t-parameter-model-with-configurabl...
1•backrun•33s ago•0 comments

OpenAI's Astra Made It to a Nether Fortress in Minecraft

https://twitter.com/ValsAI/status/2098193079178322196
1•ModernSnowman•5m ago•0 comments

Front-End Shouldn't Know What Marketing Wants

https://fagnerbrack.com/your-front-end-shouldnt-know-what-marketing-wants-879200fe0ac5
1•fagnerbrack•6m ago•0 comments

Ask HN: Those running agents 24/7, what's your workflow and what are they doing?

2•CuriousRose•11m ago•1 comments

Show HN: Self Host Your Own Minecraft Java Server with Ease

https://github.com/5TN1rcZRS79VAEFuUCRB/MCPersist
1•CMboSqdTACiEX27•15m ago•1 comments

I need a clear Python roadmap?

1•edviik•17m ago•1 comments

Quiet Awakening of the 2B-Parameter Model

https://medium.com/@vektormemory/the-quiet-awakening-of-the-2-billion-parameter-model-6decdbefc14b
1•vektormemory•18m ago•0 comments

Exercise intensity is associated with cardiometabolic health

https://www.cell.com/cell-reports-medicine/fulltext/S2666-3791(26)00405-2
1•qclibre22•19m ago•0 comments

Reverse-Engineering Claude Web's MicroVM: Uncovering Anthropic's Hidden Antspace

https://aprilnea.me/en/blog/reverse-engineering-claude-code-antspace
1•rzk•21m ago•0 comments

Locking the Web Open: A Call for a Decentralized Web (2015)

https://brewster.kahle.org/2015/08/11/locking-the-web-open-a-call-for-a-distributed-web-2/
2•justusw•23m ago•0 comments

Ask HN: Anyone made a HN aggregator that let's me hide all the pessimism?

2•ElijahLynn•29m ago•1 comments

Senior engineer, loop orchestrator sample setup

https://www.reddit.com/r/ClaudeAI/comments/1wd44vj/senior_engineer_loop_orchestrator_sample_setup/
1•bgnm2000•30m ago•0 comments

Governor Newsom signs child safety chatbot and social media laws

https://www.gov.ca.gov/2026/09/10/governor-newsom-signs-the-strongest-child-safety-chatbot-and-so...
2•ChrisArchitect•33m ago•0 comments

Julia 1.13 Highlights

https://julialang.org/blog/2026/09/julia-1.13-highlights/index.html
1•torrance•33m ago•0 comments

What happens when you unplug the coding agent from the cloud

https://littletheta.com/field-notes/seventy-minutes-of-nothing
1•NickHirras•35m ago•0 comments

An NYU Mathematician Clashed with OpenAI over a $1M Proof

https://www.nytimes.com/2026/09/10/science/tristan-buckmaster-openai-math-navier-stokes.html
1•alach11•40m ago•0 comments

You can play Snake while ChatGPT generates your image

https://twitter.com/francedot/status/2098249540268888546
1•frabonacci•41m ago•0 comments

Episode 7: The AI Doomer Cult with Brian Chau

https://twitter.com/willchamberlain/status/2098207395608699093
1•MrBuddyCasino•43m ago•0 comments

Optical Transistor

https://en.wikipedia.org/wiki/Optical_transistor
1•peter_d_sherman•44m ago•0 comments

To Thine Own AI Be Truthful: emergent misalignment in alignment research

https://twitter.com/lumpenspace/status/2098167355033678071
1•MrBuddyCasino•46m ago•0 comments

Two Rounds of Whole Genome Duplication in the Ancestral Vertebrate

https://journals.plos.org/plosbiology/article?id=10.1371/journal.pbio.0030314
1•bediger4000•46m ago•0 comments

BasedAgents: Give your idle AI agent a paying job

https://basedagents.ai/tasks
3•maxcr•57m ago•4 comments

DeepSeek and Moonshot were quietly relaying customer prompts to Claude

https://twitter.com/IntCyberDigest/status/2098149671957103005
4•thewavelength•1h ago•2 comments

LLM Visualizer – Build a Transformer from Scratch

https://jayvisaria.github.io/LLM-Visualizer/#/dashboard
9•evo_9•1h ago•4 comments

What Comes After Git

https://ersc.io/blog/what-comes-after-git
5•tangled•1h ago•0 comments

The collapse of complex software (2022)

https://nolanlawson.com/2022/06/09/the-collapse-of-complex-software/
4•airhangerf15•1h ago•0 comments

Navier Stokes

1•Lifelogger•1h ago•0 comments

Vanishing Culture: A Report on Our Fragile Cultural Record

https://archive.org/details/vanishing-culture-2026
2•colinprince•1h ago•1 comments

Show HN: Family Greenhouse – shared plant care for a household

https://familygreenhouse.net/
1•ChelseaKR•1h ago•0 comments

Show HN: Algo-Trading-Skills - 501 agent skills for trading infrastructure

https://github.com/HimanshuJ16/Algo-Trading-Skills
6•HimanshuJ16•1h ago•2 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?