Skip to content

The beginning of my blog!

Published:

Hey everyone, welcome to my new website. Stay tuned for articles on all things web development, Golang, JavaScript and Home Automation, or any cool new tech I’ve started to try out!

but.. Who Am I you ask?

Me := struct {
  FullName    string
  Designation string
  Locations    []string
  Loves       []string
}{
  FullName:    "Adarsh Hegde",
  Designation: "Associate Software Engineer",
  Locations: []string{
    "(Remote) Honnavar, India",
    "(sometimes) Bengaluru, India",
  },
  Loves: []string{
    "Golang",
    "JavaScript",
    "Cats", "Home Automation",
    "spending hours and hours automating something," +
      "that should have taken 10 mins doing it manually",
  },
}