#!/usr/bin/python
# -*- coding: utf-8 -*-
class SoftwareDev:
def __init__(self):
self.name = "Andrew Augustine"
self.role = "Asst. Systems Administrator"
self.degree = "Florida State - Computer Science B.S."
self.interests = ["Coding", "Writing", "Homelabbing", "Gaming"]
self.looking_for_job = True
def say_hi(self):
print("Hey! I hope you find some of my stuff interesting!")
if __name__ == "__main__":
me = SoftwareDev()
me.say_hi()
- Credit Card Crash Course
- Pokemon TCG Pocket: No Wallet? No Problem!
- FFXIV: Dawntrail - First Impressions
- From Pixels to Perfection: A Final Fantasy 7 Rebirth Review
- Configuring Page Files on Linux
Psst... This section is automatically generated using @JasonEtco's RSS to README action!