frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: LidAwake – Keep your Mac awake with the lid closed (200 lines of Swift)

https://github.com/deezeddd/LidAwake-Mac
1•deezedd•51s ago•0 comments

Tiled Rasterization for Large DOM Captures

https://snapdom.dev/blog/huge-page-mosaic/
1•tinchox6•1m ago•0 comments

Introducing Grok Bot

https://xcancel.com/antibot/captcha
1•StanAngeloff•2m ago•0 comments

The Fanfare Around the Band Geese Was a Psyop

https://www.wired.com/story/geese-chaotic-good-marketing-industry-plant/
1•dbl000•2m ago•0 comments

Show HN: Personal AI Policy Directory

https://howiai.directory/
1•emilesilvis•2m ago•0 comments

Firefly Aerospace hits record $117.7M Q2 revenue, beating estimates by 34%

https://runtimewire.com/article/firefly-aerospace-hits-record-117-7m-q2-revenue-beating-estimates...
1•ryanmerket•2m ago•0 comments

Blend2D – High Performance 2D Vector Graphics

https://blend2d.com/
2•coffeeaddict1•4m ago•0 comments

Rocky Linux Founder Kurtzer Launches OpenWALDO to Open Up AI Training Data

https://techstrong.ai/articles/rocky-linux-founder-gregory-kurtzer-launches-openwaldo-to-open-up-...
2•CrankyBear•5m ago•0 comments

Glyph – Content intelligence without the baggage

https://github.com/Koda-OSS/Glyph
2•justinthemax•8m ago•0 comments

The brain may be about to have its Ozempic moment

https://economist.com/science-and-technology/2026/08/11/the-brain-may-be-about-to-have-its-ozempi...
3•andsoitis•12m ago•0 comments

Ask HN: How should I progress in my hacking journey?

1•anonomity•12m ago•0 comments

Trystero

https://github.com/dmotz/trystero
2•tibbar•14m ago•0 comments

Ancient Engineering Marvel Was Built Without Rulers

https://www.404media.co/no-bosses-ancient-engineering-marvel-was-built-without-rulers-study-sugge...
1•Jimmc414•15m ago•0 comments

How to Migrate from Airtable to Obsidian

https://obsidian.md/help/import/airtable
1•skadamat•16m ago•0 comments

Ask HN: What is your biggest bottleneck when developing with agents

1•sakuraiben•17m ago•1 comments

Textdämmerung: On Arday, the EU, and How One Philosophizes with a Chatbot

https://critiqueanddigest.substack.com/p/textdammerung
2•crescit_eundo•18m ago•0 comments

Show HN: Openleetcode – local LeetCode runner where tests live in the repo

https://github.com/therepanic/openleetcode
2•therepanic•19m ago•0 comments

Microsoft to increase Windows OEM license pricing 7-10%

https://www.pcmag.com/news/buying-a-new-pc-a-windows-11-price-hike-could-soon-make-it-more-expensive
1•Rooster61•19m ago•1 comments

Anydoc: Word, PowerPoint, Excel, OpenDocument, RTF, ePub, CSV, PDF to Markdown

https://github.com/firecrawl/anydoc
3•nateb2022•21m ago•0 comments

If the American Dream Is Dead, No One Told the People Who Are Still Chasing It

https://www.robkhenderson.com/p/if-the-american-dream-is-dead-no
2•paulpauper•21m ago•0 comments

Gemini is Cooked, but GCP is Cooking

https://newsletter.semianalysis.com/p/gemini-is-cooked-but-gcp-is-cooking
1•isnotchicago•22m ago•0 comments

NVIDIA & partners to mobilize over $500B of third-party capital for AI buildout

https://nvidianews.nvidia.com/news/nvidia-partners-with-apollo-blackrock-blackstone-brookfield-go...
1•frozenseven•22m ago•0 comments

AI Found a Zoom Takeover Flaw in Fewer Than 20 Prompts

https://ai-updates.net/ai-found-zoom-takeover-flaw-20-prompts/
1•ashurandi•22m ago•0 comments

My Answers to "Prove You Are Worthy to Post About Diets"

https://www.exfatloss.com/p/my-answers-to-prove-you-are-worthy
1•paulpauper•23m ago•0 comments

How much will cybersecurity costs rise?

https://marginalrevolution.com/marginalrevolution/2026/08/how-much-will-cybersecurity-costs-rise....
1•paulpauper•23m ago•0 comments

Compression Is Prediction

https://ngrok.com/blog/compression-is-prediction
12•nikolay•24m ago•2 comments

OpenRouter is a example of the Application layer of AI

https://s-1.vercel.app/posts/why-openrouter-can-be-the-next-great/
1•Altaba•26m ago•0 comments

Next-Token Predictor Is An AI's Job, Not Its Species

https://www.astralcodexten.com/p/next-token-predictor-is-an-ais-job
2•optimalsolver•27m ago•0 comments

Bluesky's active user base is shrinking as its focus expands beyond the app

https://techcrunch.com/2026/08/11/blueskys-active-user-base-is-shrinking-as-its-focus-expands-bey...
13•newusertoday•28m ago•3 comments

The Idea of Immutable Social Media

https://citizendot.github.io/articles/the-idea-of-immutable-social-media/
1•CITIZENDOT•29m ago•1 comments
Open in hackernews

Packed Data Support in Haskell

https://arthi-chaud.github.io/posts/packed/
77•matt_d•1y ago

Comments

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

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

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