After accomplished the first 2 Issues I found on Github. I tried to find some issues that are more interesting. The third issue I found for the Release 0.2 was a Java program
. It's about creating a website that contains a SUDOKU game.
Issue
For this program, the issue that I interested in was helping the repository owner to add a Github logo on the webpage footer. And it should link to the github repository.[Issue #9]
My Solution
After go through the code of this program. I assumed that this program will reuse its footer
for many and many times. Therefore, I could just update the code inside the footer they provided to solve this problem.
The file that I updated was footer.jsp
. And the code I added was
<a href="https://github.com/stefanoskapa/SudokuBase">
<img src="https://ctl.s6img.com/society6/img/hNqP40bUA0DVJY-drlMuI_MylEc/w_1500/prints/~artwork/s6-original-art-uploads/society6/uploads/misc/8e29a2e79387449caa28090d71f489e3/~~/github-logo-prints.jpg" alt="logo" height="30">
Github</a> |
After I added these few lines of code, every webpages that the program have will have a Github logo on the footer like this :
My Feelings
This is an interesting program for me. I like to play Sudoku in my free time. I felt excited to make contribution to a program that I like. Also, this is the first time that I help fix an issue of a Java
program. It gains me experience of working in a Java program on Github!
Link to the Repo I worked on: [SudokuBase]
Top comments (0)