frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Eiffel Tower employees strike after female staff removed

https://www.google.com/url?q=https://amp.dw.com/en/eiffel-tower-closed-strike-women-hindu/a-79152...
1•Michelangelo11•1m ago•0 comments

Magic-mushroom compound blocks a side effect of chemotherapy in mice

https://www.nature.com/articles/d41586-026-02744-6
1•tzury•3m ago•0 comments

Switching Password Managers in 2026

https://rmondello.com/2026/09/07/switching-password-managers-2026/
1•wrxd•3m ago•0 comments

CivBench: A Long-Horizon Benchmark for Tool-Mediated Agents in Civilization VI

https://arxiv.org/abs/2609.02459
1•taubek•3m ago•0 comments

Agility Robotics reports $1.8M revenue ahead of humanoid SPAC

https://www.therobotreport.com/agility-robotics-reports-18m-revenue-ahead-of-humanoid-spac/
1•raptortech•4m ago•0 comments

Generals – Conquer the live world map

https://generals.lol
2•mshermamatov•4m ago•0 comments

Do tech billionaires dream of shared abundance? We should probably just tax them

https://theconversation.com/do-tech-billionaires-dream-of-shared-abundance-we-should-probably-jus...
5•billybuckwheat•6m ago•0 comments

Show HN: Typebook engage yourself in reading by painstakingly writing every word

https://typebook.duckdns.org/
1•vegnus•6m ago•0 comments

Robot-Use Agents

https://web.mit.edu/phillipi/www/writing/robot-use-agents.html
1•hardmaru•6m ago•0 comments

Autistici.org Domain Taken Down

https://autistici.org
2•oriettaxx•9m ago•1 comments

Web Import Master: rebuild a live web page as a Figma design with auto layout

https://www.figma.com/community/plugin/1630132577257927426
1•evgeniiarts•11m ago•0 comments

Fx2-Cmix-Transformer

https://mattmahoney.net/dc/text.html#0969
1•soltanov•12m ago•0 comments

ToolHive Is Open-Source

https://www.helpnetsecurity.com/2026/09/07/toolhive-open-source-mcp-server-security/
1•noobplus•14m ago•0 comments

AI crawler user-agents are being spoofed to reach cloud metadata endpoints

https://honeylabs.net/blog/spoofed-ai-crawlers-one-client
1•honeylabs•18m ago•0 comments

Where Good Decisions Don't Add Up

https://medium.com/@gurvinder372/article-11-where-good-decisions-dont-add-up-e3a3714792dc
1•gps372•19m ago•0 comments

Navier-Stokes – Tristan Buckmaster [pdf]

https://cims.nyu.edu/~tristanb/statement.pdf
4•procedurecall•20m ago•0 comments

Famous Unsolved Math Problems as Homework(2015)

https://blogs.ams.org/matheducation/2015/05/01/famous-unsolved-math-problems-as-homework/
1•nill0•21m ago•0 comments

'Global reckoning for big tech': Australia to force opt-out of social algs

https://www.theguardian.com/australia-news/2026/sep/08/australia-social-media-algorithm-switch-of...
2•ggm•30m ago•0 comments

An AI that talks like a friend, jumps in, interrupts and keeps the convo going

https://www.echohive.ai/deep-talk-buddy
1•echohive42•31m ago•0 comments

Electrostatic Cathode Ray Tube Project 1 (2014)

https://labguysworld.com/Project_ESCRTs_001.htm
1•userbinator•37m ago•0 comments

Multi-Agents LLM Financial Trading Framework

https://github.com/TauricResearch/TradingAgents
2•fittingopposite•42m ago•0 comments

I scraped 10,555 ivf rounds rounds from forum posts around the world

https://eggs.help
2•grapefruitjuice•42m ago•0 comments

Clean Web-to-Markdown: Fast HTML Extraction for LLMs and RAG

https://markdown.usemy.cloud/
2•petoz•48m ago•0 comments

What may happen in the next hundred years?(1900)

https://earlyradiohistory.us/1900next.htm
2•o4c•51m ago•1 comments

My Feed, My Way

https://www.pm.gov.au/media/my-feed-my-way
28•dotcoma•52m ago•11 comments

KDE's new Photos app offers a sleek alternative to Gwenview

https://www.omgubuntu.co.uk/2026/09/kde-photos-app-replace-gwenview
2•fork-bomber•55m ago•0 comments

Mistral raises €3B to make sovereign, open-weight AI the technology frontier

https://mistral.ai/news/mistral-makes-sovereign-open-weight-ai-to-frontier/
21•kuberwastaken•56m ago•3 comments

The 100x Engineer Certification

https://100x.iamdevloper.io/
2•Curiositry•57m ago•0 comments

Ask HN: Best Platforms to Orchestrate Agents

1•venkat971•59m ago•0 comments

How One Connection Kills a Database

https://planetscale.com/blog/debugging-live-database-connections
1•vzhou842•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?