π I am a CE student at Amirkabir University of Technology.
π» I am a software developer!
π₯ Right now I am going deeper into frontend engineering field!
const lifeProps = {
foods: [...allHumanFoodsThatIsNotToxic],
skill: ["Software", "Web", "Cloud Engineering", "Data", "Learning"],
interest: ["Web", "Cloud Engineering", "React Native", "Diagrams", "Neural Network", "ML"],
loving: ["Pool pool business money", "PC"],
games: ["APEX", "FIFA"],
fun: ["Go out with friends or family", "extra food", "movies"],
};
const daily = ({ foods, skill, interest, loving, games, fun }) => {
eat(foods);
work(skill);
study(interest);
love(loving);
// TODO: uncomment below
// gym();
// game(games); // no time
enjoy(fun);
sleep();
};
while (isAlive()) {
daily(lifeProps);
}