frontpage.
newsnewestaskshowjobs

Made with ♥ by @iamnishanth

Open Source @Github

fp.

Linus Torvalds to 'start being more hardnosed' about 'pointless pull requests'

https://www.theregister.com/oses/2026/05/25/linus-torvalds-to-start-being-more-hardnosed-about-po...
1•raybb•4m ago•0 comments

Introducing vtermux

https://www.mcpantz.org/blog/2026/05/24/introducing-vtermux/
1•angelixd•8m ago•0 comments

MCP Apps: interactive UIs for MCP tools

https://apps.extensions.modelcontextprotocol.io/api/
1•firasd•12m ago•0 comments

European social media newbies step forward as users drift from X

https://www.euractiv.com/news/european-social-media-newbies-step-forward-as-users-drift-from-x/
1•jruohonen•22m ago•0 comments

Vulnerability Spoiler Alert – Exposing Patches Before CVEs

https://vulnerabilityspoileralert.com
2•shaunpud•22m ago•0 comments

When you should bring in the heavy hitters (2017)

https://www.rawsignal.ca/newsletter-archive/when-you-should-bring-in-the-heavy-hitters/
1•downbad_•24m ago•0 comments

Eleata: Validate Peppol/XRechnung/Factur-X EU e-invoices in CI with fix hints

https://eleata.io/
1•hernanqwz•26m ago•0 comments

Claude's Mythos AI model may cause security issues for your money

https://www.rte.ie/brainstorm/2026/0517/1572343-claude-ai-model-security-issues-humans-work-infor...
1•austinallegro•32m ago•0 comments

Show HN: Porting my Newsletter to MCP – You set WHEN and HOW OFTEN to receive it

https://forwardpasstechnology.substack.com/p/you-decide-when-you-receive-forwardpass
1•AlatAnmoku•38m ago•0 comments

Why Do We Sleep Under Blankets, Even on the Hottest Nights? (2017)

https://www.atlasobscura.com/articles/blankets-summer-hot
2•downbad_•38m ago•0 comments

Google Wants to Own the Checkout Button

https://thingswithai.org/posts/google-universal-cart-agentic-commerce
2•UtkarshPatel13•44m ago•0 comments

Show HN: Bytery – a binary JSON protocol ~10x faster and ~10x smaller

https://github.com/jacksonsolid/Bytery
1•teamsolid•44m ago•0 comments

Becalled

https://becalled.eu
1•leaklords•47m ago•0 comments

Chrome and Android‑apps story that predicted today's Googlebooks moment

https://www.windowscentral.com/microsoft/windows-10/flashback-the-2016-chrome-and-android-apps-st...
1•theanonymousone•49m ago•0 comments

Quantifying Physical Activity Energy Expenditure (Compendium)

https://pacompendium.com/
1•rramadass•50m ago•1 comments

Gelatine Sculpt Metabolism Support – Weight-Loss Guide 2026

https://finance.yahoo.com/sectors/healthcare/articles/gelatine-sculpt-exploding-2026-viral-142500...
1•ragypalz•52m ago•0 comments

Femtosecond Jitter: High Performance White Rabbit Timing Receiver

https://gitlab.com/ohwr/project/ertm15-llrf-wr/-/wikis/home
1•KnuthIsGod•55m ago•0 comments

A curated list of static analysis (SAST) tools

https://github.com/analysis-tools-dev/static-analysis
1•saikatsg•57m ago•0 comments

James D. Johnston the father of perceptual audio coding

https://ethw.org/James_D._Johnston
1•KnuthIsGod•1h ago•0 comments

Kevin O'Leary wants AI data centre in Utah. Some residents aren't happy

https://www.cbc.ca/news/world/kevin-oleary-data-centre-utah-9.7207716
1•1vuio0pswjnm7•1h ago•0 comments

C array types are weird

https://anselmschueler.com/blogposts/2025-c-pointers/
1•signa11•1h ago•1 comments

ATV1sm: Bypass for the original Apple TV's EFI verification to boot any EFI OS

https://distrohopper39b.com/atv1sm/
1•866-RON-0-FEZ•1h ago•0 comments

Is PowerBuilder Legacy Technology in 2026?

https://medium.com/@kumaransystemsdm/is-powerbuilder-really-legacy-technology-in-2026-46df8324b7b9
1•rajkumarsekar•1h ago•0 comments

Exon Language: Invitation for Contributors

https://github.com/atdrez/exon/discussions/2
1•atdrez•1h ago•0 comments

How My minimal, memory-safe Go rsync steers clear of vulnerabilities

https://michael.stapelberg.ch/posts/2026-05-24-minimal-memory-safe-go-rsync-vulns/
2•signa11•1h ago•0 comments

Show HN: Antimemetic message that escapes screen capture

https://fx.leftium.com/static
2•Leftium•1h ago•0 comments

Evaluating Quarkdown for Agentic Typesetting

https://quarkdown.com/blog/agent-skill/
1•iamgioh•1h ago•0 comments

'It's called winning': Why a tech industry super PAC is running ads about ICE

https://www.washingtonpost.com/technology/2026/05/23/ai-industry-super-pacs-are-intervening-midte...
3•1vuio0pswjnm7•1h ago•0 comments

Show HN: Cadence – Small marker tracking for source files

https://github.com/skorotkiewicz/cadence
1•modinfo•1h ago•0 comments

Toshifumi Suzuki, 7-Eleven Japan founder, has died

https://www.cnn.com/2026/05/25/asia/711-japan-founder-dies-intl-hnk
2•NaOH•1h ago•0 comments
Open in hackernews

Show HN: Bytery – a binary JSON protocol ~10x faster and ~10x smaller

https://github.com/jacksonsolid/Bytery
1•teamsolid•44m ago
I created a JSON codec called Bytery, which is about 10x faster and 10x smaller for storage and transport.

It is not just an implementation; it is a full protocol that can be implemented in any language.

The major gains in performance and size come from highly compact binary data formats: packing numbers into fewer bytes, avoiding repeated strings and schemas, and applying other low-level optimizations.

Here are just a few optimizations I implemented:

Encoding integers: - JSON represents integers (and everything else) as textual tokens, depending on parsers, digit decoding such as char - 48, and delimiters. - Bytery represents integers as LUINT: a single byte, if value is up to 246. Values 247..254 indicate that the following additional 1..8 bytes should be used to build a big-endian integer, and 255 means null.

Encoding strings: - JSON represents strings with delimiters, escapes, and a pair of quotes, and it costs CPU to scan until the closing quote while also handling escape sequences. - Bytery represents strings as a pair [length:LUINT,data]. It reads the length as a LUINT and then reads exactly that amount of bytes. Fast, no parsing, no delimiters, no quote scanning, no escape processing.

* These are just a few examples. There are a lot more, like string cache table, schema cache, field types, etc. * The full spec.md has around 4k lines of specification, all written with care.

The protocol is fully lossless and can handle any standalone JSON object without requiring prior knowledge of schemas or data structures.

Bytery can also transport files in native binary format, without converting them to Base64 and paying the ~30% size overhead.

Bytery can also be combined with GZIP and other post-processing tools to make the payload even smaller.

My focus here is the protocol and wire format itself.

The project is free to use. My goal is to free the internet from the heavy overhead cost of parsing, storing, and transporting JSON through the wire, while allowing data to be decoded at high speed on the client.