frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Florida utility companies' lobbying linked to rising electric bills

https://www.usatoday.com
1•newsomix9xl•2m ago•0 comments

Managed Deep Agents is now in public beta

https://www.langchain.com/blog/managed-deep-agents-is-now-in-public-beta
1•gmays•6m ago•0 comments

Think, Don't Speak

https://sspai.net/think-dont-speak/
1•firexcy•8m ago•0 comments

Terafab by Tesla

https://terafab.ai/
2•dhruv3006•9m ago•1 comments

Musk's SpaceX to build $100B launch facility in Louisiana

https://www.bbc.com/news/articles/cq5xel4v642o
2•nativeit•11m ago•2 comments

Buying power. Do Duke Energy's NC campaign donations fuel influence?

https://carolinapublicpress.org/75549/buying-power-do-dukes-energys-nc-campaign-donations-fuel-in...
1•newsomix9xl•11m ago•0 comments

Show HN: Weavit UI – A Weaviate GUI for macOS, Windows and Linux

https://github.com/XenoraAI/weavit-ui
1•srnathan•13m ago•0 comments

Linear probing for confidence estimation of simulations

https://www.simile.com/blog/confidence
1•wesel•15m ago•0 comments

The Commodore 77, an All-New Cyberpunk 2077 Collaboration

https://commodore.net/commodore-jacks-into-night-city-with-the-commodore-77-an-all-new-cyberpunk-...
2•binarycrusader•18m ago•1 comments

Big Tech's Frantic Race to Quell the Growing Backlash to AI

https://www.wsj.com/tech/inside-big-techs-frantic-race-to-quell-the-growing-backlash-to-ai-2a717339
6•newsomix9xl•20m ago•1 comments

Letter from Dolly Parton to Eminem

https://twitter.com/Eminem/status/2092367272891310482
7•tibbar•22m ago•1 comments

Dependencies in the LLM API Reseller Ecosystem

https://arxiv.org/abs/2608.20732
1•sbulaev•24m ago•0 comments

Show HN: Building a marketplace where you post a need and pick who helps

https://beebranchly.com
1•BeeBranchly•24m ago•0 comments

Locking 1B coins for 200 years with OP_CHECKLOCKTIMEVERIFY

https://github.com/goldcoin/goldcoin-timelock
1•microguy•26m ago•0 comments

Show HN: Declaude

https://speak-english.tenken.co/
2•rryoung98•27m ago•1 comments

US consumer spending on Apple's App Store fell for the first time in a decade

https://www.ft.com/content/e5533f32-e4c2-4ce1-9d2e-a831e96546b4
4•nreece•28m ago•0 comments

Novel class of medications, orexin receptor antagonists, for insomnia

https://pmc.ncbi.nlm.nih.gov/articles/PMC4948724/
1•Alien1Being•28m ago•0 comments

Show HN: Using Golang to Speed Up Monte Carlo Simulations

https://www.range.com/blog/using-golang-to-speed-up-monte-carlo-simulations
2•knair97•29m ago•2 comments

Nvidia Is Speedrunning the Creation of a Synthetic Hyperscaler

https://taekim.substack.com/p/nvidia-is-speedrunning-the-creation
1•gmays•30m ago•0 comments

Amazon announced it's shuttering Mechanical Turk on Sept. 30

https://www.cnbc.com/2026/08/25/amazon-service-that-jeff-bezos-called-artificial-ai-is-shutting-d...
3•pgrote•33m ago•1 comments

Self-Hosting Email: Achieving Proton's Zero-Access with Stalwart and WKD

https://remoterails.com/stalwart-mail-vs-protonmail-a-technical-deep-dive-into-modern-email-secur...
1•bluequills•37m ago•0 comments

Tom Robbins' Remington SL3 Typewriter from "Still Life with Woodpecker"

https://typecast.munk.org/2015/08/01/tom-robbins-remington-sl3-typewriter-from-still-life-with-wo...
1•pcfwik•39m ago•0 comments

Ask HN: Interesting Tech Adjacent Jobs?

3•njandh•44m ago•2 comments

Europe Built a Single Market–Now It's Packaging It Away

https://fee.org/articles/europe-built-a-single-market-now-its-packaging-it-away/
2•WaitWaitWha•47m ago•0 comments

Native Java with GraalVM and Virtual Threads on Kubernetes

https://piotrminkowski.com/2023/01/04/native-java-with-graalvm-and-virtual-threads-on-kubernetes/
1•ejboy•47m ago•0 comments

US halts all immigrant visa applications amid tightening restrictions

https://www.theguardian.com/us-news/2026/aug/25/us-immigrant-visa-application-trump-crackdwon
4•andsoitis•49m ago•3 comments

Joint Optimization of Tool Creation and Use for Large Language Model Agents

https://tool-use-smith.github.io/
1•blackcat201•54m ago•0 comments

Training LLMs to write tools generalized beyond self use

https://arxiv.org/abs/2608.24571
3•blackcat201•54m ago•0 comments

Free Startup Dataroom Template

https://github.com/emal-avala/data-room
2•emal•54m ago•1 comments

Ora benchmarks every major AI agent on Vercel – Customers

https://vercel.com/customers/how-ora-benchmarks-every-major-ai-agent-on-vercel
2•kyisaiah47•54m 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?