package xkian
import "fmt"
type Profile interface {
Contact() string
Languages() []string
Coding() CodingProfile
}
type CodingProfile struct {
Editors []string
Specialities []string
Languages map[string][]string
}
type Kian struct{}
func (Kian) Discord() string {
return ".xkian"
}
func (Kian) Languages() []string {
return []string{"German", "English"}
}
func (Kian) Coding() CodingProfile {
return CodingProfile{
Editors: []string{"GoLand", "PyCharm", "VS Code"},
Specialities: []string{"Reverse Engineering", "Automation"},
Languages: map[string][]string{
"pro": {"Go", "Python"},
"intermediate": {"C++"},
"learning": {"WebAssembly"},
},
}
}
func main() {
var me Profile = Kian{}
fmt.Println("discord:", me.Discord())
fmt.Println("languages:", me.Languages())
c := me.Coding()
fmt.Println("editors:", c.Editors)
fmt.Println("specialities:", c.Specialities)
fmt.Println("coding languages:", c.Languages)
}
💯
Reverse engineering
Highlights
- Pro
Pinned Loading
-
cloudflare-jsd
cloudflare-jsd PublicBypass Cloudflare's /h/b/jsd challenge using 100% python
-
-
GeekedTest
GeekedTest PublicGeetest v4 slide, icon, gobang & ai solver - 100% python implementation - no browser needed
-
binance-captcha-solver
binance-captcha-solver PublicBinance Captcha solver fully implemented in 100% python. Does not rely on any third party service
-
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.