frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Google vs. Canva

https://vector.news/google-takes-aim-at-canva/
1•artur_makly•32s ago•0 comments

Improving our alignment and security efforts

https://www.anthropic.com/news/improving-alignment-security-efforts
1•reasonableklout•4m ago•0 comments

Show HN: Secure agentic email infrastructure with beta desktop client

https://github.com/adecubed/gigamail
2•Adecubed•8m ago•0 comments

OpenAI delayed its new model's development after the Hugging Face hack

https://www.theverge.com/ai-artificial-intelligence/987695/openai-astra-unreleased-model-cybersec...
4•sbulaev•9m ago•1 comments

Rust Function Overloading – Call for Experimentation

https://blog.rust-lang.org/inside-rust/2026/08/19/overloading-experiment/
2•birdculture•16m ago•0 comments

The ColorChecker, photography's most important 24 squares, turns 50

https://www.dpreview.com/news/the-colorchecker-photographys-most-important-24-squares-turns-50/
1•sohkamyung•22m ago•0 comments

Open Source Access Control Management Application

https://github.com/Simkura-tech/loudin
1•jackmerrifield2•22m ago•1 comments

World's biggest dark matter detector spots a single weird particle

https://www.science.org/content/article/world-s-biggest-dark-matter-detector-spots-single-weird-p...
2•zzzeek•23m ago•0 comments

Claude Preserved thinking – Modifying a conversation now results in an error

https://platform.claude.com/docs/en/build-with-claude/preserved-thinking
2•sippeangelo•27m ago•0 comments

Don't allow Gemini AI access to your Gmail

https://tuta.com/blog/google-gemini-ai-email
4•bwidlar•27m ago•0 comments

AI Coding Agent Skills for Real Engineers

https://github.com/mattpocock/skills
2•gurjeet•28m ago•0 comments

Copilot code review can now approve pull requests

https://github.blog/changelog/2026-09-01-copilot-code-review-can-now-approve-pull-requests/
1•fourfire•28m ago•0 comments

The Future Is Not Tech-Forward

https://www.thetechbubble.info/p/the-future-is-not-tech-forward
1•doener•30m ago•0 comments

What's within a 10-minute walk in 50 European cities

https://strado.info/
3•bookofjoe•31m ago•0 comments

Library of ODE Solvers

https://solvers.milanrother.com/
1•skywalqer•31m ago•0 comments

How to Build a Notion AI Chatbot for Your Help Center

https://quickchat.ai/post/notion-ai-chatbot-help-center
1•piotrgrudzien•32m ago•0 comments

TikTok CEO says over two dozen Jewish organizations are telling them who to ban

https://twitter.com/MaryBowdenMD/status/2094500265206407223
12•slowin•34m ago•3 comments

Dyson Made a Camera-Equipped Toothbrush That Flosses for You

https://www.theverge.com/tech/986737/dyson-camerajet-smart-toothbrush-live-camera-flosser-pricing...
2•airhangerf15•37m ago•0 comments

Inception: Mercury 2.5 Preview on OpenRouter

https://openrouter.ai/inception/mercury-2.5-preview
1•Topfi•39m ago•1 comments

Moe expert offloading on a 2-core Celeron with 2.7GB RAM

https://github.com/dhishwasher/moe-offload-bench
2•fukoffandie•39m ago•0 comments

ChatBlackGPT

https://chatblackgpt.com/
1•rmason•40m ago•1 comments

I Want a Wife (1971) [pdf]

https://www.sevanoland.com/uploads/1/1/8/0/118081022/_brady_i_want_a_wife.pdf
2•NaOH•42m ago•0 comments

Decompiler Explorer

https://dogbolt.org
3•tripdout•43m ago•0 comments

Beneath the Bottleneck: An R&D and Technology Review of Lithium and Rare Earths

https://dukespace.lib.duke.edu/bitstreams/909c3952-6af4-48dd-a4d0-9baf0b16880c/download
3•Eridanus2•44m ago•0 comments

Rootkit Evading Elastic Defend Module Load Detection

https://matheuzsecurity.github.io/hacking/elastic-trusted-pid-bypass/
1•matheuzsec_•45m ago•0 comments

My local model setup on an M4 Pro Mac Mini

https://lws.io/blog/my-local-model-setup/
5•raybb•46m ago•0 comments

MapQuest is No. 1 on the App Store after refusing to change Lake Ontario's name

https://www.cnn.com/2026/09/01/business/mapquest-number-one-app-refusal-lake-america
5•dnemmers•46m ago•0 comments

Welcome to the Old Internet Again

https://theoldnet.com/
4•jruohonen•49m ago•0 comments

GitHub Down Again?

1•yodon•51m ago•1 comments

Show HN: TinyJS – small apps on Win/Mac/Linux

https://tinyjs.app
2•tarwin•51m 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?