frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Tether: iMessage, SMS, etc. on Linux

https://zackbartel.com/blog/2026/08/tether/
1•zackb•1m ago•0 comments

Show HN: Scalattice Modelmeter. OSS price and latency bench for open models

https://scalattice.com/blog/modelmeter/
1•RomulusHill•1m ago•0 comments

Show HN: Searchable Stripe test cards with one-click copy

https://checkoutpage.com/tools/stripe-test-cards
1•fishsander•5m ago•0 comments

I Rented a 96 GB GPU and Took Uncensored Qwen3.8 From 44 to 125 tok/s

https://aseemshrey.com/blog/running-qwen3-8-27b-uncensored/
1•LuD1161•5m ago•0 comments

Show HN: Open-source calculator for "will my GPU run this LLM?"

https://jaeseok614.github.io/llm-gpu-checker-ko/
2•jaeseok614•6m ago•0 comments

Claude Is Down?

3•tuleiff•9m ago•3 comments

Show HN: Turn everything you read into things you write

https://sidelong.app
2•whatcha•11m ago•0 comments

Texas Gov. says data centers deserve the backlash: 'They dug their own grave'

https://www.businessinsider.com/greg-abbott-texas-data-centers-backlash-2026-8
2•dgellow•15m ago•0 comments

5% of venture capitalists have generated roughly 90% of the industry's profits

https://www.thevccorner.com/p/100-best-performing-vc-firms-ranking-2026
1•koolhead17•19m ago•0 comments

Executable Is a SQLite Database

https://fzakaria.com/2026/08/23/your-executable-is-a-sqlite-database
1•setheron•22m ago•0 comments

The Absolute State of Management

https://infrequently.org/2026/07/state-management/
1•luu•22m ago•0 comments

Mourning Steve French

https://lwn.net/Articles/1090098/
2•mfrw•23m ago•0 comments

The agent that writes the code cannot read the tests that grade it

https://medium.com/@giladha/the-agent-that-writes-the-code-cannot-read-the-tests-that-grade-it-b4...
1•giladha•23m ago•0 comments

AI Is Quietly Draining the Public Internet of Thought

https://twitter.com/BrianRoemmele/status/2091127620431933780
3•nreece•28m ago•0 comments

Observare – one monitoring service instead of five

https://observare.co.uk/
1•5uth3r1ano•33m ago•0 comments

Tesla's Biggest Design Mistake May Be Hiding in Plain Sight

https://www.forbes.com/sites/peterlyon/2026/08/22/teslas-biggest-recall-yet-exposes-a-dangerous-p...
2•FireBeyond•38m ago•1 comments

Moonshine STT adds domain customization

https://moonshine-voice.readthedocs.io/en/latest/models/domain-customization/
1•Curiositry•40m ago•0 comments

Nearly 3M Teslas recalled in China over hidden door handles

https://www.bbc.com/news/articles/c4g6ggdg030o
30•chicken-stew•42m ago•21 comments

Show HN: AltCaption – generate HTML-ready image alt attributes

https://altcaption.com/alt-attribute-generator
1•hboon•43m ago•0 comments

Minimus Is Ending Operations

https://www.minimus.io
4•markiannucci•55m ago•0 comments

Six opportunities for scientists and engineers to learn programming with AI [pdf]

https://pg.ucsd.edu/publications/scientists-engineers-learning-programming-using-ai_CiSE-2023.pdf
3•azhenley•59m ago•0 comments

GitHub tag: "token-optimization" – List of token consumption reduction software

https://github.com/topics/token-optimization
1•peter_d_sherman•1h ago•0 comments

All-in-one tool and config for Claude-things

https://github.com/damusix/atomic-claude
3•daniloa•1h ago•0 comments

Tobi Lutke builds walgit in a weekend

https://twitter.com/tobi/status/2091678506992222258
3•cpstein•1h ago•0 comments

Sabatier Principle

https://en.wikipedia.org/wiki/Sabatier_principle
2•peter_d_sherman•1h ago•0 comments

AIs are companies, my friend

https://www.strangeloopcanon.com/p/ais-are-companies-my-friend
3•walterbell•1h ago•0 comments

Show HN: AI Room Design – Preview interior design styles before you renovate

https://airoommaker.com/
1•linnoe•1h ago•0 comments

How to Make AI Game Music for Any Level: Prompts and Looping

https://www.musegen.ai/blog/ai-game-level-music
1•musegenai01•1h ago•0 comments

Your AI Agent Doesn't Need More Prompts. It Needs Skills

https://medium.com/@faizan711/your-ai-agent-doesnt-need-more-prompts-it-needs-skills-a5e681b8a020
1•Faizan711•1h ago•0 comments

A Record-Breaking Copper Catalyst Converts CO2 into Liquid Fuels (2023)

https://newscenter.lbl.gov/2023/02/16/copper-catalyst-converts-co2-into-liquid-fuels/
1•peter_d_sherman•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?