frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Hackathons in the vibe coding era: our token economics experiment

https://quesma.com/blog/our-first-hackathon/
1•jakozaur•47s ago•0 comments

Why EAV Sucks

http://esmout.blogspot.com/2012/09/why-eav-sucks.html
1•b-man•1m ago•0 comments

GoJS is now free for personal, non-commercial use

https://gojs.net/latest/
1•simonsarris•1m ago•0 comments

Don't Be Fooled by Anthropic's Doom Troll [video]

https://www.youtube.com/watch?v=vOOHd2cHYEg
1•smukherjee19•2m ago•0 comments

Give your guard two minutes to fail

https://dev.yuv.run/writing/claims-and-locks/
1•alkisyuv•2m ago•0 comments

Built-In Tools vs. Custom Tools in LLM Agents

https://www.vincentschmalbach.com/built-in-tools-vs-custom-tools-llm-agents/
1•vincent_s•3m ago•0 comments

Australia 'on the same page' as Canada as it seeks deeper EU alliance

https://www.reddit.com/r/worldnews/comments/1wgqken/australia_on_the_same_page_as_canada_as_it_se...
2•vrganj•3m ago•0 comments

How Big Are Factorials?

https://eli.thegreenplace.net/2026/how-big-are-factorials/
1•ibobev•3m ago•0 comments

Chester Zoo Mistakenly Advertises 'Child Predator Tour'

https://www.bbc.com/news/articles/c1j4z27n8xyo
1•bookofjoe•3m ago•0 comments

Mesh Welding with Spatial Hashing

https://www.boristhebrave.com/2026/08/31/mesh-welding-with-spatial-hashing/
1•ibobev•4m ago•0 comments

Show HN: Llmbridge, a C++ LLM gateway with sub-millisecond overhead

https://github.com/kottos-ai/llmbridge
1•lluisantoni•5m ago•0 comments

Yogi-Isms

https://en.wikipedia.org/wiki/Yogi_Berra
1•rankdiff•5m ago•0 comments

Exogenous creatine supplementation promotes tumor metastasis

https://www.nature.com/articles/s41467-026-74639-z
1•notdang•5m ago•0 comments

Boomers Are Sacrificing Retirement Savings to Support Their Grandkids

https://www.bloomberg.com/news/articles/2026-09-15/parents-are-sacrificing-retirement-savings-to-...
2•toomuchtodo•7m ago•1 comments

Show HN: What weather do you like? Find it, anywhere on Earth, any month

https://sunseason.org/
1•laurentenhoor•7m ago•0 comments

Reasons your vibe-coded dashboard looks terrible

https://kucharski.substack.com/p/ten-reasons-your-vibe-coded-dashboard
1•speckx•7m ago•0 comments

AI Regulation as Anthropic's Business Model

https://twitter.com/kevinnbass/status/2099621874279817638
1•hsuduebc2•7m ago•0 comments

Boost.PolyCollection

http://bannalia.blogspot.com/2026/09/inside-boostpolycollection.html
1•ibobev•8m ago•0 comments

Show HN: Hacking a $20 4G wireless hotspot into a texting device

https://bkovac.github.io/modem-thing/
2•bobili1234•8m ago•0 comments

Boston drops Flock after outside agencies gained access to vehicle data

https://www.masslive.com/boston/2026/09/boston-drops-flock-after-outside-agencies-gained-access-t...
2•cwwc•8m ago•0 comments

Show HN: Prokop – Open-source AI coding workspace with cross-project memory

https://github.com/capek-dev/prokop
2•danielbilekq•9m ago•1 comments

I Missed One TLB Shootdown and Somehow Ended Up Controlling a Page Table

https://blog.himanshuanand.com/2026/09/i-missed-one-tlb-shootdown/
1•unknownhad•9m ago•1 comments

Show HN: Open-source passive NFC tag that signs with ECDSA, verified on-chain

https://github.com/mwbpNFTechnology/toluTag/
1•boust16•12m ago•0 comments

The Security Risks in 100k Enterprise AI Sessions

https://a16y.ai/blog/the-hidden-security-risks-in-100k-enterprise-ai-sessions
1•doitmyaiway•13m ago•0 comments

Java 27 Released

https://mail.openjdk.org/archives/list/announce@openjdk.org/thread/ORGGLMN75HFEWP7YL3ZLGHLYHVIBJDYT/
26•mkurz•15m ago•5 comments

Google wants Spirit Airlines' data. Micro1 wants to pay more

https://fortune.com/2026/09/14/micro1-tries-to-beat-googles-bid-to-buy-bankrupt-spirit-airlines-d...
1•1vuio0pswjnm7•16m ago•0 comments

Show HN: Forward newsletters to an address, get a typeset paper on your Kindle

https://wholemind.tech/briefing/services.html
1•jps330•17m ago•0 comments

Usenet's Back, Baby. (This Time, the Search Works.)

https://tedium.co/2026/09/14/usenet-rewind-archive-revival-website/
2•speckx•18m ago•0 comments

Over 12% of links posted to Hacker News are Show HN projects now

https://www.orangecrumbs.com/stories/show-hn
2•oyster143•18m ago•0 comments

Nandns: Free dynamic DNS, DuckDNS-compatible, self-hostable

https://dns.kiokao.com/
1•nandezgarcia•20m ago•0 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?