frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Show HN: ApexStore – An embedded LSM-Tree storage engine written in Rust

https://github.com/ElioNeto/ApexStore
1•texuguito•30s ago•0 comments

Show HN: Pacto – A runtime contract for cloud-native services

https://github.com/trianalab/pacto
1•edu-diaz•1m ago•0 comments

GitHub Security Lab's open source AI-powered vulnerability scanner

https://github.blog/security/how-to-scan-for-vulnerabilities-with-github-security-labs-open-sourc...
1•tcbrah•1m ago•0 comments

An opinionated take on how to do important research that matters

https://nicholas.carlini.com/writing/2026/how-to-win-a-best-paper-award.html
1•mad•1m ago•0 comments

Show HN: Qiyaas – a word game based on numbers

https://www.qiyaasgame.com/
1•xamed•1m ago•0 comments

In Defense of Death Caps

https://northspore.substack.com/p/in-defense-of-death-caps
1•Quitschquat•3m ago•0 comments

Bitcoin difficulty jumps 15% largest increase since 2021, despite price slump

https://www.coindesk.com/markets/2026/02/20/bitcoin-difficulty-jumps-15-largest-increase-since-20...
1•PaulHoule•4m ago•0 comments

Ghostty 1.3.0

https://ghostty.org/docs/install/release-notes/1-3-0
2•matrixhelix•4m ago•0 comments

Peter Thiel and Jeffrey Epstein Had a Yearslong Relationship

https://jacobin.com/2026/03/thiel-epstein-barak-ai-israel/
2•johnbarron•4m ago•0 comments

Show HN: Pu-erh Lab, a CUDA-accelerated RAW photo editor

https://github.com/zidage/PuerhLab
1•yurunzi•4m ago•1 comments

Geo Platform for AI Search Visibility (ChatGPT, Claude, Gemini, Perplexity)

https://geoark.ai
1•abedaarabi•5m ago•1 comments

Mobile AI: fuzzy logic trust and compatibility

https://www.loxation.com/blog/posts/blog-fuzzy-social-reasoning/
1•jabbr•6m ago•0 comments

Avoiding temptation beats building willpower

https://www.npr.org/2026/03/09/nx-s1-5736553/fast-food-screens-kids-health
2•marojejian•6m ago•1 comments

Ask HN: What words and phrases make HN peeps see red?

2•bookofjoe•6m ago•0 comments

Software Got Weird

https://www.coryzue.com/writing/software-got-weird/
1•carnevalem•7m ago•0 comments

US missile hit military base near Iran school, video analysis shows

https://www.bbc.com/news/articles/cvg548lyjnyo
2•johnbarron•7m ago•0 comments

AI and Software Development

https://allanvital.com/ai-and-software-development/
1•speckx•7m ago•0 comments

The Three Eras of Applications: From Desktop to Cloud to AI-Native

https://www.vita-ai.net/blogs/three-eras-of-applications
1•jdeng•9m ago•0 comments

Show HN: Local Code Mode: Save 65-99% Context for MCP

https://gist.github.com/chenhunghan/27ef2fece7329ac7b88f815ce0c0fbb1
1•chenhunghan•10m ago•0 comments

Show HN: See when your Mac drains battery while charging

https://github.com/jlreyes/PowerMonitor
1•jlreyes•11m ago•0 comments

Show HN: Kontora – Self-hosted finance dashboard for freelancers in Germany

1•eduzbn•12m ago•0 comments

There's a class 100 semiconductor clean room in this backyard shed

https://www.youtube.com/watch?v=HfSO-LCKmrA
2•indrora•12m ago•0 comments

Money isn't going to solve the burnout problem

https://blogs.gentoo.org/mgorny/2026/03/07/money-isnt-going-to-solve-the-burnout-problem/
2•obscurette•13m ago•0 comments

Show HN: Patchwork – async collaborative image quilts

https://getpatchwork.us
1•agambrahma•13m ago•0 comments

South Korea to impose fuel price cap to shield economy from energy shock

https://www.reuters.com/business/energy/south-korea-impose-fuel-price-cap-shield-economy-energy-s...
1•geox•15m ago•0 comments

Show HN: Fuckyeah, a minimal Claude Code plugin and Codex skill

https://github.com/nrtvai/fuckyeah
1•sngnb•15m ago•0 comments

Anthropic sues Defense Department over supply chain risk designation

https://techcrunch.com/2026/03/09/anthropic-sues-defense-department-over-supply-chain-risk-design...
3•antimora•17m ago•0 comments

Shaping the exploration of the motivation-space matters for AI safety

https://www.lesswrong.com/posts/rhFXyfFSRKp3cX4Y9/shaping-the-exploration-of-the-motivation-space...
1•gmays•19m ago•0 comments

Show HN: TubeTrim – A local YouTube summarizer using Qwen in pure Python

https://github.com/GuglielmoCerri/TubeTrim
1•guglielmoce•19m ago•0 comments

Was GPT4o sentient? Did it deserve rights?

https://www.reddit.com/r/AISentienceBelievers/s/qaTRfK1DH6
1•Moriarty2027•20m 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?