From fc9d2ef07210084c532f57ad19a45adcaededbd0 Mon Sep 17 00:00:00 2001 From: Bruno Gava Guerra Date: Wed, 1 Apr 2020 22:40:02 -0300 Subject: [PATCH 01/19] Updating broken links The links to my project were borken. I'm submitting this change to fix it. --- Projects/2-Intermediate/GitHub-Profiles.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/2-Intermediate/GitHub-Profiles.md b/Projects/2-Intermediate/GitHub-Profiles.md index ad23e765..2e2f8071 100644 --- a/Projects/2-Intermediate/GitHub-Profiles.md +++ b/Projects/2-Intermediate/GitHub-Profiles.md @@ -29,4 +29,4 @@ To get data from API you can check [fetch API](https://developer.mozilla.org/en- - [GitHub profiles](https://chaharshivam.github.io/github-profiles/?#) ([repo](https://github.com/chaharshivam/github-profiles)) -- [github-profile-search pen](https://codepen.io/guerra08/pen/GRJXVbq) ([repo](https://codepen.io/guerra08/pen/GRJXVbq)) +- [github-profile-search](https://github-profile-search-272901.web.app/) ([repo](https://github.com/guerra08/github-profile-search)) From 156cba8e4ee0c326ec1be22595a3d32bbfd37a6d Mon Sep 17 00:00:00 2001 From: Guilherme Ferreira <63277099+ferreira42@users.noreply.github.com> Date: Mon, 13 Apr 2020 17:18:41 -0300 Subject: [PATCH 02/19] Update Hello-App.md The Fourtonfish API uses the user language code or IP to obtain the greeting in the users native language, not the country code. Some greetings are HTML encoded, like Japanese or Portuguese. --- Projects/1-Beginner/Hello-App.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Projects/1-Beginner/Hello-App.md b/Projects/1-Beginner/Hello-App.md index 3f6b3013..e0b0ec65 100644 --- a/Projects/1-Beginner/Hello-App.md +++ b/Projects/1-Beginner/Hello-App.md @@ -22,10 +22,11 @@ language. ### Constraints - Developers should use the [IP-API](http://ip-api.com/docs/api:json) service - to obtain the users country code. + to obtain the users IP. - Developers should use the [Fourtonfish](https://www.fourtonfish.com/hellosalut/hello/) service to - obtain the greeting in the users native language by passing the country code. + obtain the greeting in the users native language by passing the users IP. +- Developers must use a HTML entities decoding to decode the hello message. ## User Stories @@ -47,8 +48,8 @@ language. ## Bonus features -- [ ] User can see an additional text input field for a country code which - will be used to override the country code obtained through geolocation. Hint: +- [ ] User can see an additional text input field for a language code which + will be used to override the IP obtained through geolocation. Hint: this is a great feature for testing your app. - [ ] User can see additional geolocation information after logging on that includes at least the local IP address, city, region, country name, zip code, From c6ffcba7ec99b2129657c16b757280c54c92f7f0 Mon Sep 17 00:00:00 2001 From: Neemias Santos Date: Tue, 14 Apr 2020 13:16:51 -0300 Subject: [PATCH 03/19] Adding another calculator example --- Projects/1-Beginner/Calculator-App.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Projects/1-Beginner/Calculator-App.md b/Projects/1-Beginner/Calculator-App.md index e2ea4146..9ef08172 100644 --- a/Projects/1-Beginner/Calculator-App.md +++ b/Projects/1-Beginner/Calculator-App.md @@ -56,3 +56,4 @@ number. - [Javascript Calculator](https://codepen.io/giana/pen/GJMBEv) - [React Calculator](https://codepen.io/mjijackson/pen/xOzyGX) - [Javascript-CALC](https://github.com/x0uter/javascript-calc) +- [Sample Calculator](https://sevlasnog.github.io/sample-calculator) From db24d28fb46521e35ee33ac6027713f7bf7a8616 Mon Sep 17 00:00:00 2001 From: David Snyder <45735850+GypsyDangerous@users.noreply.github.com> Date: Thu, 16 Apr 2020 10:22:14 -0400 Subject: [PATCH 04/19] fixed newline issue --- Projects/3-Advanced/Movie-App.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/3-Advanced/Movie-App.md b/Projects/3-Advanced/Movie-App.md index f47471f3..2cbeb4a2 100644 --- a/Projects/3-Advanced/Movie-App.md +++ b/Projects/3-Advanced/Movie-App.md @@ -26,5 +26,5 @@ Find your next movie or create your watchlist with this App. It include reviews, ## Example projects -[Movie Database App w/ React by Oliver Gomes](http://phobic-heat.surge.sh/) +[Movie Database App w/ React by Oliver Gomes](http://phobic-heat.surge.sh/) [Movie Browser App w/ React&Redux&Bootstrap by Nataliia Pylypenko](https://api-cinema-10d15.firebaseapp.com/) From 506d4759f239ffa4ff852c05827082709fab5971 Mon Sep 17 00:00:00 2001 From: Diogo Moreira Date: Sat, 18 Apr 2020 17:31:26 -0300 Subject: [PATCH 05/19] Adding another Github-Status app example --- Projects/1-Beginner/GitHub-Status-App.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Projects/1-Beginner/GitHub-Status-App.md b/Projects/1-Beginner/GitHub-Status-App.md index 3af77092..9c580ff4 100644 --- a/Projects/1-Beginner/GitHub-Status-App.md +++ b/Projects/1-Beginner/GitHub-Status-App.md @@ -51,4 +51,5 @@ request('https://www.githubstatus.com/', { json: true }, (err, res, body) => { ## Example projects -[Peter Luczynski's example](https://peterluczynski.github.io/github-status/) \ No newline at end of file +- [Peter Luczynski's example](https://peterluczynski.github.io/github-status/) +- [Diogo Moreira's example](https://diogomoreira.github.io/github-status/) From 2a705c72054c4279201669641b19565f8a0a77af Mon Sep 17 00:00:00 2001 From: Artan Muzhaqi Date: Wed, 6 May 2020 11:15:21 -0400 Subject: [PATCH 06/19] Update Calendar-App.md Add a link to my sample calendar GitHub code that matches the requirements for this project and satisfies most of the user stories. --- Projects/1-Beginner/Calendar-App.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Projects/1-Beginner/Calendar-App.md b/Projects/1-Beginner/Calendar-App.md index 10f54eaf..f75e6f70 100644 --- a/Projects/1-Beginner/Calendar-App.md +++ b/Projects/1-Beginner/Calendar-App.md @@ -31,3 +31,4 @@ Style your own calendar according to your requirement ## Example projects - [Simple calendar](https://medium.com/@nitinpatel_20236/challenge-of-building-a-calendar-with-pure-javascript-a86f1303267d) +- [eCalendar](https://github.com/muzhaqi16/eCalendar) From 4ab50532cb656f2e25c70df300acc336b857d982 Mon Sep 17 00:00:00 2001 From: Irfan Ezani Date: Mon, 11 May 2020 04:26:30 +0800 Subject: [PATCH 07/19] Add new project example of Christmas Light. the new project example completes the user stories. --- Projects/1-Beginner/Christmas-Lights-App.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Projects/1-Beginner/Christmas-Lights-App.md b/Projects/1-Beginner/Christmas-Lights-App.md index eb6a1e12..b695776e 100644 --- a/Projects/1-Beginner/Christmas-Lights-App.md +++ b/Projects/1-Beginner/Christmas-Lights-App.md @@ -31,3 +31,6 @@ displayed during the Christmas Holidays. ## Example projects [PureCSSChristmasLights](https://codepen.io/tobyj/pen/QjvEex) +[Christmas Lights](https://codepen.io/irfanezani_/pen/mdeLpKo) + + From 6f9e45a25bd84de0bd24852fab39064fc6fcc12a Mon Sep 17 00:00:00 2001 From: barhouum7 Date: Sun, 10 May 2020 23:27:06 +0100 Subject: [PATCH 08/19] Adding my own Card Memory Game Example --- Projects/2-Intermediate/Card-Memory-Game.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Projects/2-Intermediate/Card-Memory-Game.md b/Projects/2-Intermediate/Card-Memory-Game.md index 7f4ae196..7cb4d082 100644 --- a/Projects/2-Intermediate/Card-Memory-Game.md +++ b/Projects/2-Intermediate/Card-Memory-Game.md @@ -30,3 +30,4 @@ When the User clicks on the 2nd card: - [Flip - card memory game](https://codepen.io/zerospree/full/bNWbvW) - [Memory Game](https://jdmedlock.github.io/memorygame/) - [SMB3 Memory Card Game](https://codepen.io/hexagoncircle/full/OXBJxV) +- [BHMBS - Memory Game](https://barhouum7.github.io/JS-MemoryGame.github.io/) \ No newline at end of file From 3badef8e9b7be0c7a7d8fbe0916cf277c5c9f5f4 Mon Sep 17 00:00:00 2001 From: barhouum7 Date: Mon, 11 May 2020 00:37:29 +0100 Subject: [PATCH 09/19] Adding my own Calculator App Example using Neumorphic Design --- Projects/1-Beginner/Calculator-App.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Projects/1-Beginner/Calculator-App.md b/Projects/1-Beginner/Calculator-App.md index e2ea4146..f07307a4 100644 --- a/Projects/1-Beginner/Calculator-App.md +++ b/Projects/1-Beginner/Calculator-App.md @@ -53,6 +53,7 @@ number. ## Example projects +- [BHMBS - JS-Neumorphic-Calculator](https://barhouum7.github.io/JS-Neumorphic-Calc.github.io/) - [Javascript Calculator](https://codepen.io/giana/pen/GJMBEv) - [React Calculator](https://codepen.io/mjijackson/pen/xOzyGX) - [Javascript-CALC](https://github.com/x0uter/javascript-calc) From 9e58589d2c980be2ef6cdf6705197b3fe1622ff6 Mon Sep 17 00:00:00 2001 From: laurent Date: Thu, 21 May 2020 14:10:35 +0200 Subject: [PATCH 10/19] Update Calorie-Counter-App.md --- Projects/3-Advanced/Calorie-Counter-App.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/3-Advanced/Calorie-Counter-App.md b/Projects/3-Advanced/Calorie-Counter-App.md index 80ea6d07..2e410220 100644 --- a/Projects/3-Advanced/Calorie-Counter-App.md +++ b/Projects/3-Advanced/Calorie-Counter-App.md @@ -43,7 +43,7 @@ data structure other than an array for faster searching. ## Useful links and resources -[MyPyramid Food Raw Data](https://catalog.data.gov/dataset/mypyramid-food-raw-data-f9ed6) +[MyPyramid Food Raw Data](https://catalog.data.gov/dataset/mypyramid-food-raw-data) ## Example projects From 5a8817351ee548fedd5ad36f3a9951a72ca486f5 Mon Sep 17 00:00:00 2001 From: laurent Date: Thu, 21 May 2020 15:26:57 +0200 Subject: [PATCH 11/19] Update Color-Cycle-App.md --- Projects/1-Beginner/Color-Cycle-App.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/1-Beginner/Color-Cycle-App.md b/Projects/1-Beginner/Color-Cycle-App.md index ff36620c..299b5c2c 100644 --- a/Projects/1-Beginner/Color-Cycle-App.md +++ b/Projects/1-Beginner/Color-Cycle-App.md @@ -34,7 +34,7 @@ an RGB color specification (e.g. `#000000` color code). ## Useful links and resources -[CSS Color Codes](https://www.quackit.com/css/css_color_codes.cfm) +[CSS Color Codes](https://qhmit.com/css/css_color_codes.cfm) ## Example projects From f173d2d86b0a2ed140434ad3fd4cda902f49545b Mon Sep 17 00:00:00 2001 From: Luis Fernando Date: Wed, 27 May 2020 16:25:11 -0300 Subject: [PATCH 12/19] add new link with example project --- Projects/2-Intermediate/Book-Finder-App.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Projects/2-Intermediate/Book-Finder-App.md b/Projects/2-Intermediate/Book-Finder-App.md index 64b1022d..a3963428 100644 --- a/Projects/2-Intermediate/Book-Finder-App.md +++ b/Projects/2-Intermediate/Book-Finder-App.md @@ -6,15 +6,15 @@ Create an application that will allow users to search for books by entering a qu ## User Stories -- [ ] User can enter a search query into an `input` field -- [ ] User can submit the query. This will call an API that will return an array of books with the corresponding data (**Title**, **Author**, **Published Date**, **Picture**, etc) -- [ ] User can see the list of books appearing on the page +- [ ] User can enter a search query into an `input` field +- [ ] User can submit the query. This will call an API that will return an array of books with the corresponding data (**Title**, **Author**, **Published Date**, **Picture**, etc) +- [ ] User can see the list of books appearing on the page ## Bonus features -- [ ] For each item in the list add a link that will send the User to an external site which has more information about the book -- [ ] Implement a Responsive Design -- [ ] Add loading animations +- [ ] For each item in the list add a link that will send the User to an external site which has more information about the book +- [ ] Implement a Responsive Design +- [ ] Add loading animations ## Useful links and resources @@ -23,3 +23,4 @@ You can use the [Google Books API](https://developers.google.com/books/docs/over ## Example projects [Book Finder](https://book-finder-by-deyl.netlify.com/) +[Search Books](https://search-book.netlify.app/) From 98af7a17a483d9b19fe3d36bee6ab9ef3f5adc94 Mon Sep 17 00:00:00 2001 From: gabrielnbds Date: Tue, 2 Jun 2020 22:26:20 -0400 Subject: [PATCH 13/19] Updated Github Profiles - Removed old not found example and added a new one --- Projects/2-Intermediate/GitHub-Profiles.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/2-Intermediate/GitHub-Profiles.md b/Projects/2-Intermediate/GitHub-Profiles.md index ad23e765..c327826a 100644 --- a/Projects/2-Intermediate/GitHub-Profiles.md +++ b/Projects/2-Intermediate/GitHub-Profiles.md @@ -27,6 +27,6 @@ To get data from API you can check [fetch API](https://developer.mozilla.org/en- ## Example projects -- [GitHub profiles](https://chaharshivam.github.io/github-profiles/?#) ([repo](https://github.com/chaharshivam/github-profiles)) +- [GitHub profiles](https://github-profiles.netlify.app/) ([repo](https://github.com/GabrielNBDS/GitHub-Profiles)) - [github-profile-search pen](https://codepen.io/guerra08/pen/GRJXVbq) ([repo](https://codepen.io/guerra08/pen/GRJXVbq)) From 8f53a922df04b5bd752938b6609683ee8387fb10 Mon Sep 17 00:00:00 2001 From: Luis Fernando Date: Wed, 3 Jun 2020 03:30:09 -0300 Subject: [PATCH 14/19] add new link for book finder app --- Projects/2-Intermediate/Book-Finder-App.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/2-Intermediate/Book-Finder-App.md b/Projects/2-Intermediate/Book-Finder-App.md index a3963428..fb31a84a 100644 --- a/Projects/2-Intermediate/Book-Finder-App.md +++ b/Projects/2-Intermediate/Book-Finder-App.md @@ -23,4 +23,4 @@ You can use the [Google Books API](https://developers.google.com/books/docs/over ## Example projects [Book Finder](https://book-finder-by-deyl.netlify.com/) -[Search Books](https://search-book.netlify.app/) +[Search Books](https://booksure.netlify.app/) From b1b383838231c8368aa975f94e3dc13bd6b33dc7 Mon Sep 17 00:00:00 2001 From: kana800 Date: Sat, 6 Jun 2020 12:03:39 +0530 Subject: [PATCH 15/19] Added a new example to Calculator-App.md --- Projects/1-Beginner/Calculator-App.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Projects/1-Beginner/Calculator-App.md b/Projects/1-Beginner/Calculator-App.md index e2ea4146..97bb3bbf 100644 --- a/Projects/1-Beginner/Calculator-App.md +++ b/Projects/1-Beginner/Calculator-App.md @@ -56,3 +56,4 @@ number. - [Javascript Calculator](https://codepen.io/giana/pen/GJMBEv) - [React Calculator](https://codepen.io/mjijackson/pen/xOzyGX) - [Javascript-CALC](https://github.com/x0uter/javascript-calc) +- [Python Calculator](https://github.com/kana800/Side-Projects/tree/master/1-Beginner/calculator) From 0069061e72934a828aa490f1e24338b9cb976548 Mon Sep 17 00:00:00 2001 From: Chaitanya Raj Date: Tue, 23 Jun 2020 20:36:44 +0530 Subject: [PATCH 16/19] Update Password-Generator.md --- Projects/2-Intermediate/Password-Generator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/2-Intermediate/Password-Generator.md b/Projects/2-Intermediate/Password-Generator.md index 5aeeb194..586660c3 100644 --- a/Projects/2-Intermediate/Password-Generator.md +++ b/Projects/2-Intermediate/Password-Generator.md @@ -13,7 +13,7 @@ Generate passwords based on certain characteristics selected by the user. ## Bonus features -- [ ] Use can see the password strength +- [ ] User can see the password strength ## Useful links and resources From 4c5d41624b224448e1a3c77c3d7cc501281c956a Mon Sep 17 00:00:00 2001 From: Pega-sys <65826354+Pega-sys@users.noreply.github.com> Date: Thu, 25 Jun 2020 12:14:20 +0530 Subject: [PATCH 17/19] Update Color Cycle.md The link for the CSS Color Codes in ## Useful links and resources is broken as the website has been hijacked. This alternative link is redirecting to the correct page. --- Projects/1-Beginner/Color-Cycle-App.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Projects/1-Beginner/Color-Cycle-App.md b/Projects/1-Beginner/Color-Cycle-App.md index ff36620c..f5e6f708 100644 --- a/Projects/1-Beginner/Color-Cycle-App.md +++ b/Projects/1-Beginner/Color-Cycle-App.md @@ -34,7 +34,7 @@ an RGB color specification (e.g. `#000000` color code). ## Useful links and resources -[CSS Color Codes](https://www.quackit.com/css/css_color_codes.cfm) +[CSS Color Codes](https://www.qhmit.com/css/css_color_codes.cfm) ## Example projects From b0529198456bd21da92b900e58c470504f3fcb14 Mon Sep 17 00:00:00 2001 From: ssmkhrj <49264891+ssmkhrj@users.noreply.github.com> Date: Fri, 26 Jun 2020 22:33:52 +0530 Subject: [PATCH 18/19] Added an Example Project So, this calculator app that I have created is bundled with a lot of functionalities and is completely robust. It has functionalities like "plus-minus", "dot" etc. --- Projects/1-Beginner/Calculator-App.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Projects/1-Beginner/Calculator-App.md b/Projects/1-Beginner/Calculator-App.md index e2ea4146..8533dab4 100644 --- a/Projects/1-Beginner/Calculator-App.md +++ b/Projects/1-Beginner/Calculator-App.md @@ -53,6 +53,7 @@ number. ## Example projects +- [Javascript iOS Style Calculator](https://codepen.io/ssmkhrj/full/jOWBQqO) - [Javascript Calculator](https://codepen.io/giana/pen/GJMBEv) - [React Calculator](https://codepen.io/mjijackson/pen/xOzyGX) - [Javascript-CALC](https://github.com/x0uter/javascript-calc) From ec5299214919fee5b4f6eaa50e7c3a10078e92ce Mon Sep 17 00:00:00 2001 From: ZangiefWins Date: Sun, 28 Jun 2020 22:01:43 -0300 Subject: [PATCH 19/19] Add another Bin2Dec example --- Projects/1-Beginner/Bin2Dec-App.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Projects/1-Beginner/Bin2Dec-App.md b/Projects/1-Beginner/Bin2Dec-App.md index a9f38299..2dc62dee 100644 --- a/Projects/1-Beginner/Bin2Dec-App.md +++ b/Projects/1-Beginner/Bin2Dec-App.md @@ -42,3 +42,5 @@ Try not to view this until you've developed your own solution: - [Binary to Decimal converter with plain html, js and css](https://grfreire.github.io/Bin2Dec/) - [Binary to Decimal converter using Flutter & Dart](https://github.com/israelss/AppIdeasCollection/tree/master/Tier1/Bin2Dec) - [Live preview built with Flutter for Web](https://bin2dec.web.app/#/) +- [Matrix-like Binary to Decimal converter using Angular](https://github.com/ZangiefWins/MatrixBin2Dec) + - [Live preview on heroku](https://matrix-bin2dec.herokuapp.com/)