frontpage.
newsnewestaskshowjobs

Open Source @Github

fp.

Se-harness – portable, tool-agnostic AI coding harness generator

https://github.com/manuuuel/seh
1•manuuuel•59s ago•0 comments

ASD Has Handed Australian and New Zealand Boards 16 Questions on Frontier AI

https://insiconcyber.com/blog/asd-frontier-ai-board-considerations
1•insicon_cyber•7m ago•0 comments

OpenAI launches GPT-5.6-Cyber – 95% completion on advanced cybersecurity tasks

https://venturebeat.com/technology/openai-launches-gpt-5-6-cyber-with-reduced-refusals-95-complet...
1•ashurandi•9m ago•0 comments

LLMs and Xfwl4

https://www.spurint.org/journal/2026/07/llms-and-xfwl4
1•LaSombra•10m ago•0 comments

SB116 Programmers Calculator

https://unimplementedtrap.com/sb116-programmers-calculator/
1•jandeboevrie•16m ago•0 comments

IsThisBS?

https://isthisbs.org/
3•yanko•19m ago•0 comments

What Design Engineers Earn in Europe: Results from a Survey of 106

https://hymera.co/research-design-engineer-salary-europe
4•ablazevics•24m ago•2 comments

Moving integer division to floating-point is trivial

http://marc-b-reynolds.github.io/math/2026/08/10/IntDivByFP.html
3•matt_d•26m ago•0 comments

Peter Steinberger: "Fun Is Velocity" [video]

https://www.youtube.com/watch?v=whcfSGN6CAU
3•tosh•27m ago•0 comments

Half of Europe's towns and villages have fewer residents than 60 years ago

https://correctiv.org/en/europe/2026/04/21/half-of-europes-towns-and-villages-have-fewer-resident...
17•Pamar•29m ago•4 comments

OLM to PST Converter

https://www.perfectdatasolutions.com/en/olm/olm-to-pst-converter.html
2•tieanderson•32m ago•0 comments

The AI threat to India's IT jobs machine

https://www.ft.com/content/dee4bd2c-fbad-4713-9b14-22d441967ce4
2•JumpCrisscross•33m ago•0 comments

OpenAI wraps $7B share sale ahead of potential IPO

https://www.cnbc.com/2026/08/10/openai-wraps-7-billion-share-sale-ahead-of-potential-ipo-.html
5•kristianp•34m ago•0 comments

France Bans Unsolicited Telemarketing Calls

https://www.nytimes.com/2026/08/11/world/europe/france-ban-unsolicited-telemarketing-calls.html
10•JumpCrisscross•38m ago•0 comments

New Features in Python 3.15

https://www.infoworld.com/article/4166693/the-best-new-features-in-python-3-15.html
3•theanonymousone•40m ago•0 comments

MP3 piracy was born August 10, 1996

https://dfarq.homeip.net/the-first-pirated-mp3/
2•giuliomagnifico•44m ago•0 comments

DeepSeek: Reverse Engineering an AI Assistant by Interviewing Itself

https://manish.sh/writings/models/inside-deepseek-reverse-engineering-an-ai-assistant-by-intervie...
12•ms7892•45m ago•2 comments

Trump Said to Have Used Military Jet to Leave Turkey Amid Threats

https://www.nytimes.com/2026/08/10/us/politics/trump-plane-ruse.html
2•blltprfmnk•47m ago•0 comments

Show HN: Mcptoon – MCP CLI client that cuts tool discovery tokens by 97%

https://github.com/activeing123/mcptoon
17•mcptokensaver•48m ago•6 comments

Bow Windshield

https://en.wikipedia.org/wiki/Bow_windshield
4•CalChris•51m ago•0 comments

Coop Roost: Free, Open Source Child Safety Infrastructure for Every Platform

https://roost.tools/blog/coop-1-0-world-s-first-free-open-source-child-safety-infrastructure-for-...
2•tyfrankiv•51m ago•0 comments

Show HN: ConfigLedger -Find configuration drift across code, CI, Docker and docs

https://github.com/DevFoundry-labs/configledger/
2•DevFoundry-labs•52m ago•0 comments

Show HN: NiceShot AI – The analytics layer competitive games forgot to add

https://github.com/karimm-ai/NiceShot_AI
2•niceshot-ai•57m ago•0 comments

Tlbic Supplement v11.0: Added Question for Readers in Other Languages

https://drive.google.com/file/d/1svnkbPHkdK2Oyp2T2kAhhQna1ANtH7bO/view?usp=drive_link
1•michikawa59•58m ago•2 comments

Checkly: Metabase Security Incident

https://www.checklyhq.com/blog/metabase-security-incident/
1•sangeeth96•58m ago•0 comments

LLVM: Estimating Branch Probabilities

https://maskray.me/blog/2026-08-09-estimating-branch-probabilities
1•signa11•58m ago•0 comments

Show HN: Mychart-CLI, a local-first exporter for records you can view

https://github.com/lifan-builds/mychart-cli
1•lifan-builds•1h ago•0 comments

Never Bet Against Elon

https://blog.oxplot.com/never-bet-against-elon/
2•oxplot•1h ago•0 comments

Clanker Constitution

https://github.com/kenn-io/constitution
2•tosh•1h ago•0 comments

Claude skill automating edits to songs

https://github.com/ZiadAbdelkarim/beat-synced-edit
2•iwasastreamer•1h 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?