package main
import "fmt"
type AboutMe struct {
Name string
Designation string
Base string
}
type Stack struct {
backend []string
frontend []string
misc []string
}
func main() {
me := AboutMe{
Name: "Felix",
Designation: "Cybersecurity",
Base: "Ingolstadt, Germany",
}
stack := Stack{
backend: []string{"Rust", "Go", "Python", "c", "c++"},
frontend: []string{"React", "Angular", "Typescript", "Tailwind"},
misc: []string{"Docker", "Nginx", "PostgreSQL"},
}
fmt.Println("About Me:")
fmt.Printf("%+v\n", me)
fmt.Println("My Stack:")
fmt.Printf("%+v\n", stack)
}
💻
Software Engineer & Cyber Security Student
Software Engineer & Cyber Security Student
-
Cybersecurity @ THI
- Ingolstadt, Germany
-
16:37
(UTC +02:00)
Pinned Loading
-
-
THI-CSI/decentralized_iam_battery_data
THI-CSI/decentralized_iam_battery_data PublicDecentralized IAM for Battery Data
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.