frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: What do you ask AI to do with your files?

1•simquat•1m ago•0 comments

Show HN: Estimania – Estimation Game

https://estimania.app/
1•vlaad•1m ago•0 comments

Payloads used to dictate the terms of launch. That's changing

https://arstechnica.com/space/2026/07/rocket-developers-used-to-chase-satellite-trends-is-the-inv...
1•rbanffy•3m ago•0 comments

Altman: GPT-5.6 is 54% more token efficient on agentic coding

https://www.cnbc.com/2026/07/09/open-ai-sam-altman-chatgpt-5-6-sol.html
1•Topfi•5m ago•1 comments

Venture investment smashes an annual record with half a year left to go

https://www.sfexaminer.com/news/technology/anthropic-openai-jumbo-rounds-boost-venture-to-new-rec...
1•littlexsparkee•5m ago•0 comments

AI Agent Platforms Are Getting Hacked. Here's What's Missing

https://konghq.com/blog/enterprise/ai-agent-platforms-hacked-whats-missing
1•axandriamier•6m ago•0 comments

US home prices hit an all-time high as sales slow and mortgage rates rise

https://apnews.com/article/interest-rates-home-sales-923d018ff5a61b54b238838ce3a254a2
1•geox•6m ago•0 comments

Don't Call Yourself a Programmer, and Other Career Advice (2011)

https://www.kalzumeus.com/2011/10/28/dont-call-yourself-a-programmer/
1•gk1•7m ago•0 comments

AI Agent Skill Traceability in UX Design

https://rapidkt.com/pages/blog/ai_agent_skill_traceability_in_ux_design
1•greenpau•7m ago•0 comments

New open access book on history of computers and politics

https://mitpress.mit.edu/9780262053198/simpolitics/
1•mckelveyf•10m ago•0 comments

BareMetalRT – TensorRT-LLM running natively on Windows (no WSL)

https://baremetalrt.ai/app?mode=1gpu
1•brianhabana123•11m ago•0 comments

PostHog Open Sourced

https://github.com/PostHog/posthog-foss
1•thatxliner•12m ago•1 comments

No leap second will be introduced at the end of December 2026

https://datacenter.iers.org/data/latestVersion/bulletinC.txt
3•ChrisArchitect•13m ago•0 comments

Maxwell's Equations Were Discovered [video]

https://www.youtube.com/watch?v=-hua8RWopfw
2•surprisetalk•14m ago•0 comments

Show HN: HyperSwitch – macOS app switching with direct keyboard shortcuts

https://hyperswitcher.app/
1•hyperswitcher•15m ago•0 comments

Show HN: I replaced Whisper with Parakeet TDT on a $55/month CPU server

https://vidclean.net/blog/parakeet-vs-whisper-cpu-transcription/
1•TheBuciyo•15m ago•0 comments

Chinese hackers reverse engineer NVIDIA GPU to work on a custom PCB with NVLink

https://old.reddit.com/r/LocalLLaMA/comments/1ucokod/chinese_hackers_latest_masterpiece_with_nvidia/
1•binyu•17m ago•0 comments

Transparency efforts behind the Helium Browser

https://helium.computer/blog/transparency
2•twapi•18m ago•0 comments

Show HN: EPEE, an expert-annotated ASL dataset from native Deaf signers

https://huggingface.co/datasets/CLERC-DATA/epee
2•FlorianMel•18m ago•0 comments

Show HN: ContextNest versioned, governed context for AI agents (open-source CLI)

https://promptowl.ai/resources/building-a-viewable-second-brain-with-context/
2•sparkystacey•18m ago•0 comments

Show HN: Tokenstead, find AI models for your hardware

https://tokenstead.ai/
2•cdnsteve•19m ago•0 comments

Introducing Muse Spark 1.1

https://ai.meta.com/blog/introducing-muse-spark-meta-model-api/?_fb_noscript=1
17•ot•20m ago•4 comments

I Did Not Kill Stanley Lieber: How to Draw (With 9front)

https://triapul.cz/automa/i_did_not_kill_stanley_lieber
1•c-c-c-c-c•20m ago•0 comments

Pipeline Parallel Decompression

https://danglingpointers.substack.com/p/pipeline-parallel-decompression
1•blakepelton•20m ago•0 comments

A Startup That Builds AI Agents Used One to Raise $100M

https://www.bloomberg.com/news/articles/2026-07-09/a-startup-that-builds-ai-agents-used-one-to-ra...
1•gk1•20m ago•0 comments

Catnip lotion as effective as Deet at repelling mosquitoes, study finds

https://www.theguardian.com/global-development/2026/jul/07/catnip-lotion-as-effective-as-deet-at-...
2•atombender•21m ago•1 comments

Ollama raises $65M, grows to nearly 9M users

https://techcrunch.com/2026/07/09/popular-open-source-ai-developer-tool-ollama-raises-65m-grows-t...
2•amrrs•21m ago•2 comments

Show HN: Gladia CLI: transcribe audio from your terminal in one command

https://github.com/gladiaio/gladia-cli
2•jilijeanlouis•22m ago•0 comments

Show HN: EvenKeel – a free financial planning chatbot

https://evenkeel.c6e.me/
4•daave•23m ago•0 comments

Ollama Raises $65M to Accelerate Open Models

https://ollama.com/blog/all-aboard-open-models
5•srikanth235•25m 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?