package main
type Developer struct {
Name string
Education string
Focus []string
Currently string
OpenSource string
}
func main() {
me := Developer{
Name: "Ronaldo",
Education: "Computer Engineering @ UAJMS",
Focus: []string{
"Backend Development & API Design",
"Software Architecture (CQRS, DDD, Event Sourcing)",
"Distributed Systems & Performance",
},
Currently: "Building scalable services with Go & Node.js",
OpenSource: "github.com/ron86i/go-siat",
}
_ = me
}🔍 Stack Breakdown
Languages
- 🐹 Go — High-performance services, concurrent systems, CLI tools
- ☕ Java — Enterprise apps, Spring Boot
- 🟩 Node.js / TypeScript — REST & GraphQL APIs, event-driven architecture
Data
- 🐘 PostgreSQL · 🐬 MySQL
DevOps & Tools
- 🐳 Docker · 🐧 Linux / Bash · 🔧 Postman
Frontend (when needed)
- ⚛️ React + Tailwind CSS
|
|
go-siat
Go SDK for Bolivia's electronic invoicing system (SIN/SIAT). Abstracts SOAP, XML digital signatures (XMLDSig), GZIP compression, and catalog management behind a clean, idiomatic Go API. Go SOAP XMLDSig Hexagonal Architecture
|



