hello ![]()
#!/usr/bin/python
# -*- coding: utf-8 -*-
class DataScientist:
def __init__(self):
self.role = "Data Scientist & Software Engineer"
self.education = "BS in Computer Science + Data Science Certificate"
self.daily_languages = ["Python", "TypeScript", "Rust", "Vim"]
self.learning = ["Haskell"]
self.interests = ["Open source", "Machine learning", "Functional programming"]
self.hobbies = ["Guitar", "Keyboards"]
def say_hi(self):
print("Thanks for stopping by! Check out https://github.com/tidalcycles/Tidal if you like Haskell + music :)")
me = DataScientist()
me.say_hi()


