-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path01_intro.html
246 lines (233 loc) · 8.03 KB
/
01_intro.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
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
<!doctype html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="author" content="Constantine Korikov">
<title>Информатика</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/theme/black.css">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css">
<style>
.bigtext {
font-size: 0.6em;
line-height: 1.2em;
}
.cite {
text-align: right;
}
</style>
</head>
<body>
<div class="reveal">
<div class="slides">
<section>
<img src="pics/logo.svg" alt="logo"
style="height: 50px; margin: 0 auto 4rem auto; background: transparent;" class="demo-logo">
<h2>Информатика</h2>
<p>
<small><a href="https://www.linkedin.com/in/ckorikov/">Константин Кориков</a></small>
</p>
</section>
<section>
<h2>Агенда</h2>
<ol>
<li>Знакомство</li>
<li>Программа семестра</li>
<li>Тема 1. Системы контроля версий</li>
</ol>
</section>
<section>
<section>
<h2 class="r-fit-text">Знакомство</h2>
</section>
<section>
<img src="pics/01/linkedin.png">
</section>
<section>
<img height="600" src="pics/01/telegram.png">
</section>
<section>
<img src="pics/01/github.png">
</section>
</section>
<section>
<section>
<h2 class="r-fit-text">Программа семестра</h2>
</section>
<section>
<table class="bigtext">
<thead>
<tr>
<th>№</th>
<th>Название</th>
</tr>
</thead>
<tbody>
<tr>
<td>Тема 1</td>
<td>Системы контроля версий</td>
</tr>
<tr>
<td>Тема 2</td>
<td>Программирование на C++: процесс разработки</td>
</tr>
<tr>
<td>Тема 3</td>
<td>Программирование на C++: ввод и вывод</td>
</tr>
<tr>
<td>Тема 4</td>
<td>Алгоритмы поиска и сортировки</td>
</tr>
<tr>
<td>Тема 5</td>
<td>Архитектура компьютера</td>
</tr>
<tr>
<td>Тема 6</td>
<td>Программирование на C++: указатели и ссылки</td>
</tr>
<tr>
<td>Тема 7</td>
<td>История IT</td>
</tr>
<tr>
<td>Тема 8</td>
<td>Программирование на C++: основы ООП</td>
</tr>
<tr>
<td>Тема 9</td>
<td>Программирование на C++: наследование и полиморфизм</td>
</tr>
<tr>
<td>Тема 10</td>
<td>Связный список</td>
</tr>
<tr>
<td>Тема 11</td>
<td>Хеширование</td>
</tr>
<tr>
<td>Тема 12</td>
<td>Деревья</td>
</tr>
<tr>
<td>Тема 13</td>
<td>Численные методы</td>
</tr>
<tr>
<td>Тема 14</td>
<td>Конкурентное программирование</td>
</tr>
</tbody>
</table>
</section>
</section>
<section>
<section>
<h2 class="r-fit-text">Системы контроля версий</h2>
</section>
<section>
<h2>Что узнаем?</h2>
<ul>
<li>vcs</li>
<li>git</li>
<li>command line interface (cli)</li>
</ul>
</section>
<section>
<p><strong>Система контроля версий</strong> — это система, записывающая изменения в файл или набор
файлов в течение времени и позволяющая вернуться позже к определённой версии.</p>
<p><small><a href="https://git-scm.com/book/ru/v2">Pro Git</a></small></p>
</section>
<section>
<p><strong>git</strong> — the stupid content tracker.</p>
<p>Git is a fast, scalable, distributed revision control system with an unusually rich command set
that provides both high-level operations and full access to internals.</p>
<p><small><a href="https://git-scm.com/docs/git">man</a></small></p>
</section>
<section>
<img src="pics/01/progit2.png" height="400" alt="Pro Git">
<p><small><a href="https://git-scm.com/book/ru/v2">Pro Git</a></small></p>
</section>
<section>
<img src="pics/01/git.png" alt="Git commands">
</section>
<section>
<h5>Создание локального git-репозитория</h5>
<script id="asciicast-iN2QuWCd5FeOu116DiZhqii4U"
src="https://asciinema.org/a/iN2QuWCd5FeOu116DiZhqii4U.js" async data-rows="20"></script>
<p><small>Демонстрация</small></p>
</section>
<section>
<h5>Клонирование git-репозитория</h5>
<script id="asciicast-qu7dfEwBqUsB5TUU2YWeE8J4T"
src="https://asciinema.org/a/qu7dfEwBqUsB5TUU2YWeE8J4T.js" async data-rows="20"></script>
<p><small>Демонстрация</small></p>
</section>
<section>
<h5>Ветвление в git</h5>
<script id="asciicast-BytPAC3kiNgaR9d87YWnYOKGe"
src="https://asciinema.org/a/BytPAC3kiNgaR9d87YWnYOKGe.js" async data-rows="20"></script>
<p><small>Демонстрация</small></p>
</section>
<section>
<h5>Синхронизация git-репозитория</h5>
<script id="asciicast-vjIOHjBKWwBK6UttPnrkLlB69"
src="https://asciinema.org/a/vjIOHjBKWwBK6UttPnrkLlB69.js" async data-rows="20"></script>
<p><small>Демонстрация</small></p>
</section>
<section>
<h5>Настройка пользователя</h5>
<pre><code data-trim data-noescape>
git config --global user.name "Constantine Korikov"
git config --global user.email "[email protected]"
</code></pre>
</section>
<section>
<img src="pics/01/commits.png" height="400" alt="Commits">
<p><small><a href="https://www.conventionalcommits.org/ru/v1.0.0/">Соглашение о коммитах
1.0.0</a></small></p>
</section>
<section>
<p>
<strong>CLI (command line interface)</strong> —
управление программами с помощью команд. Команды состоят из букв, цифр, символов, набираются
построчно, выполняются после нажатия клавиши Enter.
</p>
<p><small><a href="https://help.ubuntu.ru/wiki/командная_строка">Командная строка (документация
Ubuntu)</a></small></p>
</section>
<section>
<img src="pics/01/shotts_linux_cmd.png" height="500">
</section>
</section>
<section>
<h5><a href="mailto:[email protected]">[email protected]</a></h5>
</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/zoom/zoom.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script src="plugin/search/search.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
slideNumber: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [RevealMarkdown, RevealHighlight, RevealNotes, RevealSearch, RevealZoom]
});
</script>
</body>
</html>