frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Show HN: Wl-pick – a live window picker for Sway

https://mil.ad/blog/2026/wl-pick.html
1•playnext•2m ago•0 comments

New facial recognition store checkout system piloted by Revolut

https://www.independent.co.uk/news/uk/home-news/revolut-facial-recognition-system-london-b3055475...
1•thm•4m ago•0 comments

Parsing JSON Objects Without Intermediate ASTs in Haskell

https://arthi-chaud.github.io/posts/json-ir/
1•fanf2•4m ago•0 comments

iOS 27 Trust Insights API [video]

https://developer.apple.com/videos/play/wwdc2026/379/
1•bfm•7m ago•1 comments

Don't we require emotions for doing research?

1•tesnorindian•8m ago•0 comments

The Lost Atomic Update on Loongson CPU

https://jia.je/hardware/2026/09/24/loongson-cpu-erratum-en/
1•jiegec•10m ago•0 comments

Kerberized MCP Server with Delegation

https://github.com/overpassconnect/mcp-krb-server
1•overpassconnect•11m ago•0 comments

We ported the original Doom to SQL

https://cedardb.com/blog/sqldoom/
2•kciter•17m ago•0 comments

Bring Back the Nokia Lifestyle

https://nokiaretrophone.mr-ahhk1412.chatgpt.site/
2•ahhk•20m ago•0 comments

Meta takes down a critical video about meta AI Glasses after filming at Meta

https://www.reddit.com/r/facebook/comments/1wotwrk/meta_takes_down_a_critical_video_about_meta_ai/
15•pieterr•23m ago•1 comments

Show HN: ListenIn – Mac dictation tuned for mixed Chinese-English speech

https://listenin.dev/
1•nomorefish•24m ago•0 comments

Show HN: Muro: Free Native Live Wallpapers for macOS

https://murowallpaper.com
2•rockyxsl•25m ago•0 comments

Show HN: La Machine – a useless box running Erlang on an ESP32 via AtomVM

https://github.com/pguyot/la_machine
1•oliviermevel•26m ago•0 comments

MCP server for Mario Paint. It draws and composes inside the real SNES game

https://github.com/TheLiux/MCPaint
2•TheLiux•28m ago•0 comments

DAWO: Working together on a digitally autonomous workplace for Dutch government

https://www.dawo.community/en/
1•TechTechTech•32m ago•0 comments

IKEA set to open supermarket sized stores in the Netherlands next year

https://nltimes.nl/2026/09/24/ikea-set-open-supermarket-sized-stores-netherlands-next-year
1•TechTechTech•33m ago•0 comments

Rails World 2026 Opening Keynote

https://www.youtube.com/watch?v=vDjW_dRyKXY
2•edu•35m ago•0 comments

Ideas on modernizing the open-source desktop

https://lwn.net/Articles/1095425/
2•rwmj•36m ago•2 comments

The current CSS-Tricks situation

https://chriscoyier.net/2026/09/21/13985/
1•Flimm•37m ago•1 comments

GCC and Clang performance changed over 10 years: my experiment

https://medium.com/@kostya27/gcc-vs-clang-10-years-of-evolution-396cd90881c0
1•birdculture•39m ago•0 comments

Code shouldn't know which LLM provider you're using

https://github.com/BerriAI/litellm
1•yyyysa•40m ago•0 comments

Vfkit: CLI tool to start virtual machines using macOS Virtualization framework

https://github.com/crc-org/vfkit
1•rguiscard•40m ago•0 comments

Researcher finds that cats lie around for a ridiculous amount of time

https://www.newscientist.com/article/2590148-researcher-finds-that-cats-lie-around-for-a-ridiculo...
2•XzetaU8•41m ago•2 comments

Show HN: compaction.dev makes cc/codex/cursor resend less, per run

https://github.com/philipppohlmann/compaction
2•philippadrian•43m ago•0 comments

Dopamine sites – The thrill of shopping without paying

https://www.bbc.co.uk/news/articles/cwn741v5rdpxo
3•mulhoon•45m ago•0 comments

Show HN: Full-page screenshots with free annotation and PDF export

https://chromewebstore.google.com/detail/fullpage-screenshot/oancbefogdnnbfclaimdkplonkpgdpdj
1•vinyasvi•46m ago•0 comments

The First Microbe for Mars

https://blog.pioneer-labs.org/p/announcing-the-first-microbe-for
1•rbanffy•47m ago•0 comments

Benchmarking Java Performance of JDK 8 Through OpenJDK 27

https://www.phoronix.com/review/java-8-openjdk-27-benchmarks
2•theanonymousone•49m ago•0 comments

Microsoft tried to ban "Microslop", and six months later it has given up

https://www.windowslatest.com/2026/09/24/microsoft-tried-to-ban-microslop-and-six-months-later-it...
45•theanonymousone•49m ago•10 comments

Love is in the Eyre: China turns to classic novel to teach romance to teens

https://www.cnn.com/2026/09/16/style/china-english-jane-eyre-love-hnk-intl
1•theanonymousone•51m 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?