frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Lucent: YouTube Focus Mode and Auto 4K open source

https://chromewebstore.google.com/detail/lucent-youtube-focus-mode/bpciannhcoipobpfeofondnhiadfcbib
1•lvfrm•44s ago•0 comments

Show HN: MuninnDB – ACT-R decay and Hebbian memory for AI agents

https://github.com/scrypster/muninndb
1•mjbonanno•1m ago•1 comments

Microgpt on the ESP32 – But Why?

https://duggan.ie/posts/microgpt-on-the-esp32-but-why
1•duggan•2m ago•0 comments

Shattered Glass (1998)

https://www.vanityfair.com/magazine/1998/09/bissinger199809
1•thomassmith65•3m ago•1 comments

Upgrading the Samsung Trifold battery by 71% using SiC

https://www.youtube.com/watch?v=YCQLKhB2ywQ
1•luyu_wu•4m ago•0 comments

Ask HN: How do solo founders find academic co-founders for STTR grants?

1•Rao_Atreya•4m ago•0 comments

Would You Buy Generic AI?

https://tomtunguz.com/white-label-ai/
1•swolpers•5m ago•0 comments

Show HN: Arbor – AI research workbench, question to knowledge graph

https://www.arborinquiries.com/
1•FlynnLachendro•6m ago•1 comments

PEP 827 – Type Manipulation

https://peps.python.org/pep-0827/
2•pboulos•7m ago•0 comments

Regenerator 2000: interactive disassembler for the C64 and other 6502 systems

https://regenerator2000.readthedocs.io/en/latest/
2•homarp•7m ago•1 comments

CEOs are betting big on AI while barely using it

https://www.charterworks.com/ceos-are-betting-big-on-ai-while-barely-using-it/
3•swolpers•7m ago•0 comments

The AI Bubble Is an Information War

https://www.wheresyoured.at/the-ai-bubble-is-an-information-war/
2•spking•9m ago•0 comments

Google violates its 14-day deprecation policy for Gemini 3 Pro Preview

2•goolulusaurs•9m ago•0 comments

US Stock Market has lost $1 TRILLION in value since open Tuesday

https://old.reddit.com/r/StockMarket/comments/1rjtww8
2•ck2•11m ago•0 comments

A lightweight, embeddable Prolog interpreter written in C11

https://github.com/no382001/prolog
1•triska•13m ago•0 comments

Blackberry Growth Monitoring and Feature Quantification with UAV Remote Sensing

https://www.mdpi.com/2624-7402/6/4/260
1•PaulHoule•13m ago•0 comments

The Court's (Selective) Impatience Is a Vice

https://www.stevevladeck.com/p/214-the-courts-selective-impatience
2•hn_acker•13m ago•1 comments

Show HN: Boosted LightFace – A Hybrid DNN and GBM Model for Facial Recognition

https://dergipark.org.tr/en/pub/gujs/article/1794891
1•serengil•14m ago•0 comments

Isn't P2P WebRTC better than SSH for connecting to Mac terminal from iPhone?

https://macky.dev/#architecture
1•eureka_boy•14m ago•2 comments

Anthropic's Claude sees 'elevated errors' as it tops Apple's free apps

https://www.cnbc.com/2026/03/02/anthropic-claude-ai-outage-apple-pentagon.html
1•LostMyLogin•14m ago•1 comments

Bio-Inspired Adapters: Improving Models Beyond LoRA Fine-Tuning

https://www.genbais.com/
1•lazarko•16m ago•0 comments

Show HN: Design Jam, ASCII wireframes and annotations that export as AI prompts

https://getdesignjam.com
1•Adrig•16m ago•0 comments

Show HN: Free Math Sheets – Generate math worksheets for K-5 problems

https://www.freemathsheets.com/
1•mchaver•16m ago•0 comments

What the First Billionaire Reveals About the First Trillionaire

https://www.bloomberg.com/news/features/2026-02-26/elon-musk-and-the-first-trillionaire-what-rock...
3•robtherobber•17m ago•0 comments

A New Rembrandt Discovered

https://www.rijksmuseum.nl/en/stories/themes/rembrandt/story/a-new-rembrandt-discovered
1•Tomte•17m ago•0 comments

What AI-justified mass layoffs reveal about what we were never owed

https://codeplusconduct.substack.com/p/grateful-for-your-contributions
1•mooreds•18m ago•0 comments

Show HN: I rewrote an inventory app 4 times over 5 years before releasing v1

https://upzonehq.com/
1•florentmsl•18m ago•0 comments

Floyd is an enterprise-level world model

https://www.loom.com/share/7b3ba36113e446548f3a79cf5fc1e42c
1•tjarzu•19m ago•0 comments

Walk me through this "Safety Third" thing

https://mikerowe.com/2020/03/walk-me-through-this-safety-third-thing/
2•andsoitis•20m ago•0 comments

Perplexity Computer Is Groundbreaking

https://karozieminski.substack.com/p/perplexity-computer-review-examples-guide
2•Lunaboo•22m 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?