frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Weird A.I

https://www.computer.org/csdl/magazine/an/2026/01/11442847/2eXeigMA4eI
1•tosh•2m ago•0 comments

A Critique of Cybernetics, by Hans Jonas (1953) [pdf]

https://s3.amazonaws.com/arena-attachments/892605/f0747c7943bec99f4891969d4a808ecd.pdf
1•lukebuehler•3m ago•1 comments

Axavive vs. Collagen: Which Is Best for Skin in 2026?

https://finance.yahoo.com/sectors/healthcare/articles/axavive-skin-exploding-2026-golden-22590060...
1•natujaiq•4m ago•0 comments

Hella Jongerius: I am a design pastor (holistic d-ethics)

https://www.youtube.com/watch?v=pME7hgUqpmE
1•vi_sextus_vi•4m ago•0 comments

Why AI Projects Fail

https://krellixlabs.com/en/blog/why-ai-projects-fail
1•radu_me•5m ago•0 comments

Digger engines drive JCB's attempt on hydrogen-powered land speed record

https://www.thetimes.com/uk/transport/article/jcb-hydromax-world-land-speed-record-lqvqgx0cp
1•sorentwo•6m ago•0 comments

"I applied to be pope"

https://www.thestandard.com.hk/world/article/331886/I-applied-to-be-pope-Losing-grip-on-reality-w...
1•hansmayer•6m ago•0 comments

Hella Jongerius Retools UN Delegates' Lounge Preserves Dutchness (NY 2013)

https://metropolismag.com/projects/hella-jongerius-retools-u-n-delegates-lounge/
1•vi_sextus_vi•7m ago•0 comments

AI Will Hit a Wall in 2026, if nothing changes [video]

https://www.youtube.com/watch?v=XA84pSrPHS0
1•mpweiher•8m ago•0 comments

The Ozempic plateau may be caused by the drug starving the gut bacteria

https://www.researchhub.com/proposal/32164/gut-microbiomescfa-axis-as-a-pharmacodynamic-modifier-...
1•cryptarsh•8m ago•0 comments

EU iPhones Get AirPods-Style Pairing for Third-Party Wearables in iOS 26.5

https://www.macrumors.com/2026/05/11/ios-26-5-eu-third-party-wearable-changes/
1•cgeier•9m ago•0 comments

How to Build Better Startup Products Using Apple's Thinking

https://comuniq.xyz/post?t=1069
1•01-_-•14m ago•0 comments

Trump Says Nvidia CEO Jensen Huang Is Flying with Him to China

https://www.forbes.com/sites/siladityaray/2026/05/13/trump-says-nvidia-ceo-jensen-huang-is-flying...
1•01-_-•15m ago•0 comments

Chrome IndexedDB: SQLite back end

https://chromestatus.com/feature/5161589557821440
1•fofoz•17m ago•0 comments

The role of cat eye narrowing movements in cat–human communication (2020)

https://www.nature.com/articles/s41598-020-73426-0
1•mifydev•19m ago•0 comments

One Startup Is Gambling. Ten Is Mathematics

https://www.mynameisfeng.com/blog/one-startup-is-gambling-ten-is-mathematics
2•edward8628•21m ago•0 comments

Emergent Quantization from a Dynamic Vacuum

https://journals.aps.org/prresearch/abstract/10.1103/l8y7-r3rm
1•davedx•24m ago•0 comments

What Is BusyBox?

https://specular.fi/post/what-is-busybox
1•maxloh•24m ago•0 comments

Social Media Is Now Parasocial Media

https://journals.sagepub.com/doi/10.1177/20563051261437487
1•john-doe•24m ago•0 comments

Too many people have peed in the pool (2016)

https://www.stephenfry.com/2016/02/peedinthepool/
1•downbad_•25m ago•0 comments

Redis and the Cost of Ambition

https://charlesleifer.com/blog/redis-and-the-cost-of-ambition/
2•maxloh•25m ago•0 comments

Notes on the Physics of Startups by Rob Snyder [video]

https://www.youtube.com/watch?v=6ZJOruNRdpo
2•marttilaine•26m ago•0 comments

Free AI hiring toolkit for startup founders

https://hirelikeapro.app/
1•MihaiVR•28m ago•0 comments

Math reveals the one game of chance you should always accept

https://www.scientificamerican.com/article/math-reveals-the-one-game-of-chance-you-should-always-...
1•beardyw•28m ago•1 comments

The Stream Virtual Machine [pdf]

https://web.archive.org/web/20140921203922/http://metagraph.org/papers/stream_virtual_machine.pdf
1•tosh•31m ago•0 comments

Largest survey of physicists puts Standard Model of cosmology under scrutiny

https://phys.org/news/2026-05-largest-survey-physicists-standard-cosmology.html
1•mtdewcmu•31m ago•0 comments

Utah's 'hyperscale' data center could create heat island near Great Salt Lake

https://www.sltrib.com/news/environment/2026/05/07/utahs-data-center-could-create/
1•xyzal•32m ago•0 comments

WireGuard: Fast, modern, secure VPN tunnel

https://www.wireguard.com/
1•janandonly•37m ago•0 comments

Lumo Chat Export

1•carlostkd•38m ago•0 comments

England Runestones

https://en.wikipedia.org/wiki/England_runestones
1•cl3misch•39m 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?