frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Veta – AI agent that QA-tests Android apps

https://github.com/Vip3r-MC/Veta
1•Vip3rx9•1m ago•0 comments

USA launches "Gold Eagle" clearinghouse for cyber defense

https://www.heise.de/en/news/USA-launches-Gold-Eagle-clearinghouse-for-cyber-defense-11365797.html
1•qwertox•1m ago•0 comments

Inkling: A New Open-Weight 975B Moe with a Few Surprises

https://sebastianraschka.com/blog/2026/inkling-architecture-benchmark-notes.html
1•ModelForge•2m ago•0 comments

OpenAI's first gadget is the $230 Codex Micro macropad

https://thenewstack.io/openai-codex-micro-macropad/
1•gmays•2m ago•0 comments

Show HN: Free 30-second score of your website's traffic-to-sales path

https://www.signalroute.live/tools/traffic-score
1•DeniCJ•2m ago•0 comments

Finding the Last Bottlenecks in json2xml with Flamegraphs

https://vinitkumar.me/json2xml-flamegraph-optimization/
1•Brajeshwar•3m ago•0 comments

Ask HN: Assistive Tech Ideas for Dementia

1•thanksd•3m ago•0 comments

Anthropic runs like Wile E. Coyote into the brick wall of consciousness research

https://www.theintrinsicperspective.com/p/anthropic-runs-like-wile-e-coyote
1•surprisetalk•4m ago•0 comments

Inventing Eliza: The First Chatbot's Hidden Code

https://spectrum.ieee.org/eliza-chatbot-source-code
1•rbanffy•4m ago•0 comments

How to publish to PyPI using GitHub Actions securely

https://snarky.ca/how-to-publish-to-pypi-using-github-actions-securely/
1•rbanffy•4m ago•0 comments

AgentReady – MCP server that makes any docs site queryable by AI agents

https://www.agentready.it.com
1•AshHackerNews•5m ago•0 comments

TSMC plans further $100B US investment to feed AI demand

https://asia.nikkei.com/business/tech/semiconductors/tsmc-plans-further-100bn-us-investment-to-fe...
1•cwwc•8m ago•1 comments

Memories are an anti-pattern for Claude Code

https://keyboardsdown.com/posts/02-memories-are-an-anti-pattern/
1•yammosk•8m ago•0 comments

Why Am I Left-Handed?

https://www.quantamagazine.org/why-am-i-left-handed-20260713/
1•thm•8m ago•0 comments

Show HN: Fireplot – I built a take-home pay map to see if I should leave Belgium

https://fireplot.app
2•lotsoworks•9m ago•0 comments

GitHub banned my account after my projects suddenly spiked on Reddit

2•lpierge•10m ago•1 comments

Beat the Couch

https://beatthecouch.com/
1•msalsas•11m ago•1 comments

We built a customer support agent that learns

https://vectorize.io/blog/how-we-built-a-customer-support-agent-that-actually-learns-with-hindsig...
2•cbartholomew•13m ago•1 comments

Greenland is losing so much ice that its gravity is getting weaker: researcher

https://www.cbc.ca/radio/thecurrent/greenland-melting-ice-1.7089298
2•pseudolus•13m ago•0 comments

Show HN: AI Law Tracker – one audited API for US, EU and global AI law

https://ai-law-tracker.com
3•asm28208•13m ago•0 comments

Show HN: SaaS isn't dead until we all stop using dbeaver

https://getdpt.com/
1•realdjpaulyd•15m ago•0 comments

No Shark Is Safe: Shark Vacuums Are Vulnerable to RCE

https://tokay0.com/posts/millions-of-shark-vacuums-vulnerable-to-rce.html
1•dfc•16m ago•0 comments

Kimi K3 released on web and app

https://old.reddit.com/r/LocalLLaMA/comments/1uy3a0q/kimi_k3_released_on_web_and_app/
3•cmrdporcupine•17m ago•1 comments

8% of images on Discord are scams: Blocking Mr. Beast scams

https://abigail.sh/blog/detecting-and-stopping-mr-beast-scams-discord
5•abigailphoebe•18m ago•1 comments

Interactive map predicts climate-driven farm decline by end of century

https://www.euronews.com/2026/07/16/interactive-map-predicts-climate-driven-farm-decline-by-end-o...
2•mariuz•18m ago•0 comments

ReactBench – evaluation for coding agents on realistic React work

https://www.reactbench.com/
2•nreece•18m ago•0 comments

Micro Web-Framework for COBOL

https://github.com/azac/cobol-on-wheelchair
2•zdkaster•21m ago•0 comments

Celestrak adds catalog digit, fixes Y2K bug

https://www.celestrak.org/satcat/
2•1970-01-01•22m ago•0 comments

Show HN: Cortier – your AI negotiates dinner plans with your friends' AIs

https://cortier.ai/
3•CortierAI•22m ago•0 comments

How to spend 15 years perfecting a product

https://refactoring.guru/email/gbb-rollout2
7•neochief•24m 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?