frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Ask HN: cybersecurity refusal for turning a jailbroken kindle into a monitor

2•areoform•5m ago•1 comments

Akihiro Miwa, Actor and Singer with Gender-Fluid Glamour, Dies at 91

https://www.nytimes.com/2026/07/16/movies/akihiro-miwa-dead.html
2•moritzwarhier•5m ago•0 comments

Forced to use a Pin in Windows 11, some alternatives

https://learn.microsoft.com/en-us/answers/questions/3865530/forced-to-use-a-pin-in-windows-11-why...
2•itronitron•6m ago•0 comments

You cannot copyright AI generated material in the US

https://twitter.com/CrimeDecoder/status/2077878317928087906
2•apwheele•8m ago•0 comments

Godot Community Poll 2026

https://godotengine.org/article/godot-community-poll-2026/
2•pineappletooth_•10m ago•0 comments

CVE-2026-25089: FortiSandbox unauthenticated command injection added to CISA KEV

https://hellorecon.com/blog/cve-2026-25089
2•slvnx•11m ago•0 comments

Flowers for Algernon

https://en.wikipedia.org/wiki/Flowers_for_Algernon
2•Jimmc414•12m ago•1 comments

Unheard 1965 David Bowie songs to be released – including Jimmy Page on guitar

https://www.theguardian.com/music/2026/jul/15/david-bowie-unheard-songs-1965-jimmy-page-the-shel-...
2•bookofjoe•14m ago•0 comments

'Likweli': A new monkey species discovered in the Congo Basin

https://news.yale.edu/2026/07/15/meet-likweli-new-monkey-species-discovered-congo-basin
3•gmays•19m ago•0 comments

ReRust – A collection of projects rewritten in Rust

https://reru.st
3•rafayello•21m ago•0 comments

Just Do Things

https://ray.zo.space/blog/just-do-things
3•erhuve•23m ago•0 comments

Show HN: Vektorgeist- A platform for AI operators and their agent's

https://vektorgeist.com/
2•VektorGeist•27m ago•0 comments

What Doom taught us about AI-assisted incident response

https://rootly.com/blog/what-doom-taught-us-about-ai-assisted-incident-response
3•sylvainkalache•27m ago•0 comments

Blood in the Datacenter

https://www.seangoedecke.com/luddites-and-ai-datacenters/
6•gfysfm•28m ago•0 comments

Neuromancer Teaser 2

https://www.youtube.com/watch?v=H0OhGl8VAIo
2•wslh•30m ago•0 comments

Ask HN: Who gets credits on big math questions solved by LLMs?

3•silentmafia•31m ago•1 comments

Amtrak launches new study on New Haven-Providence route

https://rhodeislandcurrent.com/2026/07/16/amtrak-launches-new-study-on-new-haven-providence-route/
1•chmaynard•32m ago•1 comments

New DHS rules limit foreign student visas to 4 years plus extensions

https://www.dhs.gov/news/2026/07/16/trump-administration-issues-final-rule-end-foreign-student-vi...
1•htiek•36m ago•0 comments

Truth Social to sell Wall Street firms the 'fastest' access to Trump's posts

https://www.nbcnews.com/business/media/trump-media-early-access-truth-social-posts-rcna587912
5•ceejayoz•37m ago•0 comments

We rewrote our custom visualisation renderers from SVG to be in Canvas

https://www.polarsignals.com/blog/posts/2026/07/14/new-and-faster-profiler
1•yomieluwande•38m ago•0 comments

New Stock Dashboard

https://stockhubweb.com/login?next=/home
1•alvisecuni•38m ago•0 comments

Show HN: HW/SW co-design blueprint for fault recovery in LLM training

https://github.com/PJHkorea/pim-hbm-bypass
2•PJHkorea•39m ago•1 comments

Priora: Blind-rank features, get a Scope Score, export a Cursor-ready pack

https://www.priora.space
1•kljr_dev•41m ago•0 comments

Ring-Zero: Scaling Zero RL to a Trillion Parameters for Emergent Reasoning

https://arxiv.org/abs/2607.12395
2•binyu•41m ago•0 comments

Your AI agent doesn't know when its memory is gone

https://arxiv.org/abs/2607.10582
1•venkateshamatam•41m ago•0 comments

Anthropic Tried to Phantom Charge $16.6M

https://www.internationalcyberdigest.com/anthropic-tried-to-phantom-charge-16-6m/
2•AnhTho_FR•42m ago•0 comments

Roboflow Serverless Inference: A Thousand Models on a Shared GPU Fleet

https://blog.roboflow.com/serverless-inference-a-thousand-models-on-a-shared-gpu-fleet/
1•yeldarb•43m ago•0 comments

Harness IDE: Run your coding agents on any machine

https://harness.mikelyons.org/announcements/remote-backends.html
2•frenchie4111•43m ago•1 comments

Why is healthcare so much slower than IT?

https://rufatmammadli.medium.com/why-is-healthcare-so-much-slower-than-it-317ffb4e9191
3•rumad•43m ago•2 comments

What do you do after you accidentally kill a child? (2024)

https://sundaylongread.com/2024/11/20/ryan-nickerson-traffic-death-accidental-killer/
2•NaOH•43m ago•1 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?