Skip to content
View Dharma-09's full-sized avatar
:electron:
Focusing
:electron:
Focusing

Highlights

  • Pro

Block or report Dharma-09

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
Dharma-09/README.md

๐Ÿ‘‹ 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

โœจ My Recent Activity

Open Source Contribution

  1. ๐ŸŽ‰ Merged PRย #8122ย inย wagtail/wagtail
  2. ๐ŸŽ‰ Merged PRย #6859ย inย kubernetes/autoscaler/
  3. ๐ŸŽ‰ Merged PR #1872 in Kolide/launcher

๐Ÿ“• 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 go run file_n.go

Pinned Loading

  1. Mozart Mozart Public

    ๐Ÿ’ฐ payment processing and digital money transfers Dapps using react and solidity.

    JavaScript 1

  2. Arjun Arjun Public

    smart contracts Static analyzer tool for solidity

    TypeScript

  3. CI-CD-pipelines-examples CI-CD-pipelines-examples Public

    Single repository that includes examples for various CI/CD pipelines using different tools

    Makefile 1

  4. wagtail/wagtail wagtail/wagtail Public

    A Django content management system focused on flexibility and user experience

    Python 18.4k 3.9k

  5. kubernetes/autoscaler kubernetes/autoscaler Public

    Autoscaling components for Kubernetes

    Go 8.1k 4k

  6. kolide/launcher kolide/launcher Public

    Osquery launcher, autoupdater, and packager

    Go 506 103