A special README file about a budding software engineer.
Amanda is my name, and Python is my game:
#!/usr/bin/python
# -*- coding: utf-8 -*-
class software_engineer:
def __init__(self):
self.name = "Amanda Mei Wah Lee"
self.nationality = "Malaysian"
self.age = 22
self.university = ["University College London", "Imperial College London"]
self.degree = ["MSc in Emerging Digital Technologies", "BEng in Mechanical Engineering"]
self.programming_language = ["Python", "C", "MATLAB", "SQL", "UML"]
self.spoken_language = ["English", "Mandarin", "Malay", "German"]
amwLEE = software_engineer()
My daily food for thought:
“The computer was born to solve problems that did not exist before.” - Bill Gates
“Any fool can write code that a computer can understand. Good programmers write code that humans can understand.” - Martin Fowler
"All models are wrong, but some are useful." - George Box