-
Notifications
You must be signed in to change notification settings - Fork 56
/
s00-01-course_introduction.html
149 lines (82 loc) · 2.73 KB
/
s00-01-course_introduction.html
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
<!doctype html>
<html lang="en">
<meta charset="utf-8" />
<title>websoft</title>
<!-- Mithril HTML Slideshow styles -->
<link href="css/mithril-slideshow.css" rel="stylesheet" />
<!-- Code formatting using highlight.js -->
<link rel="stylesheet" href="css/default.css">
<link rel="stylesheet" href="css/tomorrow.css">
<script src="js/highlight.pack.js"></script>
<!-- Text formatting using Markdown through showdown.js -->
<script src="js/showdown.min.js"></script>
<script data-role="slide" data-markdown type="text/html">
# Software Development for the Web
## Course introduction
### Mikael Roos
</script>
<script data-role="slide" data-markdown type="text/html">
# Agenda
* Welcome
* Course structure
* Preparations
</script>
<script data-role="slide" data-markdown type="text/html">
# Welcome
</script>
<script data-role="slide" data-markdown type="text/html">
# I am Mikael Roos
* Gitter chat
* https://gitter.im/Webbprogrammering/websoft
</script>
<script data-role="slide" data-markdown type="text/html">
# DA377B
* Software Development for the Web
> The aim of this course is to enable the student develop skills in advanced web programming and software development.
</script>
<script data-role="slide" data-markdown type="text/html">
# Course formalia
* Lets review it on Canvas
* https://hkr.instructure.com/courses/2432
</script>
<script data-role="slide" data-markdown type="text/html">
# Lets poll
* How do you feel about the course topics?
* https://forms.gle/Z9RBZyc3gFEZaYDy6
</script>
<script data-role="slide" data-markdown type="text/html">
# Why?
* So many techniques?
* So many tools outside of Canvas?
* More why?
</script>
<script data-role="slide" data-markdown type="text/html">
# Communication
* Chat (quick and dirty)
* Issues (forum-style for reasoning)
* Wiki (to improve instructions and explanations)
* "[How To Ask Questions The Smart Way](http://catb.org/~esr/faqs/smart-questions.html)"
</script>
<script data-role="slide" data-markdown type="text/html">
# How to share
* [Gist](https://gist.github.com/)
* [Codeshare](https://codeshare.io/)
* Screenshots and draw on them, drop onto gitter
* Format using Markdown, separate code and text
* Publish source to GitHub
* Make it available on a website (GitHub Pages)
</script>
<script data-role="slide" data-markdown type="text/html">
# Prepare
* Install base for development and lab environment
</script>
<script data-role="slide" data-markdown type="text/html">
# Last words
* Questions on that?
</script>
<script data-role="slide" data-markdown type="text/html">
</script>
<!-- include essential js-script -->
<script src="js/mithril.min.js"></script>
<script src="js/mithril-slideshow.js"></script>