Hello. 👋
class AboutMe:
def __init__(self):
self.name = 'Colby'
self.user = 'ComputerTech'
self.age = '20'
self.about = "I'm a full stack developer/sysadmin that enjoys breaking and fixing things."
self.location = 'Northern Ireland'
self.hobbies = ['Programming', 'Sysadmin']
self.languages = ['Python', 'HTML', 'CSS', 'Javascript', 'TCL']
self.timezone = ['UTC+1']
self.projects = [
{
'project': 'elitebot',
'language': 'Python',
'description': 'This is a Python-based IRC bot that is simple and doesn't use any third-party frameworks.'
},
{
'project': 'ninjawall',
'language': 'Python',
'description': 'A user-friendly utility that optimizes the manipulation of iptables for efficient management of network traffic.'
},
]


