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():
PHP = 'Good knowledge of Laravel framework.'
Java = 'Many small hobby projects since the 8th grade.'
C# = 'Used it mainly in Unity3D and for high-school.'
Py = 'Used it extensively at uni and in hackathons.'
C++ = 'Used it in highschool mainly for algorithmics.'
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():
ZeroRobotics = '3 times finalist with team Code::Space'
CccHyperloopMetro = 'Gold. 4thPlace'
CccDrones = 'Gold. 4th place'
CccOperationBoard = 'Silver. 24th place'
MegaHack2016 = '2nd place at robotics challenge'
HermesHackathon2016 = '2nd place'
ComputerScienceNationalOlympiad = 'Participation in 2015'
return
def interests():
AI = 'Future'
Technology = 'Innovation'
Robotics = 'Fun'
return
def hobbies():
Cycling = 'Best way of transportation'
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