Skip to content
View Tedyst's full-sized avatar
:octocat:
Attending University
:octocat:
Attending University
  • Tremend Software Consulting
  • Romania
  • 16:15 (UTC +03:00)
Block or Report

Block or report Tedyst

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
Tedyst/README.md
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)

Pinned

  1. HikLoad HikLoad Public

    Download videos from a HikVision DVR/NVR

    Python 67 21

  2. SpotifyUtils SpotifyUtils Public

    Multiple features that I think spotify should have

    TypeScript 5