I am Nazrul, a passionate Software Engineer working at Binate Solutions specializing in Python, Django, Flask, FastAPI, Rest Framework, Postgres, Redis, Kubernetes, AWS and DigitalOcean.
class Bio:
def __init__(self):
self.strength = "Backend Developer and DevOps"
self.current_position = "Senior Software Engineer @Binate Solutions."
self.current_interest = "AI, Golang, Rust, MongoDB, Redis, K8s, GCP, NextJS"
self.ask_me_about = self.get_skills()
self.contact = "mnazrul.c@gmail.com"
def get_skills(self):
skills_set = ("Python", "Django", "DRF", "Flask", "FastAPI", "Docker",
"Postgresql", "Redis", "Elasticsearch", "CI/CD", "Design patterns",
"Software Architecture", "Algorithms", "Data Structures")
return f"{', '.join(skills_set)}"
def __str__(self):
return f"π° Quick bio: {self.strength}\n" \
f"π» I'm currently working as: {self.current_position}\n" \
f"π± I'm enthusiast about: {self.current_interest}\n" \
f"π― I'm looking to collaborate on: {self.ask_me_about}\n" \
f"π« How to reach me: {self.contact}\n" \
f"π€ Fun fact: I love to play Chess."
def main():
print(Bio())
if __name__ == "__main__":
main()