Skip to content

devonixx/devonixx

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 

Repository files navigation

Github Banner

Who am I?

class Person:
   def __init__(self, name, field_of_study, current_focus, interesting_fact, hobbies):
       self.name = name
       self.field_of_study = field_of_study
       self.current_focus = current_focus
       self.interesting_fact = interesting_fact
       self.hobbies = hobbies

   def get_location(self):
       return "Unknown City"

   def aspirations(self):
       return ["Explore New Technologies", "Complete Personal Projects"]

   def __str__(self):
       return f"{self.name}, a {self.field_of_study} enthusiast, currently focusing on {self.current_focus}. " \
              f"Interesting fact: {self.interesting_fact}. Hobbies include: {', '.join(self.hobbies)}."


# Create an instance of Person with abstracted details
user = Person(
   name="K___ Nick",
   field_of_study="Computer Science and Information Technology",
   current_focus="DevOps",
   interesting_fact="I have strong feelings about certain numbers.",
   hobbies=['Music', 'Chilling', 'Gaming', 'Horror Movies']
)

# Demonstrate usage
print(user)
print("Current Location:", user.get_location())
print("Aspirations:", user.aspirations())

   

Github Stats

Programming Languages

JavaScript HTML CSS Java Python

Frameworks and Libraries

Bootstrap Tailwindcss Django Spring Boot React Vue.js Express.js Flask Next.js

Operating Systems

Linux

Browsers

Brave Chrome

Databases and Cloud Hosting

MongoDB GitHub Pages Heroku AWS DigitalOcean Amazon RDS MongoDB Atlas

DevOps Tools

Docker Kubernetes Jenkins Terraform Ansible GitLab CI Chef Puppet SaltStack Azure DevOps CircleCI Travis CI GitOps

Software and Tools

Git Vim Visual Studio Code Pycharm Sublime Notepad  Xcode IntelliJ IDEA

Connect with Me

Gmail

Releases

No releases published

Packages

No packages published