frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Founder.best – Help your product get found by AI, not just Google

https://www.founder.best
1•NimeshikaP•1m ago•0 comments

Pedagogy in the Times of AI [YT] [video]

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

Poor Economics: Banerjee and Duflo on Schooling in Developing Countries

https://econjwatch.org/articles/big-questions-and-poor-economics-banerjee-and-duflo-on-schooling-...
1•wslh•3m ago•0 comments

Figure AI - Helix 2.5 Robot: Zero-Shot Home Generalization

https://www.figure.ai/news/helix-2-5-zero-shot-30-home-generalization
1•agotterer•3m ago•0 comments

Build Impossible Programs (2018)

https://jvns.ca/blog/2018/09/18/build-impossible-programs/
1•aray07•5m ago•0 comments

Contrastive foundation model for ECG-based prediction of cardiovascular diseases

https://www.thelancet.com/journals/landig/article/PIIS2589-7500(26)00115-9/fulltext
1•brandonb•5m ago•0 comments

America's biggest companies challenge 2020 No Surprises Act

https://www.politico.com/news/2026/09/17/health-insurance-premiums-doctors-surprises-01081155
1•JumpCrisscross•7m ago•0 comments

The smallest possible Linux distribution

https://distrowatch.com/weekly.php?issue=20260914#qa
1•birdculture•8m ago•0 comments

Manitoba adopts permanent daylight time

https://www.cbc.ca/news/canada/manitoba/daylight-time-manitoba-9.7347844
1•qkeast•8m ago•0 comments

OpenAI discloses new 'concerning' behavior

https://www.dw.com/en/openai-discloses-new-concerning-behavior/a-79300180
3•jethronethro•9m ago•0 comments

Show HN: Tasku Cloud – Sync, backup, web app

https://tasku.cloud/
1•nerimasoft•10m ago•0 comments

Cohere and Aleph Alpha Join Forces

https://cohere.com/blog/cohere-alephalpha-join-forces
1•Anon84•10m ago•0 comments

Nasiba

https://www.nasiba.co/
1•paul91zz•11m ago•0 comments

You can now predict anything bruh

https://www.onemarkos.com/p/prior-chat-predictive-intelligence
1•onemarkos•12m ago•0 comments

Intelligent Terminal 0.2.2572: Faster, Smoother, and More Reliable

https://devblogs.microsoft.com/commandline/intelligent-terminal-0-2-25-performance-reliability/
1•ibobev•12m ago•0 comments

Missouri governor orders guardrails on Flock cameras and ALPRs

https://www.stlpr.org/news-briefs/2026-09-16/flock-cameras-guardrails-missouri-kehoe
7•lenerdenator•12m ago•0 comments

Ask HN: What would you include in an academic workshop on vibe coding?

1•cximenez•14m ago•0 comments

How not to solve Jane Street's ASIC puzzle. Kinda

https://www.babush.me/how-not-to-solve-jane-streets-asic-puzzle.html
1•babush•14m ago•0 comments

Show HN: Real-Time Bluesky Post Firehose in < 256MB

https://turbolytics.io/demos/bluesky/
1•dm03514•15m ago•2 comments

Signal releases phonenumber-less signups in beta

https://community.signalusers.org/t/beta-feedback-for-the-upcoming-android-8-28-release/76457
1•dherls•17m ago•1 comments

Show HN: MCPJam - the first testing & evaluations platform for MCP servers

https://www.mcpjam.com
3•prathmeshmcp•17m ago•1 comments

Show HN: Key Jump – jump to search results by pressing 1,2,3

https://chromewebstore.google.com/detail/key-jump/bniglipeipioplnfjikdkjakllkgjidm
1•techsin101•20m ago•0 comments

Getting rid of bad habits without suffering, without clinics, more effective

https://neo.miniproject.fyi
1•Neopsy•20m ago•1 comments

ChatGPT for Word, Excel and PowerPoint

https://chatgpt.com/apps/word/
1•vertigoruntime•21m ago•1 comments

Show HN: Pi-jev-auto-mode – a probability model gates Pi's shell commands

https://github.com/jomatsu/pi-jev-auto-mode
1•jomatsu•23m ago•0 comments

Inside OpenAI’s agentic software factory

https://newsletter.pragmaticengineer.com/p/openai-software-factory
1•gfortaine•23m ago•0 comments

Don't Just Say Hello

https://nohello.net/en/
11•ninju•24m ago•0 comments

Saturn's South Pole Features Newly Formed Atmospheric Decagon

https://www.universetoday.com/articles/saturns-south-pole-features-newly-formed-atmospheric-decagon
1•Betelbuddy•24m ago•0 comments

256GB Mac Mini is too small. You need Elbowroom

https://tomjohnell.com/your-256gb-mac-mini-is-too-small-you-need-elbowroom/
3•tjohnell•25m ago•1 comments

AI could create a 'silicon species' that rivals humans, Microsoft chief warns

https://www.euronews.com/next/2026/09/17/ai-could-create-a-silicon-species-that-rivals-humans-mic...
3•devonnull•26m 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?