#!/usr/bin/python
# -*- coding: utf-8 -*-
class SoftwareEngineer:
def __init__(self):
self.first_name = "Ismail"
self.last_name = "Obba"
self.nickname = "iobba"
self.role = "Software Engineer"
self.languages = ["C", "C++", "Python", "JavaScript"]
self.technologies = ["django", "PostgreSQL", "GraphQL API", "Docker", "Docker Compose", "Kafka", "Makefile"]
self.tools = ["Git", "Linux", "VSCode", "Vim", "Postman"]
def introduce(self):
print("Hi, I'm Ismail Obba, a passionate software engineer.")
def projects(self):
print("Check out my GitHub repositories for various projects ranging from systems programming to web development(backend).")
def say_thanks(self):
print("Thank you for checking out my GitHub profile!")
me = SoftwareEngineer()
me.introduce()
me.projects()
me.say_thanks()
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.