-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathslides_js_basics_sprint2.html
More file actions
213 lines (154 loc) · 3.95 KB
/
slides_js_basics_sprint2.html
File metadata and controls
213 lines (154 loc) · 3.95 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<html>
<head>
<title>Title</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<style type="text/css">
@import url(http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz);
@import url(http://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic);
@import url(http://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic);
body { font-family: 'Droid Serif'; }
h1, h2, h3 {
font-family: 'Yanone Kaffeesatz';
font-weight: normal;
}
ul {
font-size: 32;
}
.remark-code, .remark-inline-code { font-family: 'Ubuntu Mono'; }
.inverse {
background: #272822;
color: #777872;
text-shadow: 0 0 20px #333;
}
.inverse h1, .inverse h2 {
color: #f3f3f3;
line-height: 0.8em;
}
ul {
list-style-position: inside;
}
table {
border-collapse: collapse;
border: 1px solid black;
}
th {
border: 1px solid black;
padding: 10px;
background-color: dodgerblue;
}
td {
border: 1px solid black;
padding: 10px;
}
</style>
</head>
<body>
<textarea id="source">
class: center, middle
# Coding coders...
@avermeulen
---
class: middle
#The plan
* The big plan
* This weeks plans
* Does this fit your plans?
---
class: middle, center
#What is the big plan?
---
class: middle, center
#Fullstack Javascript
---
# Javascript everywhere
Topic | Description
--------|----------
Frontend| Master the DOM using JQuery
| Templating with Handlebars
| CSS with Bootstrap
| HTML Forms
| HTTP GET & POST
| Ajax using JQuery
Backend | Node JS
| API's - create
| Web Server - ExpressJS
| Databases - MySQL
Robots | Arduino & Node JS
Servers | RasPi
---
#Your plans?
## You teach yourself...
* PHP
* Ruby
* Python
* DB
* Whatever skill pays big bugs...
---
class: middle
# This sprints plan
* Side wheels
* Take off the side wheels
* Free wheeling
---
class: middle
# This sprints plan
* Codecademy
* Exercises outside of Codecademy
* Research topic
---
class: middle
# This sprints plan
Topic | Description
-------------|------------------------------------------------------------------------------
Codecademy | Arrays and Objects in JS,
| Data Structures,
| Objects 1
| Objects 2
Excercises | The Words excercise - Ex 1
| The Number exercise - Ex 2
| The Phone book Exercise - Ex 3
Research | setInterval and setTimeout functions in JS
---
# Research topic to google
## setInterval and setTimeout functions in JS
* What do they do?
* How are the different?
* What can they be used for?
* Create a program the use one of them?
---
#Sprint backlog
Topic | Description
-------------|------------------------------------------------------------------------------
Codecademy | Completed up until while loops
Exercise | Find Longest word, Shortest Word and the average length
Codecademy | Data Structures
| Objects 1
| Objects 2
Excercises | Word utility continue
| Find all the words with the same length
| What letter do the most words start & end with?
| The Number exercise - Ex 2
| The Phone book Exercise - Ex 3
Research | setInterval and setTimeout functions in JS
---
#QUnit
* What is it?
* How is it usefull
* How do one use it?
---
# Bigger picture
## What is it?
---
# Bigger picture
## Are you onboard?
---
# Bigger picture
## Let's go!
</textarea>
<script src="http://gnab.github.io/remark/downloads/remark-latest.min.js" type="text/javascript">
</script>
<script type="text/javascript">
var slideshow = remark.create();
</script>
</body>
</html>