diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..a40b6ba --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,12 @@ +# These are supported funding model platforms + +github: vangj +patreon: vangj +open_collective: # Replace with a single Open Collective username +ko_fi: # Replace with a single Ko-fi username +tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel +community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry +liberapay: # Replace with a single Liberapay username +issuehunt: # Replace with a single IssueHunt username +otechie: # Replace with a single Otechie username +custom: https://oneoffcoder.com/ diff --git a/.gitignore b/.gitignore index 860f418..96d1a7d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .DS_Store -.vscode/ \ No newline at end of file +.vscode/ +.ipynb_checkpoints/ \ No newline at end of file diff --git a/README.md b/README.md index 97b3ea9..a80641e 100644 --- a/README.md +++ b/README.md @@ -7,13 +7,9 @@ effective coding projects for children to learn and improve their coding skills. If you have any questions, please do not hesistate to contact us at info@oneoffcoder.com. -# HTML - -* [Guessing Game](guessing-game): Can you guess the number that the computer is thinking? -* [Slot Machine](slot-machine-game): Will you hit the jackpot? -* [Rock, Paper, Scissor](rps-game): Can you beat the computer at Rock, Paper, Scissor? -* [Colors](colors): Colors, colors and more colors! -* [Tic-Tac-Toe](tic-tac-toe): Can you beat the computer at Tic-Tac-Toe? +* [HTML, CSS, JavaScript](html): Games based on HTML, CSS and JavaScript +* [Java, Greenfoot](java/greenfoot): Games based on Java and Greenfoot +* [Python, Pygame](python/pygame): Games based on Python and Pygame # Citation diff --git a/html/README.md b/html/README.md index 290adec..2c7f949 100644 --- a/html/README.md +++ b/html/README.md @@ -1,5 +1,15 @@ + + # Project Description * [guessing-game](guessing-game): Have fun coding a game that asks users to guess which number the computer will generate. * [slot-machine-game](slot-machine-game): Learn about random number generators through coding a slot machine simulator. -* [rps-game](rps-game): A challenging project to code the classic Rock, Paper, Scissor game. \ No newline at end of file +* [rps-game](rps-game): A challenging project to code the classic Rock, Paper, Scissor game. +* [tic-tac-toe](tic-tack-toe): Classic tic tac toe. +* [colors](colors): Colors! +* [checkers](checkers): Classic checkers. +* [solar-system](solar-system): A simulation of the planetary orbits in our solar system. +* [game-of-life](game-of-life): Conway's Game of Life. +* [morse-code](morse-code): Morse code. +* [sign-language](sign-language): Learn sign language alphabets. +* [rps++](rps++): Rock, Paper, Scissor re-invented with a double dose of artificial intelligence; hand pose recognition with deep learning and hand pose prediction with logistic regression. \ No newline at end of file diff --git a/html/checkers/.gitignore b/html/checkers/.gitignore new file mode 100644 index 0000000..252089d --- /dev/null +++ b/html/checkers/.gitignore @@ -0,0 +1,2 @@ +node_modules/ +out/ \ No newline at end of file diff --git a/html/checkers/images/black-queen.png b/html/checkers/images/black-queen.png new file mode 100644 index 0000000..2146659 Binary files /dev/null and b/html/checkers/images/black-queen.png differ diff --git a/html/checkers/images/black.png b/html/checkers/images/black.png index b7a854e..2c7fdf2 100644 Binary files a/html/checkers/images/black.png and b/html/checkers/images/black.png differ diff --git a/python/pygame/images/logo.png b/html/checkers/images/logo.png similarity index 100% rename from python/pygame/images/logo.png rename to html/checkers/images/logo.png diff --git a/html/checkers/images/red-queen.png b/html/checkers/images/red-queen.png new file mode 100644 index 0000000..60f89f6 Binary files /dev/null and b/html/checkers/images/red-queen.png differ diff --git a/html/checkers/images/red.png b/html/checkers/images/red.png index 08c1d64..7a6dd76 100644 Binary files a/html/checkers/images/red.png and b/html/checkers/images/red.png differ diff --git a/html/checkers/index.html b/html/checkers/index.html index 6667f2e..0a2262e 100644 --- a/html/checkers/index.html +++ b/html/checkers/index.html @@ -1,326 +1,764 @@ -
-