Skip to content

Instantly share code, notes, and snippets.

View jenca-adam's full-sized avatar

Adam Jenča jenca-adam

View GitHub Profile
@jenca-adam
jenca-adam / vali_droplist.proto
Created November 10, 2025 18:38
protobuf protocol for parsing the vali drop pool
syntax = "proto3";
package vali.core;
import "google/protobuf/timestamp.proto";
import "google/protobuf/wrappers.proto";
message Location {
int64 node_id = 1;
double lat = 2;
double lng = 3;
GoogleData google = 4;
import random
import string
import io
import os
import sys
import mimetypes
import urllib.request
def force_string(anything):
if isinstance(anything,str):