rabbit-slide-kenhys-groonga-meetup-20140129 2014.01.29.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 25831774520e09e53b1f8f716a2d5335372e578f
4
+ data.tar.gz: 2b2a088ce612c28f60903dfa96358667670510fc
5
+ SHA512:
6
+ metadata.gz: 1436fd557def6b21e0a94be17fe06d8b91a04b7ad70e80d23441529724a9eb8561d668b987d4e5afd1eb2bad48b9335bede7a3b4b96d12eb29dceb1a14256669
7
+ data.tar.gz: c845fc9a092ae2012b3870d884e10964ba814526045c4b1b334c6c606f9113052e663a10cac598776b802d7d92d09da139bf7e1a05dce9bf660d05eeb915970f
data/.rabbit ADDED
@@ -0,0 +1,2 @@
1
+ --allotted-time 10m
2
+ groonga-meetup-20140129.rab
@@ -0,0 +1,22 @@
1
+ = Groongaを支える取り組み
2
+
3
+ == For author
4
+
5
+ === Show
6
+
7
+ rake
8
+
9
+ === Publish
10
+
11
+ rake publish
12
+
13
+ == For viewers
14
+
15
+ === Install
16
+
17
+ gem install rabbit-slide-kenhys-groonga-meetup-20140129
18
+
19
+ === Show
20
+
21
+ rabbit rabbit-slide-kenhys-groonga-meetup-20140129.gem
22
+
@@ -0,0 +1,17 @@
1
+ require "rabbit/task/slide"
2
+
3
+ # Edit ./config.yaml to customize meta data
4
+
5
+ spec = nil
6
+ Rabbit::Task::Slide.new do |task|
7
+ spec = task.spec
8
+ # task.spec.files += Dir.glob("doc/**/*.*")
9
+ # task.spec.files -= Dir.glob("private/**/*.*")
10
+ # task.spec.add_runtime_dependency("YOUR THEME")
11
+ end
12
+
13
+ desc "Tag #{spec.version}"
14
+ task :tag do
15
+ sh("git", "tag", "-a", spec.version.to_s, "-m", "Publish #{spec.version}")
16
+ sh("git", "push", "--tags")
17
+ end
@@ -0,0 +1,18 @@
1
+ ---
2
+ id: groonga-meetup-20140129
3
+ base_name: groonga-meetup-20140129
4
+ tags: []
5
+ presentation_date: 2014/01/29
6
+ version: 2014.01.29.1
7
+ licenses: []
8
+ slideshare_id: groonga-meetup-20140129
9
+ speaker_deck_id:
10
+ ustream_id:
11
+ vimeo_id:
12
+ author:
13
+ markup_language:
14
+ name: HAYASHI Kentaro
15
+ email: hayashi@clear-code.com
16
+ rubygems_user: kenhys
17
+ slideshare_user: kenhys
18
+ speaker_deck_user:
@@ -0,0 +1,159 @@
1
+ = Groonga meetup #1
2
+
3
+ : author
4
+ 林健太郎
5
+ : institution
6
+ クリアコード
7
+ : content-source
8
+ Groonga meetup
9
+ : date
10
+ 2014/01/29
11
+ : allotted-time
12
+ 7m
13
+ : theme
14
+ .
15
+
16
+ = 発表の内容
17
+
18
+ * 今月のGroonga
19
+ * 今月のMroonga
20
+ * ドキュメントの話
21
+ * もくもく作業の話
22
+
23
+ = 今月のGroonga(1)
24
+
25
+ * Groonga 3.1.2
26
+ * ロックタイムアウトをカスタマイズ可
27
+ * コンパイル時に指定
28
+ * 動的には変更する手段はない
29
+
30
+ = 今月のGroonga(2)
31
+
32
+ * GRN_JA_SKIP_SAME_VALUE_PUT
33
+ * 標準で有効になりました
34
+ * 同じ値による更新で肥大化しないように
35
+
36
+ = 今月のGroonga(3)
37
+
38
+ * 検索のとりこぼしの改善
39
+ * ネストしたインデックス & 複数キーワードによる絞り込み
40
+
41
+ select Memos \
42
+ --match_columns "title || content || owner.name" \
43
+ --query "Alice Rroonga" \
44
+ --output_columns '_key'
45
+
46
+ # load --table Users
47
+ # [
48
+ # {"_key": "alice", "name": "Alice"},
49
+ # {"_key": "bob", "name": "Bob"},
50
+ # {"_key": "carlos", "name": "Carlos"}
51
+ # ]
52
+
53
+ # load --table Memos
54
+ # [
55
+ # {"_key": "alice1", "owner": "alice",
56
+ # "title": "Groonga", "content": "Groonga is full text search engine."},
57
+ # {"_key": "alice2", "owner": "alice",
58
+ # "title": "Rroonga", "content": "Rroonga is the Ruby bindings of Groonga."},
59
+ # {"_key": "bob1", "owner": "bob",
60
+ # "title": "Mroonga", "content": "Mroonga is a MySAL storage engine based on Groonga."}
61
+ # ]
62
+
63
+ = 今月のGroonga(4)
64
+
65
+ * よりECMAScriptっぽく
66
+ * snippet_htmlでフォールバック値を指定できるように
67
+ * snippet_html(XXX) || 'default'
68
+
69
+ = 今月のMroonga
70
+
71
+ * Mroonga 3.12
72
+ * ロックタイムアウトをカスタマイズ可
73
+ * SET GLOBALで動的には変更可
74
+ * WプラグマをTritonn互換に
75
+ * 0 -> 1オリジンへ変更
76
+ * セクションの重みは 0 -> 1へ変更
77
+
78
+ = Groongaのドキュメント(1)
79
+
80
+ * Sphinxの国際化機能を使って
81
+ * 原稿はReStructuredTextベースで
82
+ * 翻訳をおなじみgettextで
83
+ * poの位置情報がじゃまくさい
84
+
85
+ = Groongaのドキュメント(2)
86
+
87
+ * poの位置情報がじゃまくさい
88
+ * Sphinx issue #1183 同じこと思っている人がいた
89
+ * Sphinxを修正
90
+ * uuidを出力しない
91
+ * location情報を出力しない
92
+ * あとでレポートする予定
93
+
94
+ = 今月のgroonga-gobject(1)
95
+
96
+ * 1.0.0 リリース
97
+ * いろんな言語からGroonga叩けるよ
98
+ * GObject Introspectionを使っていろいろな言語からGroongaを使う方法
99
+ * http://qiita.com/groonga/items/71b145b37d77bd160bf2
100
+
101
+ = 今月のgroonga-gobject(2)
102
+
103
+ * 対応ディストリビューション
104
+ * Debian wheezy以降
105
+ * Ubuntu 12.10(Quantal)以降
106
+ * CentOSは対象外
107
+ * gobject-introspectionのパッケージない
108
+
109
+ = 今月のgroonga-gobject(2)
110
+
111
+ * パッケージでらくらくインストール
112
+ * sudo apt-get install gir1.2-groonga
113
+ * sudo apt-get install libgroonga-gobject0
114
+
115
+ = 来月のGroonga/Mroonga
116
+
117
+ * メジャーバージョンアップ
118
+ * 3.x -> 4.x
119
+ * 中国語のトークナイザーのバンドル?
120
+ * Friso https://code.google.com/p/friso/
121
+
122
+ = もくもく作業の話
123
+
124
+ * ドキュメントの表記の統一
125
+ * リファレンスコマンドの修正
126
+ * 週刊Groongaの翻訳
127
+
128
+ = groongaからGroongaへ(1)
129
+
130
+ * ドキュメントの表記の統一が不完全
131
+ * 手伝ってくれる人募集してます!
132
+ * yokuさんやcosmo0920さんの協力
133
+ * http://groonga.org/ja/blog/2013/10/30/use-capitalized-notation.html
134
+ * http://mroonga.org/ja/blog/2013/10/30/use-capitalized-notation.html
135
+
136
+ = groongaからGroongaへ(2)
137
+
138
+ * ドキュメントの表記の統一が不完全
139
+ * Sphinxを使ったドキュメントの修正
140
+ * ウェブサイトのHTMLの修正
141
+
142
+ = コマンドのドキュメント
143
+
144
+ * フォーマットの新旧混在を統一したい
145
+ * 手伝ってくれる人募集してます!
146
+ * http://groonga.org/ja/blog/2013/08/12/reference-command-documentation.html
147
+ * Sphinxを使ったドキュメントの修正
148
+
149
+ = 週刊Groongaの翻訳
150
+
151
+ * 記事を翻訳して海外展開?
152
+ * blogroongaに英語版を用意して情報発信
153
+ * 手伝ってくれる人募集してます!
154
+ * http://groonga.org/ja/blog/2013/07/22/qiita-translation.html
155
+
156
+ = 感謝
157
+
158
+ * WEICさんありがとうございます!
159
+ * 会場提供
metadata ADDED
@@ -0,0 +1,63 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rabbit-slide-kenhys-groonga-meetup-20140129
3
+ version: !ruby/object:Gem::Version
4
+ version: 2014.01.29.1
5
+ platform: ruby
6
+ authors:
7
+ - HAYASHI Kentaro
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-01-31 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rabbit
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 2.0.2
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 2.0.2
27
+ description: ''
28
+ email:
29
+ - hayashi@clear-code.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".rabbit"
35
+ - config.yaml
36
+ - Rakefile
37
+ - README.rd
38
+ - groonga-meetup-20140129.rab
39
+ - pdf/groonga-meetup-20140129-groonga-meetup-20140129.pdf
40
+ homepage: http://slide.rabbit-shocker.org/authors/kenhys/groonga-meetup-20140129/
41
+ licenses: []
42
+ metadata: {}
43
+ post_install_message:
44
+ rdoc_options: []
45
+ require_paths:
46
+ - lib
47
+ required_ruby_version: !ruby/object:Gem::Requirement
48
+ requirements:
49
+ - - ">="
50
+ - !ruby/object:Gem::Version
51
+ version: '0'
52
+ required_rubygems_version: !ruby/object:Gem::Requirement
53
+ requirements:
54
+ - - ">="
55
+ - !ruby/object:Gem::Version
56
+ version: '0'
57
+ requirements: []
58
+ rubyforge_project:
59
+ rubygems_version: 2.0.14
60
+ signing_key:
61
+ specification_version: 4
62
+ summary: Groongaを支える取り組み
63
+ test_files: []