惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Engineering at Meta
Engineering at Meta
D
Docker
IT之家
IT之家
博客园_首页
罗磊的独立博客
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
美团技术团队
Y
Y Combinator Blog
博客园 - 聂微东
量子位
阮一峰的网络日志
阮一峰的网络日志
GbyAI
GbyAI
Microsoft Security Blog
Microsoft Security Blog
博客园 - Franky
Martin Fowler
Martin Fowler
Jina AI
Jina AI
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
月光博客
月光博客
G
Google Developers Blog
B
Blog
T
The Blog of Author Tim Ferriss
爱范儿
爱范儿

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - jacksonsolid/Bytery
teamsolid · 2026-05-25 · via Hacker News: Show HN

Bytery banner

Bytery is a schema-aware binary serialization format and reference library designed to replace JSON in transport and storage scenarios.

It aims to make structured payloads smaller and faster to encode and decode by combining:

  • compact binary primitive encodings
  • string table reuse
  • date table reuse
  • schema table reuse
  • optional outer GZIP compression

Bytery Viewer

Below is a real Bytery payload being inspected by the built-in viewer.

The screenshot shows the full wire structure in a human-readable way: original JSON preview, optional headers, colorized hex dump, string table, date table, schema table, and the decoded data tree. This makes it much easier to debug the binary format and verify exactly how each value is represented on the wire.

In this example, the payload includes optional headers such as author and when, but headers are not required by the format.

Bytery Viewer - colorized binary payload inspector

Repository Purpose

This repository contains two related deliverables:

  • the Bytery protocol specification
  • the reference implementation and supporting experiments

Project Status

  • Protocol status: draft v1.1
  • Reference implementation: VB.NET
  • Secondary implementation artifacts: TypeScript
  • Compatibility note: the specification is stabilizing and may still receive clarifications before a first public stable release

Repository Structure

docs/
  spec.md                  Protocol specification
  full-examples.md         Worked examples and decoding notes
  benchmarks.md            Benchmark summary and methodology notes
  protocol-status.md       Stability and compatibility notes
  roadmap.md               Planned work
Bytery/
  ...                      Canonical VB.NET library project
Test/
  ...                      Canonical tests and benchmarks project
implementations/
  typescript/              TypeScript implementation artifacts
examples/
  README.md                Browser demo notes
  json-roundtrip.html      JSON -> Bytery -> JSON demo
src/
  README.md                Source layout note
tests/
  README.md                Test layout note
assets/
  README.md                Reserved for diagrams, logos, and media

Documentation

Quick Start

Primary implementation paths in the current repository:

  • Bytery
  • Test
  • implementations/typescript

Published documentation paths:

  • docs/spec.md
  • examples/json-roundtrip.html

Design Goals

  • Smaller payloads than plain JSON
  • Faster encode and decode for repeated structured data
  • Deterministic binary wire format
  • Clear separation between protocol and implementation
  • Friendly to future multi-language implementations

Publishing Guidance

If you are arriving from GitHub:

  1. Read the protocol first in docs/spec.md.
  2. Review the VB.NET implementation in Bytery/.
  3. Review the TypeScript implementation artifacts in implementations/typescript/.
  4. Use CONTRIBUTING.md before opening pull requests.

Contributing

Contributions are welcome. Please read CONTRIBUTING.md before opening an issue or pull request.

Security

See SECURITY.md for responsible disclosure guidance.

License

This project is licensed under the MIT License. See LICENSE.