From e187706ce4e93710b97cd18447c47582b0e40715 Mon Sep 17 00:00:00 2001 From: AlonJoshua <52909700+AlonJoshua@users.noreply.github.com> Date: Mon, 16 Mar 2020 09:43:49 +0200 Subject: [PATCH 01/27] Adding random number idea to readme --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1daf218d..b474c715 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,7 @@ required to complete them. | [Quiz App](./Projects/1-Beginner/Quiz-App.md) | Test your knowledge by answering questions | 1-Beginner | | [Recipe App](./Projects/1-Beginner/Recipe-App.md) | Recipe | 1-Beginner | | [Random Meal Generator](./Projects/1-Beginner/Random-Meal-Generator.md) | Generate random meals | 1-Beginner | +| [Random Number Generator](./Projects/1-Beginner/Random-Number-Generator.md) | Generate random number between range. | 1-Beginner | | [Roman to Decimal Converter](./Projects/1-Beginner/Roman-to-Decimal-Converter.md) | Convert Roman to Decimal numbers | 1-Beginner | | [Slider Design](./Projects/1-Beginner/Slider-Design.md) | Display images using a slider control | 1-Beginner | | [Stopwatch App](./Projects/1-Beginner/Stopwatch-App.md) | Count time spent on activities | 1-Beginner | From fc9d2ef07210084c532f57ad19a45adcaededbd0 Mon Sep 17 00:00:00 2001 From: Bruno Gava Guerra Date: Wed, 1 Apr 2020 22:40:02 -0300 Subject: [PATCH 02/27] 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 9ce9656b81ed3c3d82caa4acd3f0cdd4afdd769b Mon Sep 17 00:00:00 2001 From: Geoffrey Couten Date: Fri, 10 Apr 2020 09:41:27 +0200 Subject: [PATCH 03/27] Adding my contribution to Bin2Dec example projects --- Projects/1-Beginner/Bin2Dec-App.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Projects/1-Beginner/Bin2Dec-App.md b/Projects/1-Beginner/Bin2Dec-App.md index a9f38299..af241c4e 100644 --- a/Projects/1-Beginner/Bin2Dec-App.md +++ b/Projects/1-Beginner/Bin2Dec-App.md @@ -42,3 +42,4 @@ 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/#/) +- [Binary to Decimal converter using React](https://github.com/geoffctn/Bin2Dec) 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 04/27] 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 05/27] 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 59689c5433707c9e51034bd5ae3a544b5f9d5a1d Mon Sep 17 00:00:00 2001 From: Shin Date: Wed, 15 Apr 2020 23:22:03 -0300 Subject: [PATCH 06/27] Update random meal generator with another exemple link --- Projects/1-Beginner/Random-Meal-Generator.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Projects/1-Beginner/Random-Meal-Generator.md b/Projects/1-Beginner/Random-Meal-Generator.md index 3cb3080c..392cf359 100644 --- a/Projects/1-Beginner/Random-Meal-Generator.md +++ b/Projects/1-Beginner/Random-Meal-Generator.md @@ -21,3 +21,4 @@ Generate a random meal from an API. ## Example projects - [Random Meal Generator by Florin Pop on Codepen](https://codepen.io/FlorinPop17/full/WNeggor) +- [Random Meal Generator by ShinSpiegel on github](https://github.com/shinspiegel/random-meal-generator) 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 07/27] 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 08/27] 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 09/27] 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 10/27] 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 11/27] 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 12/27] 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 25d98cc02f7df7f2405910ab4a9d2c4fb1496255 Mon Sep 17 00:00:00 2001 From: acodedoer Date: Sat, 16 May 2020 17:25:28 +0100 Subject: [PATCH 13/27] created currency converter app idea --- Projects/2-Intermediate/Currency-Converter.md | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Projects/2-Intermediate/Currency-Converter.md diff --git a/Projects/2-Intermediate/Currency-Converter.md b/Projects/2-Intermediate/Currency-Converter.md new file mode 100644 index 00000000..e35058ee --- /dev/null +++ b/Projects/2-Intermediate/Currency-Converter.md @@ -0,0 +1,25 @@ +# Currency Converter + +**Tier:** 2-Intermediate + +A currency converter is used to convert an amount in one currency to its corresponding value in another currency using the current exchange rates of the two currencies, for example it can be used to calculate the value of 100 US Dollars in Euros. Current exchange rates are usually provided by banks and other financial service providers, they also (in some cases) offer free and paid APIs for developers to get current and historical exchange rates between two or more currencies. + +## User Stories + +- [ ] User can enter up to 9 digits to represent the amount to convert in a source input field +- [ ] User can view a list of available currencies and select the currency to convert from in a source drop-down list +- [ ] User can view a list of available currencies and select the currency to convert to in a destination drop-down list +- [ ] User views the value (rounded to two decimal places) of the source amount converted to the destination currency in a single output field +- [ ] User must be alerted if the input is not a number + +## Bonus features + +- [ ] User should be able to swap the values of the source and destination drop-down lists on the click of a button + +## Useful links and resources + +- [Free currency converter API](https://free.currencyconverterapi.com/) +- [XE currency converter](https://www.xe.com/) +- [How to use fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch) to fetch data + +## Example projects From e3fab505f26d0b236aeb920055c29be13f726653 Mon Sep 17 00:00:00 2001 From: acodedoer Date: Sat, 16 May 2020 17:32:01 +0100 Subject: [PATCH 14/27] added currency converter app idea --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 1daf218d..915640cc 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,7 @@ required to complete them. | [Card Memory Game](./Projects/2-Intermediate/Card-Memory-Game.md) | Memorize and match hidden images | 2-Intermediate | | [Charity Finder App](./Projects/2-Intermediate/Charity-Finder-App.md) | Find a Global Charity to donate to | 2-Intermediate | | [Chrome Theme Extension](./Projects/2-Intermediate/Chrome-Theme-Extension.md) | Build your own chrome theme extention. | 2-Intermediate | +| [Currency Converter](./Projects/2-Intermediate/Currency-Converter.md) | Convert one currency to another. | 2-Intermediate | | [Drawing App](./Projects/2-Intermediate/Drawing-App.md) | Create digital artwork on the web | 2-Intermediate | | [Emoji Translator App](./Projects/2-Intermediate/Emoji-Translator-App.md) | Translate sentences into Emoji | 2-Intermediate | | [Flashcards App](./Projects/2-Intermediate/FlashCards-App.md) | Review and test your knowledge through Flash Cards | 2-Intermediate | From 627e36d9de2ea9769f5af13bdf17367be84215bb Mon Sep 17 00:00:00 2001 From: acodedoer Date: Sun, 17 May 2020 14:12:36 +0100 Subject: [PATCH 15/27] updated currency converter user stories --- Projects/2-Intermediate/Currency-Converter.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Projects/2-Intermediate/Currency-Converter.md b/Projects/2-Intermediate/Currency-Converter.md index e35058ee..8af6fa95 100644 --- a/Projects/2-Intermediate/Currency-Converter.md +++ b/Projects/2-Intermediate/Currency-Converter.md @@ -7,9 +7,9 @@ A currency converter is used to convert an amount in one currency to its corresp ## User Stories - [ ] User can enter up to 9 digits to represent the amount to convert in a source input field -- [ ] User can view a list of available currencies and select the currency to convert from in a source drop-down list -- [ ] User can view a list of available currencies and select the currency to convert to in a destination drop-down list -- [ ] User views the value (rounded to two decimal places) of the source amount converted to the destination currency in a single output field +- [ ] User can view a soreted list of available currencies and select the currency to convert from in a source drop-down list +- [ ] User can view a sorted list of available currencies and select the currency to convert to in a destination drop-down list +- [ ] User views the value (rounded to two decimal places) of the source amount converted to the destination currency in a single output field as soon as either the input value, the source currency, or the destination currency is changed. - [ ] User must be alerted if the input is not a number ## Bonus features From 15fb6b496b2adf6b7bef042518d95258a9c4af8c Mon Sep 17 00:00:00 2001 From: acodedoer Date: Sun, 17 May 2020 14:23:03 +0100 Subject: [PATCH 16/27] added example projects to currency converter app --- Projects/2-Intermediate/Currency-Converter.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Projects/2-Intermediate/Currency-Converter.md b/Projects/2-Intermediate/Currency-Converter.md index 8af6fa95..a6ca9406 100644 --- a/Projects/2-Intermediate/Currency-Converter.md +++ b/Projects/2-Intermediate/Currency-Converter.md @@ -23,3 +23,5 @@ A currency converter is used to convert an amount in one currency to its corresp - [How to use fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API/Using_Fetch) to fetch data ## Example projects +- [Currency Converter](https://acodedoer.github.io/currency-converter/) +- [Currency converter code](https://github.com/acodedoer/currency-converter) From b4ae5d5238d33e70db3faac39d445ccffff6fcad Mon Sep 17 00:00:00 2001 From: acodedoer Date: Sun, 17 May 2020 15:17:18 +0100 Subject: [PATCH 17/27] corrected typos --- Projects/2-Intermediate/Currency-Converter.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Projects/2-Intermediate/Currency-Converter.md b/Projects/2-Intermediate/Currency-Converter.md index a6ca9406..24d34f72 100644 --- a/Projects/2-Intermediate/Currency-Converter.md +++ b/Projects/2-Intermediate/Currency-Converter.md @@ -2,12 +2,12 @@ **Tier:** 2-Intermediate -A currency converter is used to convert an amount in one currency to its corresponding value in another currency using the current exchange rates of the two currencies, for example it can be used to calculate the value of 100 US Dollars in Euros. Current exchange rates are usually provided by banks and other financial service providers, they also (in some cases) offer free and paid APIs for developers to get current and historical exchange rates between two or more currencies. +A currency converter is used to convert an amount in one currency to its corresponding value in another currency using their current exchange rate, for example it can be used to calculate the value of 100 US Dollars in Euros. Current exchange rates are usually provided by banks and other financial service providers, they also (in some cases) offer free and paid APIs for developers to get current and historical exchange rates between two or more currencies. ## User Stories - [ ] User can enter up to 9 digits to represent the amount to convert in a source input field -- [ ] User can view a soreted list of available currencies and select the currency to convert from in a source drop-down list +- [ ] User can view a sorted list of available currencies and select the currency to convert from in a source drop-down list - [ ] User can view a sorted list of available currencies and select the currency to convert to in a destination drop-down list - [ ] User views the value (rounded to two decimal places) of the source amount converted to the destination currency in a single output field as soon as either the input value, the source currency, or the destination currency is changed. - [ ] User must be alerted if the input is not a number From 9e58589d2c980be2ef6cdf6705197b3fe1622ff6 Mon Sep 17 00:00:00 2001 From: laurent Date: Thu, 21 May 2020 14:10:35 +0200 Subject: [PATCH 18/27] 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 19/27] 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 20/27] 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 21/27] 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 22/27] 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 23/27] 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 24/27] 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 25/27] 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 26/27] 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 27/27] 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/)