#!/usr/bin/python
# -*- coding: utf-8 -*-
class SoftwareEngineer:
def __init__(self):
self.name = "Ujjwal Sharma"
self.role = "Software Engineer"
self.language_spoken = ["Eng", "Hindi"]
self.tech_stack = [
"C", "C++", "Python", "JavaScript", "HTML5", "CSS3",
"Django", "Django REST", "React", "TailwindCSS", "Bootstrap", "Context-API",
"NodeJS", "NPM", "Bun", "jQuery", "Vite",
"Netlify", "Vercel", "AWS", "Nginx", "Gunicorn", "Redis",
"MySQL", "SQLite", "Pandas", "NumPy", "Matplotlib", "Keras", "Jupyter Notebook",
"Miniconda", "Windows Terminal", "Postman", "Git", "GitHub", "Gitea"
]
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
def show_tech_stack(self):
print("My Tech Stack:")
for tech in self.tech_stack:
print(f" - {tech}")
me = SoftwareEngineer()
me.say_hi()
me.show_tech_stack()
+@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @+
@@ o o @@
@@ | | @@
@@ _L_L_ @@
@@ ❮\/__-__\/❯ Programming isn't about what you know @@
@@ ❮(|~o.o~|)❯ It's about what you can figure out @@
@@ ❮/ \`-'/ \❯ @@
@@ _/`U'\_ @@
@@ ( . . ) .----------------------------. @@
@@ / / \ \ | while( ! (succeed=try() ) ) | @@
@@ \ | , | / '----------------------------' @@
@@ \|=====|/ @@
@@ |_.^._| @@
@@ | |"| | @@
@@ ( ) ( ) Testing leads to failure @@
@@ |_| |_| and failure leads to understanding @@
@@ _.-' _j L_ '-._ @@
@@(___.' '.___) @@
+@ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @ @+