-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
360 lines (271 loc) · 10.4 KB
/
index.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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>プログラマが物書きに首を突っ込む話</title>
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/black.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<script async src="//platform.twitter.com/widgets.js" charset="utf-8"></script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown>
<script type="text/template">
# プログラマが物書きに首を突っ込む話
<br>
2016/12/16
<br>
シーサー株式会社 インターン やぎにい
</script>
</section>
<section data-markdown>
<script type="text/template">
## 自己紹介
<br>
- 名前 : 青柳 樹
- エイリアス:やぎにい
- GitHub : [yagi2](https://github.com/yagi2)
- blog : [blog.yagi2.com](https://blog.yagi2.com)
</script>
</section>
<section data-markdown>
<script type="text/template">
## プログラマの物書き
<br>
- ソースコード
- ドキュメント
- チャット/メッセージ/メール
</script>
</section>
<section data-markdown>
<script type="text/template">
## プログラマの物書き
<br>
経験上得た知識を外部に発信する
<br>
- Wiki(チームWiki)
- LT等でのスライド発表
- <span class="fragment highlight-red">技術ブログ</span>
</script>
</section>
<section data-markdown>
<script type="text/template">
## 技術ブログ
<br>
- ブログサービス
- WordPressを使って構築
- <p class="fragment fade-up"><font color="#EFBE48">Middleman</font></p>
</script>
</section>
<section data-markdown>
<script type="text/template">
## Middleman
<br>
[GitHub - middleman/middleman](https://github.com/middleman/middleman)
Ruby製の「静的サイトジェネレーター」
</script>
</section>
<section data-markdown>
<script type="text/template">
## Middleman
<br>
- [yagi2.com](https://yagi2.com)
- [GitHub - yagi2/yagi2.com](https://github.com/yagi2/yagi2.com)
- [blog.yagi2.com](https://blog.yagi2.com)
- [GitHub - yagi2/blog](https://github.com/yagi2/blog)
</script>
</section>
<section data-markdown>
<script type="text/template">
## Middleman
<br>
特徴
- Markdownで本文を書ける
- [ブログでの記事 - Middlemanを使ってさくっとブログを立ち上げるぞい!](https://blog.yagi2.com/2016/08/27/how-to-build-blog-in-3-minutes.html)
- [Markdownでの本文 - GitHub](https://raw.githubusercontent.com/yagi2/blog/master/source/posts/2016/08-27-how-to-build-blog-in-3-minutes.html.md)
- 記事の追加が簡単
```
$ bundle exec middleman article [ARTICLE_TITLE]
$ bundle exec middleman build
```
</script>
</section>
<section data-markdown>
<script type="text/template">
## Markdown
<br>
プログラマだとMarkdownを書く機会が多い
<br>
- issue
- readme
- comment
<br>
<p class="fragment fade-up">Markdownで身の回りの物書きを統一しよう</p>
</script>
</section>
<section data-markdown>
<script type="text/template">
## プログラマの物書き
<br>
- Wiki(チームWiki)
- <span class="fragment highlight-blue">LT等でのスライド発表</span>
- <font color="#FB0F23">技術ブログ</font>
</script>
</section>
<section data-markdown>
<script type="text/template">
## スライド
<br>
- PowerPoint
- Keynote
- <p class="fragment fade-up"><font color="#EFBE48">reveal.js</font></p>
</script>
</section>
<section data-markdown>
<script type="text/template">
## reveal.js
<br>
[GitHub - hakimel/reveal.js](https://github.com/hakimel/reveal.js)
html/js/cssのプレゼンテーションフレームワーク
</script>
</section>
<section data-markdown>
<script type="text/template">
## reveal.js
<br>
- [Kyoto.LT-2016-12-16](https://yagi2.github.io/Kyoto.LT-2016-12-16/index.html#/ ※ 今日のこのスライド
- [GitHub Kyoto.LT-2016-12-16](https://github.com/yagi2/Kyoto.LT-2016-12-16)
</script>
</section>
<section data-markdown>
<script type="text/template">
## reveal.js
<br>
特徴
- Markdownで書ける(2回目)
- テキストで書ける = gitでバージョン管理ができる
- Slideshare, SpeackerDockではなくGitHub Pages
- 軽量だが高機能
- HTMLなのでブラウザさえあれば良い
```
$ git clone https://github.com/hakimel/reveal.js.git
$ cd reveal.js
$ open ./index.html
```
</script>
</section>
<section data-markdown>
<script type="text/template">
## プログラマの物書き
<br>
- <span class="fragment highlight-green">Wiki(チームWiki)</span>
- <font color="#1A79FF">LT等でのスライド発表</font>
- <font color="#FB0F23">技術ブログ</font>
</script>
</section>
<section data-markdown>
<script type="text/template">
## Wiki
<br>
- esa
- Qiita:Team
- <p class="fragment fade-up"><font color="#EFBE48">Scrapbox</font></p>
</script>
</section>
<section data-markdown>
<script type="text/template">
## Scrapbox
<br>
[Scrapbox](https://scrapbox.io/product)
NOTA Inc.(Gyazo)製のTeam Wiki
</script>
</section>
<section data-markdown>
<script type="text/template">
## Scrapbox
<br>
特徴
- ✨ 新しい ✨ (リリースノートが11月15日)
- 独自のシンプルな記法
- Markdownに似ていたりするのですぐ身につく
- リアルタイムで複数人同時編集可能
</script>
</section>
<section data-markdown>
<script type="text/template">
# プログラマが物書きに首を突っ込む話
</script>
</section>
<section data-markdown>
<script type="text/template">
## 首をつっこむ
<br>
最初は何もわからない
のでとりあえず首を突っ込む
何を知らないのか知るのは大切
広く知識があると役に立つ
</script>
</section>
<section data-markdown>
<script type="text/template">
## 首をつっこむ
<br>
今回は私が物を書くことに首を突っ込んだ話
<br>
身近なものでもっと気軽にアウトプットしてみよう。
</script>
</section>
<section data-markdown>
<script type="text/template">
## 首をつっこむ
<br>
首を突っ込んだ結果は[blog](https://blog.yagi2.com)や[GitHub](https://github.com/yagi2)にアウトプット。
<br>
今日のLTも首を突っ込んだ成果の1つ
</script>
</section>
<section data-markdown>
<script type="text/template">
## まとめ
<br>
- 物書きをしよう!
- 書く事で消耗するのはやめて身近な技術で
- とりあえず首を突っ込んで色々な知識をつけていく
- 首突っ込みたいリスト
</script>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
// More info https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: false,
progress: true,
slideNumber: true,
history: true,
transition: 'none',
// More info https://github.com/hakimel/reveal.js#dependencies
dependencies: [
{ src: 'plugin/markdown/marked.js' },
{ src: 'plugin/markdown/markdown.js' },
{ src: 'plugin/notes/notes.js', async: true },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
]
});
</script>
</body>
</html>