Skip to content

Hello, I am Aviral Jain

About me

package main

import (
	"fmt"
)

type Bio map[string]string

func main() {
	for k, v := range GetBio() {
		fmt.Printf("%+v: %+v\n", k, v)
	}
}

func GetBio() Bio {
	return Bio{
		"- ⚔ Quick bio:":                    "A kind of amateurMusician-traveler-foodLover-gamer-coder-programmer-dogLover-sportsfan",
		"- šŸ”­ I’m currently working on":      "Developer at SDSLabs working on some cool tech stuff",
		"- 🌱 I’m currently learning":        "Golang, RabbitMQ, Unity, CP, Docker",
		"- šŸ‘Æ I’m looking to collaborate on": "Golang and Kubernetes related projects",
		"- šŸ¤” I’m looking for help with":     "Anything related to what I am currently learning šŸ˜…",
		"- šŸ’¬ Ask me about":                  "Python, PHP, Golang, Javascript, SQL, Software Design & Architecture, Web-Dev",
		"- šŸ“« How to reach me:":              "Mail me on [email protected]",
	}
}