From e592d534f7eb33652a3b512a54fde9cd37da9bd0 Mon Sep 17 00:00:00 2001 From: Quentin Laplanche Date: Mon, 12 Dec 2016 19:50:22 +0100 Subject: [PATCH 01/12] First Day completed --- 01 - JavaScript Drum Kit/index.html | 30 +++++++++++++++++------------ 1 file changed, 18 insertions(+), 12 deletions(-) diff --git a/01 - JavaScript Drum Kit/index.html b/01 - JavaScript Drum Kit/index.html index 246639f990..b4a9d4c0ee 100644 --- a/01 - JavaScript Drum Kit/index.html +++ b/01 - JavaScript Drum Kit/index.html @@ -59,25 +59,31 @@ + From 8f3d40dc974d1930577d25036a81f7b4b1d4242f Mon Sep 17 00:00:00 2001 From: Quentin Laplanche Date: Mon, 12 Dec 2016 19:52:47 +0100 Subject: [PATCH 02/12] Refactor day 1, because I don't need the rest of the files --- 01 - JavaScript Drum Kit/index-FINISHED.html | 83 -------------------- 01 - JavaScript Drum Kit/index-START.html | 66 ---------------- 2 files changed, 149 deletions(-) delete mode 100644 01 - JavaScript Drum Kit/index-FINISHED.html delete mode 100644 01 - JavaScript Drum Kit/index-START.html diff --git a/01 - JavaScript Drum Kit/index-FINISHED.html b/01 - JavaScript Drum Kit/index-FINISHED.html deleted file mode 100644 index 1a16d0997c..0000000000 --- a/01 - JavaScript Drum Kit/index-FINISHED.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - JS Drum Kit - - - - - -
-
- A - clap -
-
- S - hihat -
-
- D - kick -
-
- F - openhat -
-
- G - boom -
-
- H - ride -
-
- J - snare -
-
- K - tom -
-
- L - tink -
-
- - - - - - - - - - - - - - - - diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-START.html deleted file mode 100644 index 4070d32767..0000000000 --- a/01 - JavaScript Drum Kit/index-START.html +++ /dev/null @@ -1,66 +0,0 @@ - - - - - JS Drum Kit - - - - - -
-
- A - clap -
-
- S - hihat -
-
- D - kick -
-
- F - openhat -
-
- G - boom -
-
- H - ride -
-
- J - snare -
-
- K - tom -
-
- L - tink -
-
- - - - - - - - - - - - - - - - From 5e06e1a2292f4878bf040d3fef6e7575a3a1c336 Mon Sep 17 00:00:00 2001 From: Quentin Laplanche Date: Tue, 13 Dec 2016 23:16:11 +0100 Subject: [PATCH 03/12] Finish Day 2 --- 02 - JS + CSS Clock/index-FINISHED.html | 98 ------------------------- 02 - JS + CSS Clock/index-START.html | 73 ------------------ 02 - JS + CSS Clock/index.html | 41 +++++------ 3 files changed, 20 insertions(+), 192 deletions(-) delete mode 100644 02 - JS + CSS Clock/index-FINISHED.html delete mode 100644 02 - JS + CSS Clock/index-START.html diff --git a/02 - JS + CSS Clock/index-FINISHED.html b/02 - JS + CSS Clock/index-FINISHED.html deleted file mode 100644 index d4cb3b56a8..0000000000 --- a/02 - JS + CSS Clock/index-FINISHED.html +++ /dev/null @@ -1,98 +0,0 @@ - - - - - JS + CSS Clock - - - - -
-
-
-
-
-
-
- - - - - - - diff --git a/02 - JS + CSS Clock/index-START.html b/02 - JS + CSS Clock/index-START.html deleted file mode 100644 index 2712384201..0000000000 --- a/02 - JS + CSS Clock/index-START.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - JS + CSS Clock - - - - -
-
-
-
-
-
-
- - - - - - - diff --git a/02 - JS + CSS Clock/index.html b/02 - JS + CSS Clock/index.html index 1c777557da..d54c4e85a4 100644 --- a/02 - JS + CSS Clock/index.html +++ b/02 - JS + CSS Clock/index.html @@ -66,31 +66,30 @@ transition: all 0.05s; transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1); } - - + const hours = now.getHours(); + const hoursDegrees = ((hours / 24) * 360) +90; + hourHand.style.transform = `rotate(${hoursDegrees}deg)`; + } + + setInterval(setDate, 1000); + From b95189a661f687fc545047e29e78e61b9307d4a0 Mon Sep 17 00:00:00 2001 From: Quentin Laplanche Date: Wed, 14 Dec 2016 21:50:47 +0100 Subject: [PATCH 04/12] Finish Day 3 --- 03 - CSS Variables/index-START.html | 54 ------------------- .../{index-FINISHED.html => index.html} | 10 ++-- 2 files changed, 5 insertions(+), 59 deletions(-) delete mode 100644 03 - CSS Variables/index-START.html rename 03 - CSS Variables/{index-FINISHED.html => index.html} (90%) diff --git a/03 - CSS Variables/index-START.html b/03 - CSS Variables/index-START.html deleted file mode 100644 index 7171607a8b..0000000000 --- a/03 - CSS Variables/index-START.html +++ /dev/null @@ -1,54 +0,0 @@ - - - - - Scoped CSS Variables and JS - - -

Update CSS Variables with JS

- -
- - - - - - - - -
- - - - - - - - - diff --git a/03 - CSS Variables/index-FINISHED.html b/03 - CSS Variables/index.html similarity index 90% rename from 03 - CSS Variables/index-FINISHED.html rename to 03 - CSS Variables/index.html index c3217fc003..3278c7211f 100644 --- a/03 - CSS Variables/index-FINISHED.html +++ b/03 - CSS Variables/index.html @@ -36,7 +36,6 @@

Update CSS Variables with JS

.hl { color: var(--base); } - /* misc styles, nothing to do with CSS variables */ @@ -64,16 +63,17 @@

Update CSS Variables with JS

+ inputs.forEach( input => input.addEventListener('change', handleUpdate)); + inputs.forEach( input => input.addEventListener('mousemove', handleUpdate)); + From fb76e62c17b449f494b09ca8bcdd73032d01df85 Mon Sep 17 00:00:00 2001 From: Quentin Laplanche Date: Thu, 15 Dec 2016 22:41:58 +0100 Subject: [PATCH 05/12] Finish Day 4 --- 04 - Array Cardio Day 1/index.html | 87 ++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 04 - Array Cardio Day 1/index.html diff --git a/04 - Array Cardio Day 1/index.html b/04 - Array Cardio Day 1/index.html new file mode 100644 index 0000000000..a8ced28035 --- /dev/null +++ b/04 - Array Cardio Day 1/index.html @@ -0,0 +1,87 @@ + + + + + Array Cardio 💪 + + + + + From 43d3a56b2cdab158a8e96f99a9962d97687e16d4 Mon Sep 17 00:00:00 2001 From: Quentin Laplanche Date: Fri, 16 Dec 2016 22:26:03 +0100 Subject: [PATCH 06/12] Finish Day 5 --- 04 - Array Cardio Day 1/index.html | 2 +- 05 - Flex Panel Gallery/index.html | 145 +++++++++++++++++++++++++++++ 2 files changed, 146 insertions(+), 1 deletion(-) create mode 100644 05 - Flex Panel Gallery/index.html diff --git a/04 - Array Cardio Day 1/index.html b/04 - Array Cardio Day 1/index.html index a8ced28035..8a781b90e2 100644 --- a/04 - Array Cardio Day 1/index.html +++ b/04 - Array Cardio Day 1/index.html @@ -81,7 +81,7 @@ return obj; }, {} ); console.log(transportation); - + diff --git a/05 - Flex Panel Gallery/index.html b/05 - Flex Panel Gallery/index.html new file mode 100644 index 0000000000..243f8a221d --- /dev/null +++ b/05 - Flex Panel Gallery/index.html @@ -0,0 +1,145 @@ + + + + + Flex Panels 💪 + + + + + + +
+
+

Hey

+

Let's

+

Dance

+
+
+

Give

+

Take

+

Receive

+
+
+

Experience

+

It

+

Today

+
+
+

Give

+

All

+

You can

+
+
+

Life

+

In

+

Motion

+
+
+ + + + + From ccee8e85d0e40c189880b177a848a70764ad912c Mon Sep 17 00:00:00 2001 From: Quentin Laplanche Date: Mon, 19 Dec 2016 10:51:28 +0100 Subject: [PATCH 07/12] Finish Day 6 --- 06 - Type Ahead/index.html | 62 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 06 - Type Ahead/index.html diff --git a/06 - Type Ahead/index.html b/06 - Type Ahead/index.html new file mode 100644 index 0000000000..b4401fa16a --- /dev/null +++ b/06 - Type Ahead/index.html @@ -0,0 +1,62 @@ + + + + + Type Ahead 👀 + + + + +
+ +
    +
  • Filter for a city
  • +
  • or a state
  • +
+
+ + + From 9a0dce1dc1a30cc1c2729679f462ef15bab32f78 Mon Sep 17 00:00:00 2001 From: Quentin Laplanche Date: Mon, 19 Dec 2016 11:16:59 +0100 Subject: [PATCH 08/12] Finish Day 7 --- 07 - Array Cardio Day 2/index.html | 55 ++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) create mode 100644 07 - Array Cardio Day 2/index.html diff --git a/07 - Array Cardio Day 2/index.html b/07 - Array Cardio Day 2/index.html new file mode 100644 index 0000000000..b69b213c33 --- /dev/null +++ b/07 - Array Cardio Day 2/index.html @@ -0,0 +1,55 @@ + + + + + Document + + + + + From e85a7f596e36b84ac5763df7b1571048979b7e80 Mon Sep 17 00:00:00 2001 From: Quentin Laplanche Date: Mon, 19 Dec 2016 11:21:50 +0100 Subject: [PATCH 09/12] Refactor Day 7 --- 07 - Array Cardio Day 2/index-FINISHED.html | 67 --------------------- 07 - Array Cardio Day 2/index-START.html | 40 ------------ 2 files changed, 107 deletions(-) delete mode 100644 07 - Array Cardio Day 2/index-FINISHED.html delete mode 100644 07 - Array Cardio Day 2/index-START.html diff --git a/07 - Array Cardio Day 2/index-FINISHED.html b/07 - Array Cardio Day 2/index-FINISHED.html deleted file mode 100644 index e39d35f79a..0000000000 --- a/07 - Array Cardio Day 2/index-FINISHED.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - - Document - - - - - diff --git a/07 - Array Cardio Day 2/index-START.html b/07 - Array Cardio Day 2/index-START.html deleted file mode 100644 index b80ab6b650..0000000000 --- a/07 - Array Cardio Day 2/index-START.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - Document - - - - - From 3636530b515ff8c9eea624facd78af50a2ca8da6 Mon Sep 17 00:00:00 2001 From: Quentin Laplanche Date: Mon, 19 Dec 2016 11:22:24 +0100 Subject: [PATCH 10/12] Refactor Day 6 --- 06 - Type Ahead/index-FINISHED.html | 61 ----------------------------- 06 - Type Ahead/index-START.html | 22 ----------- 2 files changed, 83 deletions(-) delete mode 100644 06 - Type Ahead/index-FINISHED.html delete mode 100644 06 - Type Ahead/index-START.html diff --git a/06 - Type Ahead/index-FINISHED.html b/06 - Type Ahead/index-FINISHED.html deleted file mode 100644 index 5902b43936..0000000000 --- a/06 - Type Ahead/index-FINISHED.html +++ /dev/null @@ -1,61 +0,0 @@ - - - - - Type Ahead 👀 - - - - -
- -
    -
  • Filter for a city
  • -
  • or a state
  • -
-
- - - diff --git a/06 - Type Ahead/index-START.html b/06 - Type Ahead/index-START.html deleted file mode 100644 index 1436886918..0000000000 --- a/06 - Type Ahead/index-START.html +++ /dev/null @@ -1,22 +0,0 @@ - - - - - Type Ahead 👀 - - - - -
- -
    -
  • Filter for a city
  • -
  • or a state
  • -
-
- - - From b21627c51817c5737cf75ec1a8a900c5c16111a9 Mon Sep 17 00:00:00 2001 From: Quentin Laplanche Date: Mon, 19 Dec 2016 18:31:36 +0100 Subject: [PATCH 11/12] Finish Day 8 --- .../index-FINISHED.html | 73 ------------------- 08 - Fun with HTML5 Canvas/index-START.html | 19 ----- 08 - Fun with HTML5 Canvas/index.html | 68 +++++++++++++++++ 3 files changed, 68 insertions(+), 92 deletions(-) delete mode 100644 08 - Fun with HTML5 Canvas/index-FINISHED.html delete mode 100644 08 - Fun with HTML5 Canvas/index-START.html create mode 100644 08 - Fun with HTML5 Canvas/index.html diff --git a/08 - Fun with HTML5 Canvas/index-FINISHED.html b/08 - Fun with HTML5 Canvas/index-FINISHED.html deleted file mode 100644 index 0791e17d0d..0000000000 --- a/08 - Fun with HTML5 Canvas/index-FINISHED.html +++ /dev/null @@ -1,73 +0,0 @@ - - - - - HTML5 Canvas - - - - - - - - - diff --git a/08 - Fun with HTML5 Canvas/index-START.html b/08 - Fun with HTML5 Canvas/index-START.html deleted file mode 100644 index 37c148df07..0000000000 --- a/08 - Fun with HTML5 Canvas/index-START.html +++ /dev/null @@ -1,19 +0,0 @@ - - - - - HTML5 Canvas - - - - - - - - - diff --git a/08 - Fun with HTML5 Canvas/index.html b/08 - Fun with HTML5 Canvas/index.html new file mode 100644 index 0000000000..22e7b11820 --- /dev/null +++ b/08 - Fun with HTML5 Canvas/index.html @@ -0,0 +1,68 @@ + + + + + HTML5 Canvas + + + + + + + + + From 906d0a2676a142ada01a351f9fe5c219d84a4311 Mon Sep 17 00:00:00 2001 From: Quentin Laplanche Date: Tue, 20 Dec 2016 20:06:52 +0100 Subject: [PATCH 12/12] Finish day 9 --- 09 - Dev Tools Domination/index-START.html | 46 ------------------- .../{index-FINISHED.html => index.html} | 0 2 files changed, 46 deletions(-) delete mode 100644 09 - Dev Tools Domination/index-START.html rename 09 - Dev Tools Domination/{index-FINISHED.html => index.html} (100%) diff --git a/09 - Dev Tools Domination/index-START.html b/09 - Dev Tools Domination/index-START.html deleted file mode 100644 index 196fffd719..0000000000 --- a/09 - Dev Tools Domination/index-START.html +++ /dev/null @@ -1,46 +0,0 @@ - - - - - Console Tricks! - - - -

×BREAK×DOWN×

- - - - diff --git a/09 - Dev Tools Domination/index-FINISHED.html b/09 - Dev Tools Domination/index.html similarity index 100% rename from 09 - Dev Tools Domination/index-FINISHED.html rename to 09 - Dev Tools Domination/index.html