rabbit-slide-kou-rubykaigi-2018 2018.6.1.0 → 2018.6.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0fb47212fe484822ad115b9e189a7055043c6021ecb66fba3643aea51e50271c
4
- data.tar.gz: ef98084992f94667284d37c06c69ee4be810083632765f54ffe93556120fb030
3
+ metadata.gz: eea385a2a69f99086da42d17600918cf24ad6c3f1344fd41bace4b0278413d9b
4
+ data.tar.gz: 8903678d1c63784e45e17518211ac6f873dff6de83be64f8c1daeafcdf27ad7a
5
5
  SHA512:
6
- metadata.gz: db96201dadb0ee4fe1833676cb876973fa79bf31b0e18d44b9dbfd83eb4e60b47d90147c4bfce6d79c423b0050ceac5c74f66502f94bf0bc1ca213d377cecaad
7
- data.tar.gz: 8e9f2df982cf732242908bf1213aeb2ecb82c4efa1e0981af944465dab528ae9612a08c72fd3e3b35004e5faa564b4f777e6c95643bdaaca530357dc6dcb2c55
6
+ metadata.gz: 8b07f9b75497ecd2af9c8df215f8eaf23801ac6984b1bc1a27138904d755f23447c14037daeb89a6609be8d4280ee8cb1f9265b32fdc600cc9ed764e4d4df2be
7
+ data.tar.gz: e2d54f9e1128b19e73bc3879ec45bad0522852db37cd8fd801e4ce83d284f03b5f1057b54372465e02014c2a72d9699067175e0a856be59644b09e232b59ef1a
@@ -5,7 +5,7 @@ tags:
5
5
  - rabbit
6
6
  - rubykaigi
7
7
  presentation_date: 2018-06-01
8
- version: 2018.6.1.0
8
+ version: 2018.6.1.1
9
9
  licenses:
10
10
  - CC-BY-SA-4.0
11
11
  slideshare_id:
Binary file
@@ -61,11 +61,6 @@ Overview\n
61
61
  About 130\n
62
62
  (('note:130くらい'))
63
63
 
64
- = How to find targets?\n(('note:そんなにネタがあるの?'))
65
-
66
- Just I needed\n
67
- (('note:単に自分が必要だったから'))
68
-
69
64
  = Today's topic\n(('note:今日の話題'))
70
65
 
71
66
  Overview\n
@@ -73,7 +68,7 @@ what we can do\n
73
68
  ((*with Ruby*))\n
74
69
  (('note:Rubyでできるようになったことをたくさん紹介'))
75
70
 
76
- = Category1\n(('note:分類1'))
71
+ = Opening1\n(('note:きっかけ1'))
77
72
 
78
73
  Web feed\n
79
74
  (('note:Webフィード'))
@@ -229,7 +224,7 @@ This is a challenge\n
229
224
  * Found what lacks in REXML API\n
230
225
  (('note:REXMLのAPIに足りないものはなにか考えた'))
231
226
 
232
- = REXML - Future1\n(('note:機能1'))
227
+ = REXML - Future1\n(('note:未来1'))
233
228
 
234
229
  Introduce NodeSet\n
235
230
  (('note:NodeSetが足りないんじゃないか'))
@@ -238,10 +233,11 @@ Introduce NodeSet\n
238
233
 
239
234
  # coderay ruby
240
235
  doc.
241
- search("//item"). # => NodeSet
242
- text # All texts in <item>
236
+ search("//list"). # => NodeSet
237
+ search("item"). # => All <item> in <list>
238
+ text # All texts in <item> in <list>
243
239
 
244
- = REXML - Future2\n(('note:機能2'))
240
+ = REXML - Future2\n(('note:未来2'))
245
241
 
246
242
  Support\n
247
243
  CSS Selectors\n
@@ -252,7 +248,7 @@ CSS Selectors\n
252
248
  # coderay ruby
253
249
  doc.css_select("ul li, dl dt")
254
250
 
255
- = REXML - Future3\n(('note:機能3'))
251
+ = REXML - Future3\n(('note:未来3'))
256
252
 
257
253
  Support\n
258
254
  HTML5 support\n
@@ -273,7 +269,7 @@ HTML5 support\n
273
269
  * Do you want to work with me?\n
274
270
  (('note:一緒にやりたい人はいる?'))
275
271
 
276
- = Category2\n(('note:分類1'))
272
+ = Opening2\n(('note:きっかけ1'))
277
273
 
278
274
  Presentation\n
279
275
  (('note:プレゼンテーション'))
@@ -391,7 +387,7 @@ all features\n
391
387
 
392
388
  * Rabbit is important\n
393
389
  (('note:Rabbitは大事だけど'))
394
- * Increasing what Ruby can is also important\n
390
+ * Increasing what Ruby can is important too\n
395
391
  (('note:Rubyでできることを増やすのも大事'))
396
392
 
397
393
  = GTK+ 3 - Size\n(('note:サイズ'))
@@ -447,6 +443,33 @@ at run-time\n
447
443
  : enable-title-on-image
448
444
  false
449
445
 
446
+ = Performance(('note:(性能)'))
447
+
448
+ * Slower than handwriting\n
449
+ (('note:手書きより遅い'))
450
+ * Overhead\n
451
+ (('note:オーバーヘッド'))
452
+ * Dynamic arguments conversion\n
453
+ (('note:動的な引数の変換'))
454
+ * libffi based function call\n
455
+ (('note:libffiを使った関数呼び出し'))
456
+
457
+ = Improve idea(('note:(改善案)'))
458
+
459
+ JIT
460
+
461
+ = JIT
462
+
463
+ # coderay c
464
+
465
+ VALUE rb_method_generic() {
466
+ func = dlsym(name); ...
467
+ ffi_call(func, ..., &result);
468
+ return C2RB(result);
469
+ } ↓
470
+ // Build rb_method() at run-time and call it.
471
+ VALUE rb_method() {return C2RB(name(...));}
472
+
450
473
  = Ruby/GI - See also\n(('note:参考情報'))
451
474
 
452
475
  * "How to create bindings 2016" at RubyKaigi 2016\n
@@ -593,7 +616,7 @@ Audio/Video player\n
593
616
  end # Main loop
594
617
  pipeline.stop
595
618
 
596
- = Face detection\n(('note:顔認識'))
619
+ = Face detection(('note:(顔認識)'))
597
620
 
598
621
  # coderay ruby
599
622
 
@@ -701,10 +724,10 @@ PDF output\n
701
724
 
702
725
  (('tag:margin-bottom * 18'))
703
726
 
704
- = Easy to install\n(('note:簡単インストール'))
727
+ = What's needed for presentation tool?\n(('note:プレゼンツールに必要なもの'))
705
728
 
706
- Important\n
707
- (('note:大事'))
729
+ Easy to install\n
730
+ (('note:簡単インストール'))
708
731
 
709
732
  = native-package-installer
710
733
 
@@ -750,7 +773,7 @@ cross compile\n
750
773
  I became the maintainer\n
751
774
  (('note:私がメンテナーになった'))
752
775
 
753
- = Category3\n(('note:分類3'))
776
+ = Opening3\n(('note:きっかけ3'))
754
777
 
755
778
  Test\n
756
779
  (('note:テスト'))
@@ -871,7 +894,7 @@ RR integration\n
871
894
  stub(adder).add(1, 2) {3}
872
895
  adder.add(1, 2) # => 3
873
896
 
874
- = Category4\n(('note:分類4'))
897
+ = Opening4\n(('note:きっかけ4'))
875
898
 
876
899
  Full text search\n
877
900
  (('note:全文検索'))
@@ -1305,39 +1328,6 @@ groonga-client\n
1305
1328
  * (('tag:xx-small'))
1306
1329
  ((<URL:http://www.clear-code.com/blog/2016/12/22.html>))
1307
1330
 
1308
- = Groonga
1309
-
1310
- mruby embedded\n
1311
- full text search engine\n
1312
- (('note:mruby組込の全文検索エンジン'))
1313
-
1314
- = How mruby is used?\n(('note:mrubyの使い方'))
1315
-
1316
- * Optimizer\n
1317
- (('note:オプティマイザー'))
1318
- * Custom command\n
1319
- (('note:カスタムコマンド'))
1320
-
1321
- = Custom command\n(('note:カスタムコマンド'))
1322
-
1323
- # coderay ruby
1324
-
1325
- module Sharding
1326
- class LogicalSelectCommand < Groonga::Command
1327
- # ...
1328
- end
1329
- end
1330
-
1331
- = Use cases\n(('note:利用例'))
1332
-
1333
- * Redmine plugin\n
1334
- (('note:Redmineのプラグイン'))
1335
- * (('tag:x-small'))
1336
- Repository: ((<URL:https://github.com/clear-code/redmine_full_text_search>))
1337
- * (('tag:x-small'))
1338
- Slide (in Japanese): ((<URL:https://slide.rabbit-shocker.org/authors/kou/redmine-tokyo-12/>))
1339
- * ...
1340
-
1341
1331
  = Ranguba (WIP)(('note:(開発中)'))
1342
1332
 
1343
1333
  Full text search system\n
@@ -1357,7 +1347,7 @@ Full text search system\n
1357
1347
  * Crawlers\n
1358
1348
  (('note:クローラー'))
1359
1349
  * Web UI
1360
- * CLI
1350
+ * Command line interface
1361
1351
  * Update documents\n
1362
1352
  (('note:更新'))
1363
1353
  * Search documents\n
@@ -1380,7 +1370,7 @@ Text extractor\n
1380
1370
 
1381
1371
  * HTTP
1382
1372
  * Web UI
1383
- * CLI
1373
+ * Command line interface
1384
1374
  * API (Library)
1385
1375
 
1386
1376
  = Install - Docker
@@ -1418,8 +1408,8 @@ Commit e-mail for Git\n
1418
1408
  (('note:HTMLメール'))
1419
1409
  * Highlighted diff\n
1420
1410
  (('note:diffをハイライト'))
1421
- * GitLab/GitHub Web hook support\n
1422
- (('note:GitLab/GitHubのWebフックをサポート'))
1411
+ * GitLab/GitHub Web hook\n
1412
+ (('note:GitLab/GitHubのWebフック対応'))
1423
1413
  * (('tag:xx-small'))
1424
1414
  By ((<"GitHub:clear-code/github-web-hooks-receiver"|URL:https://github.com/clear-code/github-web-hooks-receiver>))
1425
1415
 
@@ -1447,7 +1437,7 @@ Service\n
1447
1437
 
1448
1438
  (('note:See also ((<URL:http://www.commit-email.info/>))'))
1449
1439
 
1450
- = Category5\n(('note:分類5'))
1440
+ = Opening5\n(('note:きっかけ5'))
1451
1441
 
1452
1442
  Data processing\n
1453
1443
  (('note:データ処理'))
@@ -1502,6 +1492,17 @@ Apache Arrow Ruby
1502
1492
  * Easy to share data with Python, Java, ...\n
1503
1493
  (('note:PythonやJavaなどとデータ交換がしやすい'))
1504
1494
 
1495
+ = Performance(('note:(性能)'))
1496
+
1497
+ # image
1498
+ # src = images/csv-arrow.pdf
1499
+ # relative_width = 100
1500
+
1501
+ == Slide properties
1502
+
1503
+ : enable-title-on-image
1504
+ false
1505
+
1505
1506
  = Apache Arrow - Position\n(('note:立ち位置'))
1506
1507
 
1507
1508
  * A very important peace\n
@@ -1517,6 +1518,41 @@ Apache Arrow Ruby
1517
1518
  * Auto generated bindings\n
1518
1519
  (('note:バインディングを自動生成'))
1519
1520
 
1521
+ = Extendable load API\n(('note:拡張可能なロードAPI'))
1522
+
1523
+ # coderay ruby
1524
+
1525
+ # Load Apache Arrow data
1526
+ Arrow::Table.load("iris.arrow")
1527
+ # Load CSV data
1528
+ Arrow::Table.load("iris.csv")
1529
+ # Load Apache Parquet data
1530
+ Arrow::Table.load("iris.parquet")
1531
+
1532
+ = Apache Parquet
1533
+
1534
+ * Super fast data format\n
1535
+ (('note:すごく速いデータフォーマット'))
1536
+ * For storing analysis target data\n
1537
+ (('note:解析対象のデータを保存する用'))
1538
+ * Widely used\n
1539
+ (('note:広く使われている'))
1540
+
1541
+ = Performance(('note:(性能)'))
1542
+
1543
+ # image
1544
+ # src = images/csv-arrow-parquet.pdf
1545
+ # relative_width = 100
1546
+
1547
+ == Slide properties
1548
+
1549
+ : enable-title-on-image
1550
+ false
1551
+
1552
+ = Red Parquet
1553
+
1554
+ Apache Parquet
1555
+
1520
1556
  = Red Data Tools
1521
1557
 
1522
1558
  A project to make Ruby data processable\n
@@ -1525,13 +1561,15 @@ A project to make Ruby data processable\n
1525
1561
  = Red Data Tools - History\n(('note:歴史'))
1526
1562
 
1527
1563
  * 2017-02: Start(('note:(開始)'))
1528
- * 2017-11-: Develop events per month at Tokyo at Speee. Inc,\n
1529
- (('note:東京のSpeeeさんで毎月開発イベントを開催'))
1564
+ * 2017-11-: Develop events per month at Tokyo\n
1565
+ (('note:東京で毎月開発イベントを開催'))
1530
1566
 
1531
1567
  = The number of products\n(('note:プロダクト数'))
1532
1568
 
1533
1569
  About 20\n
1534
- (('note:20くらい'))
1570
+ (('note:including Red Arrow and Red Parquet'))\n
1571
+ (('note:20くらい'))\n
1572
+ (('note:Red ArrowやRed ParquetもRed Data Toolsプロダクツ'))
1535
1573
 
1536
1574
  = Red Datasets
1537
1575
 
@@ -1566,9 +1604,11 @@ Dataset fetcher\n
1566
1604
  content: page.revision.text)
1567
1605
  end
1568
1606
  ruby_pages = pages.select do |record|
1569
- record.match("Ruby")
1607
+ record.match("Ruby OR Rails") do |target|
1608
+ (target.title * 10) | target.content
1609
+ end
1570
1610
  end
1571
- p ruby_pages.n_hits
1611
+ p ruby_pages.size
1572
1612
 
1573
1613
  = jekyll-jupyter-notebook
1574
1614
 
@@ -1616,7 +1656,7 @@ Computer vision\n
1616
1656
  * Auto generated bindings\n
1617
1657
  (('note:バインディングを自動生成'))
1618
1658
 
1619
- = Ad: RubyData Workshop\n(('note:宣伝:RubyDataワークショップ'))
1659
+ = Ad: RubyData Workshop
1620
1660
 
1621
1661
  * 2018-06-01 15:50/17:20
1622
1662
  * Contents:(('note:(内容)'))
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rabbit-slide-kou-rubykaigi-2018
3
3
  version: !ruby/object:Gem::Version
4
- version: 2018.6.1.0
4
+ version: 2018.6.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kouhei Sutou
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-05-27 00:00:00.000000000 Z
11
+ date: 2018-05-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rabbit
@@ -61,6 +61,8 @@ files:
61
61
  - images/cairo-no-gc-trigger.pdf
62
62
  - images/clear-code-rubykaigi-2018-silver-sponsor.png
63
63
  - images/code-party.png
64
+ - images/csv-arrow-parquet.pdf
65
+ - images/csv-arrow.pdf
64
66
  - images/jekyll-task-i18n-red-data-tools.gif
65
67
  - images/pdf-clickable.png
66
68
  - images/rabbit-slide-show.png