Thanks to visit codestin.com
Credit goes to Github.com

Skip to content
View Falo04's full-sized avatar
💻
Software Engineer & Cyber Security Student
💻
Software Engineer & Cyber Security Student
  • Cybersecurity @ THI
  • Ingolstadt, Germany
  • 03:54 (UTC +01: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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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 archive

    Decentralized IAM for Battery Data

    C 10 1