GitHub: A Beginner’s Guide to Version Control and Collaboration

GitHub is like a personal exhibition where you can display all your projects, from the smallest to the most ambitious. It’s a versioning platform, which means it allows you to track changes to your code over time and revert to previous versions. Versioning is essential for collaborating on projects, backing up your code, and keeping track

GitHub: A Beginner’s Guide to Version Control and Collaboration Read More »

Guessing game in C++

As part of an introductory programming course, I created an interactive guessing game in C++. The game generates a random number that the player tries to guess in as few attempts as possible.  During development, I focused on implementing algorithms for generating random numbers and efficiently processing user input. This project helped me deepen my

Guessing game in C++ Read More »

Scroll to Top