from datetime import datetime
class ReadMe:
def __init__(self, username="Tedyst", year=2022):
self.username = username
self.name = 'Stoica Tedy'
self.education = {
'college': 'Costache Negruzzi National College',
'programming': ['Self Learning', 'Alexandru Ioan Cuza University'],
}
self.employment = {
'organization': 'Tremend Software Consulting SRL',
'role': 'Junior Python Developer',
'since': datetime.strptime('2022-07-04', '%Y-%m-%d')
}
def doing(self, now=2022):
today = self.year
if now <= today:
return (
f"I am attending the Alexandru Ioan Cuza University from Iasi, Romania."
f"Also, I am working at {self.employment['name']} as a {self.employment['title']}"
)
else:
goal = self.employment['developer']
return """
I am eager to collaborate with {teams} on {projects}.
""".format(teams=goal[0], projects='software development')
def collaborate(self, role, organization):
self.employment = {
'organization': organization,
'role': role,
'since': datetime.now()
}
me = ReadMe(year=2022)
Attending University
Computer Science Student at "Alexandru Ioan Cuza" University of Iași
-
Tremend Software Consulting
- Romania
-
23:53
(UTC +02:00) - tedyst.ro
- https://orcid.org/0009-0003-1374-0542
Highlights
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.