Profile pic

Andrei Gavrila


A different take on a Curriculum Vitae

# author: Andrei Gavrila
# date:
# brief: Idea for a CV
def main():
about()
education()
programmingSkills()
competitions()
interests()
hobbies()
contact()
def about():
Name = 'Andrei Ionut'
Surname = 'Gavrila'
Age = 19
Birthdate = '14 January 1998'
Address = 'Camin 16, Hasdeu, Cluj Napoca, Cluj'
Home = 'Zanesti, Neamt'
Nationality = 'Romanian'
return
def education():
Highschool = 'National College of Computer Science, Piatra Neamt'
Years = '2012-2016'
University = 'UBB Cluj, Faculty of Mathematics and Computer Science'
Year = '2016-2019'
Department = 'Computer Science (En)'
StudyYear = 'I'
Trainings = [
'Catalysts React Workshop, 2016',
'GDC Firebase Codelab, 2016'
]
return
def programmingSkills():
# Currently using this for some freelancing projects.
# I am the kind that likes PHP even though it is so hated
PHP = 'Good knowledge of Laravel framework.'
# First programming language I have ever used
Java = 'Many small hobby projects since the 8th grade.'
# Personally preffer Java's syntax even though they're mostly identical
C# = 'Used it mainly in Unity3D and for high-school.'
# Probably my favorite language at the moment
# I love how a single line does what can't be done in less than 10 in others.
# Its simplicity in typing and complex features lead to interesting code.
Py = 'Used it extensively at uni and in hackathons.'
# Even though I hate some of it quirks, C/C++ still
# stands as the fastest language at the moment.
C++ = 'Used it in highschool mainly for algorithmics.'
# This was all done using VanillaJS
JS = 'Good knowledge of vanilla and very basic knowledge of Vue.'
MySQL = 'Usually my go to database for my projects'
OOP = 'Good knowledge of design patterns and principles.'
FP = 'I preffer to use functional interfaces and paradigms when I can.'
Linux = 'Main OS and I have basic knowledge of kernel development'
return
def competitions():
# Zero Robotics is a contest held by NASA and MIT that it involves
# coding mini satellites (SPHERES) to solve interesting challenges.
# Finalists have their code ran on the International Space Station.
ZeroRobotics = '3 times finalist with team Code::Space'
# Catalysts Coding Contest is a 4h hackathon
# held by Catalysts and every year they have
# fun problems with practical applications.
CccHyperloopMetro = 'Gold. 4thPlace'
CccDrones = 'Gold. 4th place'
CccOperationBoard = 'Silver. 24th place'
# Megahack was my first longer than a few hours
# hackathon and it was a really good learning experience.
MegaHack2016 = '2nd place at robotics challenge'
HermesHackathon2016 = '2nd place'
ComputerScienceNationalOlympiad = 'Participation in 2015'
return
def interests():
# The beauty of AI is that it can be applied everywhere
AI = 'Future'
# I like to always keep up with the new stuff in my domain
Technology = 'Innovation'
# I've tinkered with small Arduinos circuits before but I
# want to work on something bigger and cooler
Robotics = 'Fun'
return
def hobbies():
Cycling = 'Best way of transportation'
# Good music never fails to motivate or relax me
Music = 'Energy'
Others = [
'Skates',
'Ski',
'Camping',
]
return
def contact():
Phone = '0741524513'
FaceBook = 'Andrei Gavrila'
GitHub = 'Kiuny'
Email = [
'andrei (at) codespace (dot) ro',
'andreigavrila1401 (at) gmail (dot) com',
]
return
# Thanks. Hope you liked the design.