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

Block or report Dharma-09

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

APP IssueTracker

Open Source Contribution

  1. πŸŽ‰ Merged PR #8122 in wagtail/wagtail
  2. πŸŽ‰ Merged PR #6859 in kubernetes/autoscaler/
  3. πŸŽ‰ Merged PR #1872 in Kolide/launcher
  4. πŸ“« Closed PR #13310 in KubeVirt/kubevirt
  5. πŸŽ‰ Merged PR #7170 & #7241 & #7247 in prometheus-operator/prometheus-operator

πŸ“• 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("Azure-104", cert)
	}
}

func main() {
	me := &Me{
		Pseudonym:            "Dharma",
		Code:                 "GoLang, Javascript and Python",
		BestAndFavoriteSkill: "Design secure cloud architectures, harden DevOps pipelines :D",
		Certifications:       []string{"ESCA", "Azure -104"},
	}
	me.PrintInfo()
} //To run this code go run file_n.go

Pinned Loading

  1. Arjun Arjun Public

    smart contracts Static analyzer tool for solidity

    TypeScript

  2. kubernetes/autoscaler kubernetes/autoscaler Public

    Autoscaling components for Kubernetes

    Go 8.5k 4.2k

  3. GitGlyph GitGlyph Public

    Designed and implemented a real-time GitHub issue tracker using Go and GraphQL, enabling users to track issues based on repository and label.

    Go 2

  4. KubeVM KubeVM Public

    Kubernetes CRI implementation for running VM workloads

    Shell

  5. prometheus-operator/prometheus-operator prometheus-operator/prometheus-operator Public

    Prometheus Operator creates/configures/manages Prometheus clusters atop Kubernetes

    Go 9.6k 3.8k

  6. Azure-Log-Lakehouse Azure-Log-Lakehouse Public

    Build a centralized lakehouse architecture in Azure that ingests, stores, and analyzes audit logs from multiple cloud providers (Azure, AWS, GCP). This project is tailored for enterprises needing u…

    HCL