frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Does Llms.txt Replace Sitemap.xml

https://docsalot.dev/blog/llms-txt-vs-sitemap-xml
1•fazkan•38s ago•0 comments

Platypus – create native Mac applications from command line scripts

https://github.com/sveinbjornt/Platypus
1•gregsadetsky•46s ago•0 comments

Nvidia to spend $150B a year in Taiwan, 'epicentre' of AI revolution

https://www.reuters.com/world/asia-pacific/nvidia-ceo-says-taiwan-is-epicentre-ai-revolution-2026...
1•JumpCrisscross•1m ago•0 comments

C64 OS – Ready for Internet Action – C64 OS steps it up [video]

https://www.youtube.com/watch?v=9TmJMBHrg7A
1•amichail•1m ago•0 comments

The Effort to Build Ukraine's Ground Robot Arsenal

https://www.twz.com/news-features/inside-the-effort-to-build-ukraines-ground-robot-arsenal
1•JumpCrisscross•5m ago•0 comments

Microsoft's Project Solara is an Android OS designed for agents instead of apps

https://arstechnica.com/gadgets/2026/06/microsofts-project-solara-is-an-android-os-designed-for-a...
1•thunderbong•7m ago•0 comments

A whale of a deal: Paramount's takeover of Warner Bros

https://www.reuters.com/graphics/WARNER-BROS-DIS-MA/PARAMOUNT-SKYDAN/byprngedkpe/
1•giuliomagnifico•7m ago•0 comments

Slow Tools

https://www.quarter--mile.com/Slow-Tools
1•ogundipeore•10m ago•0 comments

Global EV Outlook 2026: Growing sales amid an energy crisis [pdf]

https://iea.blob.core.windows.net/assets/3718cf37-fac6-4ee2-aeb0-1546e6222cfc/GlobalEVOutlook2026...
1•toomuchtodo•12m ago•1 comments

Ransomecare.io a tabletop journey where everything sucks

https://ransomecare.io/value
1•splintersio•12m ago•1 comments

Vim Classic debuts with its first release as a Vim fork without AI assistance

https://www.neowin.net/news/vim-classic-debuts-with-its-first-release-as-a-vim-fork-without-ai-as...
4•bundie•18m ago•0 comments

A rift is splitting Africa apart forming Earth's sixth ocean

https://www.thebrighterside.news/post/a-massive-rift-is-splitting-africa-apart-forming-earths-six...
2•sizzle•19m ago•0 comments

How to Just Do a Thing

https://www.raptitude.com/2026/05/how-to-just-do-a-thing/
1•_vaporwave_•24m ago•0 comments

America's Data Center Build-Out Is Falling Way Behind Schedule

https://www.wsj.com/tech/ai/americas-data-center-build-out-is-falling-way-behind-schedule-e408a9a8
7•1vuio0pswjnm7•30m ago•0 comments

C++: Let's get comfortable with concepts

https://platis.solutions/blog/2026/05/02/lets-get-comfortable-with-concepts/
1•HeliumHydride•30m ago•0 comments

Type-Error Ablation and AI Coding Agents

https://arxiv.org/abs/2606.01522
1•matt_d•31m ago•0 comments

Microsoft Scout: Your always-on personal agent

https://www.microsoft.com/en-us/microsoft-365/blog/2026/06/02/introducing-microsoft-scout-your-al...
2•Garbage•31m ago•0 comments

The American civilians that stayed behind in Saigon

https://connla.substack.com/p/whats-another-year
2•jfil•33m ago•0 comments

Wikiracer–an chess.com style Wikipedia racing website with analysis

https://wikiracer.com
1•smolyar•34m ago•0 comments

The Unreasonable Redundancy of Nature's Protein Folds

https://research.ligo.bio/posts/unreasonable-redundancy-of-natural-protein-folds/
5•ray__•35m ago•0 comments

U of T researchers demonstrate AI worm could target any online device

https://www.utoronto.ca/news/u-t-researchers-demonstrate-ai-worm-could-target-any-online-device
2•shscs911•35m ago•0 comments

How Lawsuits Alleging Social Media Harms Threaten Big Tech

https://www.bloomberg.com/news/articles/2026-06-02/how-lawsuits-alleging-social-media-harms-threa...
2•1vuio0pswjnm7•37m ago•0 comments

Pi Dynamic Workflows

https://github.com/Michaelliv/pi-dynamic-workflows
1•fjk•39m ago•0 comments

Ebola and other deaths [video][18 mins]

https://www.youtube.com/watch?v=HeT86QdfSKY
1•Bender•39m ago•1 comments

AI Overviews reduce clicks to the #1 result by 58%

https://twitter.com/timsoulo/status/2061796432534003866
2•nreece•40m ago•0 comments

Meta scales back plan for internal mouse-tracking tech, citing staff concerns

https://tech.yahoo.com/ai/meta-ai/articles/exclusive-meta-scales-back-ai-200309556.html
5•1vuio0pswjnm7•41m ago•0 comments

Lots of people want to try Claude Opus 4.8

https://wisgate.ai/
1•kevin_wang7•41m ago•1 comments

External Clock Generation on RTX 50 Series

https://www.xtremesystems.us/post/external-clock-generation-on-rtx-50-series
1•mfro•47m ago•0 comments

Virtual Precision Clock

https://mitxela.com/projects/vpc
1•8organicbits•47m ago•0 comments

The American Missile Crisis

https://research.contrary.com/report/the-american-missile-crisis
11•JumpCrisscross•52m ago•6 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?