From 8a604bee29bb52ceb68a72875182e9d4672e8b6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Santos?= Date: Mon, 5 Aug 2019 23:07:31 +0100 Subject: [PATCH 01/53] [Day 19] Make request to snap.mp3 via HTTPS instead of HTTP --- 19 - Webcam Fun/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/19 - Webcam Fun/index.html b/19 - Webcam Fun/index.html index d4ffc4dc2a..682192dbb5 100755 --- a/19 - Webcam Fun/index.html +++ b/19 - Webcam Fun/index.html @@ -37,7 +37,7 @@
- + From 370e8e631303c70c0e4248de52d91bf9e6c61598 Mon Sep 17 00:00:00 2001 From: marcoSven Date: Wed, 21 Aug 2019 14:01:45 -0700 Subject: [PATCH 02/53] =?UTF-8?q?=F0=9F=90=9E=20fix=20for=20=2010=20-=20Ho?= =?UTF-8?q?ld=20Shift=20and=20...?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adding a link to a different solution for 10 - Hold Shift and Check Checkboxes. Fixed bugs and improved UX. --- readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/readme.md b/readme.md index 98177c333d..36fb239fd2 100644 --- a/readme.md +++ b/readme.md @@ -53,6 +53,7 @@ Here are some links of people who have done the tutorials, but in a different la * [Akinjide Bankole](https://github.com/akinjide/JS30days) used Node.js with [Jade](http://jadelang.net) to solve the exercises * [Adrien Poly](https://github.com/adrienpoly/javascript30-stimulus) a modest attempt to convert Drum Kit, Video Player, Local Tapas, TypeHead to [Stimulus JS](https://stimulusjs.org/) framework in a Rails App. * [Bogdan Lazar](https://github.com/tricinel/TypeScript30) all the JavaScript 30 written in [TypeScript](https://www.typescriptlang.org/) +* [marcoSven](https://github.com/marcoSven) solution suggestion for [10 - Hold Shift and Check Checkboxes](https://github.com/marcoSven/JavaScript30/blob/master/10%20-%20Hold%20Shift%20and%20Check%20Checkboxes/index-FINISHED.html) ## A note on Pull Requests From 4da2ea4f5057a86456c442d158419a7d5d768abf Mon Sep 17 00:00:00 2001 From: Mikhail Thomas Date: Wed, 9 Oct 2019 14:59:11 -0700 Subject: [PATCH 03/53] Update readme.md Added Mikhail Thomas to community list --- readme.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 98177c333d..68478ae548 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -![](https://javascript30.com/images/JS3-social-share.png) +![](https://javascript30.com/images/JS3-social-share.png) # JavaScript30 @@ -43,6 +43,7 @@ Feel free to submit a PR adding a link to your own recaps, guides or reviews! * [Kizito](https://github.com/akhilome/)'s follow along [repo](https://github.com/akhilome/js30) with [completed challenges](https://akhilome.github.io/js30) and [notes](https://akhilome.github.io/js30/notes). * [VannTile](https://github.com/vanntile)'s [repository](https://github.com/vanntile/JavaScript30) and [GitHub Pages showcase](https://vanntile.github.io/JavaScript30/). Thank you for a great ⌨️ experience. * [Alex Kim](https://github.com/Alex-K1m/js30-challenge) completed all the challenges. You can check them out at [github pages](https://alex-k1m.github.io/js30-challenge/). +* [Mikhail Thomas](https://github.com/seckela) created [JS30++](https://github.com/seckela/js30plusplus) to add another level of challenge ontop of this already great course. ## Alternative Implementations From 3412a95774b1e5b5f0d92e583ffe99b58dcff289 Mon Sep 17 00:00:00 2001 From: Yudhishthir Singh Date: Mon, 14 Oct 2019 07:57:21 +0530 Subject: [PATCH 04/53] Update index-START.html This was confusing --- 04 - Array Cardio Day 1/index-START.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/04 - Array Cardio Day 1/index-START.html b/04 - Array Cardio Day 1/index-START.html index eec0ffc31d..8ef47538c7 100644 --- a/04 - Array Cardio Day 1/index-START.html +++ b/04 - Array Cardio Day 1/index-START.html @@ -39,7 +39,7 @@ // 3. Sort the inventors by birthdate, oldest to youngest // Array.prototype.reduce() - // 4. How many years did all the inventors live? + // 4. How many years did all the inventors live all together? // 5. Sort the inventors by years lived From 44988127f726a649c34fed6587179a8293dae8a8 Mon Sep 17 00:00:00 2001 From: Akash Raju M Date: Sun, 12 Jan 2020 13:17:49 +0530 Subject: [PATCH 05/53] Updating the url of background image to https In order to avoid mixed content(https://www.cloudflare.com/learning/ssl/what-is-mixed-content/) error, we can update the URL from HTTP to HTTPS. --- 01 - JavaScript Drum Kit/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01 - JavaScript Drum Kit/style.css b/01 - JavaScript Drum Kit/style.css index 0673a8752a..a69d6b635d 100644 --- a/01 - JavaScript Drum Kit/style.css +++ b/01 - JavaScript Drum Kit/style.css @@ -1,6 +1,6 @@ html { font-size: 10px; - background: url(http://i.imgur.com/b9r5sEL.jpg) bottom center; + background: url(https://i.imgur.com/b9r5sEL.jpg) bottom center; background-size: cover; } From aeb1ad8bde833b0f41941a04185f5967e1c2e804 Mon Sep 17 00:00:00 2001 From: Akash Raju M Date: Mon, 13 Jan 2020 16:39:29 +0530 Subject: [PATCH 06/53] Update the url of background image to https --- 02 - JS and CSS Clock/index-START.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02 - JS and CSS Clock/index-START.html b/02 - JS and CSS Clock/index-START.html index 12f721b183..7a6d27d5bd 100644 --- a/02 - JS and CSS Clock/index-START.html +++ b/02 - JS and CSS Clock/index-START.html @@ -18,7 +18,7 @@