Hi, I'm Ae0lu5!

The sky is dark, the wind is chasing!
CTFer and Whitehat

GitHub Ae0lu5


More about me…

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package main

type Me struct{
Pronouns string
Code string
Job string
BestAndFavoriteSkill string
}

func main() {
me := &Me{
Job: "White Hat Hacker",
Prononus: "He/Him",
Code: "PHP and Python and Everythings",
BestAndFavoriteSkill: "Web Hacking :D"
}
_ = me
}