Since I was new to the open source software development I did not really know what to look for.
I decided to search for something I enjoy : video games.
It was fairly easy to find on GitHub.
One caught my attention, it was an open source project aiming at recreating the game RollerCoaster Tycoon 2, which is a game I know and like.
This project is massive, it has around 500 contributors and over 20.000 commits.
In the README, it was indicated that "Chat takes place on Discord" so I joined the Discord server to see what was happening there.
It was even bigger, there are about 4.000 members in the server, and it was really active.
Without really knowing to whom I could ask my questions, I contacted a member labelled as a Developer and
I asked him if there were issues with which I could help as a beginner.
He told me to look to the issues on the GitHub.
Indeed, there are about 1.200 issues listed. Unfortunately none of them was labelled as "easy" or "good first issue".
The developer told me that easy issues do not stay very long because they are quickly solved.
So the only issues left are long and complex ones.
I looked closely to some of them by investigating the code, but it honestly seemed out of reach, mainly because the code is written in C++
(and I barely know this language) but also because these issues require a good understanding of the global context to be solved, and
obviously I do not have this understanding.
I asked the developer is there was any other way I could help with this project, and he told me that I could maybe help to translate the game to my language.
Unluckily, the work was already done, a complete French translation of the game was already done, so there was nothing I could do.
## Making a Contribution
Even though, I was glad that I found such a cool project with a very active community, it was still an unsuccessful attempt
since I did not really help on this project.
So I went back to GitHub, but this time I directly looked for issues, I filtered the result using the "good first issue" label,
and I found an issue that seemed solvable by a beginner like me.
The project is a shop application working offline on a desktop, it uses Python and SQL which are 2 languages I know very well.
I contacted the project owner, and I asked to solve the issue.
At first glances, the issue seemed trivial : whenever a customer registers or updates his personal information,
his first name and last name need to be standardized by applying an uppercase to the first letter and a lowercase to all other letters.
It was a fairly quick fix requiring only 6 lines of codes.
To be convinced that my solution was good, I downloaded the project to see if the problem was solved.
After running the application on my computer, I tried to register as a new customer, and it was fixed, the first name and last name
were standardized and saved in a database as wished by the owner.
However, when it comes to updating, another problem appeared.
The updated names were correctly saved in the database but the displaying on the User Interface was still using the previous names.