#protobuf
related note: protobuf stinky
October 28, 2025 at 6:44 PM
Growing more baffled by `prost` by the day; wondering why protobuf libraries are so consistently like this. Today’s confusion is rooted in how it handles enums: it stores an i32 in the message type containing the enum and expects you to convert manually (or use generated methods)
October 21, 2025 at 9:54 PM
Palestra
Microserviços com gRPC e FastAPI - Lucas Silva

A palestra abordará o uso de gRPC com FastAPI e Protobuf para desenvolver APIs de alta performance, com interfaces bem definidas, validação automática e comunicação eficiente via HTTP/2.
#python #bolhadev #pythonbrasil #pybr2025
October 8, 2025 at 3:04 PM
Unrelated to the name. Last weekend I did some digging into building a DSL that could autogen SDKs for anything (think OpenAPI/Protobuf). I've been looking for a way to contribute to ATProto (esp @stream.place) so I look forward to helping out on the Rust side.
October 7, 2025 at 5:21 PM
for the perf freaks out there, I'll be speaking at #p99conf next month on Protobuf optimization. it's a very cursed talk, and it'll be free and online!

come ask me questions about cpu implementation details, perf profiling, and writing really fast parsers :3
September 24, 2025 at 7:18 PM
the libraries have so far been a pleasant surprise. i read source code of my dependencies (there's only one direct dependency in this project that i haven't done a deep dive into, and it's google/protobuf) so i get exposed to hidden warts early and often. i expected a lot more hidden warts
September 21, 2025 at 10:06 PM
For networking ppl yang is the way to get structured data out of a box, personally I’d like the industry to evolve more to protobuf or json schema, but unfortunately that’s what we’re stuck with. You’d be surprised how many people are still doing CLI screen scraping. 😬
December 3, 2024 at 5:27 PM
Hehe, é algo por aí…

Você registra o schema no AWS Glue, aí os producers e consumers baixam o schema e conferem se a mensagem está de acordo antes de enviar e após receber…

Na configuração tem o modo de compatibilidade, e se é Avro, Protobuf ou JSON Schema
October 17, 2024 at 1:34 AM
📦 google/protobuf v4.31.0RC1

proto library for PHP

🔗 https://github.com/protocolbuffers/protobuf-php
April 17, 2025 at 8:51 PM
🍻 protobuf@29 🍻

Protocol buffers (Google's data interchange format)

🔗 https://protobuf.dev/

#homebrew #newpkg #macos #linux #formula
April 18, 2025 at 12:47 PM
Protobuf なり Thrift なり JSON なりで foreign interface 作るの、割と良くやる手法だと思ってたがそうでもないのか
[マストドン投稿から]:https://mstdn.mizunashi.work/@mizunashi_mana/110774938030691646
July 25, 2023 at 1:24 PM
unfortunately for me this was into a protobuf
August 22, 2023 at 8:51 PM
I’m just going to throw some words out there:

tokio tungstenite protobuf multiplayer web socket rapier physics server

Good jargon, yeah? This #rust repo has it all and more. Check it out

github.com/descrout/rus...
GitHub - Descrout/rust-multiplayer-physics: A multiplayer physics playground, written in rust.
A multiplayer physics playground, written in rust. - Descrout/rust-multiplayer-physics
github.com
January 29, 2025 at 9:35 PM
It's hard enough as is to not call gNMI "OIDs as ProtoBuf" and you go ahead and pull this stunt...
Goddammit Roman!
November 26, 2024 at 8:04 PM
this is system dependent. you could build an actor system in ways where messages aren’t serialized at all and are just values within the same program/language, and you can build actor systems where you send protobuf messages over kafka too.

distributed actors require some wire-repr for msgs
November 25, 2024 at 8:50 AM
ここ最近ずっと触ってたBufのZenn本書きました。Buf CLI だけでなくProtobufモジュールのレジストリであるBSRやConnectについても少し触れてます。gRPCやProtobufに興味ある人は読んでみてくださいー

zenn.dev/jy8752/books...
BufとProtobufで始めるモダンgRPC開発
Protocol Buffers(Protobuf)を用いた開発(主にgRPC)にはprotocのようなコンパイラが長い間使われてきました。 コード生成やドキュメントの作成、REST APIとしてのゲートウェイの実装など便利で柔軟なprotocプラグインが利用できる一方、そのため
zenn.dev
February 12, 2024 at 3:52 PM
But protobuf already supports that mapping out of the box, just the setup is a total ballache unfortunately google.aip.dev/127
AIP-127: HTTP and gRPC Transcoding
google.aip.dev
May 16, 2025 at 10:39 PM
the best part of my job is learning about how some massive company uses Protobuf and being absolutely horrified at the fact
June 16, 2025 at 10:53 PM
if anyone else has had the ssh-replacement “mosh” segfaulting on macOS when it’s installed via homebrew lately and haven’t been bothered to fix it, you probably just need to run “brew reinstall protobuf”
that fixed it for me.
July 31, 2025 at 9:46 AM
I know nothing about ProtoBuf but I wonder whether the issue could've been avoided by a different design, and the refactoring example just screams lack of practice from his younger self.

Again, I don't want to discredit him or downplay the talk, but I find issue with the examples given.
June 20, 2025 at 7:25 AM
I'm increasingly convinced that Protobuf is a terrible joke played on the world.

The proto3 namespace resolution is a disaster.
namespace resolution different from protoc behavior · Issue #314 · bufbuild/buf
Consider the following proto: syntax = "proto3"; package com.google; import "google/protobuf/wrappers.proto"; message Msg { google.protobuf.StringValue str = 1; } Note that this proto package is co...
github.com
July 12, 2023 at 7:06 PM
📰 Go Protobuf: The New Opaque API

💬 API frustration reigns supreme! Go's protobuf handling is a mess—testing data is a nightmare. 🤬

https://news.ycombinator.com/item?id=42434947
December 16, 2024 at 8:45 PM