frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Cohere and Aleph Alpha merge to create $20B AI giant

https://techstartups.com/2026/09/16/cohere-and-aleph-alpha-merge-to-create-20-billion-ai-giant-ba...
1•soltanov•44s ago•0 comments

HDR as a new tool for graphic design

https://hdrlogo.com/after-white
1•alex_trfmv•1m ago•0 comments

How SpaceX Streamlined the Raptor Engine

https://www.construction-physics.com/p/how-spacex-streamlined-the-raptor
1•crescit_eundo•1m ago•0 comments

Microsoft AI chief calls out Anthropic's approach to AI consciousness

https://www.yahoo.com/news/articles/microsoft-ai-chief-calls-anthropics-140542640.html
1•soltanov•2m ago•0 comments

AI Helps Rich People More

https://justismills.substack.com/p/ai-helps-rich-people-more
1•surprisetalk•2m ago•0 comments

Show HN: File that is both valid bash and PowerShell, and replaces curl – bash

https://github.com/remcovanmook/hexec
1•remcovm•3m ago•0 comments

Envoy: EU should not increase climate resilience at expense of Japan industry

https://www.ft.com/content/35b6c207-98b1-44fb-82b9-3c8c29507e0a/
1•oliculipolicula•6m ago•0 comments

Every story fades with time, except for one

https://twitter.com/immutbl/status/2100242806400827495
1•delichon•6m ago•0 comments

Cohere, Aleph Alpha combine to target enterprise AI market

https://www.reuters.com/legal/transactional/cohere-aleph-alpha-combine-target-enterprise-ai-marke...
1•fgebhart•8m ago•0 comments

Charterra – a weekly world tour of local charts

https://charterra-music.com/
1•Illniyar•11m ago•1 comments

Piddington migrant camp could be scrapped because of NEWTS

https://www.gbnews.com/news/piddington-migrant-camp-scrapped-newts
1•FridayoLeary•12m ago•0 comments

Every 21 minutes: my self-healing monitor took my business line down for 2 days

https://gist.github.com/buildwithabid/161d26e90196c4df2953dc7f954bcd54
1•BuildWithAbid•13m ago•1 comments

Facing Outrage, Flock Got Help from Group That Uses AI to Rally Support

https://theintercept.com/2026/09/17/flock-cameras-ai-astroturf-support/
2•cdrnsf•13m ago•0 comments

We're releasing Kalypta, the first app to block AI notetakers in your meetings

https://twitter.com/aidaxbaradari/status/2100223250789970186/video/1
2•taubek•18m ago•1 comments

1996 PC dial-up and early web simulator

https://56k.rip/
1•henrychannel•19m ago•1 comments

Rust coreutils acknowledges copying of GNU GPL code

https://github.com/uutils/coreutils/releases/tag/0.12.0
4•co4312•20m ago•2 comments

Free to Choose (1980) [video]

https://www.youtube.com/watch?v=dngqR9gcDDw
1•nomilk•21m ago•0 comments

AI tool turns any paper into an 'agent' that can collaborate and answer queries

https://www.nature.com/articles/d41586-026-02899-2
2•sohkamyung•21m ago•0 comments

Almost-There

https://almost-there.eu/en
1•annsaoirses•27m ago•1 comments

A small, extensible experimental embedded database in C++20

https://github.com/morishuz/CoreSQL
1•oryx1729•28m ago•0 comments

I'm building a read-only AWS cost optimization tool for startups

https://commitalpha.com
2•problemstosolve•30m ago•0 comments

How to get into a flow state: the triggers that hold up, and what EEG says

https://medium.com/@6thMind/how-to-get-into-a-flow-state-the-triggers-that-hold-up-and-what-eeg-s...
1•smanuel•30m ago•0 comments

Open source semi: Windrose puts its electric truck online, for free

https://electrek.co/2026/09/17/open-source-semi-windrose-puts-its-electric-truck-online-for-free/
1•Klaster_1•31m ago•0 comments

Pew: Democrats more worried than Republicans about AI's impact on jobs

https://pewresearch.org/short-reads/2026/09/16/democrats-are-now-more-worried-than-republicans-ab...
3•utiiiD•32m ago•0 comments

Litespeed – a local coding agent with multi-model workflows

https://github.com/BerriAI/litespeed/tree/main
1•hmokiguess•33m ago•0 comments

River home to 500 crocodiles chosen as Olympic rowing venue

https://www.bbc.com/sport/olympics/articles/cqvgy1m9z4k8o
4•vismit2000•34m ago•1 comments

Nuclear Fusion's Moment of Truth

https://email.newsletters.ft.com/c/eJyMkslS40gQhp-mdCtH7ctBB29iRMxgzDIMcyGqKrOMsCy5JRkHPH1HE_Ry5J...
2•helsinkiandrew•34m ago•1 comments

Kidney Transplantation in Highly Sensitized Persons After Car T-Cell Therapy

https://doi.org/10.1056/nejmc2608825
1•sbulaev•35m ago•0 comments

Show HN: On-device meeting transcription for iPhone (no cloud, no account)

https://apps.apple.com/us/app/fieldnoter-transcription/id6789909820
2•ljokr•35m ago•0 comments

HavenCo

https://en.wikipedia.org/wiki/HavenCo
1•vismit2000•36m 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?