Skip to content

Instantly share code, notes, and snippets.

@crazyuploader
Last active July 13, 2022 05:17
Show Gist options
  • Select an option

  • Save crazyuploader/f3167615b3545c44e4c49ed69dd5f6c5 to your computer and use it in GitHub Desktop.

Select an option

Save crazyuploader/f3167615b3545c44e4c49ed69dd5f6c5 to your computer and use it in GitHub Desktop.
Myself in Python3
#/usr/bin/env python3
# Program to represent myself
class myself():
def __init__(self):
self.name = "Jugal Kishore"
self.username = "crazyuploader"
self.occupation = "Software Developer/DevOps Engineer"
self.location = "Agra, India"
self.interests = """{
"Operating Systems": [
"Linux",
"Android",
"Windows"
],
"Editors": [
"VS Code",
"Atom",
"Nano",
"Micro",
"Vim"
],
"Programming Languages": [
"Go",
"Python",
"BASH"
],
"Tools & Containerization": [
"Git",
"Docker",
"Podman",
"Kubernetes"
],
"Automation & CI/CD": [
"Ansible",
"GitHub Actions",
"Circle CI",
"Semaphore CI",
"Cirrus CI"
],
"Cloud Platform": [
"Hetzner",
"Linode",
"Amazon Web Services",
"Google Cloud Platform",
"Microsoft Azure"
],
"Databases": [
"MySQL",
"PostgreSQL",
"MongoDB"
],
"Others": [
"Mars",
"Cycling",
"Anime",
"Manga"
]
}"""
self.social = """{
"Website": "https://devjugal.com",
"GitHub": "https://github.com/crazyuploader",
"DockerHub": "https://hub.docker.com/u/crazyuploader",
"Dev.to": "https://dev.to/crazyuploader",
"LinkedIn": "https://linkedin.com/in/crazyuploader",
"Twitter": "https://twitter.com/jugalkishor839",
"Telegram": "https://t.me/crazyuploader",
"Facebook": "https://facebook.com/profile.php?id=100051213879144"
}"""
def present(self):
print("Name: %s" % self.name)
print("Username: %s" % self.username)
print("Occupation: %s" % self.occupation)
print("Location: %s" % self.location)
print("Interests: %s" % self.interests)
print("Social: %s" % self.social)
me = myself()
me.present()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment