package main
type Developer struct {
Name string
Focus []string
Stack []string
Status string
}
func (d *Developer) Arise() {
for d.Status != "Shipped" {
d.Think()
d.Build()
d.Test()
d.Iterate()
}
}
func main() {
santori := Developer{
Name: "Santori",
Focus: []string{
"Backend",
"Distributed Systems",
"Real-Time Data",
"AI-Augmented Engineering",
},
Stack: []string{
"Go", "TypeScript", "Python", "Redis", "NATS",
},
Status: "Building...",
}
santori.Arise()
}I design and ship backend systems — from architecture to production.
The stack I use to ship production systems — not just prototypes.
AI is not a shortcut.
It is a force multiplier inside a real engineering loop.
I design the system. AI accelerates research, implementation, and iteration.
I still own architecture, correctness, and what ships.
| Where AI helps most | Where I stay in control |
|---|---|
| Exploratory research & docs | System design & boundaries |
| Architecture drafts & tradeoffs | Performance-critical paths |
| Boilerplate & scaffolding | Security & secret handling |
| Refactors & test generation | Production behavior |
| Debugging hypotheses | Final code review |
| Faster iteration cycles | What actually gets merged |
workflow:
mode: human-in-the-loop
philosophy: "AI writes drafts — engineer writes systems"
non_negotiables:
- architecture_ownership
- security_review
- production_quality
- no_blind_copy_pastename: Santori
currently_building:
- AI-augmented developer workflows
- Backend & event-driven systems
- Distributed real-time architectures
- Trading & market-data infrastructure
interested_in:
- SaaS
- Artificial Intelligence
- Crypto & Trading
- Automation
- Low-latency systems
status: "Always building."Multi-exchange trading infrastructure built around real-time market data, event-driven services, and execution systems.
Go · TypeScript · Redis · NATS · WebSockets · Microservices
Cross-exchange Binance → MEXC lead-lag system with WebSocket order books, signal filters, paper trading, local dashboard, and optional live execution.
Python · WebSockets · AsyncIO · SQLite · Trading
More experiments are always in progress...
Building something interesting? Feel free to reach out.
THINK · BUILD · TEST · SHIP · REPEAT
Built by Santori — AI-augmented, engineer-led.



