frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: I turned a 25 year old web platform into a HATEOAS multi-agent system

https://pwnc.it/en/home.php
1•katzito•1m ago•0 comments

A competitor's ex-employee tried to sell me their secrets

https://www.indiehackers.com/product/get-sms-online/a-competitors-ex-employee-tried-to-sell-me-th...
1•GetSMS•2m ago•0 comments

Firefox extensions forced to declare misleading data transmission permissions

https://discourse.mozilla.org/t/the-new-data-transmission-permissions-seem-to-be-misleading-to-us...
1•Retro_Dev•5m ago•0 comments

The Last Question

http://www.thelastquestion.net/
2•thijsr•6m ago•0 comments

Can you proof read this post?

https://kinduff.com/2026/09/10/can-you-proof-read-this-post/
1•kinduff•7m ago•0 comments

Ask HN: Is there a need for a new kind of antivirus or security application?

1•roschdal•8m ago•0 comments

(Tech Report) DeepSeek-v4.1-Flash: Pushing Limits of KV Cache Compression [pdf]

https://huggingface.co/deepseek-ai/DeepSeek-V4.1-Flash/resolve/main/DeepSeek_V41_Tech_Report.pdf
3•theanonymousone•10m ago•0 comments

I think I hate the internet

https://strategictree.bearblog.dev/i-think-i-hate-the-internet/
1•saikatsg•11m ago•0 comments

Hackers are stealing Claude tokens from subscribers

https://techcrunch.com/2026/09/08/hackers-are-stealing-claude-tokens-from-subscribers/
3•fourfire•12m ago•0 comments

DeepSeek v4.1 Flash

https://twitter.com/deepseek_ai/status/2097930608790167907
4•Liwink•12m ago•0 comments

Flowkon

1•Flowkon•14m ago•0 comments

AI Coding Assistants Almost Never Check Supply-Chain Trust Signals

https://arxiv.org/abs/2609.07754
2•sbulaev•16m ago•0 comments

PixoMonitor: Multi-location uptime and incident response platform

https://pixomonitor.com/
1•Sharanxxxx•20m ago•0 comments

Astra for Coding: Why Are We Doing This Again?

https://lucumr.pocoo.org/2026/9/7/astra-why/
2•Michelangelo11•22m ago•0 comments

Show HN: Doogi – Explore multiple AI responses and conversation paths

https://doogi.it/
1•macnorton•24m ago•0 comments

DeepSeek-v4.1-Exp

https://huggingface.co/deepseek-ai/DeepSeek-V4.1-Flash
7•nil1511•25m ago•2 comments

After outrunning Bolt, China's robot champion races towards real-world work

https://www.reuters.com/world/asia-pacific/after-outrunning-bolt-chinas-robot-champion-races-towa...
1•Alien1Being•27m ago•0 comments

Framework cuts 32/64GB memory prices for 13 Pro, issues retroactive refunds

https://www.tomshardware.com/laptops/framework-cuts-32gb-and-64gb-memory-prices-for-new-laptop-13...
2•throwaway2037•28m ago•1 comments

Building a readable, fast and safe language – looking for contributors

https://github.com/LuxUmbris/Shaft/tree/bootstrap
1•CrimsonDemon567•31m ago•1 comments

Scientists say August was Earth's hottest month they've measured

https://apnews.com/article/heat-record-climate-change-sizzle-el-nino-2a78248322a04b97f417346308d0...
6•geox•36m ago•1 comments

Governing GNOMEs: how the project's technical decision-making is evolving

https://lwn.net/Articles/1091619/
1•pykello•36m ago•0 comments

Trump's FCC Threatens to Cancel Jimmy Kimmel Live over Interview with Democrat

https://twitter.com/meidastouch/status/2097890673513071094
2•doener•37m ago•0 comments

Carbon Capture Won't Save Us Anytime Soon

https://newrepublic.com/article/215140/carbon-capture-wont-save-us-anytime-soon
2•littlexsparkee•37m ago•0 comments

Childcare: What the Science Says (2021)

https://criticalscience.medium.com/on-the-science-of-daycare-4d1ab4c2efb4
3•simonebrunozzi•39m ago•0 comments

The Rise of Retrofuturism

https://economist.com/business/2026/09/09/the-rise-of-retrofuturism
4•andsoitis•41m ago•0 comments

RL trained a 4B VLM to play GeoGuesser

https://huggingface.co/spaces/HuggingEnvs/geoguesser-article
2•Sathwickp•42m ago•0 comments

ArchBench – Control Blender through chat

https://archbench.com
1•eddieweng•46m ago•0 comments

Shattered Pixel Dungeon v4.0.0

https://shatteredpixel.com/blog/shattered-pixel-dungeon-v400.html
1•robin_reala•48m ago•0 comments

Hetzner's Cheap Cloud Tier Is Unavailable After Two Price Increases

https://www.vincentschmalbach.com/hetzner-cheap-cloud-unavailable-price-increases/
2•vincent_s•49m ago•0 comments

You Don't Need to Write Separate Speeches for Men and Women

https://julienreszka.com/blog/you-don-t-need-to-write-separate-speeches-for-men-and-women/
2•julienreszka•56m 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?