Skip to content
View msheroubi's full-sized avatar

Highlights

  • Pro

Block or report msheroubi

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
msheroubi/README.md

print("Welcome to my page")

from universityofbritishcolumbia import BSc_Computer_Science

class MichaelSheroubi:
  
  def __init__(self, position, requirements):
    self.degree = BSc_Computer_Science(honours=True, gpa=3.9)
    
    self.knowledge = { "language": ('Python', 'Java', 'SQL', 'Cypher'),
                        "theory": ('NLP', 'Graph Theory'),
                        "experience": ('Data Analysis', 'Database Design', 'ETL')}
    
    self.need_to_learn = ['Kubernetes', 'Snowboarding', 'Sowing']
                        
    self.position = position
    self.check_requirements(requirements)
  
  # Check requirements and update need_to_learn
  def check_requirements(self, requirements):
    knowledge = set(x for val in self.knowledge.values())
    for req in requirements:
      if req not in knowledge:
        self.need_to_learn.append(req)
        
      
    

Pinned Loading

  1. run-AI run-AI Public

    Python 1

  2. AnalogClockReader AnalogClockReader Public

    Python 1

  3. scripts scripts Public

    Python