Feed aggregator
Resist Less, Not Try Harder
Article URL: https://personalokr.substack.com/p/resist-less-not-try-harder
Comments URL: https://news.ycombinator.com/item?id=48264041
Points: 1
# Comments: 0
Book II-Apple II+ laptop made with period-correct chips
Article URL: https://8086cpu.com/Z80/6502/110.html
Comments URL: https://news.ycombinator.com/item?id=48264032
Points: 1
# Comments: 0
Franchising has made Americans rich
Article URL: https://economist.com/business/2026/05/24/franchising-has-quietly-made-countless-americans-rich
Comments URL: https://news.ycombinator.com/item?id=48264029
Points: 1
# Comments: 0
EU bringing in Digital IDs for citizens: What are they? How will it affect you?
I passed Claude Certified Architect: here's my notes and a practice exam
Article URL: https://practice-exam-deploy.vercel.app/
Comments URL: https://news.ycombinator.com/item?id=48264000
Points: 2
# Comments: 0
Who Will Monetize Truth? [pdf]
96% Correct Next Token Prediction, with No DNN, No Training, Autodistilled Model
Article URL: https://mltechniques.com/2026/05/25/96-correct-next-token-prediction-with-no-dnn-no-training-auto-distilled-model/
Comments URL: https://news.ycombinator.com/item?id=48263978
Points: 1
# Comments: 1
AI Makes Adding Features Faster – So Why Not Add Just One More?
Article URL: https://grith.ai/blog/just-one-more-feature?nop
Comments URL: https://news.ycombinator.com/item?id=48263974
Points: 2
# Comments: 2
Ask HN: How to get back into programming without AI?
It's been a long time since I've written code without AI, and I miss it. How can I get back into it without ending up reaching for AI?
Comments URL: https://news.ycombinator.com/item?id=48263955
Points: 1
# Comments: 2
Your Token Was an Equity Grant All Along
Article URL: https://artsabintsev.substack.com/p/your-token-was-an-equity-grant-all
Comments URL: https://news.ycombinator.com/item?id=48263945
Points: 1
# Comments: 0
I built a scanner that found 41 live AWS keys in 900 Terraform state files
Article URL: https://vechron.com/2026/05/i-found-900-s3-buckets-exposing-terraform-state-files-41-had-live-aws-credentials/
Comments URL: https://news.ycombinator.com/item?id=48263936
Points: 1
# Comments: 0
A free directory of ecommerce operations tools and checklists
Article URL: https://www.storeops.directory/
Comments URL: https://news.ycombinator.com/item?id=48263920
Points: 1
# Comments: 0
Linus Torvalds to 'start being more hardnosed' about 'pointless pull requests'
Introducing vtermux
Article URL: https://www.mcpantz.org/blog/2026/05/24/introducing-vtermux/
Comments URL: https://news.ycombinator.com/item?id=48263873
Points: 1
# Comments: 0
MCP Apps: interactive UIs for MCP tools
Article URL: https://apps.extensions.modelcontextprotocol.io/api/
Comments URL: https://news.ycombinator.com/item?id=48263851
Points: 1
# Comments: 0
European social media newbies step forward as users drift from X
Article URL: https://www.euractiv.com/news/european-social-media-newbies-step-forward-as-users-drift-from-x/
Comments URL: https://news.ycombinator.com/item?id=48263799
Points: 1
# Comments: 0
Vulnerability Spoiler Alert – Exposing Patches Before CVEs
Article URL: https://vulnerabilityspoileralert.com
Comments URL: https://news.ycombinator.com/item?id=48263797
Points: 2
# Comments: 0
When you should bring in the heavy hitters (2017)
Article URL: https://www.rawsignal.ca/newsletter-archive/when-you-should-bring-in-the-heavy-hitters/
Comments URL: https://news.ycombinator.com/item?id=48263787
Points: 1
# Comments: 0
Eleata: Validate Peppol/XRechnung/Factur-X EU e-invoices in CI with fix hints
Article URL: https://eleata.io/
Comments URL: https://news.ycombinator.com/item?id=48263771
Points: 1
# Comments: 0
Show HN: Bytery – a binary JSON protocol ~10x faster and ~10x smaller
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.
Comments URL: https://news.ycombinator.com/item?id=48263675
Points: 1
# Comments: 0
