8000 Falo04 (Felix) · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
View Falo04's full-sized avatar
💻
Software Engineer & Cyber Security Student
💻
Software Engineer & Cyber Security Student
  • Cybersecurity @ THI
  • Ingolstadt, Germany
  • 16:37 (UTC +02:00)

Block or report Falo04

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Falo04/README.md
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)
}

Pinned Loading

  1. RecipeApp RecipeApp Public

    TypeScript

  2. THI-CSI/decentralized_iam_battery_data THI-CSI/decentralized_iam_battery_data Public

    Decentralized IAM for Battery Data

    C 10 1

0