Category: developerslifestyle
-
Generate GRPC for Golang with “fixed protoc versions”
An example repository that uses “fixed protoc versions” like protoc, protoc-gen-go can be found at https://github.com/MelleKoning/goproto. This ensures stability of the use of these code generation tools. Introduction When programming with #GoLang we can define interfaces to interact with other applications using Protocol Buffers. There are different versions of generating golang code for protoc, protoc-gen-go-grpc tools…
-
Advent of Code
A nice way of ending the year is the coding puzzles of http://www.adventofcode.com/2022. Today finally cracked Day 22, but I really had to build the Cube itself to understand what goes on when “walking over the edges” of the cube. Here are some screenshots about the puzzle of this particular day.. The goal was to…