class Read_Me:
def __init__(self, username = "mvinza34", year = 2025):
self.year = year
self.username = username
self.intro = {
'introduction': ['Marlon Vinza', '25-year-old', 'college graduate']
}
self.education = {
'engineering': ['Computer Engineering', 'Sacred Heart University', 'Bachelor of Science']
}
self.employment = {
'engineer': ['company', 'city'],
'volunteer': ['Note-Taker', 'Freshman Seminar']
}
self.skills = {
'programming languages': ['Python', 'MATLAB', 'SystemVerilog'],
'software': ['Visual Studio', 'Microsoft Office'],
'hardware': ['Raspberry Pi 4', 'Raspberry Pi Pico', 'Arduino Uno']
}
self.growing = {
'programming languages': ['HTML', 'JavaScript'],
'software': ['Visual Studio'],
'hardware': [],
'learning sites': ['The Odin Project', 'YouTube']
}
self.hobbies = {
'video games': ['Elden Ring', 'Ghost of Tsushima', 'Dark Souls', 'Sekiro: Shadows Die Twice', 'Super Mario Galaxy 2', 'The Witcher 3: Wild Hunt'],
'books': ['The Lord of the Rings', 'Ultimate Spider-Man', 'A Song of Ice and Fire', 'The Witcher'],
'movies': ['Godzilla Minus One', 'Avengers: Endgame', 'The Lord of the Rings: The Two Towers', 'Spider-Man 2'],
'TV shows': ['Dragon Ball Z', 'Game of Thrones', 'Code Geass', 'House of the Dragon']
}
def doing(self, now = 2024):
today = self.year
if now < today:
education = self.education['engineering']
experience = self.employment['volunteer']
intro = self.intro['introduction']
return """
Hello there. My name is {name}, and I am a {age} {status}.
""".format(name = intro[0], age = intro[1], status = intro[2]) + """
I studied {major} at {university} from 2017 to 2021, obtaining a {degree} degree upon graduation.
""".format(major = education[0], university = education[1], degree = education[2]) + """
During my junior year, I volunteered as a {position} for a class called {course}.
I documented and uploaded comprehensive lecture notes and revised presentations to an online portal.
This provided students with ongoing access to study materials and enhanced their understanding of the course content.
""".format(position = experience[0], course = experience[1])
elif now == today:
dream = self.growing['programming languages']
learn = self.growing['learning sites']
hobby_1 = self.hobbies['video games']
hobby_2 = self.hobbies['books']
hobby_3 = self.hobbies['movies']
hobby_4 = self.hobbies['tv shows']
return """
I am currently learning {code_1} and {code_2} on {website} and {other}.
""".format(code_1 = dream[0], code_2 = dream[1], website = learn[0], other = learn[1]) + """
My hobbies are playing video games, reading books, and watching movies and TV shows.
My all-time favorites are {game}, {book}, {movie}, and {show} respectively.
""".format(game = hobby_1[0], book = hobby_2[1], movie = hobby_3[2], show = hobby_4[2])
elif now > today:
goal = self.employment['engineer']
return """
I am eager to collaborate with {teams} on {projects}.
""".format(teams = goal[0], projects = 'software engineering and electronics')
else:
return """
### Hi there 👋
"""
def collaborate(self, role, organization, location):
opportunity = self.employment
opportunity[role] = [organization, location]
past_me = Read_Me(2025)
present_me = Read_Me(2025)
future_me = Read_Me(2025)
print(past_me.doing(2024))
print(present_me.doing(2025))
print(future_me.doing(2026))
-
02:13
(UTC -04:00) - https://www.linkedin.com/in/marlonvinza/
Pinned Loading
-
SoulKeeper
SoulKeeper PublicA Dark Souls-themed personal finance tracker. (NOTE: Currently a work in progress.)
Python 1
-
A-Pi-Christmas
A-Pi-Christmas PublicA Christmas-themed project that features flowing LEDs, four buzzers playing Christmas tunes, and a Pygame-based animation; all done on the Raspberry Pi 4 Model B.
Python
-
Soccer-Pong
Soccer-Pong PublicForked from clear-code-projects/Pong_in_Pygame
A Pygame-based, soccer-like Pong game that is based on the Pong_in_Pygame code and assets by Clear Code.
Python
-
Pico-Alarm-System
Pico-Alarm-System PublicA simple alarm system project that features LEDs, a PIR sensor, an LCD display, and a countdown timer; all done on the Raspberry Pi Pico.
Python 1
If the problem persists, check the GitHub status page or contact support.