frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Out-of-Context Reasoning in LLMs: A short primer and reading list

https://outofcontextreasoning.com/
1•amstam•2m ago•1 comments

Show HN: RSS tool to remix feeds, build from webpages, and skip podcast reruns

https://sponder.app
2•kristjan•3m ago•0 comments

J Stack Language

https://ktye.github.io/j.html
1•tosh•5m ago•0 comments

Koredex– Bot that automatically fixes failing pytest tests and proves it worked

https://drive.google.com/file/d/12G1M7GMFJk7x-4LN9KSohG9smZ7qFDaI/view?usp=drivesdk
1•abhinav300j•6m ago•1 comments

GAN-based power devices: Physics, Reliability, and Perspectives

https://pubs.aip.org/aip/jap/article/130/18/181101/1025623/GaN-based-power-devices-Physics-reliab...
1•rramadass•6m ago•0 comments

Show HN: Lag – Super fast comms (now avail on CLI)

https://github.com/lag-app/cli
1•paulgardiner•6m ago•0 comments

Show HN: Dialtone watcher – what is my laptop doing and am I normal

1•fcpguru•7m ago•0 comments

Scrum Masters, Don't Fall for the Abilene Paradox

https://www.scrum.org/resources/blog/scrum-masters-dont-fall-abilene-paradox
1•cyber_kinetist•7m ago•0 comments

Waymo Fun: The Self-Driving Car Revolution

https://www.nationalreview.com/magazine/2026/04/waymo-fun-the-self-driving-car-revolution/
1•fortran77•7m ago•1 comments

Codegen Is Not Productivity

https://www.antifound.com/posts/codegen-is-not-productivity/
2•donutshop•7m ago•0 comments

An x86-64 back end for raven-uxn

https://www.mattkeeter.com/blog/2026-03-15-uxn/
4•dcre•8m ago•0 comments

Snail Mail Sign-Ups

https://btxx.org/posts/snail-mail-signups/
2•dgroshev•9m ago•0 comments

FCC Chair Threatens to Revoke Broadcasters' Licenses over War Coverage

https://www.nytimes.com/2026/03/14/world/middleeast/fcc-broadcasters-iran-war.html
1•mikhael•9m ago•0 comments

The Font Design Game

https://fontbob.com/game
2•ravisankar2•10m ago•0 comments

Transformers from Scratch

https://www.brandonrohrer.org/transformers.html
1•mpbart•11m ago•0 comments

Show HN: Dumped Wix, my AEC consultancy's storefront is now an AI Edge

https://axoworks.com/
1•axotopia•11m ago•0 comments

Heavens Gate website is still online

https://www.heavensgate.com/
1•yonibot•13m ago•0 comments

Modern Java is pretty cool and you can't avoid it anymore

https://www.youtube.com/watch?v=lvHR2Xc9LMU
1•doppp•13m ago•0 comments

Show HN: I built two AI entities with shared memory and a portable identity spec

https://github.com/wjcornelius/Claudefather
1•BillCorOnBass•14m ago•1 comments

Show HN: Yak – Voice typing tool in Tauri/Rust that auto-presses Enter for you

https://getyak.app
1•zonghao•16m ago•0 comments

The Web's Most Tolerated Feature

https://www.bocoup.com/blog/the-webs-most-tolerated-feature
1•thunderbong•17m ago•0 comments

NetBlocks says Iran blackout enters day 16 as arrests target Starlink users

https://www.iranintl.com/en/202603157402
16•ukblewis•18m ago•1 comments

Hntropy – high-signal "related:" comments create story pairs

https://hacker-backlinks.browserbox.io/
1•keepamovin•18m ago•1 comments

We turned plastic waste into vinegar: A sunlight-powered breakthrough

https://phys.org/news/2026-03-plastic-vinegar-sunlightpowered-breakthrough.html
2•Brajeshwar•18m ago•0 comments

Show HN: Red Grid MGRS – Open-Source DAGR-Class GPS Navigator for iPhone

https://github.com/RedGridTactical/RedGridMGRS
1•redgridtactical•20m ago•1 comments

Why the Best Developers Resist Longest

https://graeme-lockley.github.io/20260314-ai-adoption-patterns/
1•johnny_reilly•22m ago•0 comments

Show HN: Portable signed proof for agent, API, and MCP interactions

https://github.com/peacprotocol/peac
1•jithinraj•22m ago•0 comments

Show HN: ReadingIsFun – ePub reader that lets your coding agent read along

https://github.com/baturyilmaz/readingisfun
1•arbayi•23m ago•0 comments

DepGra – Visualize dependency vulnerabilities as an interactive graph

https://github.com/KPCOFGS/depgra
1•sxs22•24m ago•1 comments

XF-103: The American Super-Plane That Never Was – The National Interest

https://nationalinterest.org/blog/reboot/xf-103-american-super-plane-never-was-190054
2•rbanffy•25m 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?