frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Notes from a Law Professor with No Idea What's Going On

https://leahey.org/blog/2026/03/17/notes-from-a-law-professor.html
1•tldrthelaw•2m ago•0 comments

Benchmarking Distilled Language Models for Performance and Efficiency

https://arxiv.org/abs/2602.20164
1•PaulHoule•2m ago•0 comments

Designing a Build System That Runs Untrusted Code

https://stevekinney.com/writing/ai-gateway-durable-workflows
1•stevekinney•2m ago•0 comments

Show HN: A complete, containerized data engineering learning platform

https://github.com/MarlonRibunal/learning-data-engineering
1•MarlonPro•2m ago•1 comments

Search Quality Assurance with AI as a Judge

https://engineering.zalando.com/posts/2026/03/search-quality-assurance-with-llm-judge.html
1•hrmtst93837•2m ago•0 comments

Nvidia announces Vera Rubin Space-1 for orbital data centers

https://www.cnbc.com/2026/03/16/nvidia-chips-orbital-data-centers-space-ai.html
1•hrmtst93837•3m ago•0 comments

Risk Management and Hedging in a Polymarket Dual-Side Arbitrage Bot

1•Benjamin-Cup•3m ago•0 comments

Hithium to invest €400M in Spanish mega battery factory

https://www.ess-news.com/2026/03/11/hithium-to-invest-e400-million-in-spanish-mega-battery-factory/
1•toomuchtodo•4m ago•0 comments

Thariq's Lessons from Building Claude Code: How We Use Skills

https://twitter.com/trq212/status/2033949937936085378
1•nadis•4m ago•0 comments

Trump's plan to shut down weather and climate center triggers lawsuit

https://arstechnica.com/science/2026/03/university-group-sues-trump-administration-over-shutdown-...
2•voxadam•4m ago•0 comments

Overseas 'content farms' creating political deepfakes uncovered

https://www.bbc.com/news/articles/c07jj7d72yzo
2•robtherobber•6m ago•0 comments

Show HN: StackStats – Analytics tool for Substack writers, runs 100% locally

1•rishikeshs•6m ago•0 comments

Et tu, S&P 500? The SpaceX IPO gamesmanship is going to be epic

https://www.ft.com/content/59adbe42-ca30-47f3-9cda-5415945e9368
1•petethomas•8m ago•0 comments

You're Not Thinking About Your Network the Way You Should

https://packetpushers.net/podcasts/heavy-strategy/hs127-youre-not-thinking-about-your-network-the...
2•oavioklein•8m ago•0 comments

Did Cinema Get Narrower?

https://www.kopanko.com/notes/did-cinema-get-narrower
1•pcktm•8m ago•0 comments

Turning raw logs into feature vectors without manual labeling

https://www.securesql.info/2025/04/05/etl-playbooks/
1•projectnexus•9m ago•1 comments

Show HN: Starting Five – NBA Lineup Building Challenges

https://draftdawg.app
1•perhapsAnLLM•9m ago•0 comments

SecOps without manual schemas: Using EBMs and automated ETL for detection

https://www.securesql.info/2025/04/04/loop-architecture/
1•projectnexus•10m ago•1 comments

Ban Bots Not Human Directed Tool Use

1•morpheos137•10m ago•1 comments

Show HN: Horizon – GPU-accelerated infinite-canvas terminal in Rust

https://github.com/peters/horizon
2•petersunde•11m ago•0 comments

Fair Source Software in the AI Age

https://blog.sentry.io/fair-source-software-in-the-ai-age/
1•ezekg•11m ago•0 comments

AI Agents and the New SaaS

https://www.gouthamve.dev/on-ai-agents-and-the-new-saas/
2•gouthamve•12m ago•0 comments

YouTube is experimenting with ads visible even after users skip

https://searchengineland.com/youtube-tests-sticky-banner-after-ad-skip-471902
4•speckx•13m ago•0 comments

Stop training your security ML on labeled attack data

https://www.securesql.info/2025/04/03/energy-based-models-anomaly-detection/
1•projectnexus•13m ago•1 comments

Why does it feel uncomfortable to think about how much you use your phone?

https://dogdogfish.com/blog/2026/03/17/psychological-discomfort/
1•matthewsharpe3•14m ago•0 comments

Stripe.com/6oU7sL9Pwg6Xa9kBest AI Agent Certi1iK1gs0s

1•OpenClawAura•14m ago•0 comments

Spectra – detect API contract drift from real runtime traffic

https://github.com/rmalik1-hash/spectra_windows_public
1•Spectra73•15m ago•1 comments

What was DOGE? How Elon Musk tried to gamify government

https://www.theguardian.com/news/ng-interactive/2026/mar/17/elon-musk-gamify-government
6•billybuckwheat•15m ago•0 comments

Why Claude Code Can't Find Your Tools

https://layer5.io/blog/engineering/why-claude-code-cant-find-your-tools/
2•lcalcote•16m ago•0 comments

India's outsourcing industry is worth $300B. Can it survive AI?

https://www.bbc.com/news/articles/c5yrq1090p8o
4•devonnull•16m ago•0 comments
Open in hackernews

Packed Data Support in Haskell

https://arthi-chaud.github.io/posts/packed/
77•matt_d•10mo ago

Comments

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

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

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