[go: nahoru, domu]

Skip to content

Dharma-09/Dharma-09

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 

Repository files navigation

👋 Hi, I'm Dharmik Gangani

- 👀 I’m interested in ... DevOps/System Engineering and cloud Development/Architecture
- 🌱 I’m currently learning ... Rust Lang
- 💞️ I’m looking to collaborate on ... Open Source project which builds on Go, Python, and Rust
- 📫 How to reach me ...

Twitter: im_dharma09 GitHub Dharma-09 Paypal dharma09

✨ My Recent Activity

Open Source Contribution

  1. 🎉 Merged PR #8122 in wagtail/wagtail
  2. ❗ Opened issue #6859 in kubernetes/autoscaler/

📕 Latest Blog Posts

Languages and Tools ⚙️

angular aws azure bash c docker go grafana hadoop javascript kubernetes linux mongodb mysql python typescript

More about me...

package main

import "fmt"

type Me struct {
	Pseudonym            string
	Code                 string
	BestAndFavoriteSkill string
	Certifications       []string
}

func (m *Me) PrintInfo() {
	fmt.Println("Pseudonym: ", m.Pseudonym)
	fmt.Println("Code: ", m.Code)
	fmt.Println("Best and Favorite Skill: ", m.BestAndFavoriteSkill)
	fmt.Println("Certifications: ")
	for _, cert := range m.Certifications {
		fmt.Println("- ", cert)
	}
}

func main() {
	me := &Me{
		Pseudonym:            "Dharma",
		Code:                 "GoLang, Javascript and Python",
		BestAndFavoriteSkill: "Web Hacking :D",
		Certifications:       []string{"ESCA", "AWS cloud practitioner"},
	}
	me.PrintInfo()
} //To run this code use go run file_n.go

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published