I'm a 24-year-old Full-Stack web and C++ developer. As I started learning how to code in 2021 by digging into C++
I found my way to the world of programmers. My curiosity didn't stop there and led me to the path of Web Development, since I'd already known C++ it wasn't challenging to learn syntax of JS
, CSS and HTML
but took me a while to get a deep understanding of how everything works.
Web development helped me to go deeper into programming and gave me the ambition of following my childhood dream, becoming a Game Developer in the future.
|
C++ |
JavaScript |
HTML |
CSS |
|
Express.js |
Node.js |
MongoDB |
Next.js |
|
React.js |
Three.js |
Tailwind |
Vite |
|
Figma |
Git |
GitHub |
#include <string>
#include <vector>
struct User {
std::string status;
std::string attitude;
bool isFailed;
User()
:status("Trying"), attitude("Persistent"), isFailed(false) {}
};
int main(){
std::vector<std::string> life = {"Challenge", "Failure", "Miserableness" };
User user;
while(user.status == "Trying"){
if(user.attitude == "Persistent"){
if(life.empty())
life.pop_back();
else break;
}
else{
user.isFailed = true;
break;
}
}
}



