rabbit-slide-kou-debian-gum-2012 2012.06.23
Sign up to get free protection for your applications and to get access to all the features.
- data/.rabbit +1 -0
- data/COPYING +9 -0
- data/GPL +674 -0
- data/README.rd +26 -0
- data/Rakefile +77 -0
- data/rabbit-more.rab +179 -0
- data/rabbit-timer-screenshot.png +0 -0
- data/rabbit-timer-ui.svg +105 -0
- data/rabbit.rab +256 -0
- data/rabbit/image/clear-debian-images/clear-blue-headline-background.svg +283 -0
- data/rabbit/image/clear-debian-images/clear-debian-headline-background.svg +406 -0
- data/rabbit/image/clear-debian-images/clear-debian-images.rb +2 -0
- data/rabbit/image/clear-debian-images/debian-logo.svg +86 -0
- data/rabbit/theme/clear-debian/clear-debian.rb +10 -0
- data/rabbit/theme/clear-debian/property.rb +3 -0
- metadata +83 -0
data/README.rd
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
= Rabbit - 時間内に終われるプレゼンツール
|
2
|
+
|
3
|
+
2012年6月23日に行われた大統一Debian勉強会でRabbitを紹介したスライドです。
|
4
|
+
Rabbitの特徴であるプレゼンを時間内に終わることを支援する機能を中心に紹
|
5
|
+
介します。
|
6
|
+
|
7
|
+
== 作者向け
|
8
|
+
|
9
|
+
=== 表示
|
10
|
+
|
11
|
+
rake
|
12
|
+
|
13
|
+
=== 公開
|
14
|
+
|
15
|
+
rake publish
|
16
|
+
|
17
|
+
== 閲覧者向け
|
18
|
+
|
19
|
+
=== インストール
|
20
|
+
|
21
|
+
gem install rabbit-slide-kou-debian-gum-2012
|
22
|
+
|
23
|
+
=== 表示
|
24
|
+
|
25
|
+
rabbit rabbit-slide-kou-debian-gum-2012.gem
|
26
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,77 @@
|
|
1
|
+
# Copyright (C) 2012 Kouhei Sutou <kou@clear-code.com>
|
2
|
+
#
|
3
|
+
# This program is free software: you can redistribute it and/or modify
|
4
|
+
# it under the terms of the GNU General Public License as published by
|
5
|
+
# the Free Software Foundation, either version 3 of the License, or
|
6
|
+
# (at your option) any later version.
|
7
|
+
#
|
8
|
+
# This program is distributed in the hope that it will be useful,
|
9
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
10
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
11
|
+
# GNU General Public License for more details.
|
12
|
+
#
|
13
|
+
# You should have received a copy of the GNU General Public License
|
14
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
15
|
+
|
16
|
+
require "time"
|
17
|
+
require "yaml"
|
18
|
+
require "rabbit/task"
|
19
|
+
|
20
|
+
config = YAML.load(File.read("config.yaml"))
|
21
|
+
|
22
|
+
slide_id = config["id"]
|
23
|
+
tags = config["tags"]
|
24
|
+
base_name = config["base_name"]
|
25
|
+
pdf_base_path = "#{base_name}.pdf"
|
26
|
+
|
27
|
+
version = nil
|
28
|
+
presentation_date = config["presentation_date"]
|
29
|
+
if presentation_date
|
30
|
+
begin
|
31
|
+
parsed_presentation_date = Time.parse(presentation_date)
|
32
|
+
version = parsed_presentation_date.strftime("%Y.%m.%d")
|
33
|
+
rescue ArgumentError
|
34
|
+
end
|
35
|
+
end
|
36
|
+
version ||= "1.0.0"
|
37
|
+
|
38
|
+
author = config["author"]
|
39
|
+
email = config["email"]
|
40
|
+
rubygems_user = config["rubygems_user"]
|
41
|
+
slideshare_user = config["slideshare_user"]
|
42
|
+
speaker_deck_user = config["speaker_deck_user"]
|
43
|
+
|
44
|
+
readme = File.read(Dir.glob("README*")[0])
|
45
|
+
|
46
|
+
readme_blocks = readme.split(/(?:\r?\n){2,}/)
|
47
|
+
summary = (readme_blocks[0] || "TODO").gsub(/\A(?:[=*!]+|h\d\.) */, "")
|
48
|
+
description = readme_blocks[1] || "TODO"
|
49
|
+
|
50
|
+
specification = Gem::Specification.new do |spec|
|
51
|
+
prefix = "rabbit-slide"
|
52
|
+
spec.name = "#{prefix}-#{rubygems_user}-#{slide_id}"
|
53
|
+
spec.version = version
|
54
|
+
spec.homepage = "http://slide.rabbit-shockers.org/#{rubygems_user}/#{slide_id}/"
|
55
|
+
spec.authors = [author]
|
56
|
+
spec.email = [email]
|
57
|
+
spec.summary = summary
|
58
|
+
spec.description = description
|
59
|
+
spec.licenses = ["GPLv3+", "Ruby's or GPLv2+", "Debian Open Use Logo License"]
|
60
|
+
|
61
|
+
spec.files = [".rabbit"]
|
62
|
+
spec.files += Dir.glob("{COPYING,GPL,Rakefile,README*}")
|
63
|
+
spec.files += Dir.glob("rabbit/**/*.*")
|
64
|
+
spec.files += Dir.glob("**/*.{svg,png,jpg,jpeg,gif,eps,pdf}")
|
65
|
+
spec.files += Dir.glob("*.{rd,rab,hiki,md,pdf}")
|
66
|
+
spec.files -= Dir.glob("{pkg,pdf}/**/*.*")
|
67
|
+
|
68
|
+
spec.add_runtime_dependency("rabbit")
|
69
|
+
end
|
70
|
+
|
71
|
+
Rabbit::Task::Slide.new(specification) do |task|
|
72
|
+
task.rubygems_user = rubygems_user
|
73
|
+
task.slideshare_user = slideshare_user
|
74
|
+
task.speaker_deck_user = speaker_deck_user
|
75
|
+
task.pdf_base_path = pdf_base_path
|
76
|
+
task.tags = tags
|
77
|
+
end
|
data/rabbit-more.rab
ADDED
@@ -0,0 +1,179 @@
|
|
1
|
+
= Rabbit
|
2
|
+
|
3
|
+
: subtitle
|
4
|
+
もっとRabbit
|
5
|
+
|
6
|
+
: author
|
7
|
+
須藤功平
|
8
|
+
|
9
|
+
: institution
|
10
|
+
株式会社クリアコード
|
11
|
+
|
12
|
+
: content-source
|
13
|
+
大統一Debian勉強会
|
14
|
+
|
15
|
+
: date
|
16
|
+
2012/06/23
|
17
|
+
|
18
|
+
: allotted-time
|
19
|
+
20m
|
20
|
+
|
21
|
+
: theme
|
22
|
+
clear-debian
|
23
|
+
|
24
|
+
= もっとRabbit
|
25
|
+
|
26
|
+
(('tag:center'))(('tag:x-large'))万が一用資料\n
|
27
|
+
(('note:(だれもRabbitを使いたくならなかったケース)'))
|
28
|
+
|
29
|
+
= もっとRabbitをアピール
|
30
|
+
|
31
|
+
* 悪いプレゼンを防ぐ機能
|
32
|
+
* PDF出力機能
|
33
|
+
* PDF入力機能
|
34
|
+
* 外部連携
|
35
|
+
|
36
|
+
= 悪いプレゼン×
|
37
|
+
|
38
|
+
* ((*悪いプレゼンを防ぐ機能*))
|
39
|
+
* PDF出力機能
|
40
|
+
* PDF入力機能
|
41
|
+
* 外部連携
|
42
|
+
|
43
|
+
= 悪いプレゼン
|
44
|
+
|
45
|
+
* 小さくて読めない
|
46
|
+
* 話しすぎ
|
47
|
+
|
48
|
+
= 文字が小さい
|
49
|
+
|
50
|
+
* ((*小さくて読めない*))
|
51
|
+
* 話しすぎ
|
52
|
+
|
53
|
+
= 文字が小さくて読めない
|
54
|
+
|
55
|
+
* 小さい文字を読もうと頑張る\n
|
56
|
+
→話に集中できない
|
57
|
+
* 話に付いていくのを諦める
|
58
|
+
|
59
|
+
= 話しすぎ
|
60
|
+
|
61
|
+
* 小さくて読めない
|
62
|
+
* ((*話しすぎ*))
|
63
|
+
|
64
|
+
= 話しすぎ
|
65
|
+
|
66
|
+
* その話は本当に、((*今*))、必要?
|
67
|
+
* 蛇足じゃない?
|
68
|
+
* 大事なことがぼやけない?
|
69
|
+
* → 本当に大事なことが伝わらない
|
70
|
+
|
71
|
+
= 対策
|
72
|
+
|
73
|
+
(('tag:center'))(('tag:x-large'))デフォルトで\n大きなサイズ
|
74
|
+
|
75
|
+
= 大きな文字
|
76
|
+
|
77
|
+
* ながながと書くと見栄えが悪くなるし、1ページに収まらないし、パッとしない。
|
78
|
+
* → 簡潔な表現にせざるを得ない!
|
79
|
+
* → 要点のみにせざるを得ない!
|
80
|
+
|
81
|
+
= PDF出力機能
|
82
|
+
|
83
|
+
* 悪いプレゼンを防ぐ機能
|
84
|
+
* ((*PDF出力機能*))
|
85
|
+
* PDF入力機能
|
86
|
+
* 外部連携
|
87
|
+
|
88
|
+
= PDF出力機能
|
89
|
+
|
90
|
+
(('tag:center'))肩身の狭い思いをしなくて済む!
|
91
|
+
(('tag:margin-bottom'))
|
92
|
+
(('tag:margin-bottom'))
|
93
|
+
|
94
|
+
* slideshareに置ける\n
|
95
|
+
(('note:(もちろんSpeaker Deckにも置ける)'))
|
96
|
+
* デザインが崩れない
|
97
|
+
* フォントも埋め込み
|
98
|
+
* WindowsやMac OS Xの人にも\n
|
99
|
+
渡せる
|
100
|
+
|
101
|
+
= PDF入力機能
|
102
|
+
|
103
|
+
* 悪いプレゼンを防ぐ機能
|
104
|
+
* PDF出力機能
|
105
|
+
* ((*PDF入力機能*))
|
106
|
+
* 外部連携
|
107
|
+
|
108
|
+
= スライドの見栄え
|
109
|
+
|
110
|
+
(('tag:center'))テキストでのデザインは大変
|
111
|
+
|
112
|
+
(('tag:center'))↓
|
113
|
+
|
114
|
+
(('tag:center'))(('tag:large'))GUIでデザインしたい!
|
115
|
+
|
116
|
+
= PDF入力
|
117
|
+
|
118
|
+
(('tag:center'))他のプレゼンツールでデザイン
|
119
|
+
|
120
|
+
(('tag:center'))↓
|
121
|
+
|
122
|
+
(('tag:center'))PDF出力
|
123
|
+
|
124
|
+
(('tag:center'))↓
|
125
|
+
|
126
|
+
(('tag:center'))RabbitでPDF読み込み
|
127
|
+
|
128
|
+
= 表示のみRabbit
|
129
|
+
|
130
|
+
* 作成: 他のツール
|
131
|
+
* RabbitはUIを作らなくてよい!
|
132
|
+
* 表示: Rabbit
|
133
|
+
* うさぎとかめタイマーを使える
|
134
|
+
|
135
|
+
= 外部連携
|
136
|
+
|
137
|
+
* 悪いプレゼンを防ぐ機能
|
138
|
+
* PDF出力機能
|
139
|
+
* PDF入力機能
|
140
|
+
* ((*外部連携*))
|
141
|
+
|
142
|
+
= 外部連携
|
143
|
+
|
144
|
+
* Twitter連携
|
145
|
+
* 携帯電話連携
|
146
|
+
|
147
|
+
= Twitter連携
|
148
|
+
|
149
|
+
* ((*Twitter連携*))
|
150
|
+
* 携帯電話連携
|
151
|
+
|
152
|
+
= Twitter連携
|
153
|
+
|
154
|
+
* Tweetをスライド上に表示
|
155
|
+
* 様々な表示方法
|
156
|
+
* スライド下部に慎ましく表示
|
157
|
+
* スライド全体に流す
|
158
|
+
|
159
|
+
= 携帯電話連携
|
160
|
+
|
161
|
+
* Twitter連携
|
162
|
+
* ((*携帯電話連携*))
|
163
|
+
|
164
|
+
= 携帯電話連携
|
165
|
+
|
166
|
+
* 携帯電話がリモコンに早変わり
|
167
|
+
* スライド操作ができる
|
168
|
+
* 次のスライド・前のスライド…
|
169
|
+
* RabbitがWeb UIを提供
|
170
|
+
* 携帯電話のブラウザから操作
|
171
|
+
|
172
|
+
= まとめ
|
173
|
+
|
174
|
+
* Rabbitをもっとアピール
|
175
|
+
* 悪いプレゼンを防ぐ機能
|
176
|
+
* PDF出力機能
|
177
|
+
* PDF入力機能
|
178
|
+
* 外部連携
|
179
|
+
* 使いたくなれ!
|
Binary file
|
data/rabbit-timer-ui.svg
ADDED
@@ -0,0 +1,105 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
+
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
3
|
+
|
4
|
+
<svg
|
5
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
6
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
7
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
8
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
9
|
+
xmlns="http://www.w3.org/2000/svg"
|
10
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
11
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
12
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
13
|
+
width="820.44006"
|
14
|
+
height="714.80579"
|
15
|
+
id="svg2"
|
16
|
+
version="1.1"
|
17
|
+
inkscape:version="0.48.3.1 r9886"
|
18
|
+
sodipodi:docname="rabbit-timer-ui.svg">
|
19
|
+
<defs
|
20
|
+
id="defs4" />
|
21
|
+
<sodipodi:namedview
|
22
|
+
id="base"
|
23
|
+
pagecolor="#ffffff"
|
24
|
+
bordercolor="#666666"
|
25
|
+
borderopacity="1.0"
|
26
|
+
inkscape:pageopacity="0.0"
|
27
|
+
inkscape:pageshadow="2"
|
28
|
+
inkscape:zoom="0.24748737"
|
29
|
+
inkscape:cx="858.18137"
|
30
|
+
inkscape:cy="242.42021"
|
31
|
+
inkscape:document-units="px"
|
32
|
+
inkscape:current-layer="layer1"
|
33
|
+
showgrid="false"
|
34
|
+
fit-margin-top="5"
|
35
|
+
fit-margin-left="5"
|
36
|
+
fit-margin-right="5"
|
37
|
+
fit-margin-bottom="5"
|
38
|
+
inkscape:window-width="1380"
|
39
|
+
inkscape:window-height="780"
|
40
|
+
inkscape:window-x="2242"
|
41
|
+
inkscape:window-y="268"
|
42
|
+
inkscape:window-maximized="0" />
|
43
|
+
<metadata
|
44
|
+
id="metadata7">
|
45
|
+
<rdf:RDF>
|
46
|
+
<cc:Work
|
47
|
+
rdf:about="">
|
48
|
+
<dc:format>image/svg+xml</dc:format>
|
49
|
+
<dc:type
|
50
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
51
|
+
<dc:title />
|
52
|
+
</cc:Work>
|
53
|
+
</rdf:RDF>
|
54
|
+
</metadata>
|
55
|
+
<g
|
56
|
+
inkscape:label="レイヤー 1"
|
57
|
+
inkscape:groupmode="layer"
|
58
|
+
id="layer1"
|
59
|
+
transform="translate(-534.691,-540.505)">
|
60
|
+
<image
|
61
|
+
sodipodi:absref="rabbit-timer-screenshot.png"
|
62
|
+
xlink:href="rabbit-timer-screenshot.png"
|
63
|
+
width="800"
|
64
|
+
height="600"
|
65
|
+
id="image3114"
|
66
|
+
x="548.57141"
|
67
|
+
y="545.505" />
|
68
|
+
<rect
|
69
|
+
style="color:#000000;fill:none;stroke:#ff0000;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
|
70
|
+
id="rect3121"
|
71
|
+
width="99.285728"
|
72
|
+
height="131.42859"
|
73
|
+
x="579.84772"
|
74
|
+
y="1040.505" />
|
75
|
+
<rect
|
76
|
+
y="1040.505"
|
77
|
+
x="1108.599"
|
78
|
+
height="131.42859"
|
79
|
+
width="99.285728"
|
80
|
+
id="rect3891"
|
81
|
+
style="color:#000000;fill:none;stroke:#ff0000;stroke-width:10;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
|
82
|
+
<text
|
83
|
+
sodipodi:linespacing="125%"
|
84
|
+
id="text3893"
|
85
|
+
y="1244.6736"
|
86
|
+
x="537.591"
|
87
|
+
style="font-size:60px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
88
|
+
xml:space="preserve"><tspan
|
89
|
+
y="1244.6736"
|
90
|
+
x="537.591"
|
91
|
+
id="tspan3895"
|
92
|
+
sodipodi:role="line">経過時間</tspan></text>
|
93
|
+
<text
|
94
|
+
xml:space="preserve"
|
95
|
+
style="font-size:60px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;font-family:Sans;-inkscape-font-specification:Sans"
|
96
|
+
x="992.96887"
|
97
|
+
y="1244.7908"
|
98
|
+
id="text3897"
|
99
|
+
sodipodi:linespacing="125%"><tspan
|
100
|
+
sodipodi:role="line"
|
101
|
+
id="tspan3899"
|
102
|
+
x="992.96887"
|
103
|
+
y="1244.7908">現在のページ</tspan></text>
|
104
|
+
</g>
|
105
|
+
</svg>
|
data/rabbit.rab
ADDED
@@ -0,0 +1,256 @@
|
|
1
|
+
= Rabbit
|
2
|
+
|
3
|
+
: subtitle
|
4
|
+
時間内に終われるプレゼンツール
|
5
|
+
|
6
|
+
: author
|
7
|
+
須藤功平
|
8
|
+
|
9
|
+
: institution
|
10
|
+
株式会社クリアコード
|
11
|
+
|
12
|
+
: content-source
|
13
|
+
大統一Debian勉強会
|
14
|
+
|
15
|
+
: date
|
16
|
+
2012/06/23
|
17
|
+
|
18
|
+
: allotted-time
|
19
|
+
30m
|
20
|
+
|
21
|
+
: theme
|
22
|
+
clear-debian
|
23
|
+
|
24
|
+
= 今日の予定
|
25
|
+
|
26
|
+
* 私がRabbitを紹介する理由
|
27
|
+
* Rabbitの紹介
|
28
|
+
* Rabbitの使い方の説明
|
29
|
+
* Rabbitを使ってみよう!
|
30
|
+
* みなさんが使ってみます
|
31
|
+
|
32
|
+
= 理由
|
33
|
+
|
34
|
+
* ((*私がRabbitを紹介する理由*))
|
35
|
+
* Rabbitの紹介
|
36
|
+
* Rabbitの使い方の説明
|
37
|
+
* Rabbitを使ってみよう!
|
38
|
+
* みなさんが使ってみます
|
39
|
+
|
40
|
+
= Rabbitを紹介する理由
|
41
|
+
|
42
|
+
# blockquote
|
43
|
+
Debianユーザーにこそ\n
|
44
|
+
便利なプレゼンツール\n
|
45
|
+
だから
|
46
|
+
|
47
|
+
= 私が紹介する理由
|
48
|
+
|
49
|
+
* 私もDebianユーザー((*(('😆'))*))
|
50
|
+
* 最も使用歴の長い\n
|
51
|
+
Rabbitユーザー!
|
52
|
+
|
53
|
+
= 私
|
54
|
+
|
55
|
+
* 須藤功平
|
56
|
+
* プライベート
|
57
|
+
* フリーソフトウェア((*プログラマー*))
|
58
|
+
* 仕事
|
59
|
+
* フリーソフトウェア((*プログラマー*))\n
|
60
|
+
(('note:兼代表取締役'))
|
61
|
+
|
62
|
+
== ノート
|
63
|
+
|
64
|
+
* 野良debパッケージ作成
|
65
|
+
* groonga
|
66
|
+
* milter manager
|
67
|
+
* 野良RPMパッケージ作成
|
68
|
+
* ...
|
69
|
+
|
70
|
+
= プログラマー
|
71
|
+
|
72
|
+
* 愛用エディターがある
|
73
|
+
* なんでもバージョン管理
|
74
|
+
* テキストベースを好む
|
75
|
+
* 特にUNIX系のプログラマー
|
76
|
+
|
77
|
+
= 私にとってのDebian
|
78
|
+
|
79
|
+
* プログラミング環境
|
80
|
+
* aptで簡単環境構築
|
81
|
+
* sidで(('note:わりと新しい'))ソフトウェアを使用
|
82
|
+
* プレゼン環境
|
83
|
+
* デモ
|
84
|
+
* ライブコーディング
|
85
|
+
|
86
|
+
= Debianユーザー
|
87
|
+
|
88
|
+
* プログラマーが多い?
|
89
|
+
* プログラマーに便利な環境だから
|
90
|
+
(('note:(予想)'))
|
91
|
+
* プログラマー的性質?
|
92
|
+
* バージョン管理するよね?
|
93
|
+
* テキスト好きだよね?
|
94
|
+
|
95
|
+
= Rabbitを紹介する理由
|
96
|
+
|
97
|
+
# blockquote
|
98
|
+
Debianユーザーにこそ\n
|
99
|
+
便利なプレゼンツール\n
|
100
|
+
だから
|
101
|
+
|
102
|
+
= 紹介
|
103
|
+
|
104
|
+
* 私がRabbitを紹介する理由
|
105
|
+
* ((*Rabbitの紹介*))
|
106
|
+
* Rabbitの使い方の説明
|
107
|
+
* Rabbitを使ってみよう!
|
108
|
+
* みなさんが使ってみます
|
109
|
+
|
110
|
+
= Rabbit
|
111
|
+
|
112
|
+
(('tag:center'))プレゼンツール
|
113
|
+
(('tag:margin-bottom'))
|
114
|
+
(('tag:margin-bottom'))
|
115
|
+
|
116
|
+
* 入力がテキスト
|
117
|
+
* 悪いプレゼンを防ぐ機能
|
118
|
+
|
119
|
+
(('tag:margin-bottom'))
|
120
|
+
(('tag:margin-bottom'))
|
121
|
+
|
122
|
+
= Rabbit: 入力がテキスト
|
123
|
+
|
124
|
+
(('tag:center'))プレゼンツール
|
125
|
+
(('tag:margin-bottom'))
|
126
|
+
(('tag:margin-bottom'))
|
127
|
+
|
128
|
+
* ((*入力がテキスト*))
|
129
|
+
* 悪いプレゼンを防ぐ機能
|
130
|
+
|
131
|
+
(('tag:margin-bottom'))
|
132
|
+
(('tag:margin-bottom'))
|
133
|
+
|
134
|
+
= 入力がテキスト
|
135
|
+
|
136
|
+
(('tag:center'))Debianユーザー向け!
|
137
|
+
(('tag:margin-bottom'))
|
138
|
+
(('tag:margin-bottom'))
|
139
|
+
|
140
|
+
* 愛用エディターで作れる
|
141
|
+
* バージョン管理できる
|
142
|
+
* grepできる
|
143
|
+
|
144
|
+
(('tag:margin-bottom'))
|
145
|
+
(('tag:margin-bottom'))
|
146
|
+
|
147
|
+
= Rabbit: 悪いプレゼン×
|
148
|
+
|
149
|
+
(('tag:center'))プレゼンツール
|
150
|
+
(('tag:margin-bottom'))
|
151
|
+
(('tag:margin-bottom'))
|
152
|
+
|
153
|
+
* 入力がテキスト
|
154
|
+
* ((*悪いプレゼンを防ぐ機能*))
|
155
|
+
|
156
|
+
(('tag:margin-bottom'))
|
157
|
+
(('tag:margin-bottom'))
|
158
|
+
|
159
|
+
= 悪いプレゼン?
|
160
|
+
|
161
|
+
* 時間オーバー
|
162
|
+
* 文字が小さくて読めない
|
163
|
+
* 話しすぎる
|
164
|
+
|
165
|
+
= 時間オーバー
|
166
|
+
|
167
|
+
* ((*時間オーバー*))
|
168
|
+
* (('del:文字が小さくて読めない'))
|
169
|
+
* (('del:話しすぎる'))
|
170
|
+
|
171
|
+
= 時間オーバー
|
172
|
+
|
173
|
+
* 聴いている人の集中力がきれる
|
174
|
+
* いい話をしても伝わらない
|
175
|
+
* いい話でも印象が悪くなる\n
|
176
|
+
(('note:(早く終わらないの?)'))
|
177
|
+
* 他の人の予定が狂う
|
178
|
+
* 次の人、運営者、\n
|
179
|
+
別の部屋の話を聞きたい人
|
180
|
+
|
181
|
+
= 時間オーバー対策
|
182
|
+
|
183
|
+
(('tag:center'))(('tag:x-large'))みんなにわかるタイマー
|
184
|
+
|
185
|
+
= うさぎとかめタイマー
|
186
|
+
|
187
|
+
# image
|
188
|
+
# src = rabbit-timer-ui.svg
|
189
|
+
# relative_height = 100
|
190
|
+
|
191
|
+
= 紹介: おわり
|
192
|
+
|
193
|
+
* 私がRabbitを紹介する理由
|
194
|
+
* ((*Rabbitの紹介*))
|
195
|
+
* Rabbitの使い方の説明
|
196
|
+
* Rabbitを使ってみよう!
|
197
|
+
* みなさんが使ってみます
|
198
|
+
|
199
|
+
= 紹介のまとめ
|
200
|
+
|
201
|
+
* RabbitはDebianユーザー向け\n
|
202
|
+
プレゼンツール
|
203
|
+
* 入力がテキスト
|
204
|
+
* よいプレゼンに導いてくれる
|
205
|
+
* 悪いプレゼンに気付ける機能
|
206
|
+
|
207
|
+
= 使い方
|
208
|
+
|
209
|
+
* 私がRabbitを紹介する理由
|
210
|
+
* Rabbitの紹介
|
211
|
+
* ((*Rabbitの使い方の説明*))
|
212
|
+
* Rabbitを使ってみよう!
|
213
|
+
* みなさんが使ってみます
|
214
|
+
|
215
|
+
= インストール
|
216
|
+
|
217
|
+
% sudo aptitude build-dep rabbit
|
218
|
+
% sudo gem install rabbit
|
219
|
+
|
220
|
+
= 起動
|
221
|
+
|
222
|
+
% apt-get source rabbit
|
223
|
+
% rabbit */sample/theme-bench.rab
|
224
|
+
|
225
|
+
= 使ってみよう!
|
226
|
+
|
227
|
+
* 私がRabbitを紹介する理由
|
228
|
+
* Rabbitの紹介
|
229
|
+
* Rabbitの使い方の説明
|
230
|
+
* ((*Rabbitを使ってみよう!*))
|
231
|
+
* みなさんが使ってみます
|
232
|
+
|
233
|
+
= お題
|
234
|
+
|
235
|
+
(('tag:center'))(('tag:x-large'))
|
236
|
+
自分の\nDebianの\n使い方
|
237
|
+
|
238
|
+
= ヒント
|
239
|
+
|
240
|
+
(1) 何に使っているか
|
241
|
+
* (('note:プログラミング'))
|
242
|
+
(2) どうしてDebianか
|
243
|
+
* (('note:環境構築が簡単'))
|
244
|
+
(3) ↑の裏付け
|
245
|
+
* (('note:パッケージがたくさんある'))
|
246
|
+
(4) まとめ
|
247
|
+
* (('note:Debianを使ってプログラミングをしよう!'))
|
248
|
+
|
249
|
+
= まとめ
|
250
|
+
|
251
|
+
* RabbitはDebianユーザーに\n
|
252
|
+
やさしい
|
253
|
+
* みんなに見えるタイマーは\n
|
254
|
+
たのしくて便利
|
255
|
+
* Debian上でRabbitを使って\n
|
256
|
+
よいプレゼンをしよう!
|