frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: A journal app with no network permission, and 4 ways that isn't enough

https://github.com/intrepidkarthi/dailyvox
1•intrepidkarthi•34s ago•0 comments

Our AI isn't allowed to have memory

https://www.sentohq.com/posts/company-memory-should-not-live-in-chat
1•adrved•1m ago•0 comments

Tell HN: AniTroves Update

1•anitroves•5m ago•0 comments

Show HN: Public Desktop – public desktop of the internet

https://publicdesktop.lol
1•serhansirin•7m ago•0 comments

Nerves IoT framework, apparently popular with agents

https://underjord.io/nerves-iot-framework-apparently-popular-with-agents.html
1•lawik•8m ago•0 comments

Requests to remove DHH impression from Neovim website prompts heated argument

https://github.com/neovim/neovim.github.io/issues/501
1•drayfield•9m ago•0 comments

Btcfunkpay – A self-custodial Bitcoin payment library for Python

https://github.com/lucarocchi/btcfunkpay
1•lucarocchi•9m ago•0 comments

Cultural Thought Patterns in Inter-Cultural Education (1966)

1•dwrodri•10m ago•0 comments

Show HN: Scheduled Claude Code agents that cost nothing on a quiet day

https://github.com/shadok-ai/shadok-ai
1•gnarco2•13m ago•1 comments

WebhookVault – self-hosted webhook infrastructure with delivery logs and retries

https://webhookvault.onrender.com/login
1•hydra2297•15m ago•0 comments

Using floci to emulate Cloud platforms (GCP, AWS, Azure)

https://flowg.cloud/blog/using-floci-local-emulators
1•linkdd•24m ago•0 comments

Show HN: I compressed videos by upto 78x while preserving faces,text and details

https://figshare.com/articles/online_resource/NonPU_or_Neuronal_Processing_Unit_Neuronal_Video_Di...
5•silentminterkid•25m ago•1 comments

Bill Gates is looking to meet Chinese President this year to discuss AI risks

https://twitterwebviewer.com/de?tweet=2092518660153696750
1•theanonymousone•28m ago•0 comments

MicroSD card torture test reveal SanDisk as the outlier: 6 fails of the 7 tested

https://www.tomshardware.com/pc-components/microsd-cards/microsd-card-testing-database-celebrates...
3•Markoff•29m ago•0 comments

Operation Bluebird wants to relaunch "Twitter," says Musk abandoned the name

https://arstechnica.com/information-technology/2025/12/can-twitter-fly-again-startup-wants-to-pry...
2•maxloh•30m ago•0 comments

New Studio M5 Ultra ready for local home AI lab? Compared to OpenRouter prices

https://twitter.com/gherget/status/2092293494446420010
2•gaborme•34m ago•2 comments

Show HN: Grid Data Explorer

https://open-energy-transition.github.io/Awesome-Electrical-Grid-Mapping/
1•ly0n•37m ago•0 comments

Aisee.live

1•ccbakla•38m ago•1 comments

Agent Communication Context Protocol (ACCP)- Proposal

https://github.com/RupertCloud/Agentmail/blob/main/docs/accp/SPEC.md
1•amonte•39m ago•0 comments

Development Statistics for the 7.2 Kernel

https://lwn.net/Articles/1088776/
1•pykello•41m ago•0 comments

Show HN: Memo – a local-first scratchpad for developers who live in the terminal

https://blackstardesigns.github.io/memo/
1•virtualbrain•41m ago•0 comments

Three handy tools for separating pseudoscience from the real deal [video]

https://aeon.co/videos/three-handy-tools-for-separating-pseudoscience-from-the-real-deal
1•andsoitis•44m ago•0 comments

Twitter, Bluesky and OnlyFans

https://bsky.app/profile/siridahl.com/post/3mshzivspwk22
1•Arnt•45m ago•0 comments

Climate change is strengthening El Niño, coral records suggest

https://www.science.org/content/article/climate-change-strengthening-el-ni%C3%B1o-coral-records-s...
5•shymaple•47m ago•0 comments

Reflecting on Progress Against HIV

https://www.hiv.gov/blog/americas-250th-reflecting-on-progress-against-hiv
2•andsoitis•49m ago•0 comments

Show HN: Use Spot Instance Fearlessly

https://github.com/softcane/spot-vortex-agent
2•pradeep1177•50m ago•0 comments

Show HN: Beckon, distinct sounds for what your AI coding agent needs

https://github.com/Isa1asN/beckon
2•esayas_beshah•54m ago•0 comments

The Fountain of Youth: A Tale of Parabiosis, Stem Cells, and Rejuvenation

https://pmc.ncbi.nlm.nih.gov/articles/PMC5662775/
2•andsoitis•58m ago•0 comments

Q-CTRL Achieves GPS-Free Quantum Gravimetric Navigation Demo in Field Trial

https://q-ctrl.com/blog/q-ctrl-achieves-worlds-first-gps-free-quantum-gravimetric-navigation-demo...
1•davedx•59m ago•1 comments

Show HN: AI Game Playtester

https://ziva.sh/full-game-tester
1•OsrsNeedsf2P•59m 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?