frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Superbad.com if it came from the mind of an AI

https://stuff.do/
1•rogerdickey•1m ago•1 comments

JsxCore – A TSX/JSX View Engine for Asp.net Core

https://github.com/davidwhitney/JsxCore
1•vyrotek•10m ago•0 comments

Token use for exact prompt across models

https://twitter.com/jpschroeder/status/2081751862768717956
1•kappi•12m ago•0 comments

Telegram says app restored on Apple's App Store

https://www.reuters.com/business/retail-consumer/telegram-says-app-restored-apples-app-store-2026...
7•mfiguiere•20m ago•0 comments

A modern Saga/TCC orchestration engine for microservices

https://github.com/scalar-labs/scalardb-saga
2•feeblefakie•21m ago•0 comments

Show HN: Velokey – One Task API for Kling, Veo, Seedance, and Sora

https://velokey.ai
1•PaiDxng•25m ago•0 comments

Socket.dev warns about Rust Tokio library obfuscation

https://socket.dev/cargo/package/tokio
2•cwaffles•25m ago•0 comments

Eval-driven development: Lessons from evaluating GenAI at scale

https://medium.com/airbnb-engineering/eval-driven-development-lessons-from-evaluating-genai-at-sc...
2•simonpure•26m ago•0 comments

Billion-dollar property collapse highlights private credit danger

https://www.abc.net.au/news/2026-08-04/property-collapse-highlights-private-credit-danger-jon-adg...
2•kripy•26m ago•0 comments

Hollow-LLM Attack: Ghost Weights That Fool Zero-Knowledge LLM Verification

https://arxiv.org/abs/2607.28884
1•sbulaev•28m ago•0 comments

George Orwell's 1984 (Hinge Dating App)

https://www.spectator.com.au/2026/07/the-dark-truth-about-dating-apps-and-ai/
1•circumcised•34m ago•0 comments

QRiosity Killed the Cat

https://qriositykilledthecat.com
1•OccamsMirror•36m ago•0 comments

Palantir Shares Jump on 'Otherworldly' Sales, Improved Forecast

https://www.wsj.com/business/earnings/palantir-lifts-guidance-as-revenue-nearly-doubles-f4d79fa7
2•andsoitis•38m ago•2 comments

Full-Stack AI Engineer, Clinical Systems – NYC Based – Healthtech

https://alnuhealth.com/careers/full-stack-ai-engineer-clinical-systems
1•ben-scire•41m ago•2 comments

Telegram Removed from AppStore?

https://www.reddit.com/r/ios/s/RYlp8LKNdD
4•outcoldman•42m ago•1 comments

Nvidia NemotronLabs VoiceChat 11B – real-time full duplex with tool calling

https://huggingface.co/nvidia/NVIDIA-NemotronLabs-VoiceChat-11B
1•karimf•45m ago•0 comments

Birth order and disease risk across the human phenome

https://www.nature.com/articles/s44360-026-00177-z
3•Jimmc414•45m ago•1 comments

Telegram Removed from App Store

https://apps.apple.com/us/app/telegram-messenger/id686449807
11•ExpertAdvisor01•47m ago•2 comments

The Skylar Semigroup Framework for Prime Numbers

https://zenodo.org/records/21781236
1•larklaflamme•48m ago•0 comments

Winamp Announces Strategic Partnership with Deezer

https://winamp.com/press/winamp-announces-strategic-partnership-with-deezer-to-power-the-next-gen...
2•soheilpro•52m ago•0 comments

What I Learned Growing an Engineering Blog from 0 to 463,000 Pageviews

https://sahansera.dev/what-i-learned-growing-engineering-blog-463000-pageviews/
2•sahan•54m ago•0 comments

BYOC Is Not Just 'Deploy into Their Cloud'

https://omnistrate.com/blog/byoc-anywhere-the-spectrum-of-bring-your-own-cloud-deployments
7•kkgupta•58m ago•0 comments

AI Is Breaking the SaaS Deployment Model: 10 Commandments for BYOC

https://byocanywhere.org/
6•kkgupta•58m ago•0 comments

The day my sneaky link made me gag (and not in the fun way)

https://by40.substack.com/p/the-day-my-sneaky-link-made-me-gag
2•ninetailed_aux•58m ago•0 comments

How human hearing is shaping high-end audio

https://physicstoday.aip.org/quick-study/how-human-hearing-is-shaping-high-end-audio
3•7402•1h ago•0 comments

Snakes aren't simple tubes. Their bodies have 5 regions, including a short neck

https://theconversation.com/snakes-arent-simple-tubes-their-bodies-have-five-regions-including-a-...
3•defrost•1h ago•0 comments

The Myth, the Mythos, and the Man

https://om.co/2026/06/07/the-myth-the-mythos-and-the-man/
2•sanj•1h ago•0 comments

Show HN: Every plaintext HTTP request on your Linux box captured via eBPF

https://github.com/yeet-src/httpwatch
1•r3tr0•1h ago•0 comments

Cruising for Shells in Flowise – 6 RCEs That Rode Flowise Low and Slow

https://www.elttam.com/blog/cruising-for-shells-in-flowise
1•pentestercrab•1h ago•0 comments

Show CVBoosta:Resume Optimizer that tailors your resume to every job

1•cvboosta•1h 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?