frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

I traced $2B in grants and 45 states' lobbying behind age‑verification bills

https://old.reddit.com/r/linux/comments/1rshc1f/i_traced_2_billion_in_nonprofit_grants_and_45/
2•shaicoleman•5m ago•0 comments

The End of the Open Web

https://www.netmeister.org/blog/open-web.html
2•speckx•5m ago•0 comments

50 Years of Thinking Different

https://www.apple.com/50-years-of-thinking-different/
2•tilt•9m ago•0 comments

Show HN: Privacy Mask – prevent secrets leaking to AI agents

2•fullstackcrew•10m ago•0 comments

Show HN: fftool – A Terminal UI for FFmpeg – Shows Command Before It Runs

https://bensantora.com/posts/fftool-ffmpeg-tui-go/
2•taskset•13m ago•0 comments

Benchmarking Hosted Browser Providers: Speed, Stealth, Captcha, and Concurrency

https://techstackups.com/comparisons/hosted-browser-benchmarks/
2•ritzaco•13m ago•0 comments

How to Run a Pool of Autonomous Coding Agents on Your Jira Backlog

https://jaksa.me/blog/2026-03-01-pool-of-agents
2•jaksa•14m ago•0 comments

Advertising was always going to come for AI chatbots. The real question is how

https://reutersinstitute.politics.ox.ac.uk/news/advertising-was-always-going-come-ai-chatbots-rea...
2•jruohonen•16m ago•0 comments

Show HN: I forked Python's Requests to add HTTP/3, async, and multiplexing

https://github.com/jawah/niquests/tree/v3.18.2
2•mesahm•19m ago•2 comments

Beyond Agents.md: Harness Eng, Loop-Based Delivery, and Context-Aware Prompting

https://teamcadence.ai/blog/context-aware-prompting/
4•daveslutzkin•20m ago•0 comments

Updates on Analyst Platform for Data Analysts

https://anallyst.onrender.com
2•Sechele•20m ago•0 comments

AI Isn't People

https://www.todayintabs.com/p/a-i-isn-t-people
3•q-base•21m ago•0 comments

Show HN: I wrote a free trilogy about perception, presence, and leadership

https://marcus-corvin.github.io/thecalibratedview/
3•mr_octopus•23m ago•1 comments

How Japan Is Buying Back Its Semiconductor Industry [video]

https://www.youtube.com/watch?v=9t9D0gVfPX4
2•mgh2•25m ago•0 comments

Show HN: Payment Hunter – AI-powered invoice reminders for freelancers

2•paymenthunter01•26m ago•0 comments

What do coders do after AI?

https://www.anildash.com/2026/03/13/coders-after-ai/
2•speckx•28m ago•0 comments

Slate: Moving Beyond ReAct and RLM

https://randomlabs.ai/blog/slate
2•vinhnx•29m ago•0 comments

Safety Agents for Autonomous Systems

https://stackresearch.org/blog/control-ops/
2•dnmacon•30m ago•1 comments

Claude can generate custom diagrams, and charts directly in your conversation

https://support.claude.com/en/articles/13979539-custom-visuals-in-chat
2•simianwords•30m ago•0 comments

Claude now has Generative UI – interactive charts and diagrams

https://twitter.com/claudeai/status/2032124273587077133
2•simianwords•32m ago•1 comments

Show HN: Cigarette Rocket Booster – a rocket where the body itself is fuel

https://github.com/solenopsys/CRB
2•solenopsys•32m ago•0 comments

Show HN: JobStocks – track hiring changes at public companies vs. stock price

https://jobstocks.ai/
2•TalO•36m ago•0 comments

Source code of Swedish e-government services has been leaked

https://darkwebinformer.com/full-source-code-of-swedens-e-government-platform-leaked-from-comprom...
3•tavro•36m ago•0 comments

SSL/TLS and PKI History

https://www.feistyduck.com/ssl-tls-and-pki-history/
2•fanf2•39m ago•0 comments

Virtual Scrolling: Rendering messages without lag

https://kreya.app/blog/using-virtual-scrolling/
2•CommonGuy•41m ago•0 comments

Pentagon AI chief praises Palantir tech for speeding battlefield strikes

https://www.theregister.com/2026/03/13/palantirs_maven_smart_system_iran/
2•jjgreen•44m ago•0 comments

Major Outage in Datadog Web Application

https://status.datadoghq.com
3•nzach•46m ago•0 comments

Meta Acquires Moltbook

https://www.nytimes.com/2026/03/10/technology/meta-moltbook-social-ai-bots.html
2•rakag•47m ago•0 comments

I hacked Perplexity Computer and got unlimited Claude Code

https://twitter.com/YousifAstar/status/2032214543292850427
3•tamnd•52m ago•0 comments

Gemini to Word exporter that preserves code blocks, tables, and headings

https://chromewebstore.google.com/detail/gemini-exporter-save-gemi/lgipeakgdkcgnkdljeagconfbfeolidj
3•mounter•55m 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?