Skip to content
View Raajheer1's full-sized avatar

Highlights

  • Pro

Organizations

@pronetadvisors
Block or Report

Block or report Raajheer1

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
Raajheer1/README.md
package main

import (
	"encoding/json"
	"fmt"
)

type Human struct {
	Name        string                       `json:"name"`
	Pronouns    []string                     `json:"pronouns"`
	Education   string                       `json:"education"`
	Research    string                       `json:"research"`
	StudentOrgs string			 `json:"student_organizations"`
	Description string                       `json:"description"`
	Aliases     []string                     `json:"aliases"`
	Skills      map[string][]interface{}     `json:"skills"`
	Endpoints   map[string]map[string]string `json:"endpoints"`
	Hobbies     []string                     `json:"hobbies"`
}

func main() {
	me := Human{
		Name:        fmt.Sprintf("Raaj %s Patel", "T"),
		Pronouns:    []string{"he", "him"},
		Education:   "Electrical Engineering B.S. @ Texas A&M University",
		Research:    "Computer Engineering",
		StudentOrgs: "Formula SAE Electric",
		Description: "Currently working as a contract software engineer. Texas A&M Formula SAE EV Battery Subteam Member '24.",
		Aliases:     []string{"Raajheer1", "Raaj Patel", "Raaj"},
		Skills: map[string][]interface{}{
			"go": {
				"Gin", "Gorm", "gRPC",
			},
			"python": {
				"BeautifulSoup", "scikit-learn", "TensorFlow",
			},
			"javascript": {
				"NodeJS", "VueJS", "Typescript",
			},
			"c++": {},
			"html&css": {
				"Bootstrap4", "SCSS", "CSS", "TailwindCSS",
			},
			"devops": {
				"K3s", "Docker", "Github Actions", "Kustomize", "ArgoCD",
			},
			"other": {
				"MySQL", "MongoDB", "RabbitMQ",
			},
		},
		Endpoints: map[string]map[string]string{
			"Discord": {
				"username":      "Raaj Patel",
				"discriminator": "7762",
			},
			"Email": {
				"username": "the",
				"domain":   "raajpatel.dev",
			},
		},
		Hobbies: []string{
			"Programming", "Aviation", "Semiconductors", "Cryptography",
		},
	}

	user, err := json.MarshalIndent(me, "", "  ")
	if err != nil {
		fmt.Printf("Uh oh! Something went wrong... Maybe '%s' is not of the Human Species!\n", me.Name)
		return
	}

	fmt.Println(string(user))
}

Popular repositories

  1. IDS IDS Public

    IDS4

    HTML 6

  2. Raajheer1 Raajheer1 Public

    Config files for my GitHub profile.

    1

  3. hackutd-ix hackutd-ix Public

    HackUTD-IX 2022

    Vue 1

  4. obsninja obsninja Public archive

    Forked from mrmookie/obsninja

    OBS Ninja lets you bring remote video feeds into OBS via WebRTC

    CSS

  5. AADCs AADCs Public

    Airport Arrival Demand Charts

    Go

  6. Ford-Hackathon-2021 Ford-Hackathon-2021 Public

    Ford Smart Vehicle Connectively Challenge Hackathon 2021

    JavaScript