Linux Security Engineer and Bugbounty Hunter and OSCP Certified
Developer and H4cker
package main
type Me struct{
Pronouns string
Code string
Job string
BestAndFavoriteSkill string
}
func main() {
me := &Me{
Job: "Security engineer and bug hunter",
Prononus: "He/Him",
Code: "C and Kernel Programming",
BestAndFavoriteSkill: "Web Hacking :D"
}
_ = me
}