frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Schedule Recurring Tasks in Cowork

https://support.claude.com/en/articles/13854387-schedule-recurring-tasks-in-cowork
1•ed•49s ago•0 comments

Apple Foundation Models SDK for Python

https://github.com/apple/python-apple-fm-sdk
1•gok•4m ago•0 comments

Americans Are Leaving the U.S. in Record Numbers

https://www.wsj.com/us-news/americans-leaving-the-us-migration-a5795bfa
2•reaperducer•10m ago•1 comments

What I learned from 14,000 AI agent sessions

https://coasty.ai:443/
1•nkov47as•12m ago•1 comments

Why is your Mac WiFi Slow?

https://whyfi.network/
1•jamesgresql•14m ago•1 comments

Disrupting the Gridtide Global Cyber Espionage Campaign

https://cloud.google.com/blog/topics/threat-intelligence/disrupting-gridtide-global-espionage-cam...
1•0in•15m ago•0 comments

Code Is Cheap – Now What?

https://www.zackaryia.com/blog/2026-02-25/code-is-cheap-now-what/
1•Zackaryia•15m ago•0 comments

How to Thrive as a Remote Worker

https://spectrum.ieee.org/remote-work
1•jnord•16m ago•0 comments

Terra would have collapsed regardless of Jane Street

https://fragileequilibrium.substack.com/p/algorithmic-stablecoins-are-provably
1•brandoncarl•18m ago•0 comments

Could a vaccine prevent dementia? Shingles shot data only getting stronger

https://arstechnica.com/health/2026/02/could-a-vaccine-prevent-dementia-shingles-shot-data-only-g...
3•jnord•18m ago•0 comments

RAM now represents 35 percent of bill of materials for HP PCs

https://arstechnica.com/gadgets/2026/02/ram-now-represents-35-percent-of-bill-of-materials-for-hp...
19•jnord•19m ago•2 comments

Show HN: Automatic Image Localization Pipeline

1•yomwolde•20m ago•0 comments

Building Governed AI Agents – A Practical Guide to Agentic Scaffolding

https://developers.openai.com/cookbook/examples/partners/agentic_governance_guide/agentic_governa...
1•mooreds•21m ago•0 comments

Trying to Access ZFS-Encrypted SSD Following a Kernel Update Failure (2025)

https://forums.linuxmint.com/
1•transpute•23m ago•0 comments

Abandoning Resend.com for Email

https://anukari.com/blog/devlog/abandoning-resend-com-for-email
1•humbledrone•23m ago•0 comments

I hate my company's AI initiatives

https://kilohertz.substack.com/p/i-hate-my-companys-ai-initiatives
2•calobher•23m ago•0 comments

Turns out Generative AI was a scam

https://garymarcus.substack.com/p/turns-out-generative-ai-was-a-scam
8•oofbey•25m ago•1 comments

Former U.S. Air Force Pilot Arrested for Providing Services to Chinese Military

https://www.justice.gov/opa/pr/former-us-air-force-pilot-arrested-providing-defense-services-chin...
1•737min•26m ago•0 comments

Mitchell Hashimoto's new way of writing code

https://newsletter.pragmaticengineer.com/p/mitchell-hashimoto
2•JSR_FDED•27m ago•0 comments

Solar Thermal Energy Conversion with a Multilevel Inverter Circuit

https://www.mdpi.com/2673-4591/124/1/27
1•PaulHoule•30m ago•0 comments

Show HN: Relocate.ai – AI reports for families moving abroad

http://relocate-ai.178.156.240.80.sslip.io
1•greenbelt_dev•31m ago•0 comments

Open-Source Ecosystem Whale Falls

https://nesbitt.io/2026/02/21/whale-fall.html
2•transpute•32m ago•0 comments

Show HN: Decision Tree Builder

https://unli.xyz/tools/decision-tree.html
1•xk3•32m ago•0 comments

Show HN: ImageCFN – Analog, Resolution-Independent Image Representation

https://web-demo-ten-navy.vercel.app
2•prof_garlic•35m ago•1 comments

Trump admin halts [$250M of] Medicaid payments to Minnesota over fraud claims

https://www.cnn.com/2026/02/25/politics/trump-vance-minnesota-medicaid
4•Tadpole9181•36m ago•0 comments

DeepSeek withholds latest AI model from Nvidia, AMD

https://www.reuters.com/world/china/deepseek-withholds-latest-ai-model-us-chipmakers-including-nv...
6•cmrdporcupine•37m ago•1 comments

Show HN: OpenSwarm – Multi‑Agent Claude CLI Orchestrator for Linear/GitHub

https://github.com/Intrect-io/OpenSwarm
2•unohee•43m ago•0 comments

Show HN: EV424 – Reproducible Integrity Receipts (Don't Trust, Verify)

https://github.com/ev424verify/ev424-hub
1•lws9262•44m ago•0 comments

Reverse-engineer an MP3 player's firmware using LLMs

https://im.not.ci/echo-mini-rse/
1•uneven9434•44m ago•0 comments

Show HN: Usplus.ai – OpenClaw for Enterprise. Autonomous Agents to get work done

https://usplus.ai:443/
1•usplusAI•45m ago•1 comments
Open in hackernews

Packed Data Support in Haskell

https://arthi-chaud.github.io/posts/packed/
77•matt_d•10mo ago

Comments

nine_k•10mo 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•10mo ago
We are always reinventing wheels. If we didn't, they'd all still be made of wood.
Zolomon•10mo ago
They mention this in the article.
spockz•10mo ago
It reminds me more of flat buffers though. Does protobuf also have zero allocation (beyond initial ingestion) and no pointer jumps?
cstrahan•10mo ago
No, one example of why being variable sized integers.

See https://protobuf.dev/programming-guides/encoding/

carterschonwald•10mo ago
One thing that sometimes gets tricky in these things is handling Sub term sharing. I wonder how they implemented it.
tlb•10mo 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•10mo 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•10mo 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•10mo ago
honestly i wish more stuff worked this way - fewer hops in memory always makes me happy
lordleft•10mo ago
This was very well written. Excellent article!
NetOpWibby•10mo ago
Is this like MessagePack for Haskell?