-
🔭 I’m currently working on instance generation for Combinatorial Optimisation Problems
-
🌱 I’m currently learning Rust, and ML with Tensorflow and Keras
-
👯 I’m looking to collaborate on Open Source Optimisation Tools
-
How to reach me
A computer would deserve to be called intelligent if it could deceive a human into believing that it was human - Alan Turing
def routine(self, pomodoros: int = 6, coffee: Coffee):
counter = 0
while is_day_time() and counter < pomodoros:
if coffee.empty():
coffee.refill()
self.drink(coffee)
self.work(during=50)
self.chill(during=10)
counter += 1