frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: TERMy – A fast terminal assistant that does not use LLMs

https://github.com/gioblu/NPC-Forge/blob/main/docs/development.md
1•gioscarab•50s ago•0 comments

Tesla launches steering-wheel-free Cybercab robotaxi in Austin

https://www.businessinsider.com/tesla-cybercab-robotaxi-launch-event-austin-self-driving-car-2026-9
1•joak•3m ago•0 comments

Show HN: Send secrets a server can't decrypt, even if compelled to

https://serial.sumitdwivedi.com/
1•AuraFarm•4m ago•1 comments

How I use GBNF grammars to make small local models stop hallucinating JSON

https://eris-system.dev/blog/gbnf-grammars
1•teleforce•4m ago•0 comments

Ask HN: Rename ChatGPT?

1•alansaber•4m ago•0 comments

Nicholas Polson Has Written Over 200 Academic Papers in 2026 (so far)

https://economistwritingeveryday.com/2026/08/26/nicholas-polson-has-written-over-200-academic-pap...
1•luu•10m ago•0 comments

Show HN: Prices.eu.org

https://prices.eu.org/
2•sourcecodeplz•11m ago•1 comments

BlackRock CEO said Americans' savings and investments will fund data centers

https://www.msn.com/en-us/money/economy/blackrock-ceo-said-americans-savings-and-investments-will...
1•SockThief•12m ago•0 comments

Promptmatics – Free telemprompter following your voice

https://promptmatics.vercel.app/
1•olvy0•14m ago•0 comments

Weird Little Guys of FOSS

https://drewdevault.com/weird-guys/
1•absoluteleyyes•17m ago•0 comments

Job Loss Fears in the First Years of Generative Artificial Intelligence

https://papers.ssrn.com/sol3/papers.cfm?abstract_id=5136877
2•luu•17m ago•0 comments

Muse Spark 1.3 Ranks #3 on Artificial Analysis Intelligence Index

https://artificialanalysis.ai/#artificial-analysis-intelligence-index
1•alefalfa•17m ago•0 comments

I built CashmApp – a "GPS for your finances" that reroutes when life changes

https://apps.apple.com/pl/app/cashmapp-financial-gps/id6788372249
2•tem_uche•19m ago•0 comments

NPM audit service is down while NPM status page reports otherwise

https://github.com/orgs/community/discussions/187552
2•morbusfonticuli•19m ago•0 comments

The most important half-hour of my life

https://greghadfield.medium.com/tony-greenstein-the-most-important-half-hour-of-my-life-d03f7877a492
1•luu•20m ago•0 comments

Show HN: Videm – An AI image generator with 3 free daily images

https://videm.ai/
1•Evanmo666•22m ago•0 comments

Amazon and Meta AI bots account for most website visits

https://pressgazette.co.uk/platforms/amazon-and-meta-ai-bots-account-for-most-website-visits/
1•giuliomagnifico•25m ago•0 comments

The Raspberry Pi Interactive Timeline · 2006–2026

https://raspberry.tips/en/raspberrypi-infos/raspberry-pi-history-timeline
5•mariuz•28m ago•0 comments

The Birds Outside, Drawn for You Automatically

https://hackaday.com/2026/09/04/the-birds-outside-drawn-for-you-automatically/
1•arnemunthekaas•34m ago•0 comments

ApplyOnce – Local-first job application autofill that reads scanned resumes

https://github.com/Nyadzayo/ApplyOnce
1•knyadzayo•35m ago•0 comments

73% of What We Blocked in a Month Was One Syscall Your Sandbox Cannot See

https://grith.ai/blog/io-uring-the-syscall-your-sandbox-cant-see
2•edf13•38m ago•0 comments

A connectomics milestone: Mapping the complete male fruit fly brain

https://research.google/blog/a-connectomics-milestone-mapping-the-complete-male-fruit-fly-brain/
1•fittingopposite•40m ago•0 comments

Carbon-aware electricity pricing, measured daily on 38 grids

https://carbonawarepricing.com/
11•High-Five•43m ago•2 comments

Today markets scores 67, almost confident

https://gmdmarkets.com/markets-today
4•shlomysh•44m ago•0 comments

Show HN: NGPDFs – 50 PDF tools that never upload your files

https://ngpdfs.com
3•amulyakashyap09•49m ago•0 comments

Show HN: Aurict – An open-source Terminal AI

https://github.com/aurict/aurict
1•hamzakhrmn2•55m ago•0 comments

Nvidia will buy Hugging Face for $13B

https://www.economist.com/the-world-in-brief/2026/09/04/8cc011b9-bfb9-48a5-a786-222e9a90c088
2•nrsapt•57m ago•0 comments

Beyond Wukong: an AI generated animated drama series [video]

https://www.youtube.com/watch?v=T2Xzd7KHSis
1•livinglist•59m ago•1 comments

Where Measurement Replaces Meaning

https://medium.com/@gurvinder372/article-4-where-measurement-replaces-meaning-8d595ce54eb0
1•gps372•1h ago•0 comments

How to Secure SSH and Postgres with Warpgate

https://packagemain.tech/p/secure-ssh-and-postgres-with-warpgate
1•der_gopher•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?