Software Engineer at Kitabisa
Studied at University of Indonesia
- Start with Why: How Great Leaders Inspire Everyone to Take Action by Simon Sinek (⭐️4.1)
- Meditations by Marcus Aurelius (⭐️4.29)
- Emotional Intelligence: Why It Can Matter More Than IQ by Daniel Goleman (⭐️4.07)
- Atomic Habits: An Easy & Proven Way to Build Good Habits & Break Bad Ones by James Clear (⭐️4.31)
package main
type Technologies struct {
FrontEnd []string
BackEnd []string
CloudServices []string
Databases []string
Misc []string
}
type Profile struct {
Code []string
Technologies Technologies
CurrentFocus string
FunFact string
}
var farol = Profile{
Code: []string{"Go", "Javascript", "Python"},
Technologies: Technologies{
FrontEnd: []string{"React", "Next.js"},
BackEnd: []string{"Go", "Python", "Javascript"},
CloudServices: []string{"GCP"},
Databases: []string{"PostgreSQL", "MySQL", "redis"},
Misc: []string{}
}
CurrentFocus: "Cybersecurity would be fun, I think.",
FunFact: "I'm training to be a sword master"
}





