rabbit-slide-nari-kirishima-stop-using-ruby 2013.03.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.rabbit +1 -0
- data/README.rd +25 -0
- data/Rakefile +9 -0
- data/config.yaml +19 -0
- data/images/Screenshot from 2013-02-26 09:03:40.png +0 -0
- data/images/_zzak.png +0 -0
- data/images/atcoder_00.jpg +0 -0
- data/images/atcorder_log.png +0 -0
- data/images/barhuman.png +0 -0
- data/images/brushup-logo.png +0 -0
- data/images/code_comu_00.png +0 -0
- data/images/code_comu_01.png +0 -0
- data/images/code_comu_02.png +0 -0
- data/images/code_smell.png +0 -0
- data/images/github_amatsuda_00.png +0 -0
- data/images/github_graph.png +0 -0
- data/images/github_nari_00.png +0 -0
- data/images/github_nari_01.png +0 -0
- data/images/gomi_00.jpg +0 -0
- data/images/how-design-is-made.jpg +0 -0
- data/images/hunter_hunter_shime.png +0 -0
- data/images/icfpc_00.jpg +0 -0
- data/images/icfpc_01.jpg +0 -0
- data/images/icfpc_03.jpg +0 -0
- data/images/jojo_akogare.png +0 -0
- data/images/junk.jpg +0 -0
- data/images/kirishima_bushitu.png +0 -0
- data/images/kirishima_captain00.png +0 -0
- data/images/kirishima_captain01.png +0 -0
- data/images/kirishima_chokai.png +0 -0
- data/images/kirishima_company.png +0 -0
- data/images/kirishima_eiga_00.png +0 -0
- data/images/kirishima_eiga_01.png +0 -0
- data/images/kirishima_eiga_03.png +0 -0
- data/images/kirishima_eiga_04.png +0 -0
- data/images/kirishima_eiga_05.png +0 -0
- data/images/kirishima_eiga_06.png +0 -0
- data/images/kirishima_hiroki.png +0 -0
- data/images/kirishima_poster.jpg +0 -0
- data/images/kirishima_reader_hiroki00.png +0 -0
- data/images/kirishima_reader_hiroki01.png +0 -0
- data/images/kirishima_schoolhouse.jpg +0 -0
- data/images/kirishima_shime.png +0 -0
- data/images/kirishima_unknown.jpg +0 -0
- data/images/m_seki.jpg +0 -0
- data/images/mame.jpg +0 -0
- data/images/mame_matz_tak.jpg +0 -0
- data/images/matz_00.jpg +0 -0
- data/images/matz_shime_00.png +0 -0
- data/images/perfume.jpg +0 -0
- data/images/perfume_dev_01.png +0 -0
- data/images/perfume_dev_02.png +0 -0
- data/images/rabbit_pull_video.png +0 -0
- data/images/rabbit_pull_video_01.png +0 -0
- data/images/rabbit_pull_video_02.png +0 -0
- data/images/rockstar.jpg +0 -0
- data/images/ruby_commiters.png +0 -0
- data/images/tak.png +0 -0
- data/images/tak_00.jpg +0 -0
- data/images/tak_01.png +0 -0
- data/images/tak_02.png +0 -0
- data/images/tak_03.png +0 -0
- data/images/tak_04.png +0 -0
- data/images/tak_05.png +0 -0
- data/images/title-logo.png +0 -0
- data/images/unuseless_application.jpg +0 -0
- data/images/why_here.jpg +0 -0
- data/images/yhara_00.jpg +0 -0
- data/kirishima-stop-using-ruby.rab +1425 -0
- data/pdf/kirishima-stop-using-ruby-kirishima-stop-using-ruby.pdf +0 -0
- metadata +134 -0
data/.rabbit
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
kirishima-stop-using-ruby.rab
|
data/README.rd
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
= 桐島、Rubyやめるってよ
|
2
|
+
|
3
|
+
本セッションでは「プログラミングへ向き合い方」ということについて発表者なりに考察した結果を述べます。
|
4
|
+
スゴイ級のプログラマからプログラミングのエモい話を拝聴することはあり、それも非常に興味深いのですが、私のような平凡なプログラマの視点からも少し提案できることがあるのではないかなあと考えている次第です。
|
5
|
+
|
6
|
+
== For author
|
7
|
+
|
8
|
+
=== Show
|
9
|
+
|
10
|
+
rake
|
11
|
+
|
12
|
+
=== Publish
|
13
|
+
|
14
|
+
rake publish
|
15
|
+
|
16
|
+
== For viewers
|
17
|
+
|
18
|
+
=== Install
|
19
|
+
|
20
|
+
gem install rabbit-slide-nari-kirishima-stop-using-ruby
|
21
|
+
|
22
|
+
=== Show
|
23
|
+
|
24
|
+
rabbit rabbit-slide-nari-kirishima-stop-using-ruby.gem
|
25
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
require "rabbit/task/slide"
|
2
|
+
|
3
|
+
# Edit ./config.yaml to customize meta data
|
4
|
+
|
5
|
+
Rabbit::Task::Slide.new do |task|
|
6
|
+
# task.spec.files += Dir.glob("doc/**/*.*")
|
7
|
+
# task.spec.files -= Dir.glob("private/**/*.*")
|
8
|
+
# task.spec.add_runtime_dependency("YOUR THEME")
|
9
|
+
end
|
data/config.yaml
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
---
|
2
|
+
id: kirishima-stop-using-ruby
|
3
|
+
base_name: kirishima-stop-using-ruby
|
4
|
+
title: 桐島、Rubyやめるってよ
|
5
|
+
tags:
|
6
|
+
- ruby
|
7
|
+
presentation_date: 2013/3/16
|
8
|
+
version: 2013.03.16
|
9
|
+
licenses: ["MIT-LICENSE"]
|
10
|
+
slideshare_id: kirishima-stop-using-ruby
|
11
|
+
speaker_deck_id:
|
12
|
+
ustream_id:
|
13
|
+
vimeo_id:
|
14
|
+
author:
|
15
|
+
markup_language: :rd
|
16
|
+
name: Narihiro Nakamura
|
17
|
+
email: authornari@gmail.com
|
18
|
+
rubygems_user: nari
|
19
|
+
slideshare_user: authorNari
|
Binary file
|
data/images/_zzak.png
ADDED
Binary file
|
Binary file
|
Binary file
|
data/images/barhuman.png
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/images/gomi_00.jpg
ADDED
Binary file
|
Binary file
|
Binary file
|
data/images/icfpc_00.jpg
ADDED
Binary file
|
data/images/icfpc_01.jpg
ADDED
Binary file
|
data/images/icfpc_03.jpg
ADDED
Binary file
|
Binary file
|
data/images/junk.jpg
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/images/m_seki.jpg
ADDED
Binary file
|
data/images/mame.jpg
ADDED
Binary file
|
Binary file
|
data/images/matz_00.jpg
ADDED
Binary file
|
Binary file
|
data/images/perfume.jpg
ADDED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
data/images/rockstar.jpg
ADDED
Binary file
|
Binary file
|
data/images/tak.png
ADDED
Binary file
|
data/images/tak_00.jpg
ADDED
Binary file
|
data/images/tak_01.png
ADDED
Binary file
|
data/images/tak_02.png
ADDED
Binary file
|
data/images/tak_03.png
ADDED
Binary file
|
data/images/tak_04.png
ADDED
Binary file
|
data/images/tak_05.png
ADDED
Binary file
|
Binary file
|
Binary file
|
data/images/why_here.jpg
ADDED
Binary file
|
data/images/yhara_00.jpg
ADDED
Binary file
|