ashwiniag
  • Home
  • Engineering
  • Life
  • Résumé
Knowledge is Power!

Enable SSM on eks nodes

Ashwini Gaddagi

Ashwini Gaddagi

Jan 8, 2022
k8s_terraform_metrics/templates/ssm.tf at main · ashwiniag/k8s_terraform_metrics
Terraform + K8s + Vicoriametrics + Kube-state-metrics + Prometheus operator - ashwiniag/k8s_terraform_metrics
GitHubashwiniag

Read more

Compiler?

ℹ️in reference to what makes protobuf faster?. You write code in a language humans can read. The computer only understands binary (0s and 1s). A compiler bridges that gap. This is why protobuf needs a compiler you write the schema in .proto format, run protoc, and it generates Go

By Ashwini Gaddagi Apr 9, 2026

What makes Protobuf faster?

📖Chapter 2 of Distributed Services with Go swaps JSON for Protocol Buffers. Before writing a single .proto file, I wanted to understand why and what actually makes Protobuf faster? Understand serialization Example: curl -X GET localhost:8080/consume -d '{"offset":0}' {"record":{"value&

By Ashwini Gaddagi Apr 9, 2026

The correlation when building anything; Go

📖Chapter 1 summary of pragprog.com/titles/tjgo/distributed-services-with-go/ The correlation when building anything Every server you ever build has exactly three layers: LAYER 1 DATA "what do I store and how?" -> your Log, your Database, your Cache -> pure Go structs, no HTTP, no

By Ashwini Gaddagi Apr 7, 2026

uint64 what and why

uint = unsigned integer, no negative numbers. Range is 0 to a very large positive number. var x int // -9,223,372,036,854,775,808 to +9,223,372,036,854,775,807 var x uint64 // 0 to 18,446,744,073,709,551,615 In a commit log specifically:

By Ashwini Gaddagi Apr 6, 2026
ashwiniag
Powered by Ghost