- ๐ Software development
- ๐ฎ Videogames and anime
If you need help or you want to ask me something then below you have some options, i will answer as soon as i'm available
๐ข -> Done, ๐ด -> To do, ๐ก -> In progress
- Practice Axios with Rick and morty project [๐ข]
- Make a Portfolio [๐ข]
- Be part of a Global Game Jam team [๐ข]
- Contribute to at least one open-source project [๐ข]
- Learn Java [๐ข]
- Learn JDBC [๐ข]
- Learn Spring framework [๐ก]
- Make a Login and register system using Spring [๐ก]
- Make a Follow tracker consuming Twitter API [๐ด]
- Make a Task manager [๐ด]
function climb(mountainHeight) {
if (mountainHeight <= 0) {
console.log("The peak is just another step in the journey.");
return;
}
console.log("Every step counts: " + mountainHeight + " left.");
climb(mountainHeight - 1);
}
climb(100);