frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Journeying through Optimization with Heuristics [video]

https://www.youtube.com/watch?v=KnmgltlXSKI
1•matt_d•1m ago•0 comments

Cookie Jars Capture American Kitsch (2023)

https://www.eater.com/23651631/cookie-jar-trend-appreciation-collecting-history
1•NaOH•1m ago•0 comments

Why LLMs Are Not (Yet) the Silver Bullet for Unstructured Data Processing

https://unstract.com/blog/why-llms-struggle-with-unstructured-data/
1•naren87•1m ago•0 comments

Pyodide: a Python distribution based on WebAssembly

https://github.com/pyodide/pyodide
3•tosh•6m ago•0 comments

Ask HN: How do you promote a new platform and reach critical mass?

1•LeanVibe•6m ago•0 comments

CorridorKey: Perfect Green Screen Keys

https://github.com/nikopueringer/CorridorKey
1•QuantumNomad_•7m ago•1 comments

ECJ says EU states must change gender of citizens even if nat'l laws forbid it

https://brusselssignal.eu/2026/03/ecj-says-member-states-must-change-gender-of-citizens-even-if-n...
6•slater•7m ago•0 comments

Dark money group pays influencers $1.5K for posts attacking Democratic candidate

https://www.ms.now/news/kat-abughazaleh-dark-money-influencers
7•embedding-shape•7m ago•0 comments

TweetStyler – Stylish Unicode fonts for social media (especially X)

https://www.tweetstyler.com/
1•Rashka7•7m ago•1 comments

War, AI, the Oscars and SXSW?

https://machined.substack.com/p/war-ai-the-oscars-and-sxsw
1•dcosta•9m ago•0 comments

The Shape of the Thing

https://www.oneusefulthing.org/p/the-shape-of-the-thing
2•gmays•10m ago•0 comments

Iran unleashes oil shock to blunt US firepower

https://www.reuters.com/world/middle-east/iran-unleashes-oil-shock-blunt-us-firepower-2026-03-13/
3•tartoran•13m ago•0 comments

Why the militaries are scrambling to create their own Starlink

https://www.newscientist.com/article/2517766-why-the-worlds-militaries-are-scrambling-to-create-t...
8•mooreds•14m ago•0 comments

APL9: An APL for Plan 9

https://apl.pmikkelsen.com/
1•tosh•14m ago•0 comments

Show HN: My personal AI-powered dev workstation

https://github.com/rbren/personal-ai-devbox
2•rbren•14m ago•0 comments

Dex: Task Tracking for Agents

https://github.com/dcramer/dex
1•sebst•15m ago•0 comments

Claude overtaking ChatGPT in the enterprise – measured by job posts mentions

https://trends.sumble.com/?techs=anthropic-claude%2Copenai-chatgpt
1•antgoldbloom•17m ago•1 comments

Show HN: AI milestone verification for construction using AWS

https://builder.aws.com
1•eugenelotsu•17m ago•0 comments

JEP Draft: Enhanced Local Variable Declarations

https://openjdk.org/jeps/8357464
1•mfiguiere•17m ago•1 comments

Multi-dimensional weighted random roll (choice, dice, selection)

https://www.sacrideo.us/multi-dimensional-weighted-random-roll-choice-dice-selection/
2•tosh•18m ago•0 comments

Show HN: Diraigent – Self-hosted orchestration for AI coding agents

https://github.com/diraigent/diraigent
1•diraigent•18m ago•1 comments

If Claude Code is performing poorly, you might be in an A/B test

https://twitter.com/backnotprop/status/2032499680547148035
2•ramoz•18m ago•0 comments

Ukraine's Flamingo Cruise Missile Will Reshape the War's Dynamics

https://www.forbes.com/sites/vikrammittal/2026/03/13/ukraines-flamingo-cruise-missile-will-reshap...
1•MilnerRoute•19m ago•0 comments

Alpine glacier holds history dating back to the Romans. And it's melting–fast

https://www.popsci.com/environment/alpine-glacier-ice-melting-history/
2•Brajeshwar•19m ago•0 comments

China's ByteDance Gets Access to Top Nvidia AI Chips

https://www.wsj.com/tech/chinas-bytedance-gets-access-to-top-nvidia-ai-chips-d68bce3a
3•gmays•21m ago•0 comments

An AI that plans multi-city trips in seconds. CRAZY product

https://explorinder.com/
2•pabloceg•21m ago•0 comments

Public Memories – Comedy Skits from Krazam [video]

https://www.youtube.com/watch?v=AS9y-d2BvZU
2•nvader•21m ago•0 comments

1M context is now generally available for Opus 4.6 and Sonnet 4.6

https://claude.com/blog/1m-context-ga
4•meetpateltech•22m ago•0 comments

Show HN: I Made a PS1 Static Recompiler with No Prior Experience (and Claude)

https://1379.tech/i-built-a-ps1-static-recompiler-with-no-prior-experience-and-claude-code/
1•Gamemaster1379•22m ago•0 comments

Yes, and

https://en.wikipedia.org/wiki/Yes,_and_...
1•lucidplot•23m ago•0 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?