frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

EvoForest-WM: Discovered Neuro-Symbolic World Model for Multivariate Time-Series

https://gist.github.com/kayuksel/cbb304038471befead2c1926610e9ff4
1•kayuksel•7m ago•0 comments

Anthropic says Alibaba illicitly extracted Claude AI model capabilities

https://www.reuters.com/world/china/anthropic-says-alibaba-illicitly-extracted-claude-ai-model-ca...
3•madars•12m ago•1 comments

Show HN: Docket Fleet – mobile device cloud

https://fleet.docketqa.com
2•boriskurikhin•13m ago•0 comments

Japan's AI goldrush faces backlash as data centers sprout up in urban areas

https://www.japantimes.co.jp/environment/2026/06/21/data-center-pushback/
1•mikhael•15m ago•0 comments

M5StackChan AI Desktop Robot

https://shop.m5stack.com/products/stackchan-kawaii-co-created-open-source-ai-desktop-robot
1•rglover•16m ago•0 comments

Aurora Loom, luminous 3D strands woven into a living Aurora

https://sand-morph.up.railway.app/aurora-loom
1•echohive42•22m ago•0 comments

Code as Agent Harness

https://arxiv.org/abs/2605.18747
2•matt_d•24m ago•0 comments

Free UX Review for websites, web apps and mobile apps

https://momocentral.com/pages-we-train-our-designers-you-get-a-free-ux-review/
2•su_yuen•24m ago•1 comments

A CVE Dispute

https://daniel.haxx.se/blog/2026/06/24/a-cve-dispute/
3•chmaynard•29m ago•0 comments

Show HN: Mcplexer.com

https://mcplexer.com
2•maxrev17•29m ago•0 comments

Why can't online purchases be as easy as point-of-sale purchases?

1•jkyrlach•32m ago•0 comments

Spatially distributed complex organic matter detected in Mars crater

https://www.science.org/doi/10.1126/sciadv.adx0047
2•Jimmc414•32m ago•0 comments

Al-1.0 – A lightweight attribution logging engine for transformers

https://github.com/RayFromBoston/AI-Source-Engine
1•RayfromBoston•36m ago•1 comments

Show HN: DesktopMCP – Let AI See and Operate your Linux desktop

https://github.com/varbhat/desktopmcp
2•varbhat•39m ago•1 comments

Introduction to the DOM for Vulnerability Researchers

https://www.youtube.com/watch?v=Pwta5nZtVNA
2•wetw0rk•41m ago•0 comments

A magnitude 6.9 earthquake has struck near Iwate Pref Japan

https://www3.nhk.or.jp/nhkworld/en/news/weather-disaster/earthquake/
5•momentmaker•43m ago•2 comments

ZKP-Vault: Cryptographic Session Gating and Data Center Optimization

https://github.com/Les-Senters/ZKP-Vault-
1•zkpvault•49m ago•0 comments

I'm Not a Cat

https://www.scattered-thoughts.net/writing/im-not-a-cat/
1•jamii•50m ago•0 comments

I Am the Spark, the Bellows, and the Quench

https://zackproser.com/blog/spark-bellows-quench
1•gk1•51m ago•0 comments

The year is 2063 and you were never interesting

https://lizleatrice.substack.com/p/the-year-is-2063-and-you-were-never
1•FigurativeVoid•52m ago•0 comments

Omnigent: Open-source meta harness for agents

https://github.com/omnigent-ai/omnigent
2•chatmasta•53m ago•0 comments

PostgreSQL Is Enough

https://gist.github.com/cpursley/c8fb81fe8a7e5df038158bdfe0f06dbb
41•Imustaskforhelp•58m ago•14 comments

Steam Machine: Official Overview and Quick Start Guide [video]

https://www.youtube.com/watch?v=XPNW3GCIeOM
3•Jotalea•1h ago•0 comments

Show HN: RealTube – Watch YouTube with filters for AI-generated content

https://realtube.io
1•danielpop•1h ago•0 comments

Cloudflare teams up with big browsers to help websites detect unwelcome visitors

https://www.theregister.com/software/2026/06/22/cloudflare-teams-up-with-big-browsers-to-help-web...
4•cpeterso•1h ago•0 comments

Colorado Startup Week Call for Sessions 2026

https://docs.google.com/forms/d/e/1FAIpQLScfiL33y9FMODTRB-AqlZaWEoA3cbwhXg1dDFEEy_-uyoqfjQ/viewform
3•mooreds•1h ago•0 comments

Why communities struggle to change [video]

https://www.youtube.com/watch?v=HGa2a4IiYOA
1•mooreds•1h ago•0 comments

Food Delivery Killed Competition (and Your Budget) [video]

https://www.youtube.com/watch?v=1Eq5jzsu1xU
2•mooreds•1h ago•0 comments

Stochastics

https://stochastics.vercel.app/
2•talos-better•1h ago•0 comments

Chinese Supercomputer Overtakes U.S. as World's Fastest

https://www.wsj.com/tech/ai/chinese-supercomputer-overtakes-u-s-as-worlds-fastest-d0f8dbff
6•bookofjoe•1h ago•3 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?