frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Kubernetes Changed Block Tracking API – Beta Differences

https://kubernetes.io/blog/2026/09/14/csi-changed-block-tracking-beta/
1•hn9zmdcaou•2m ago•0 comments

Unexpected Facts about Turkeys

https://www.vox.com/2014/11/27/7299377/turkey-facts-fun
1•thunderbong•5m ago•0 comments

Anyone Used Cloudflare AI Agent Diagnostics for SaaS Purchases?

https://blog.cloudflare.com/aeo/
1•tkrenn06•5m ago•1 comments

EconDash – Explore 753 economic indicators across 298 countries

https://econdash.org
1•latentframe•5m ago•0 comments

Walking Men Worldwide

https://walking-men.com/
2•bookofjoe•7m ago•0 comments

Taking notes while reading: the John Locke commonplace method

https://fs.blog/john-locke-common-place-book/
1•mimo84•9m ago•0 comments

Infillion Acquires Foursquare

https://infillion.com/blog/infillion-to-acquire-foursquare-closing-the-loop-between-advertising-a...
1•doppp•15m ago•0 comments

Options Trading – Formula better than the Black-Scholes model

https://zenodo.org/records/22772029
1•zipotm•16m ago•0 comments

Launched a JEV directory with 100 uses cases

https://madewithjev.com
1•kraayen_jon•16m ago•0 comments

Show HN: NotchBuddy – Your MacBook's Notch Can Do All This

https://notchbuddy.com
1•mohitvaswani•17m ago•0 comments

Wonder how smart Jev is? Ask him directly

https://ouijev.com/
1•Rom2•18m ago•0 comments

OwnNotes: Private AI Notebook

https://apps.apple.com/us/app/ownnotes-private-ai-note/id6805594736
1•rajeevkrasr•19m ago•0 comments

Nonprofit that tracks meteors taken down by "critical blow" from a cyberattack

https://arstechnica.com/security/2026/09/nonprofit-that-tracks-meteors-taken-down-by-critical-blo...
1•joozio•26m ago•0 comments

RoboHarm: Do Frontier Robot Policies Refuse Unsafe Instructions?

https://robocurve.org/roboharm/
1•jonbaer•27m ago•0 comments

AnyFilter: Hide anything you don't want to see on any site, powered by Jev

https://github.com/anyfilter/anyfilter
1•lime66•28m ago•0 comments

TimeCodeSecurity – Deterministic AST SAST and Auto-Remediation for Python

2•AyushGaur•28m ago•0 comments

Show HN: NSLibrary – a self-hosted library for your Switch games and homebrew

https://github.com/tuckerwales/nslibrary
1•tuckerwales•30m ago•0 comments

Guest to host: escaping Docker's hypervisor

https://accomplish.ai/blog/escaping-dockers-hypervisor/
2•porridgeraisin•32m ago•0 comments

First principles of UI composition for your coding agents

https://www.eflx.top/blog/ui-composition-first-principle
1•EFLKumo•32m ago•0 comments

Anthropic sets up biology lab as it ramps AI drug program

https://www.reuters.com/world/anthropic-quietly-sets-up-biology-lab-it-ramps-ai-drug-program-2026...
1•olalonde•34m ago•0 comments

Jev Playground

https://jevplayground.terrydjony.com/
1•terryds•35m ago•0 comments

Windowshot

https://www.windowshot.app/
1•qaisfaiz•37m ago•0 comments

Show HN: Sigabrt.dev – cronjob monitor with an SSH TUI

https://sigabrt.dev
1•4815162342•39m ago•0 comments

Laya the open source version of Jev

https://laya.convaiinnovations.com/
3•nandakishor_ml•40m ago•1 comments

Would you trade a 6-hour layover for 3 days in that city if it's cheaper?

https://uwillfly.net/pl
3•privacyzvarych•41m ago•0 comments

Search Engine that de-ranks Bot Popup and Cookie Popup websites?

1•peter_d_sherman•41m ago•1 comments

Leave the Class Path in the Rearview Mirror

https://netflixtechblog.com/leave-the-class-path-in-the-rearview-mirror-67a85b15b6be
1•theanonymousone•45m ago•0 comments

What Happens If You Execute a Random File? [video]

https://www.youtube.com/watch?v=I3i5cD5fdXI
1•vismit2000•46m ago•1 comments

Claude Fable credit expiring one day earlier than stated

https://www.reddit.com/r/ClaudeAI/comments/1wk7eui/credits_that_were_supposed_to_expire_on_the_19th/
1•rat_on_the_run•46m ago•0 comments

Goosebumps: A Paradigm Shift Is Occurring in Robotics

https://twitter.com/ken_goldberg/status/2100986412762087909
1•danielmorozoff•47m 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?