diff --git a/01 - JavaScript Drum Kit/index-START.html b/01 - JavaScript Drum Kit/index-START.html
index 4070d32767..2a1ec2fa7d 100644
--- a/01 - JavaScript Drum Kit/index-START.html
+++ b/01 - JavaScript Drum Kit/index-START.html
@@ -59,6 +59,29 @@
diff --git a/02 - JS and CSS Clock/index-START.html b/02 - JS and CSS Clock/index-START.html
index ee7eaefb1f..22c0879fac 100644
--- a/02 - JS and CSS Clock/index-START.html
+++ b/02 - JS and CSS Clock/index-START.html
@@ -9,8 +9,8 @@
@@ -62,12 +62,57 @@
background:black;
position: absolute;
top:50%;
+ transform-origin: 100%;
+ transform:rotate(90deg);
+ transition: all 0.5s;
+ transition-timing-function: cubic-bezier(0.04, 1.77, 0.32, 0.94);
+ }
+ hand.no-transition {
+ transition:none;
}
-
-
+ CanvasPad
+
diff --git a/09 - Dev Tools Domination/index-START.html b/09 - Dev Tools Domination/index-START.html
index 196fffd719..96772b5046 100644
--- a/09 - Dev Tools Domination/index-START.html
+++ b/09 - Dev Tools Domination/index-START.html
@@ -17,29 +17,72 @@
p.style.fontSize = '50px';
}
- // Regular
-
- // Interpolated
-
- // Styled
-
- // warning!
-
- // Error :|
-
- // Info
-
- // Testing
-
- // clearing
-
- // Viewing DOM Elements
-
- // Grouping together
-
- // counting
-
- // timing
+ // Regular
+ console.log('hello');
+
+// Interpolated
+console.log('Hello I am a %s string!', '💩');
+
+// Styled
+console.log('%c I am some great text', 'font-size:50px; background:red; text-shadow: 10px 10px 0 blue')
+
+// warning!
+console.warn('OH NOOO');
+
+// Error :|
+console.error('Shit!');
+
+// Info
+console.info('Crocodiles eat 3-4 people per year');
+
+// Testing
+const p = document.querySelector('p');
+
+console.assert(p.classList.contains('ouch'), 'That is wrong!');
+
+// clearing
+console.clear();
+
+// Viewing DOM Elements
+console.log(p);
+console.dir(p);
+
+console.clear();
+
+// Grouping together
+dogs.forEach(dog => {
+ console.groupCollapsed(`${dog.name}`);
+ console.log(`This is ${dog.name}`);
+ console.log(`${dog.name} is ${dog.age} years old`);
+ console.log(`${dog.name} is ${dog.age * 7} dog years old`);
+ console.groupEnd(`${dog.name}`);
+});
+
+// counting
+
+console.count('Wes');
+console.count('Wes');
+console.count('Steve');
+console.count('Steve');
+console.count('Wes');
+console.count('Steve');
+console.count('Wes');
+console.count('Steve');
+console.count('Steve');
+console.count('Steve');
+console.count('Steve');
+console.count('Steve');
+
+// timing
+console.time('fetching data');
+fetch('https://api.github.com/users/wesbos')
+ .then(data => data.json())
+ .then(data => {
+ console.timeEnd('fetching data');
+ console.log(data);
+ });
+
+console.table(dogs);