├── README.md ├── aggregate.rb ├── apache-arrow-tokyo-meetup-2018 ├── README.md └── feedback │ ├── 284km.yaml │ ├── 515hikaru.yaml │ ├── Doarakko.yaml │ ├── README.md │ ├── aajisaka.yaml │ ├── achirala8.yaml │ ├── amaya382.yaml │ ├── c-bata.yaml │ ├── joker1007.yaml │ ├── miorgash.yaml │ ├── moomindani.yaml │ ├── moriyoshi.yaml │ ├── mrkn.yaml │ ├── naitoh.yaml │ ├── ngr-t.yaml │ ├── nsiena.yaml │ ├── sekikn.yaml │ ├── shiro615.yaml │ ├── sinhrks.yaml │ ├── tasanuma.yaml │ ├── template.yaml │ ├── termoshtt.yaml │ └── watson1978.yaml ├── rubydata-tokyo-meetup-2018 ├── README.md └── feedback │ ├── README.md │ └── template.yaml ├── rubykaigi-2018 ├── README.md └── feedback │ ├── 284km.yaml │ ├── HaruoNakachi.yaml │ ├── MITSUBOSHI.yaml │ ├── README.md │ ├── ShoheiMitani.yaml │ ├── aggregate.rb │ ├── aike.yaml │ ├── alpaca-tc.yaml │ ├── at-grandpa.yaml │ ├── bluerabbit.yaml │ ├── bussorenre.yaml │ ├── chisso.yaml │ ├── corselia.yaml │ ├── cuzic.yaml │ ├── elcondor.yaml │ ├── fohte.yaml │ ├── fujimura.yaml │ ├── gorlemkun.yaml │ ├── happyk514.yaml │ ├── hatappi.yaml │ ├── hisamura333.yaml │ ├── hkdnet.yaml │ ├── hoshinotsuyoshi.yaml │ ├── imaz.yaml │ ├── jemiam.yaml │ ├── kazu9su.yaml │ ├── ken1flan.yaml │ ├── komagata.yaml │ ├── mizukmb.yaml │ ├── mrkn.yaml │ ├── naitoh.yaml │ ├── nao0515ki.yaml │ ├── nontak.yaml │ ├── oda-i3.yaml │ ├── ota42y.yaml │ ├── rentalname.yaml │ ├── rilmayer.yaml │ ├── ruboty_team.jpg │ ├── rvillage.yaml │ ├── selmertsx.yaml │ ├── shugo.yaml │ ├── sinsoku.yaml │ ├── sonots.yaml │ ├── south37.yaml │ ├── takano32.yaml │ ├── template.yaml │ ├── tmtms.yaml │ ├── tomoasleep.yaml │ ├── uasi.yaml │ ├── unak.yaml │ ├── wagai.yaml │ ├── yancya.yaml │ ├── yhara.yaml │ ├── youchan.yaml │ ├── yugui.yaml │ ├── znz.yaml │ └── zom-yoshidan.yaml └── rubykaigi-2019 ├── README.md ├── feedback-summary.md └── feedback ├── 284km.yaml ├── MITSUBOSHI.yaml ├── Nyoho.yaml ├── README.md ├── UsaMomokawa.yaml ├── aycabta.yaml ├── chang-jun.yaml ├── chinatz.yaml ├── condor.yaml ├── h-akanuma.yaml ├── hachi8833.yaml ├── hanachin.yml ├── hoshinotsuyoshi.yaml ├── iberianpig.yml ├── ioquatix.yaml ├── jeremyevans.yaml ├── jinroq.yaml ├── kantarow.yml ├── ken3ypa.yaml ├── kirikak2.yaml ├── kozo2.yaml ├── kunitoo.yml ├── luccafort.yaml ├── makicamel.yaml ├── nyamadori.yaml ├── shiro615.yaml ├── sinsoku.yaml ├── st0012.yaml ├── template.yaml ├── tmtm.yaml ├── tomog105.yaml ├── watson1978.yaml ├── yahonda.yaml ├── yancya.yml ├── ybiquitous.yaml ├── youchan.yaml ├── yysaki.yaml └── znz.yaml /README.md: -------------------------------------------------------------------------------- 1 | # Code party(コード懇親会) 2 | 3 | * For [RubyKaigi 2019](rubykaigi-2019/) 4 | * For [Apache Arrow Tokyo Meetup 2018](apache-arrow-tokyo-meetup-2018/) 5 | * For [RubyData Tokyo Meetup](rubydata-tokyo-meetup-2018/) 6 | * For [RubyKaigi 2018](rubykaigi-2018/) 7 | -------------------------------------------------------------------------------- /aggregate.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | require "English" 4 | require "yaml" 5 | 6 | event = ARGV[0] 7 | if event.nil? 8 | puts("Usage: #{$0} event") 9 | puts(" e.g.: #{$0} rubykaigi-2019") 10 | exit(false) 11 | end 12 | 13 | questionnaires = {} 14 | Dir.chdir(__dir__) do 15 | Dir.glob("#{event}/feedback/*.yaml").sort.each do |yaml| 16 | case File.basename(yaml) 17 | when "template.yaml" 18 | next 19 | when /\.yaml\Z/ 20 | account = $PREMATCH 21 | begin 22 | questionnaires[account] = YAML.load(File.read(yaml)) 23 | rescue Psych::SyntaxError 24 | $stderr.puts("#{account}: syntax error: #{$!}") 25 | end 26 | end 27 | end 28 | end 29 | 30 | _, key_questionnairy = questionnaires.first 31 | key_questionnairy["questions"].each do |question, _| 32 | puts("-" * question.size) 33 | puts(question) 34 | puts("-" * question.size) 35 | questionnaires.each do |account, questionnairy| 36 | answer = questionnairy["questions"][question] 37 | if answer.is_a?(Array) 38 | puts("#{account}:") 39 | puts(answer.join("\n")) 40 | else 41 | puts("#{account}: #{answer}") 42 | end 43 | puts("=" * 40) 44 | end 45 | puts 46 | end 47 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/README.md: -------------------------------------------------------------------------------- 1 | # Code party(コード懇親会) 2 | 3 | [Apache Arrow東京ミートアップ2018](https://speee.connpass.com/event/103514/)の後半ではコードを軸にした懇親会を開催します。このミートアップは開発者を増やすことを目的にしています。参加者は開発に参加する気持ちがある人たち(なくはない人たち)です。今後、一緒に開発する(だろう)人たちです。その人たちと一緒にコードを読み書きしながら懇親するのがコード懇親会です。 4 | 5 | ミートアップの前半では情報収集をします。後半では、前半で集めた情報を元にこれから開発に参加したいプロダクトを1つ以上選んで最初の一歩を歩き出します。よくあるイベントではイベント後にそれぞれの参加者が個々に最初の一歩を歩き出しますが、このミートアップではイベント中に参加者同士が協力しながら最初の一歩を歩き出します。参加者の中にはあるプロダクトにすごく詳しい人も混ざっています。たとえば、Apache Arrowの開発者やApache Sparkの開発者やpandasの開発者やRubyの開発者などが混ざっています。詳しい人たちと一緒に最初の一歩を歩き出せればその後もうまく歩き続けられそうですよね。詳しい人たちがいなくても複数人で歩き出せればその後もうまく歩き続けられそうですよね。そんな機会を提供するのがコード懇親会です。 6 | 7 | ## Contents(内容) 8 | 9 | This is not a typical party. For familiar party, participants enjoy drinking and talking. At the code party, we will enjoy together while programming. 10 | 11 | これはよくある懇親会ではありません。よくある懇親会は参加者同士がお酒を飲みながら話をして交流します。コード懇親会は参加者同士が一緒にコードを読み書きしながら交流します。 12 | 13 | Because it is not a typical party, there may be people saying "Although it seems to be fun, I can not tell whether I will participate or not because I care about what it will become." 14 | So, in order to be able to imagine the contents of this code party, we have summarized some similar events, not doing things and doing things. 15 | 16 | よくある懇親会ではないので、「コードで懇親するのは楽しそうだけど、どういう内容になるかが気になって参加するかどうか判断できない」という人もいるでしょう。そこで、参加前にこの懇親会の内容をイメージできるように、似ている内容のイベント・やらないこと・やることをいくつかまとめました。 17 | 18 | If you have anything else you want to know please ask with the [issue](https://github.com/speee/code-party/issues). It is the same way as usual development! Because it's a code party! 19 | 20 | 他にも知りたいことがある人は [issue](https://github.com/speee/code-party/issues) で質問してください。普段の開発と同じやり方です!だって、これはコード懇親会ですから! 21 | 22 | 23 | ### Similar contents(似ている内容) 24 | 25 | The content of the code party is similar to "Sprint". In Python's event, We often see "Sprint". For example, there are [Development Sprints of PyCon 2018 in Cleveland, Ohio](https://us.pycon.org/2018/community/sprints/). 26 | Both Sprint and code party write code, but Sprint focuses on developing it, Code Party focuses on writing code and enjoying it. 27 | 28 | コード懇親会の内容は「スプリント」と似ています。Pythonのイベントでは「スプリント」をよくみかけます。たとえば、[PyCon JP 2017 in Tokyo のスプリント](https://pycon.jp/2017/ja/events/sprint/)がありました。 29 | スプリントもコード懇親会もコードを書きますが、スプリントは開発することにより注力し、コード懇親会は懇親することに注力します。 30 | 31 | 32 | The content of the code party is somewhat similar to "Hackathon". Both of them write the code, but there are the following differences. 33 | 34 | * Hackathon may be held for a long time, but the code party ends in the same amount of time (2 hours) as a typical party. 35 | * In Hackathon, we may review development results, but never review at code party. 36 | 37 | コード懇親会の内容は少し「ハッカソン」に似ています。どちらもコードを書きますが、次のような違いがあります。 38 | 39 | * ハッカソンは長時間開催されることがあるが、コード懇親会はよくある懇親会と同じくらいの時間(2時間)で終わる 40 | * ハッカソンでは開発成果を審査することがあるが、コード懇親会は決して審査しない 41 | 42 | 43 | ### What you do not do(やらないこと) 44 | 45 | The concept of code party is "you have the good first step". 46 | Therefore, at the code party, we will not "enrich with the usual way of writing code". For example, we do not prepare the following planning. (It is free for participants to do spontaneously with each other.) 47 | 48 | * Code Golf 49 | * Mob Programming 50 | 51 | このコード懇親会のコンセプトは「最初の一歩をいい感じに歩き始める」です。そのため、コード懇親会では「いつもと違うコードの書き方で盛り上げる」ことはしません。たとえば、次のような企画は用意しません。(参加者同士が自発的にやることは自由です。) 52 | 53 | * コードゴルフ 54 | * モブプログラミング 55 | 56 | ### What you do(やること) 57 | 58 | Participants write code as usual as a code party. To do so, proceed as follows. 59 | 60 | コード懇親会は参加者が選んだ「開発に参加したいプロダクト」のにコードを読み書きしながら懇親します。そのために、次のようなように進めます。 61 | 62 | 1. Create a group for each product 63 | * Example: mxnet.rb, PyCall, Apache Arrow, Red Data Tools, Red Chainer, Cumo, XND, rubyplot, Menoh-Ruby, Numo and so on. 64 | * What kind of group you can do depends on the participants (If you do not have it yet, make it new) 65 | * Desks and chairs are gathered for each group 66 | * To make code easy to write 67 | * Preparing N displays for each group 68 | * In order to make it easy to share PC screen 69 | * White board prepared for each group 70 | * For easier discussion 71 | 72 | プロダクトごとにグループを作る 73 | * 例:Apache Arrow, Apache Spark, Multiple-Dimension-Spread, R, pandas, Red Data Toolsなど 74 | * どんなグループができるかは参加者次第(まだなかったら新しく作る) 75 | * グループごとに机とイスがまとまっている 76 | * コードを書きやすくするため 77 | * 各グループにn個のディスプレイを用意 78 | * PCの画面を共有しやすくするため 79 | * 各グループにホワイトボードを用意 80 | * 相談しやすくするため 81 | 82 | 2. Participants join somewhere in the group 83 | * Group can be changed freely later, so feel free to decide 84 | * You can decide which group you want to join in advance, whichever you decide not to decide 85 | * You can talk to which group you would like to join on the day 86 | 87 | 参加者はなにかしらのグループに入る 88 | * グループはあとから自由に変更できるので気軽に決めてよい 89 | * 事前にどのグループに入りたいかは決めてきても決めてこなくてもどちらでもよい 90 | * 当日どのグループに入るのがよさそうか相談できる 91 | 92 | 3. Start developing while reading and writing the code together in the group 93 | * Main content (less than 2 hours) 94 | * Move to other group 95 | * Make it easier to understand what other groups are there 96 | * Example: Group map is prepared on the whiteboard 97 | * Food and drink prepared at the venue 98 | 99 | グループ内で一緒にコードを読み書きしながら開発に参加する最初の一歩を歩き出す 100 | * メインコンテンツ(2時間弱) 101 | * 他のグループに移動可能 102 | * 会場には他にどのようなグループがあるかわかりやすくなる仕組みを用意 103 | * 例:ホワイトボードにグループマップを用意 104 | * 会場には飲食物を用意 105 | 106 | 4. Submit a questionnaire 107 | * Submit the pull request on how the code party is in the end 108 | * Since it is a code party, submit a questionnaire as usual! 109 | * Refer to [feedback](feedback/) for the submission method 110 | 111 | アンケートを提出 112 | * 最後にこの会がどうだったかをプルリクエストで提出 113 | * コード懇親会なので、アンケートの提出もいつものように! 114 | * 提出方法は[feedback](feedback/)を参照 115 | 116 | ## ねらい 117 | 118 | Apache ArrowおよびApache Arrowを活用するとうれしくなりそうなプロダクトの開発者を増やすため、このミートアップ中に最初の一歩を踏み出すことを後押ししたい。 119 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/284km.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のライブラリーの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●● library, Ruby it was fun to write, etc.) 7 | | 8 | Yes. I learned how to execute unit tests of CSV parser(cpp implementation) and how to break these tests. 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Apache Arrow team (Red Data Tools team) 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | Yes, of cource. 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | (Answer) 23 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/515hikaru.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | # 最初の一歩を踏み出せましたか? 4 | # Did you start developing? 5 | | 6 | Yes 7 | groups: 8 | # どのグループに参加しましたか? 9 | # Which groups did you join? 10 | - Python 11 | next: 12 | # またコード懇親会があったら参加したいですか? 13 | # Do you want to participate if there is a code party? 14 | | 15 | Yes 16 | etc: 17 | # なにか思ったことがあれば自由に書いてください。 18 | # You can send any feedbacks to organizers. 19 | | 20 | 初心者向けIssueの探し方がわかってよかったです。データ処理ツールに限らず開発に参加できる気がしてきました。 21 | pandasの開発のこととか聴けてよかったです。 22 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/Doarakko.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | # 最初の一歩を踏み出せましたか? 4 | # Did you start developing? 5 | | 6 | Yes 7 | groups: 8 | # どのグループに参加しましたか? 9 | # Which groups did you join? 10 | - Pyhton 11 | next: 12 | # またコード懇親会があったら参加したいですか? 13 | # Do you want to participate if there is a code party? 14 | | 15 | Yes 16 | etc: 17 | # なにか思ったことがあれば自由に書いてください。 18 | # You can send any feedbacks to organizers. 19 | | 20 | ドキュメントやエラーメッセージの修正から初めてみます。 21 | 自分の興味のあるサービスの contributor の方と話せたのはとてもよかったです。 22 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/README.md: -------------------------------------------------------------------------------- 1 | # How to feedback(フィードバック方法) 2 | 3 | ## English 4 | 5 | 1. Fork this repository 6 | 2. Create a branch such as `apache-arrow-tokyo-meetup-2018-feedback` 7 | 3. Copy `apache-arrow-tokyo-meetup-2018/feedback/template.yaml` to `apache-arrow-tokyo-meetup-2018/feedback/#{your_github_account}.yaml` 8 | 4. Fill your answers against questions in `apache-arrow-tokyo-meetup-2018/feedback/#{your_github_account}.yaml` 9 | 5. Commit `apache-arrow-tokyo-meetup-2018/feedback/#{your_github_account}.yaml` 10 | 6. Push the branch 11 | 7. Send a pull request 12 | 13 | ## Japanese 14 | 15 | 1. このリポジトリーをフォーク 16 | 2. `apache-arrow-tokyo-meetup-2018-feedback`ようなブランチを作る 17 | 3. `apache-arrow-tokyo-meetup-2018/feedback/template.yaml`を`apache-arrow-tokyo-meetup-2018/feedback/#{your_github_account}.yaml`にコピー 18 | 4. `apache-arrow-tokyo-meetup-2018/feedback/#{your_github_account}.yaml`内の質問に回答 19 | 5. `apache-arrow-tokyo-meetup-2018/feedback/#{your_github_account}.yaml`をコミット 20 | 6. このブランチをpush 21 | 7. プルリクエストを作成 22 | 23 | ## Command line 24 | 25 | Fork this repository! 26 | 27 | ```console 28 | % git clone https://github.com/#{your_github_account}/code-party.git 29 | % cd code-party 30 | % git checkout -b apache-arrow-tokyo-meetup-2018-feedback 31 | % cp apache-arrow-tokyo-meetup-2018/feedback/template.yaml apache-arrow-tokyo-meetup-2018/feedback/#{your_github_account}.yaml 32 | % #{your_favorite_editor} apache-arrow-tokyo-meetup-2018/feedback/#{your_github_account}.yaml 33 | % git add apache-arrow-tokyo-meetup-2018/feedback/#{your_github_account}.yaml 34 | % git commit apache-arrow-tokyo-meetup-2018/feedback/#{your_github_account}.yaml 35 | % git push origin apache-arrow-tokyo-meetup-2018-feedback 36 | ``` 37 | 38 | Send a pull request! 39 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/aajisaka.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | # 最初の一歩を踏み出せましたか? 4 | # Did you start developing? 5 | | 6 | Yes 7 | groups: 8 | # どのグループに参加しましたか? 9 | # Which groups did you join? 10 | - Multiple Dimension Spread 11 | next: 12 | # またコード懇親会があったら参加したいですか? 13 | # Do you want to participate if there is a code party? 14 | | 15 | Yes 16 | etc: 17 | # なにか思ったことがあれば自由に書いてください。 18 | # You can send any feedbacks to organizers. 19 | | 20 | None 21 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/achirala8.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | # 最初の一歩を踏み出せましたか? 4 | # Did you start developing? 5 | | 6 | yes 7 | groups: 8 | # どのグループに参加しましたか? 9 | # Which groups did you join? 10 | - python 11 | next: 12 | # またコード懇親会があったら参加したいですか? 13 | # Do you want to participate if there is a code party? 14 | | 15 | yes 16 | etc: 17 | # なにか思ったことがあれば自由に書いてください。 18 | # You can send any feedbacks to organizers. 19 | | 20 | 普段忙しさにかまけて後回しにしがちなことが多いので、OSSに向き合う時間が取れて、とても良かった。 21 | 新鮮な形式の懇親会だった。日々少しずつでも進めていくキッカケにしたい。 22 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/amaya382.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | # 最初の一歩を踏み出せましたか? 4 | # Did you start developing? 5 | | 6 | 以前触って暫く離れていたので、1.5歩目くらいを踏み出せた 7 | groups: 8 | # どのグループに参加しましたか? 9 | # Which groups did you join? 10 | - Apache Arrow本体 11 | next: 12 | # またコード懇親会があったら参加したいですか? 13 | # Do you want to participate if there is a code party? 14 | | 15 | 参加したい 16 | etc: 17 | # なにか思ったことがあれば自由に書いてください。 18 | # You can send any feedbacks to organizers. 19 | | 20 | なかなかArrow周辺に踏み込むタイミングがなく、まとまった情報もあまり見つけられていなかったので良い機会だった 21 | gandiva周りを掘り下げてみたい 22 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/c-bata.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | # 最初の一歩を踏み出せましたか? 4 | # Did you start developing? 5 | | 6 | 踏み出せたと思います。。Apache Arrowのデータ表現について知ることが出来たのが大きかったです。 7 | またちょっとしたbug fixですがこちらも https://github.com/apache/arrow/pull/3129 8 | groups: 9 | # どのグループに参加しましたか? 10 | # Which groups did you join? 11 | - Apache Arrow 12 | next: 13 | # またコード懇親会があったら参加したいですか? 14 | # Do you want to participate if there is a code party? 15 | | 16 | 参加したい。 17 | etc: 18 | # なにか思ったことがあれば自由に書いてください。 19 | # You can send any feedbacks to organizers. 20 | | 21 | 普段だらけてしまうことも多いのですが、コード懇親会はなにか自分もやらないとなという緊張感があっていい機会でした。 22 | 1つお聞きしたいのですが、Apache arrowによってデータフォーマットが言語間で統一されますが、言語間でのデータのやり取りは何を用いるのでしょうか? 23 | ドキュメントを読む限りPlasmaというのが共有メモリを用いたオブジェクトストアを経由することを想定していて、各言語でPlasmaのクライアントを実装する必要があるように見えるのですが、 24 | Plasmaとは別にarrow側に実装されているipcというコンポーネントの立ち位置がよくわからず... もしよければお聞きしたいです。 25 | 26 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/joker1007.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | # 最初の一歩を踏み出せましたか? 4 | # Did you start developing? 5 | | 6 | YES 7 | groups: 8 | # どのグループに参加しましたか? 9 | # Which groups did you join? 10 | - Apache Arrow 全体 11 | next: 12 | # またコード懇親会があったら参加したいですか? 13 | # Do you want to participate if there is a code party? 14 | | 15 | YES 16 | etc: 17 | # なにか思ったことがあれば自由に書いてください。 18 | # You can send any feedbacks to organizers. 19 | | 20 | 大分先にある目標に着手するとひたすら読むことから始まるので、ちょっと黙々とやり過ぎたかなという感じだった。 21 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/miorgash.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のライブラリーの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●● library, Ruby it was fun to write, etc.) 7 | | 8 | スキル高そうなかたがいっぱいいてヒリヒリしたのである意味楽しかったです. 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Python 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | 是非とも参加したいです 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | Python のチームに関しては,Arrow 関連のパッケージに貢献しよう!というよりは python のデータハンドリング領域のパッケージ全般にコミットしていこうぜ,みたいな方向になっていた気がします. 23 | あとは他のグループがどんな雰囲気だったのか若干気になりました. 24 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/moomindani.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | # 最初の一歩を踏み出せましたか? 4 | # Did you start developing? 5 | | 6 | YES 7 | groups: 8 | # どのグループに参加しましたか? 9 | # Which groups did you join? 10 | - Spark 11 | next: 12 | # またコード懇親会があったら参加したいですか? 13 | # Do you want to participate if there is a code party? 14 | | 15 | YES 16 | etc: 17 | # なにか思ったことがあれば自由に書いてください。 18 | # You can send any feedbacks to organizers. 19 | | 20 | Spark Commiter の皆さんから Contribution のアイデアをいただいて非常に参考になりました。 21 | Documentation と Debug/Troubleshooting まわりの具体的なアイデアがあるので、来週のフォローアップイベントで試そうと思います。 22 | こういった Next Action として OSS Contribution が明確に存在するイベントはとても有意義だと思いますので、機会があったらまた参加したいです。 23 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/moriyoshi.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | 皆さまのおかげで開発のアイデアは得られたと思います! 4 | groups: 5 | - Python 6 | next: | 7 | 参加したいです。 8 | etc: | 9 | 私は2回ほどPyArrow関連のパッチを送ってマージされた経験があったのですが、何から手を付けたらいいのかわからない、という方が結構多くいらっしゃいました。チーム分けも、OSSコントリビュート初心者のような区分があってもよさそうに思いました。 10 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/mrkn.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | # 最初の一歩を踏み出せましたか? 4 | # Did you start developing? 5 | | Yes 6 | groups: 7 | # どのグループに参加しましたか? 8 | # Which groups did you join? 9 | - Apache Arrow 10 | next: 11 | # またコード懇親会があったら参加したいですか? 12 | # Do you want to participate if there is a code party? 13 | | Yes 14 | etc: 15 | # なにか思ったことがあれば自由に書いてください。 16 | # You can send any feedbacks to organizers. 17 | | 本物の開発者の話を聞くのは本当に楽しく、テーマがわたしにピッタリだったこともあり RubyKaigi よりも楽しかった。 18 | | ところで、Windows は難しすぎる。 19 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/naitoh.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のライブラリーの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●● library, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。村田さんの SparseTensor のPR を読んでいて、そこから疑問に思った Apatch Arrow の仕組みの一端(共有メモリ上でROとしてデータを渡す。)がわかりました。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Apache Arrow 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | はい! 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | ありがとうございます! 23 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/ngr-t.yaml: -------------------------------------------------------------------------------- 1 | started: 2 | # 最初の一歩を踏み出せましたか? 3 | # Did you start developing? 4 | Arrow を導入してイシュートラッカーを眺めた程度なので、一歩と言えば一歩、なのか…? 5 | groups: 6 | # どのグループに参加しましたか? 7 | # Which groups did you join? 8 | - Python 9 | next: 10 | # またコード懇親会があったら参加したいですか? 11 | # Do you want to participate if there is a code party? 12 | もう少し準備出来ているプロジェクトに関してであれば、Yes 13 | etc: 14 | # なにか思ったことがあれば自由に書いてください。 15 | # You can send any feedbacks to organizers. 16 | 興味はあっても普段から使っている訳ではないプロジェクトの開発に急に飛び込むのは(少なくとも自分には)難しいのかなという印象を持った。 17 | これまでも OSS にパッチを送ったことはあったが、基本的に自分が使うプロジェクトだった。 18 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/nsiena.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | "おおむねyes" 4 | groups: 5 | - "Apache Spark" 6 | next: 7 | "ぜひ参加したい" 8 | etc: 9 | "なにかやりたいというもやもやに、前進するきっかけができてよかった。コミッタやアクティブな人と話をして、まだ具体的なターゲットは定まってないけれど、課題や振る舞い方が見えてきた。" 10 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/sekikn.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | # 最初の一歩を踏み出せましたか? 4 | # Did you start developing? 5 | | 6 | Yes 7 | groups: 8 | # どのグループに参加しましたか? 9 | # Which groups did you join? 10 | - Apache Arrow 11 | next: 12 | # またコード懇親会があったら参加したいですか? 13 | # Do you want to participate if there is a code party? 14 | | 15 | Yes 16 | etc: 17 | # なにか思ったことがあれば自由に書いてください。 18 | # You can send any feedbacks to organizers. 19 | | 20 | 普段の業務であまり接点のない言語や、普段触っていても 21 | そこまで深い知見のない言語について、有識者の方々から 22 | データ処理関連の最新状況をお伺いでき、とても有意義でした。 23 | まだドキュメント改善系の minor なパッチしか投げられていないですが、 24 | 気長に開発に参加していきたいと考えています。 25 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/shiro615.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | # 最初の一歩を踏み出せましたか? 4 | # Did you start developing? 5 | | 6 | いつものRed Data Toolsの集まりより多くの人と開発できて楽しかったです 7 | groups: 8 | # どのグループに参加しましたか? 9 | # Which groups did you join? 10 | - Apache Arrow 11 | next: 12 | # またコード懇親会があったら参加したいですか? 13 | # Do you want to participate if there is a code party? 14 | | 15 | 参加したいです 16 | etc: 17 | # なにか思ったことがあれば自由に書いてください。 18 | # You can send any feedbacks to organizers. 19 | | 20 | ありがとうございました 21 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/sinhrks.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | # 最初の一歩を踏み出せましたか? 4 | # Did you start developing? 5 | | 6 | Yes. 7 | groups: 8 | # どのグループに参加しましたか? 9 | # Which groups did you join? 10 | - Python 11 | next: 12 | # またコード懇親会があったら参加したいですか? 13 | # Do you want to participate if there is a code party? 14 | | 15 | Yes. 16 | etc: 17 | # なにか思ったことがあれば自由に書いてください。 18 | # You can send any feedbacks to organizers. 19 | | 20 | 他言語の開発者から話を聞ける機会があまりないため、非常に勉強になりました。ありがとうございました! 21 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/tasanuma.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | # 最初の一歩を踏み出せましたか? 4 | # Did you start developing? 5 | | 6 | Aapche Arrowの有用性をよく理解することができました。 7 | groups: 8 | # どのグループに参加しましたか? 9 | # Which groups did you join? 10 | - Multiple Dimension Spread 11 | next: 12 | # またコード懇親会があったら参加したいですか? 13 | # Do you want to participate if there is a code party? 14 | | 15 | - はい 16 | etc: 17 | # なにか思ったことがあれば自由に書いてください。 18 | # You can send any feedbacks to organizers. 19 | | 20 | 主催していただいてありがとうございました。 21 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/template.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | # 最初の一歩を踏み出せましたか? 4 | # Did you start developing? 5 | | 6 | はい 7 | groups: 8 | # どのグループに参加しましたか? 9 | # Which groups did you join? 10 | - R 11 | next: 12 | # またコード懇親会があったら参加したいですか? 13 | # Do you want to participate if there is a code party? 14 | | 15 | もう少し手元の開発環境が整えば... 16 | etc: 17 | # なにか思ったことがあれば自由に書いてください。 18 | # You can send any feedbacks to organizers. 19 | | 20 | こういういろんな言語のひとが集まる機会はあまりない気がするので、いろいろ話を聞けて面白かったです。 21 | 場に貢献できたのかわかりませんが楽しかったです。 22 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/termoshtt.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | # 最初の一歩を踏み出せましたか? 4 | # Did you start developing? 5 | | 6 | arrow/rustのコードはだいたい読めたのでふみだせたと思う 7 | groups: 8 | # どのグループに参加しましたか? 9 | # Which groups did you join? 10 | - Apache Arrow / Rust 11 | next: 12 | # またコード懇親会があったら参加したいですか? 13 | # Do you want to participate if there is a code party? 14 | | 15 | Arrow関係の作業をする会としてはまた参加したい(一人だと作業しないので 16 | etc: 17 | # なにか思ったことがあれば自由に書いてください。 18 | # You can send any feedbacks to organizers. 19 | | 20 | arrowの事を日本語で質問できるslackとかgitterとかあれば… 21 | -------------------------------------------------------------------------------- /apache-arrow-tokyo-meetup-2018/feedback/watson1978.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | started: 3 | # 最初の一歩を踏み出せましたか? 4 | # Did you start developing? 5 | | 6 | Yes!! @mrkn さんが欲しいと言っていた scipy の sparse あたりを Ruby に移植するところから始めようと思っています。 7 | groups: 8 | # どのグループに参加しましたか? 9 | # Which groups did you join? 10 | - Apache Arrow 11 | next: 12 | # またコード懇親会があったら参加したいですか? 13 | # Do you want to participate if there is a code party? 14 | | 15 | Yes!!! 16 | etc: 17 | # なにか思ったことがあれば自由に書いてください。 18 | # You can send any feedbacks to organizers. 19 | | 20 | 今後 Ruby 界隈に data 処理のニーズがますます高まって行くのだろうと思っており、今回 Apache Arrow の meetup に参加できたことは有意義です。 21 | -------------------------------------------------------------------------------- /rubydata-tokyo-meetup-2018/README.md: -------------------------------------------------------------------------------- 1 | # Code party(コード懇親会) 2 | 3 | Rubyは楽しくプログラミングできることを大事にしているプログラミング言語です。みなさんも、いつもRubyで楽しくプログラミングしているはずです。だったら、いつものようにコードを書きながら懇親すると楽しそうじゃないですか! 4 | 5 | [RubyData Tokyo Meetup](https://speee.connpass.com/event/105127/)の後はデータサイエンス関連のRubyのコードを書きながら懇親しましょう! 6 | 7 | ## Contents(内容) 8 | 9 | This is not a typical party. For familiar party, participants enjoy drinking and talking. At the code party, We will enjoy together while programing. It is an good opportunity to exchange directly with other Rubyists. Let's develop together and have fun! 10 | 11 | これはよくある懇親会ではありません。よくある懇親会は参加者同士がお酒を飲みながら話をして交流します。コード懇親会は参加者同士が一緒にコードを書きながら交流します。せっかく他のRubyistと直接やりとりする機会です。一緒に開発して楽しみましょう! 12 | 13 | Because it is not a typical party, there may be people saying "Although it seems to be fun, I can not tell whether I will participate or not because I care about what it will become." 14 | So, in order to be able to imagine the contents of this code party, we have summarized some similar events, not doing things and doing things. 15 | 16 | よくある懇親会ではないので、「コードで懇親するのは楽しそうだけど、どういう内容になるかが気になって参加するかどうか判断できない」という人もいるでしょう。そこで、参加前にこの懇親会の内容をイメージできるように、似ている内容のイベント・やらないこと・やることをいくつかまとめました。 17 | 18 | If you have anything else you want to know please ask with the [issue](https://github.com/speee/code-party/issues). It is the same way as usual development! Because it's a code party! 19 | 20 | 他にも知りたいことがある人は [issue](https://github.com/speee/code-party/issues) で質問してください。普段の開発と同じやり方です!だって、これはコード懇親会ですから! 21 | 22 | 23 | ### Similar contents(似ている内容) 24 | 25 | The content of the code party is similar to "Sprint". In Python's event, We often see "Sprint". For example, there are [Development Sprints of PyCon 2018 in Cleveland, Ohio](https://us.pycon.org/2018/community/sprints/). 26 | Both Sprint and code party write code, but Sprint focuses on developing it, Code Party focuses on writing code and enjoying it. 27 | 28 | コード懇親会の内容は「スプリント」と似ています。Pythonのイベントでは「スプリント」をよくみかけます。たとえば、[PyCon JP 2017 in Tokyo のスプリント](https://pycon.jp/2017/ja/events/sprint/)がありました。 29 | スプリントもコード懇親会もコードを書きますが、スプリントは開発することにより注力し、コード懇親会は懇親することに注力します。 30 | 31 | 32 | The content of the code party is somewhat similar to "Hackathon". Both of them write the code, but there are the following differences. 33 | 34 | * Hackathon may be held for a long time, but the code party ends in the same amount of time (2 hours) as a typical party. 35 | * In Hackathon, we may review development results, but never review at code party. 36 | 37 | コード懇親会の内容は少し「ハッカソン」に似ています。どちらもコードを書きますが、次のような違いがあります。 38 | 39 | * ハッカソンは長時間開催されることがあるが、コード懇親会はよくある懇親会と同じくらいの時間(2時間)で終わる 40 | * ハッカソンでは開発成果を審査することがあるが、コード懇親会は決して審査しない 41 | 42 | 43 | ### What you do not do(やらないこと) 44 | 45 | The concept of code party is "If you are writing code fun even alone, it is fun to interact through code!" 46 | Therefore, at the code party, we will not "enrich with the usual way of writing code". For example, we do not prepare the following planning. (It is free for participants to do spontaneously with each other.) 47 | 48 | * Code Golf 49 | * Mob Programming 50 | 51 | コード懇親会のコンセプトは「いつもRubyで楽しくコードを書いているなら、コードを通じて懇親するのも楽しいよね!」です。そのため、コード懇親会では「いつもと違うコードの書き方で盛り上げる」ことはしません。たとえば、次のような企画は用意しません。(参加者同士が自発的にやることは自由です。) 52 | 53 | * コードゴルフ 54 | * モブプログラミング 55 | 56 | ### What you do(やること) 57 | 58 | Participants write code as usual as a code party. To do so, proceed as follows. 59 | 60 | コード懇親会は参加者がいつものようにコードを書いて懇親します。そのために、次のようなように進めます。 61 | 62 | 1. Create a group for each product 63 | * Example: mxnet.rb, PyCall, Apache Arrow, Red Data Tools, Red Chainer, Cumo, XND, rubyplot, Menoh-Ruby, Numo and so on. 64 | * What kind of group you can do depends on the participants (If you do not have it yet, make it new) 65 | * Desks and chairs are gathered for each group 66 | * To make code easy to write 67 | * Preparing N displays for each group 68 | * In order to make it easy to share PC screen 69 | * White board prepared for each group 70 | * For easier discussion 71 | 72 | プロダクトごとにグループを作る 73 | * 例:mxnet.rb、PyCall、Apache Arrow、Red Data Tools、Red Chainer、Cumo、XND、rubyplot、Menoh-Ruby、Numoなど 74 | * どんなグループができるかは参加者次第(まだなかったら新しく作る) 75 | * グループごとに机とイスがまとまっている 76 | * コードを書きやすくするため 77 | * 各グループにn個のディスプレイを用意 78 | * PCの画面を共有しやすくするため 79 | * 各グループにホワイトボードを用意 80 | * 相談しやすくするため 81 | 82 | 2. Participants join somewhere in the group 83 | * Group can be changed freely later, so feel free to decide 84 | * You can decide which group you want to join in advance, whichever you decide not to decide 85 | * You can talk to which group you would like to join on the day 86 | 87 | 参加者はなにかしらのグループに入る 88 | * グループはあとから自由に変更できるので気軽に決めてよい 89 | * 事前にどのグループに入りたいかは決めてきても決めてこなくてもどちらでもよい 90 | * 当日どのグループに入るのがよさそうか相談できる 91 | 92 | 3. Interacting while writing the code together in the group 93 | * Main content (less than 2 hours) 94 | * Example: Consultation on development offline with people who are constantly developing together online 95 | * Example: Consultation as to the author of gem that I normally use talks about where it is better to participate in development 96 | * Move to other group 97 | * Make it easier to understand what other groups are there 98 | * Example: Group map is prepared on the whiteboard 99 | * Food and drink prepared at the venue 100 | 101 | グループ内で一緒にコードを書きながら懇親 102 | * メインコンテンツ(2時間弱) 103 | * 例:オンラインで一緒に開発している人とオフラインで開発の相談 104 | * 例:普段使っているgemの作者にどこから開発に参加するのがよさそうか相談して開発に参加 105 | * 他のグループに移動可能 106 | * 会場には他にどのようなグループがあるかわかりやすくなる仕組みを用意 107 | * 例:ホワイトボードにグループマップを用意 108 | * 会場には飲食物を用意 109 | 110 | 4. Submit a questionnaire 111 | * Submit the pull request on how the code party is in the end 112 | * Since it is a code party, submit a questionnaire as usual! 113 | * Refer to [feedback](feedback/) for the submission method 114 | 115 | アンケートを提出 116 | * 最後にこの会がどうだったかをプルリクエストで提出 117 | * コード懇親会なので、アンケートの提出もいつものように! 118 | * 提出方法は[feedback](feedback/)を参照 119 | 120 | ## ねらい 121 | 122 | 最新の「Rubyでデータサイエンス」な話を聞いたあと、なにかしたくなった人が最初の1歩を踏み出すことを後押ししたい。 123 | -------------------------------------------------------------------------------- /rubydata-tokyo-meetup-2018/feedback/README.md: -------------------------------------------------------------------------------- 1 | # How to feedback(フィードバック方法) 2 | 3 | ## English 4 | 5 | 1. Fork this repository 6 | 2. Create a branch such as `rubydata-tokyo-meetup-2018-feedback` 7 | 3. Copy `rubydata-tokyo-meetup-2018/feedback/template.yaml` to `rubydata-tokyo-meetup-2018/feedback/#{your_github_account}.yaml` 8 | 4. Fill your answers against questions in `rubydata-tokyo-meetup-2018/feedback/#{your_github_account}.yaml` 9 | 5. Commit `rubydata-tokyo-meetup-2018/feedback/#{your_github_account}.yaml` 10 | 6. Push the branch 11 | 7. Send a pull request 12 | 13 | ## Japanese 14 | 15 | 1. このリポジトリーをフォーク 16 | 2. `rubydata-tokyo-meetup-2018-feedback`ようなブランチを作る 17 | 3. `rubydata-tokyo-meetup-2018/feedback/template.yaml`を`rubydata-tokyo-meetup-2018/feedback/#{your_github_account}.yaml`にコピー 18 | 4. `rubydata-tokyo-meetup-2018/feedback/#{your_github_account}.yaml`内の質問に回答 19 | 5. `rubydata-tokyo-meetup-2018/feedback/#{your_github_account}.yaml`をコミット 20 | 6. このブランチをpush 21 | 7. プルリクエストを作成 22 | 23 | ## Command line 24 | 25 | Fork this repository! 26 | 27 | ```console 28 | % git clone https://github.com/#{your_github_account}/code-party.git 29 | % cd code-party 30 | % git checkout -b rubydata-tokyo-meetup-2018-feedback 31 | % cp rubydata-tokyo-meetup-2018/feedback/template.yaml rubydata-tokyo-meetup-2018/feedback/#{your_github_account}.yaml 32 | % #{your_favorite_editor} rubydata-tokyo-meetup-2018/feedback/#{your_github_account}.yaml 33 | % git add rubydata-tokyo-meetup-2018/feedback/#{your_github_account}.yaml 34 | % git commit rubydata-tokyo-meetup-2018/feedback/#{your_github_account}.yaml 35 | % git push origin rubydata-tokyo-meetup-2018-feedback 36 | ``` 37 | 38 | Send a pull request! 39 | -------------------------------------------------------------------------------- /rubydata-tokyo-meetup-2018/feedback/template.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のライブラリーの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●● library, Ruby it was fun to write, etc.) 7 | | 8 | (Answer) 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - (Group1) 13 | - (Group2) 14 | - ... 15 | next: 16 | # またコード懇親会があったら参加したいですか? 17 | # Do you want to participate if there is a code party? 18 | | 19 | (Answer) 20 | etc: 21 | # なにか思ったことがあれば自由に書いてください。 22 | # You can send any feedbacks to organizers. 23 | | 24 | (Answer) 25 | -------------------------------------------------------------------------------- /rubykaigi-2018/README.md: -------------------------------------------------------------------------------- 1 | # Code Party(コード懇親会) 2 | 3 | Ruby is a programming language that focus to have fun. You have fun with programming with Ruby, right? We will be able to have fun a party that focus code with Ruby as usual! 4 | 5 | Rubyは楽しくプログラミングできることを大事にしているプログラミング言語です。みなさんも、いつもRubyで楽しくプログラミングしているはずです。だったら、いつものようにコードを書きながら懇親すると楽しそうじゃないですか! 6 | 7 | ## Event Details(イベント情報) 8 | 9 | * [イベントページ](https://speee.connpass.com/event/85676) 10 | * 開催日時:2018年6月1日(金)19:30-21:30 11 | * 開場時間:19:15 12 | * RubyKaigi 2018 2日目 13 | * 会場:[楽天仙台支社 カフェテリア](https://corp.rakuten.co.jp/about/map/index__p2.html) 14 | * 参加費:無料 15 | * 定員:40名 16 | 17 | ## Contents(内容) 18 | 19 | This is not a typical party. For familiar party, participants enjoy drinking and talking. At the code party, We will enjoy together while programing. It is an good opportunity to exchange directly with other Rubyists. Let's develop together and have fun! 20 | 21 | これはよくある懇親会ではありません。よくある懇親会は参加者同士がお酒を飲みながら話をして交流します。コード懇親会は参加者同士が一緒にコードを書きながら交流します。せっかく他のRubyistと直接やりとりする機会です。一緒に開発して楽しみましょう! 22 | 23 | Because it is not a typical party, there may be people saying "Although it seems to be fun, I can not tell whether I will participate or not because I care about what it will become." 24 | So, in order to be able to imagine the contents of this code party, we have summarized some similar events, not doing things and doing things. 25 | 26 | よくある懇親会ではないので、「コードで懇親するのは楽しそうだけど、どういう内容になるかが気になって参加するかどうか判断できない」という人もいるでしょう。そこで、参加前にこの懇親会の内容をイメージできるように、似ている内容のイベント・やらないこと・やることをいくつかまとめました。 27 | 28 | If you have anything else you want to know please ask with the [issue](https://github.com/speee/code-party/issues). It is the same way as usual development! Because it's a code party! 29 | 30 | 他にも知りたいことがある人は [issue](https://github.com/speee/code-party/issues) で質問してください。普段の開発と同じやり方です!だって、これはコード懇親会ですから! 31 | 32 | 33 | ### Similar Contents(似ている内容) 34 | 35 | The content of the code party is similar to "Sprint". In Python's event, We often see "Sprint". For example, there are [Development Sprints of PyCon 2018 in Cleveland, Ohio](https://us.pycon.org/2018/community/sprints/). 36 | Both Sprint and code party write code, but Sprint focuses on developing it, Code Party focuses on writing code and enjoying it. 37 | 38 | コード懇親会の内容は「スプリント」と似ています。Pythonのイベントでは「スプリント」をよくみかけます。たとえば、[PyCon JP 2017 in Tokyo のスプリント](https://pycon.jp/2017/ja/events/sprint/)がありました。 39 | スプリントもコード懇親会もコードを書きますが、スプリントは開発することにより注力し、コード懇親会は懇親することに注力します。 40 | 41 | 42 | The content of the code party is somewhat similar to "Hackathon". Both of them write the code, but there are the following differences. 43 | 44 | * Hackathon may be held for a long time, but the code party ends in the same amount of time (2 hours) as a typical party. 45 | * In Hackathon, we may review development results, but never review at code party. 46 | 47 | コード懇親会の内容は少し「ハッカソン」に似ています。どちらもコードを書きますが、次のような違いがあります。 48 | 49 | * ハッカソンは長時間開催されることがあるが、コード懇親会はよくある懇親会と同じくらいの時間(2時間)で終わる 50 | * ハッカソンでは開発成果を審査することがあるが、コード懇親会は決して審査しない 51 | 52 | 53 | ### What you do not do(やらないこと) 54 | 55 | The concept of code party is "If you are writing code fun even alone, it is fun to interact through code!" 56 | Therefore, at the code party, we will not "enrich with the usual way of writing code". For example, we do not prepare the following planning. (It is free for participants to do spontaneously with each other.) 57 | 58 | * Code Golf 59 | * Mob Programming 60 | 61 | コード懇親会のコンセプトは「いつもRubyで楽しくコードを書いているなら、コードを通じて懇親するのも楽しいよね!」です。そのため、コード懇親会では「いつもと違うコードの書き方で盛り上げる」ことはしません。たとえば、次のような企画は用意しません。(参加者同士が自発的にやることは自由です。) 62 | 63 | * コードゴルフ 64 | * モブプログラミング 65 | 66 | ### What you do(やること) 67 | 68 | Participants write code as usual as a code party. To do so, proceed as follows. 69 | 70 | コード懇親会は参加者がいつものようにコードを書いて懇親します。そのために、次のようなように進めます。 71 | 72 | 1. Create a group for each product 73 | * Example: Ruby itself, mruby, Rails itself, various gem, Red Data Tools etc. 74 | * What kind of group you can do depends on the participants (If you do not have it yet, make it new) 75 | * Desks and chairs are gathered for each group 76 | * To make code easy to write 77 | * Preparing N displays for each group 78 | * In order to make it easy to share PC screen 79 | * White board prepared for each group 80 | * For easier discussion 81 | 82 | プロダクトごとにグループを作る 83 | * 例:Ruby本体やmrubyやRails本体や各種gemやRed Data Toolsなど 84 | * どんなグループができるかは参加者次第(まだなかったら新しく作る) 85 | * グループごとに机とイスがまとまっている 86 | * コードを書きやすくするため 87 | * 各グループにn個のディスプレイを用意 88 | * PCの画面を共有しやすくするため 89 | * 各グループにホワイトボードを用意 90 | * 相談しやすくするため 91 | 92 | 2. Participants join somewhere in the group 93 | * Group can be changed freely later, so feel free to decide 94 | * You can decide which group you want to join in advance, whichever you decide not to decide 95 | * You can talk to which group you would like to join at the reception 96 | * Receptionist is RubyKaigi 2018 keynote speaker Suto 97 | 98 | 参加者はなにかしらのグループに入る 99 | * グループはあとから自由に変更できるので気軽に決めてよい 100 | * 事前にどのグループに入りたいかは決めてきても決めてこなくてもどちらでもよい 101 | * 受付でどのグループに入るのがよさそうか相談できる 102 | * 受付はRubyKaigi 2018キーノートスピーカーの須藤 103 | 104 | 3. Interacting while writing the code together in the group 105 | * Main content (less than 2 hours) 106 | * Example: Consultation on development offline with people who are constantly developing together online 107 | * Example: Consultation as to the author of gem that I normally use talks about where it is better to participate in development 108 | * Example: Participants who do not understand words (eg Japanese) and interacting through code with Ruby 109 | * Move to other group 110 | * Make it easier to understand what other groups are there 111 | * Example: Group map is prepared on the whiteboard 112 | * Example: There is time to briefly introduce to other groups what their group is doing on the way (about an hour) 113 | * Food and drink prepared at the venue 114 | 115 | グループ内で一緒にコードを書きながら懇親 116 | * メインコンテンツ(2時間弱) 117 | * 例:オンラインで一緒に開発している人とオフラインで開発の相談 118 | * 例:普段使っているgemの作者にどこから開発に参加するのがよさそうか相談して開発に参加 119 | * 例:言葉(たとえば日本語)が通じない参加者とRubyのコードを通じて懇親 120 | * 他のグループに移動可能 121 | * 会場には他にどのようなグループがあるかわかりやすくなる仕組みを用意 122 | * 例:ホワイトボードにグループマップを用意 123 | * 例:途中(1時間くらい経ったら)、自分たちのグループがどんなグループかを他のグループに簡単に紹介する時間がある 124 | * 会場には飲食物を用意 125 | 126 | 4. Submit a questionnaire 127 | * Submit the pull request on how the code party is in the end 128 | * Since it is a code party, submit a questionnaire as usual! 129 | * Refer to [feedback](feedback/) for the submission method 130 | 131 | アンケートを提出 132 | * 最後にこの会がどうだったかをプルリクエストで提出 133 | * コード懇親会なので、アンケートの提出もいつものように! 134 | * 提出方法は[feedback](feedback/)を参照 135 | 136 | ## ねらい 137 | 138 | ### 参加者 139 | 140 | いろんな「楽しい!」を感じる。 141 | 142 | * Rubyでコードを書くことって「楽しい!」 143 | * このプロダクトの作者と一緒にRubyを書けて「楽しい!」 144 | * 言語を超えてRubyで世界のRubyistと懇親できて「楽しい!」 145 | * コード懇親会の後もこの「楽しい!」活動を継続したい! 146 | 147 | 評価方法: 148 | 149 | * アンケート結果からどのくらい「楽しい!」が観測できるか 150 | * たくさん観測できるほど成功 151 | 152 | ### Speee 153 | 154 | * Ruby本体やRuby周辺の開発が進む 155 | * Rubyを使っているSpeeeにも恩恵がある 156 | * SpeeeのことをRubyistに知ってもらう 157 | * Speeeの開発者が楽しく他のRubyistと交流する中でレベルアップにつながる 158 | * 強制参加ではなく面白そう!と思って参加したら本当に面白くてしかもレベルアップにもつながるとよい 159 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/284km.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | I had fun. Motivation often increases when I hear the talks at RubyKaigi, so I thought that having a place to write code with that momentum is a good thing. 9 | I already know that RUBY_PATCHLEVEL can be used for judging stable and dev/preview. 10 | I did not know how to judge dev and preview. 11 | When I was working on CRuby Island, mrkn told me that RUBY_PATCHLEVEL_STR could be used. It was very convenient. 12 | groups: 13 | # どのグループに参加しましたか? 14 | # Which groups did you join? 15 | - packnga 16 | - CRuby 17 | next: 18 | # またコード懇親会があったら参加したいですか? 19 | # Do you want to participate if there is a code party? 20 | | 21 | Yes. 22 | etc: 23 | # なにか思ったことがあれば自由に書いてください。 24 | # You can send any feedbacks to organizers. 25 | | 26 | I hope the code party will be held next time. 27 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/HaruoNakachi.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | - とても楽しかったです。コミッターの方から、コミッターのなり方や、どれくらいの頻度でどんなコミットをしているのかを聞けて非常にためになりました。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - (Ruby リファレンスマニュアル) 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | - はい、参加したいです。 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | - 間近で、コミッターの方とお話できて、非常にためになりました。(Ruby レファレンスのメンテナンスの方法を見れて非常に参考になりました。) 23 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/MITSUBOSHI.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | とても楽しかったです! 9 | 目的毎にテーブルが分かれており、「ここってどうです?」みたいな相談しつつ進められたのが良かったです。 10 | groups: 11 | # どのグループに参加しましたか? 12 | # Which groups did you join? 13 | - rib 14 | next: 15 | # またコード懇親会があったら参加したいですか? 16 | # Do you want to participate if there is a code party? 17 | | 18 | はい 19 | etc: 20 | # なにか思ったことがあれば自由に書いてください。 21 | # You can send any feedbacks to organizers. 22 | | 23 | お寿司ごちそうさまでした! 24 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/README.md: -------------------------------------------------------------------------------- 1 | # How to feedback(フィードバック方法) 2 | 3 | ## English 4 | 5 | 1. Fork this repository 6 | 2. Create a branch such as `rubykaigi-2018-feedback` 7 | 3. Copy `feedback/template.yaml` to `feedback/#{your_github_account}.yaml` 8 | 4. Fill your answers against questions in `feedback/#{your_github_account}.yaml` 9 | 5. Commit `feedback/#{your_github_account}.yaml` 10 | 6. Push the branch 11 | 7. Send a pull request 12 | 13 | ## Japanese 14 | 15 | 1. このリポジトリーをフォーク 16 | 2. `rubykaigi-2018-feedback`ようなブランチを作る 17 | 3. `feedback/template.yaml`を`feedback/#{your_github_account}.yaml`にコピー 18 | 4. `feedback/#{your_github_account}.yaml`内の質問に回答 19 | 5. `feedback/#{your_github_account}.yaml`をコミット 20 | 6. このブランチをpush 21 | 7. プルリクエストを作成 22 | 23 | ## Command line 24 | 25 | Fork this repository! 26 | 27 | ```console 28 | % git clone https://github.com/#{your_github_account}/code-party.git 29 | % cd code-party.git 30 | % git checkout -b rubykaigi-2018-feedback 31 | % cp feedback/template.yaml feedback/#{your_github_account}.yaml 32 | % #{your_favorite_editor} feedback/#{your_github_account}.yaml 33 | % git add feedback/#{your_github_account}.yaml 34 | % git commit feedback/#{your_github_account}.yaml 35 | % git push origin rubykaigi-2018-feedback 36 | ``` 37 | 38 | Send a pull request! 39 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/ShoheiMitani.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。お酒飲みながら騒がしい雰囲気の中でコードを書く機会はあまりないのでよかったです。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - steep 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | 参加したいです。 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | 来る前にやりたいこと見つけてから来た方がよかったなーと思います。steepは触ったことがなかったので、 23 | インストールして動作確認の後に、クローンしてコードリーディングしてたらほとんどの時間終わってしまいました。 24 | チーム内でペアプロとかしたら面白そうだなーと思いました。 25 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/aggregate.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env ruby 2 | 3 | require "English" 4 | require "yaml" 5 | 6 | questionnaires = {} 7 | Dir.chdir(__dir__) do 8 | Dir.glob("*.yaml").sort.each do |yaml| 9 | case yaml 10 | when "template.yaml" 11 | next 12 | when /\.yaml\Z/ 13 | account = $PREMATCH 14 | begin 15 | questionnaires[account] = YAML.load(File.read(yaml)) 16 | rescue Psych::SyntaxError 17 | $stderr.puts("#{account}: syntax error: #{$!}") 18 | end 19 | end 20 | end 21 | end 22 | 23 | _, key_questionnairy = questionnaires.first 24 | key_questionnairy["questions"].each do |question, _| 25 | puts("-" * question.size) 26 | puts(question) 27 | puts("-" * question.size) 28 | questionnaires.each do |account, questionnairy| 29 | answer = questionnairy["questions"][question] 30 | if answer.is_a?(Array) 31 | puts("#{account}:") 32 | puts(answer.join("\n")) 33 | else 34 | puts("#{account}: #{answer}") 35 | end 36 | puts("=" * 40) 37 | end 38 | puts 39 | end 40 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/aike.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。セッションでは聞けなかった詳細、裏事情が聞けた。 9 | 生matzの深い話が聞けた。 10 | groups: 11 | # どのグループに参加しましたか? 12 | # Which groups did you join? 13 | - Red Chainer 14 | - Petal 15 | next: 16 | # またコード懇親会があったら参加したいですか? 17 | # Do you want to participate if there is a code party? 18 | | 19 | 参加したい 20 | etc: 21 | # なにか思ったことがあれば自由に書いてください。 22 | # You can send any feedbacks to organizers. 23 | | 24 | とても良い機会をありがとうございました。 25 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/alpaca-tc.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | めちゃくちゃ楽しかった 9 | ribのコードベースを触りながら、pryとか、IRBとかのコードを読んでわちゃわちゃしていた 10 | 本家に送ったPRも爆速でマージされて祭り感があった 🎉 11 | groups: 12 | # どのグループに参加しましたか? 13 | # Which groups did you join? 14 | - rib 15 | next: 16 | # またコード懇親会があったら参加したいですか? 17 | # Do you want to participate if there is a code party? 18 | | 19 | ( ゚∀゚)o彡゚Go Go 20 | etc: 21 | # なにか思ったことがあれば自由に書いてください。 22 | # You can send any feedbacks to organizers. 23 | | 24 | ハッシュタグがほしい! 25 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/at-grandpa.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです! 9 | red-chainerの作者の方とお話できた。 10 | red-chainerにPRを送って、コントリビュートできた! 11 | groups: 12 | # どのグループに参加しましたか? 13 | # Which groups did you join? 14 | - red-chainer 15 | - petal 16 | next: 17 | # またコード懇親会があったら参加したいですか? 18 | # Do you want to participate if there is a code party? 19 | | 20 | 参加したいですー! 21 | etc: 22 | # なにか思ったことがあれば自由に書いてください。 23 | # You can send any feedbacks to organizers. 24 | | 25 | もっと時間が欲しかった! 26 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/bluerabbit.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | mrubyのグループに参加したのですが、mrubyを触るきっかけが出来てコードが書けて楽しかった。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - mruby 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | 参加したいです 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | PCばっかり見てないで、もう少し知らない人と対話する時間を作ればよかったなー 23 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/bussorenre.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | ものすごく楽しかったです!昨日のLTで紹介されていたrib のコードリーディング及び改善に挑戦しました。PR がその場で作成され作者にマージされるというのを観測できので満足です。なお私は一歩及ばなかったので、引き続きバグや改善のアイデアを見つけてプルリクエストを送りたいです。会の主催ありがとうございました! 9 | I had so much fun! I tried to rib (repository link is bellow) codereading and improvement. my group member sent pull requests immediately, then onwer merge them. but I could not make PR, so I'll try to find bug and enhancement idea, send pull requests) thank you for inviting this party. 10 | groups: 11 | # どのグループに参加しましたか? 12 | # Which groups did you join? 13 | - rib: https://github.com/godfat/rib 14 | next: 15 | # またコード懇親会があったら参加したいですか? 16 | # Do you want to participate if there is a code party? 17 | | 18 | また参加したいです 19 | Yes 20 | etc: 21 | # なにか思ったことがあれば自由に書いてください。 22 | # You can send any feedbacks to organizers. 23 | ... 24 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/chisso.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。Language ServerやOpal (Ovto)など普段自分がフォローしてない分野に触れることができ、実際にOvtoの作者さんに教わりながらハンズオンできた。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Ovto 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | はい 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | コードを書く・読むに集中してしまった時間が多かったので(それはそれで楽しかったのですが)、チーム開発的な要素があるのも面白いかなと思いました。 23 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/corselia.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。同じ内容(Ruboty)に興味を持つグループだったので、そのことについての話が盛り上がり、知見も広がりました。モブプログラミングのようなこともできたことも良かったです。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Ruboty 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | ぜひ参加したいです。 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | あっという間に時間が過ぎてしまい、最後の方は大急ぎになってしまったので、もう少し余裕を持ってやりたいです。共有モニタはとても便利だったので、今後もあると嬉しいです。 23 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/cuzic.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。 9 | 交流をたくさんできた。 10 | Matz と話せたから、楽しかった。歴史を学べた。 11 | ローカルの環境で IRuby の環境構築ができた 12 | 13 | groups: 14 | # どのグループに参加しましたか? 15 | # Which groups did you join? 16 | - Charty 17 | 18 | next: 19 | # またコード懇親会があったら参加したいですか? 20 | # Do you want to participate if there is a code party? 21 | | 22 | とっても参加したいですっ! 23 | etc: 24 | # なにか思ったことがあれば自由に書いてください。 25 | # You can send any feedbacks to organizers. 26 | | 27 | サラダがあんなにあることに気づけてなかった。 28 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/elcondor.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかった。mysqlxプロトコルが完全にRPCになっていることに、新しい時代の到来を感じた 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - mysqlx 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | やってみたい。 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | 事前に企画案の募集があっても良かったかもしれない 23 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/fohte.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: | 3 | 楽しかったです。自分が認識している問題をコードで共有できたのが良かったです。 4 | groups: 5 | - RuboCop 6 | next: | 7 | ぜひ参加したいです。 8 | etc: | 9 | 定期的に開催してほしいです。時間がもう少し長ければ良かったなと思いました。 10 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/fujimura.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | 楽しかったです!ほぼ自分のGemを1人で直してたんですが、周りの方と相談できて嬉しかった。 4 | groups: 5 | - git-gsub gem 6 | - RSpec(ちょっとだけ) 7 | next: 8 | - はい。 9 | etc: 10 | - 自分が何をやっているか共有する時間があったらより良かったと思います。 11 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/gorlemkun.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | codeは書かず、oculus goや自殺、パワハラの話で盛り上がってしまいました。それはそれで楽しかったです。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Ruby 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | Probably yes 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | None 23 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/happyk514.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? =>yes! 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | インターネットの歴史やAutolispの話、Rubyの逸話を松本さんに頂けて、楽しい時間を過ごせました。 9 | また、情報源をドキュメントから英語で読む、インデントの大切さを教えて頂き、学びの多い時間でした。 10 | groups: 11 | # どのグループに参加しましたか? 12 | - Charty 13 | # Which groups did you join? 14 | next: 15 | # またコード懇親会があったら参加したいですか? 16 | # Do you want to participate if there is a code party? 17 | | 18 | yes 19 | etc: 20 | # なにか思ったことがあれば自由に書いてください。 21 | # You can send any feedbacks to organizers. 22 | | 23 | ありがとうございました!! 24 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/hatappi.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | | 4 | 今までRed Chainerをコードベースで話したことがなかったので、その話が出来たのが良かった 5 | そして話す途中で見つかったバグをなおしてくれるPRをおくってもらえた!!https://github.com/red-data-tools/red-chainer/pull/54 6 | groups: 7 | - Red Chainer 8 | next: 9 | | 10 | 参加します! 11 | etc: 12 | | 13 | 継続的にやりたいですね!! 14 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/hisamura333.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しく過ごすことができました。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Rspec 13 | - 14 | - ... 15 | next: 16 | # またコード懇親会があったら参加したいですか? 17 | # Do you want to participate if there is a code party? 18 | | 19 | また機会があれば参加したいです。 20 | etc: 21 | # なにか思ったことがあれば自由に書いてください。 22 | # You can send any feedbacks to organizers. 23 | | 24 | 25 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/hkdnet.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 非常に楽しめました。同席した方で多少縁があったことが判明したり、どういったツールのアイデアがあるかなど話すことができてよい時間でした。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - CRuby(AST) 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | はい :) 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | 開催ありがとうございました 23 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/hoshinotsuyoshi.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 途中からモブプロみたいになったので楽しかったです 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - ruboty 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | はい 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | 楽しかったです!ありがとうございました!! 23 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/imaz.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです! 9 | コードを見て話すだけでたのしいし、知らないことがどんどんでてきてどんどん知れるのがたのしい! 10 | hatappiさんのRedChainerの説明と、aikeさんのPetalの説明でいろいろわかっておもしろかったです。 11 | 必ず○○をしなければならない というプレッシャーが無かったので、リラックスして交流できました。 12 | groups: 13 | # どのグループに参加しましたか? 14 | # Which groups did you join? 15 | - red-data-tools/red-chainer 16 | - siaflab/petal 17 | next: 18 | # またコード懇親会があったら参加したいですか? 19 | # Do you want to participate if there is a code party? 20 | | 21 | 参加したいです! 22 | etc: 23 | # なにか思ったことがあれば自由に書いてください。 24 | # You can send any feedbacks to organizers. 25 | | 26 | すとうさんが終始すとうさんぽくスタッフにツッコミいれながら仕切っていたのがすごくておもしろかったです! 27 | Matzさんに`.()`の話をきいたのがRubyKaigiっぽくてよかったです。すとうさんに促してもらったのがありがたかったです。 28 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/jemiam.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | cumoの開発まではいきませんでしたが、普段自分で書くことがないC拡張をいじれて楽しかったです。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - cumo 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | 参加したいです。 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | 楽しい場を提供していただいてありがとうござまいました。 23 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/kazu9su.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 6 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 7 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 8 | | 9 | (Answer) 10 | どちらでもない 11 | 理由: テーマというか目的がふわっとしてたので単なるモクモクになった 12 | groups: 13 | # どのグループに参加しましたか? 14 | # Which groups did you join? 15 | - steep 16 | next: 17 | # またコード懇親会があったら参加したいですか? 18 | # Do you want to participate if there is a code party? 19 | | 20 | 迷う 21 | etc: 22 | # なにか思ったことがあれば自由に書いてください。 23 | # You can send any feedbacks to organizers. 24 | | 25 | もう少し具体的なゴールとかあったほうが個人的には好みでした。ただコード懇親会の目的とは違うかなと思うので、もうちょっとやること明確にして来たら良かったかなと思います。 26 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/ken1flan.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | - YES! 9 | - ディスプレイを囲んでワイワイいいながら書くのがよかったです。 10 | groups: 11 | # どのグループに参加しましたか? 12 | # Which groups did you join? 13 | - Ruboty 14 | next: 15 | # またコード懇親会があったら参加したいですか? 16 | # Do you want to participate if there is a code party? 17 | | 18 | ぜひ。 19 | etc: 20 | # なにか思ったことがあれば自由に書いてください。 21 | # You can send any feedbacks to organizers. 22 | | 23 | 食べながらだったら、もう少しテーブルがひろいとよかったかも。 24 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/komagata.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかった。普段やらないmrubyについて試せたので。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - mruby 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | はい 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | 特にありません。 23 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/mizukmb.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | Yes. 単純に捗った。以前から気になってたことに取り組めた。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Ruby (AST) 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | 参加したい 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | 気づいたらもくもく会のようになってた。 23 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/mrkn.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 寿司とアボカドのサラダが美味しかった。 9 | カフェでコーディングしている感じで良かった。 10 | groups: 11 | # どのグループに参加しましたか? 12 | # Which groups did you join? 13 | - CRuby 14 | next: 15 | # またコード懇親会があったら参加したいですか? 16 | # Do you want to participate if there is a code party? 17 | | 18 | 予定が合えば参加します。 19 | etc: 20 | # なにか思ったことがあれば自由に書いてください。 21 | # You can send any feedbacks to organizers. 22 | | 23 | Good Job!! 24 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/naitoh.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。Ruby で Data Science 仲間を増やすことができました! 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - (Group1) 13 | - (Group2) 14 | - Ded Datasets 15 | next: 16 | # またコード懇親会があったら参加したいですか? 17 | # Do you want to participate if there is a code party? 18 | | 19 | はい! 20 | etc: 21 | # なにか思ったことがあれば自由に書いてください。 22 | # You can send any feedbacks to organizers. 23 | | 24 | ありがとうございます! 25 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/nao0515ki.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。サービス開発がしたくてコードを書くタイプのエンジニア同士の視点で、サービスの壁打ち、rspecの使い勝手など、会話ができました。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | Ruby group 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | ぜひ参加したいです。 17 | etc: 18 | # なにか思ったことがあれば自由に書いてください。 19 | # You can send any feedbacks to organizers. 20 | モブプログラミングしてみたいです。 21 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/nontak.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです!初対面のエンジニアと話できる機会が嬉しかった。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Ruby 構文解析 13 | - ... 14 | next: 15 | # またコード懇親会があったら参加したいですか? 16 | # Do you want to participate if there is a code party? 17 | | 18 | Yes!「すご腕エンジニアの一発芸」みたいなのが見れると嬉しいです! 19 | etc: 20 | # なにか思ったことがあれば自由に書いてください。 21 | # You can send any feedbacks to organizers. 22 | | 23 | お寿司とビールおいしかったです!ありがとうございました! 24 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/oda-i3.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。こういう機会でもないと、プライベートなプログラミングの時間がとれないので。 9 | 10 | groups: 11 | # どのグループに参加しましたか? 12 | # Which groups did you join? 13 | - mruby 14 | 15 | next: 16 | # またコード懇親会があったら参加したいですか? 17 | # Do you want to participate if there is a code party? 18 | | 19 | します! 20 | 21 | etc: 22 | # なにか思ったことがあれば自由に書いてください。 23 | # You can send any feedbacks to organizers. 24 | | 25 | 仙台駅東口に中々たどり着けなかった。 26 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/ota42y.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。特にrubykaigiで色々やりたい欲が高まっているときに良い機会が得られました。また、実際に成果を形にすることもできました。 https://github.com/rubygems/rubygems/pull/2308 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - rubygems 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | 参加したいです。 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | その場でテーマを決めたので一人チームでした…確実にこれがいいというテーマではなかったので、先に今どんなテーマがあるかを見てから決めればよかった…というのが次回への反省です…(´・_・`) 23 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/rentalname.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | いつもの懇親会よりも交流がもてた 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Ovto 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | 参加したい 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/rilmayer.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。グループで強い人がいたので勉強になりました。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Red Data Set 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | 参加したいです。 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | チーム分けが若干ドタバタ感がありました。 23 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/ruboty_team.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/speee/code-party/94c35687ec5ec1fe03aa248bf14b7eceea48f20a/rubykaigi-2018/feedback/ruboty_team.jpg -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/rvillage.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | たのしかった 9 | rubykaigi中に聞いたものを後で試してみようと思っていても、いざ始めるまでに時間がかかることがあるのできっかけ作りになった 10 | groups: 11 | # どのグループに参加しましたか? 12 | # Which groups did you join? 13 | - mruby 14 | next: 15 | # またコード懇親会があったら参加したいですか? 16 | # Do you want to participate if there is a code party? 17 | | 18 | 参加したい 19 | etc: 20 | # なにか思ったことがあれば自由に書いてください。 21 | # You can send any feedbacks to organizers. 22 | | 23 | 事前にコード懇親会がどういったものかはリポジトリのreadmeを読んでいたが、実際に「なにやりますか?」と聞かれるとむずかしいw 24 | コード書くのと、懇親するののバランス取りが難しかった(書くのに集中しすぎて自分の世界に入ってしまった) 25 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/selmertsx.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかった! 9 | 結果的にモブプログラミングになったけど 10 | みんなが何を調べて、何から作ってくのか勉強になった 11 | groups: 12 | # どのグループに参加しましたか? 13 | # Which groups did you join? 14 | - Ruboty 15 | next: 16 | # またコード懇親会があったら参加したいですか? 17 | # Do you want to participate if there is a code party? 18 | したい 19 | etc: 20 | # なにか思ったことがあれば自由に書いてください。 21 | # You can send any feedbacks to organizers. 22 | ホワイトボードがほしいかも 23 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/shugo.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | xyzzy派のusaさんにTextbringerの終了方法を説明できて楽しかったです。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Textbringer 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | 参加したいです。 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | お寿司がおいしかったです。 23 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/sinsoku.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | Rubyを書くのは楽しい! 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Ripper, Ruby AST 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | 参加したい 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | 目標していたところまで実装できました。 23 | 食事やお酒も美味しくて、捗りました。 24 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/sonots.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 慌てましたw CUMO の開発をやろうにも GPU を皆は持ってないので、急遽 C Ext 入門講座に切り替えました。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - cumo 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | yes 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | 継続的にやると cumo の開発にまで入れるかもしれない? 23 | 24 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/south37.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。Ruby を書くことそのものが楽しかったです。タスクもなかなか楽しいものを選べました。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Steep 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | 参加したいです。ただの懇親会より自分は好きだと感じました。 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | 最初にグループを選ぶときに、既にあるグループやそこに参加してるメンバーが分かると嬉しいなと思いました(他のグループに話してみたい人がいたので)。 23 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/takano32.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | Bazel というビルドシステムを知ることができてよかったです。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Ruby rules for Bazel 13 | - Numo::NARRAY 14 | next: 15 | # またコード懇親会があったら参加したいですか? 16 | # Do you want to participate if there is a code party? 17 | | 18 | 都合があえば参加したいです。 19 | etc: 20 | # なにか思ったことがあれば自由に書いてください。 21 | # You can send any feedbacks to organizers. 22 | | 23 | 2時間で成果を出すのは難しいですね… 24 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/template.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | (Answer) 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - (Group1) 13 | - (Group2) 14 | - ... 15 | next: 16 | # またコード懇親会があったら参加したいですか? 17 | # Do you want to participate if there is a code party? 18 | | 19 | (Answer) 20 | etc: 21 | # なにか思ったことがあれば自由に書いてください。 22 | # You can send any feedbacks to organizers. 23 | | 24 | (Answer) 25 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/tmtms.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。 9 | 独りで開発していたので他の人がプロジェクトに参加する時の案内がまったく足りないことがわかってよかった。 10 | 自分が気づいてなかった点にいろいろ気づけてよかった。 11 | MySQLの変なところを他の人に伝えることができてよかった。 12 | groups: 13 | # どのグループに参加しましたか? 14 | # Which groups did you join? 15 | - mysqlx 16 | next: 17 | # またコード懇親会があったら参加したいですか? 18 | # Do you want to participate if there is a code party? 19 | | 20 | 参加したいです! 21 | etc: 22 | # なにか思ったことがあれば自由に書いてください。 23 | # You can send any feedbacks to organizers. 24 | | 25 | 実質的な開発を始める前に時間が過ぎてしまった。 26 | ディスプレイがついてないテーブルに座ってしまったので、ディスプレイが欲しかった。 27 | お寿司おいしかったです。 28 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/tomoasleep.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかった。他の人のプロジェクトの話を聞くのが楽しかったです。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Language Server 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | 参加したい 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | # 22 | | 23 | 近くの人のプロジェクトが全く別の分野なので、今度は近い分野の人とも交流してみたいです。 24 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/uasi.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 他の人がどういうプロジェクトに興味を持っているのか分かるところ、興味ある話題があらかじめ分かっているので話かけやすいところがよかったです。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Rubocop 13 | - Ruby (AST) 14 | - Ripper 15 | next: 16 | # またコード懇親会があったら参加したいですか? 17 | # Do you want to participate if there is a code party? 18 | | 19 | 参加したいです。 20 | etc: 21 | # なにか思ったことがあれば自由に書いてください。 22 | # You can send any feedbacks to organizers. 23 | | 24 | もっと長くやりたい。他のグループとも交流できる機会があれば。 25 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/unak.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。あの有名なTextBringerの作者の方に直接TextBringerの操作方法を教えてもらい、また、大した内容ではないですが、PullRequestも取り込んでもらえました。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - (Group1) 13 | - (Group2) 14 | - TextBringer 15 | next: 16 | # またコード懇親会があったら参加したいですか? 17 | # Do you want to participate if there is a code party? 18 | | 19 | はい、参加したいです。 20 | etc: 21 | # なにか思ったことがあれば自由に書いてください。 22 | # You can send any feedbacks to organizers. 23 | | 24 | 次に参加する時は、普段自分が開発しているプロジェクトでやってみようと思います。 25 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/wagai.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | (Answer) 9 | 普段リモートで作業しているので、大人数でコードを書く新鮮さを味わえました。凄く楽しかったです。 10 | groups: 11 | # どのグループに参加しましたか? 12 | # Which groups did you join? 13 | - RSpec 14 | next: 15 | # またコード懇親会があったら参加したいですか? 16 | # Do you want to participate if there is a code party? 17 | | 18 | (Answer) 19 | 参加したいです。 20 | etc: 21 | # なにか思ったことがあれば自由に書いてください。 22 | # You can send any feedbacks to organizers. 23 | | 24 | (Answer) 25 | みんなレベルが高い!! 26 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/yancya.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | - MySQL X Protocol の gem のチームの隣で MySQL の話をしながら自分の SQL gem の MySQL 8.0 サポートを書いていました 4 | - 楽しかったです 5 | 6 | groups: 7 | - mysqlx 8 | - relationizer 9 | 10 | next: 11 | - またあったら参加したいです 12 | 13 | etc: 14 | - 寿司がめっちゃたくさんあって、お腹いっぱいです。ごちそうさまでした 15 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/yhara.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | はい 9 | 仕様について議論できたりして楽しかったです。 10 | groups: 11 | # どのグループに参加しましたか? 12 | # Which groups did you join? 13 | - Ovto 14 | next: 15 | # またコード懇親会があったら参加したいですか? 16 | # Do you want to participate if there is a code party? 17 | | 18 | はい 19 | etc: 20 | # なにか思ったことがあれば自由に書いてください。 21 | # You can send any feedbacks to organizers. 22 | | 23 | 意外とあっという間でした。 24 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/youchan.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | まつもとさんという方が老害トークをしていたのが新鮮で面白かったです。 9 | まじめな話をすると、いろいろな人とお話ができつつ、開発が進んでよいと思いました。(今日は進みませんでした) 10 | groups: 11 | # どのグループに参加しましたか? 12 | # Which groups did you join? 13 | - charty 14 | next: 15 | # またコード懇親会があったら参加したいですか? 16 | # Do you want to participate if there is a code party? 17 | | 18 | 是非やりたいです! 19 | etc: 20 | # なにか思ったことがあれば自由に書いてください。 21 | # You can send any feedbacks to organizers. 22 | | 23 | 次回も楽しみにしています! 24 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/yugui.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | - true 8 | - coding.fun? 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - "Ruby rules for Bazel" 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | true 17 | etc: 18 | # なにか思ったことがあれば自由に書いてください。 19 | # You can send any feedbacks to organizers. 20 | require: system.explanation.time < event.time 21 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/znz.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 自分が作業するだけではなく、OSS Gate と似た感じで、他の人のコントリビュートを手伝えたのがよかった。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Rubyリファレンスマニュアル 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | | 17 | 参加したいです。 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # You can send any feedbacks to organizers. 21 | | 22 | matz に直接質問できて便利でした。 23 | -------------------------------------------------------------------------------- /rubykaigi-2018/feedback/zom-yoshidan.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | | 4 | sonotsさんに付きっきりで教わる一方で申し訳ない気持ちが結構あります…が、コミッタの方に指南してもらって楽しい&嬉しかったです。 5 | また初めてGemをCで開発するという経験もできたのも良かったです。 6 | groups: 7 | - cumo 8 | next: 9 | | 10 | ぜひ! 11 | etc: 12 | 2時間という短い時間だったのでなかなか他のグループに移るとかそういうことを考える余裕もなかったです 13 | -------------------------------------------------------------------------------- /rubykaigi-2019/README.md: -------------------------------------------------------------------------------- 1 | # Code Party(コード懇親会) 2 | 3 | Ruby is a programming language that focus to have fun. You have fun with programming with Ruby, right? We will be able to have fun a party that focus code with Ruby as usual! 4 | 5 | Rubyは楽しくプログラミングできることを大事にしているプログラミング言語です。みなさんも、いつもRubyで楽しくプログラミングしているはずです。だったら、いつものようにコードを書きながら懇親すると楽しそうじゃないですか! 6 | 7 | ## Event Details(イベント情報) 8 | 9 | * [Event Page](https://speee.connpass.com/event/123541/) 10 | * Date:4,19,2019 Fri. 18:30-21:00 11 | * Start Time:18:30 12 | * RubyKaigi 2019 Day2 13 | * Place:[sunpalace hotel and hall/heian](http://www.f-sunpalace.com/info/) 14 | * Entry Fee:Free 15 | * Capacity:about 50 people 16 | 17 | 18 | 19 | * [イベントページ](https://speee.connpass.com/event/123541/) 20 | * 開催日時:2019年4月19日(金)18:30-21:00 21 | * 開場時間:18:30 22 | * RubyKaigi 2019 2日目 23 | * 会場:[sunpalace hotel and hall/heian](http://www.f-sunpalace.com/info/) 24 | * 参加費:無料 25 | * 定員:約50名 26 | 27 | 28 | ## Contents(内容) 29 | 30 | This is not a typical party. For familiar party, participants enjoy drinking and talking. At the code party, We will enjoy together while programing. It is an good opportunity to exchange directly with other Rubyists. Let's develop together and have fun! 31 | 32 | これはよくある懇親会ではありません。よくある懇親会は参加者同士がお酒を飲みながら話をして交流します。コード懇親会は参加者同士が一緒にコードを書きながら交流します。せっかく他のRubyistと直接やりとりする機会です。一緒に開発して楽しみましょう! 33 | 34 | Because it is not a typical party, there may be people saying "Although it seems to be fun, I can not tell whether I will participate or not because I care about what it will become." 35 | So, in order to be able to imagine the contents of this code party, we have summarized some similar events, not doing things and doing things. 36 | 37 | よくある懇親会ではないので、「コードで懇親するのは楽しそうだけど、どういう内容になるかが気になって参加するかどうか判断できない」という人もいるでしょう。そこで、参加前にこの懇親会の内容をイメージできるように、似ている内容のイベント・やらないこと・やることをいくつかまとめました。 38 | 39 | If you have anything else you want to know please ask with the [issue](https://github.com/speee/code-party/issues). It is the same way as usual development! Because it's a code party! 40 | 41 | 他にも知りたいことがある人は [issue](https://github.com/speee/code-party/issues) で質問してください。普段の開発と同じやり方です!だって、これはコード懇親会ですから! 42 | 43 | 44 | ### Similar Contents(似ている内容) 45 | 46 | The content of the code party is similar to "Sprint". In Python's event, We often see "Sprint". For example, there are [Development Sprints of PyCon 2018 in Cleveland, Ohio](https://us.pycon.org/2018/community/sprints/). 47 | Both Sprint and code party write code, but Sprint focuses on developing it, Code Party focuses on writing code and enjoying it. 48 | 49 | コード懇親会の内容は「スプリント」と似ています。Pythonのイベントでは「スプリント」をよくみかけます。たとえば、[PyCon JP 2017 in Tokyo のスプリント](https://pycon.jp/2017/ja/events/sprint/)がありました。 50 | スプリントもコード懇親会もコードを書きますが、スプリントは開発することにより注力し、コード懇親会は懇親することに注力します。 51 | 52 | 53 | The content of the code party is somewhat similar to "Hackathon". Both of them write the code, but there are the following differences. 54 | 55 | * Hackathon may be held for a long time, but the code party ends in the same amount of time (2 hours) as a typical party. 56 | * In Hackathon, we may review development results, but never review at code party. 57 | 58 | コード懇親会の内容は少し「ハッカソン」に似ています。どちらもコードを書きますが、次のような違いがあります。 59 | 60 | * ハッカソンは長時間開催されることがあるが、コード懇親会はよくある懇親会と同じくらいの時間(2時間)で終わる 61 | * ハッカソンでは開発成果を審査することがあるが、コード懇親会は決して審査しない 62 | 63 | 64 | ### What you do not do(やらないこと) 65 | 66 | The concept of code party is "If you are writing code fun even alone, it is fun to interact through code!" 67 | Therefore, at the code party, we will not "enrich with the usual way of writing code". For example, we do not prepare the following planning. (It is free for participants to do spontaneously with each other.) 68 | 69 | * Code Golf 70 | * Mob Programming 71 | 72 | コード懇親会のコンセプトは「いつもRubyで楽しくコードを書いているなら、コードを通じて懇親するのも楽しいよね!」です。そのため、コード懇親会では「いつもと違うコードの書き方で盛り上げる」ことはしません。たとえば、次のような企画は用意しません。(参加者同士が自発的にやることは自由です。) 73 | 74 | * コードゴルフ 75 | * モブプログラミング 76 | 77 | ### What you do(やること) 78 | 79 | Participants write code as usual as a code party. To do so, proceed as follows. 80 | 81 | コード懇親会は参加者がいつものようにコードを書いて懇親します。そのために、次のようなように進めます。 82 | 83 | 1. Create a group for each product 84 | * Example: Ruby itself, mruby, Rails itself, various gem, Red Data Tools etc. 85 | * What kind of group you can do depends on the participants (If you do not have it yet, make it new) 86 | * Desks and chairs are gathered for each group 87 | * To make code easy to write 88 | 89 | プロダクトごとにグループを作る 90 | * 例:Ruby本体やmrubyやRails本体や各種gemやRed Data Toolsなど 91 | * どんなグループができるかは参加者次第(まだなかったら新しく作る) 92 | * グループごとに机とイスがまとまっている 93 | * コードを書きやすくするため 94 | 95 | 2. Participants join somewhere in the group 96 | * Group can be changed freely later, so feel free to decide 97 | * You can decide which group you want to join in advance, whichever you decide not to decide 98 | * You can talk to which group you would like to join at the reception 99 | * Receptionist is RubyKaigi 2019 speaker Suto 100 | 101 | 参加者はなにかしらのグループに入る 102 | * グループはあとから自由に変更できるので気軽に決めてよい 103 | * 事前にどのグループに入りたいかは決めてきても決めてこなくてもどちらでもよい 104 | * 受付でどのグループに入るのがよさそうか相談できる 105 | * 受付はRubyKaigi 2019 スピーカーの須藤 106 | 107 | 3. Interacting while writing the code together in the group 108 | * Main content (less than 2 hours) 109 | * Example: Consultation on development offline with people who are constantly developing together online 110 | * Example: Consultation as to the author of gem that I normally use talks about where it is better to participate in development 111 | * Example: Participants who do not understand words (eg Japanese) and interacting through code with Ruby 112 | * Move to other group 113 | * Make it easier to understand what other groups are there 114 | * Example: Group map is prepared on the whiteboard 115 | * Example: There is time to briefly introduce to other groups what their group is doing on the way (about an hour) 116 | * Food and drink prepared at the venue 117 | 118 | グループ内で一緒にコードを書きながら懇親 119 | * メインコンテンツ(2時間弱) 120 | * 例:オンラインで一緒に開発している人とオフラインで開発の相談 121 | * 例:普段使っているgemの作者にどこから開発に参加するのがよさそうか相談して開発に参加 122 | * 例:言葉(たとえば日本語)が通じない参加者とRubyのコードを通じて懇親 123 | * 他のグループに移動可能 124 | * 会場には他にどのようなグループがあるかわかりやすくなる仕組みを用意 125 | * 例:ホワイトボードにグループマップを用意 126 | * 例:途中(1時間くらい経ったら)、自分たちのグループがどんなグループかを他のグループに簡単に紹介する時間がある 127 | * 会場には飲食物を用意 128 | 129 | 4. Submit a questionnaire 130 | * Submit the pull request on how the code party is in the end 131 | * Since it is a code party, submit a questionnaire as usual! 132 | * Refer to [feedback](feedback/) for the submission method 133 | 134 | アンケートを提出 135 | * 最後にこの会がどうだったかをプルリクエストで提出 136 | * コード懇親会なので、アンケートの提出もいつものように! 137 | * 提出方法は[feedback](feedback/)を参照 138 | 139 | ## ねらい 140 | 141 | ### 参加者 142 | 143 | 「たのしい開発」をたくさん生む 144 | 145 | * RubyKaigiで高まったモチベーションが集まることにより「たのしい開発」に繋がる 146 | * プロダクトの作者に話を聞いたり、一緒に開発することによって、開発がもっとたのしくなる 147 | * コード懇親会を通して「たのしい開発」を体験し、開発を継続しようと思う人が増える 148 | 149 | 150 | 評価方法: 151 | 152 | * アンケート結果から 153 | * どのくらい「たのしい開発」ができた人が観測できるか 154 | * どのくらい開発を続けたいと思った人が観測できるか 155 | 156 | ### Speee 157 | 158 | * 「たのしい開発」を生むことにより、Ruby本体やRuby周辺の開発が進む 159 | * Rubyを使っているSpeeeにも恩恵がある 160 | * Speeeが「開発者を増やす」、「開発を前に進める活動をしている」ことをRubyistに知ってもらう 161 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback-summary.md: -------------------------------------------------------------------------------- 1 | # Feedback summary 2 | 3 | See [feedback/](feedback/) for details. 4 | 5 | ## Template 6 | 7 | ```yaml 8 | questions: 9 | fun: 10 | # 楽しかったですか? 11 | # Did you have fun? 12 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 13 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 14 | | 15 | (Answer) 16 | groups: 17 | # どのグループに参加しましたか? 18 | # Which groups did you join? 19 | - (Group1) 20 | - (Group2) 21 | - ... 22 | next: 23 | # 今後も日常的にOSS開発を続けたいですか? 24 | # Will you keep on contributing to open source? 25 | | 26 | (Answer) 27 | etc: 28 | # なにか思ったことがあれば自由に書いてください。 29 | # Please give us any feedback. 30 | | 31 | (Answer) 32 | ``` 33 | 34 | ## Answers 35 | 36 | ```console 37 | code-party% ruby aggregate.rb rubykaigi-2019 38 | --- 39 | fun 40 | --- 41 | 284km: True 42 | A lot of pull requests for Charty have come!! 43 | ======================================== 44 | MITSUBOSHI: 楽しかったです。特にRubyのビルドをしたり、date_parse.cなどのコードを読み追っていくのが。 45 | ======================================== 46 | Nyoho: はい!!!!!!!! 47 | ======================================== 48 | UsaMomokawa: 楽しかったです。 49 | 自然言語処理がどのように行われているのか、チュートリアルな部分について、実際のコードを見ながら理解できました。 50 | ======================================== 51 | aycabta: I was fixing many hardcore bugs, so I was exhausted. 52 | ======================================== 53 | chang-jun: 楽しめました。新しい知識が得られたのと、同じように関心を持っている方や実際に開発をガンガン進められている話を聞けたので。 54 | ======================================== 55 | chinatz: 楽しかったです。 56 | Red Data Toolsの方々がいるテーブルでChartyを動かしてみることができました。 57 | OSS貢献の第一歩で、Chartyのドキュメンテーションにコミットすることができました。 58 | ======================================== 59 | condor: 楽しかった。去年の続きができた 60 | ======================================== 61 | h-akanuma: I had fun about thinking about some code with other attendees. But we shoud start it earlyer than we ded. We did something interesting individually in the 1st half of the time. 62 | 他の参加者とコードを見ながら考えることができたのは楽しかったです。でも前半は個々に興味のあることをやっていたので、もっと早く始められればよかったと思います。 63 | ======================================== 64 | hachi8833: 間違いなく楽しいイベントでした! 65 | ======================================== 66 | hoshinotsuyoshi: 楽しかったです! 67 | 他にもrubocopやってる人もいて、良かったです。 68 | issue解決のPRを途中まで書けました。 69 | 他のツールの開発の人とも相席だったので、席移動しなくても喋れてよかったです。 70 | ======================================== 71 | ioquatix: I enjoyed to spend time with other Ruby programmers. We have trouble communicating with language, but we can communciate with code. 72 | ======================================== 73 | jeremyevans: Yes. I had a lot of fun working on Ruby syntax changes. 74 | ======================================== 75 | jinroq: 昨年も参加した oda-i3 です。遅れて来たので環境構築で終わってしまいました…。残念! 76 | ======================================== 77 | ken3ypa: 78 | Yes. 79 | インド出身の方と英語でやりとりしつつ、一緒にコードを書くことが出来た。 80 | これは初めての経験だった。 81 | ======================================== 82 | kirikak2: なかなか時間が取れずに後回しになっていたrailsへのバグ報告が出来ました。 83 | railsへのissue報告は初めてでしたが@yahondaさんに助言をいただきながら出せました。 84 | ======================================== 85 | kozo2: 楽しかった。chartyのgemの作者とお話できたから 86 | ======================================== 87 | luccafort: 普段Railsの話の主体でなかなか1つのGemのissueをみたりコードを実装したりすることがなかったので普段お世話になっているGemに少しばかりでも恩返しできればいいなというのが普段の仕事とは違ったコードの楽しみがあってよかったです。 88 | ======================================== 89 | makicamel: (Answer) 90 | とっっっっても楽しかったです!!! 91 | ようさんに「初心者なのでチュートリアルから」と直接お話して頂いて、さらに隣で説明しながらライブコーディングしていただいて、 92 | すっごい勉強になって楽しかったです!! 93 | 今度は自分で書きます!!! 94 | ======================================== 95 | nyamadori: 楽しかった。Rails に詳しい人が近くにいたのでモチベーション高く作業できた。 96 | ======================================== 97 | shiro615: 賑やかな雰囲気でコードが書けて楽しかったです。 98 | ======================================== 99 | sinsoku: I was taught code from Ruby comitters and I had a good experience. 100 | ======================================== 101 | st0012: It's an excellent event to make new friends (and meet some old friends as well). 102 | It's also very fun to have someone discussing open source works in person. 103 | ======================================== 104 | tmtm: はい。MySQLの話ができた。 105 | ======================================== 106 | tomog105: Charty の開発に小さな貢献が出来た。また、OSS の開発に慣れていない人や Charty を知らない人に対しての貢献も出来たと思いなお良かった。 107 | ======================================== 108 | watson1978: Redmine のプラグイン開発されている方と作業ができて、いろいろと知見をいただけて楽しかったです。Redmine のような歴史のあるアプリケーションでもタイムゾーンに依存しているテストがあり、テストが不安定なケースがあったり興味深かったです。 109 | ======================================== 110 | yahonda: 楽しかったです。私自身のやっているRailsへのpull request自体は終わらなかったですが、Issueのつくりかたについて話をしたり、知っていたこと(MySQLのRails 6での変更)をもとにアドバイスできたので。 111 | ======================================== 112 | ybiquitous: ruby/rubyを初めてbuildしたので、興奮しました! 113 | prelude.rbをいじってObject#blank?メソッド生やしたり、String#reiwa?メソッド生やしたりしましたw。 114 | @matzさん、@n0kadaさん、@ktouさん、@yuguiさんと普通に話せたので、うれしかったです。 115 | 特に@yuguiさんには懇切丁寧に教えていただきました!ありがとうございます! 116 | ======================================== 117 | youchan: 楽しかったです。 118 | 女性の参加者が増えたのもよいですね。 119 | ======================================== 120 | yysaki: 楽しかったです。自分のワークアラウンドで対処していた箇所をより妥当なやり方の設定について相談して頂き、対処できました。Railsコミッターの方と話せたのは刺激になりました。 121 | ======================================== 122 | znz: 知らない人とも話ができてよかったです。 123 | ======================================== 124 | 125 | ------ 126 | groups 127 | ------ 128 | 284km: 129 | Charty 130 | ======================================== 131 | MITSUBOSHI: 132 | Ruby 133 | ======================================== 134 | Nyoho: 135 | NLP 136 | ======================================== 137 | UsaMomokawa: 138 | NLP 139 | ======================================== 140 | aycabta: 141 | Ruby 142 | ======================================== 143 | chang-jun: 144 | NLP 145 | ======================================== 146 | chinatz: 147 | Charty 148 | ======================================== 149 | condor: 150 | MySQL 151 | ======================================== 152 | h-akanuma: 153 | Ruby 154 | ======================================== 155 | hachi8833: 156 | NLP 157 | ... 158 | ======================================== 159 | hoshinotsuyoshi: 160 | rubocop 161 | ======================================== 162 | ioquatix: 163 | Ruby (DRb) 164 | ======================================== 165 | jeremyevans: 166 | Ruby 167 | ======================================== 168 | jinroq: 169 | redmine 170 | ======================================== 171 | ken3ypa: 172 | Ruby 173 | ======================================== 174 | kirikak2: 175 | Rails 176 | ======================================== 177 | kozo2: 178 | charty 179 | ======================================== 180 | luccafort: 181 | (Rspec/Rubocop) 182 | ======================================== 183 | makicamel: 184 | (NLP) 185 | ======================================== 186 | nyamadori: 187 | Rails 188 | ======================================== 189 | shiro615: 190 | Apache Arrow 191 | ======================================== 192 | sinsoku: 193 | Ruby 194 | ======================================== 195 | st0012: 196 | Rails 197 | ======================================== 198 | tmtm: 199 | MySQL 200 | ======================================== 201 | tomog105: 202 | Charty 203 | ======================================== 204 | watson1978: 205 | Redmine 206 | ======================================== 207 | yahonda: 208 | Rails 209 | (Group2) 210 | ... 211 | ======================================== 212 | ybiquitous: 213 | Ruby core (?) group 214 | ======================================== 215 | youchan: 216 | NLP 217 | ======================================== 218 | yysaki: 219 | Rails 220 | (Group2) 221 | ... 222 | ======================================== 223 | znz: 224 | Ruby (dRuby) 225 | ======================================== 226 | 227 | ---- 228 | next 229 | ---- 230 | 284km: True 231 | ======================================== 232 | MITSUBOSHI: はい。していきたいです。 233 | ======================================== 234 | Nyoho: はい!!!!!!!!!!!!! 235 | ======================================== 236 | UsaMomokawa: ぜひ挑戦してみたいです。 237 | ======================================== 238 | aycabta: Of cause. 239 | ======================================== 240 | chang-jun: まだハードルが高い感じがしますが、ゆくゆくは携われたらなと思います。 241 | ======================================== 242 | chinatz: はい。 243 | ======================================== 244 | condor: 時間が取れれば続けたいが、時間が取れない現状がある 245 | ======================================== 246 | h-akanuma: - Currently I'm not contributing to OSS. But I'd like to start it. 247 | ======================================== 248 | hachi8833: はい、今も細々とやってます☺️ 249 | ======================================== 250 | hoshinotsuyoshi: 仕事でつっかえたらやります! 251 | ======================================== 252 | ioquatix: Yes. 253 | ======================================== 254 | jeremyevans: Definitely. 255 | ======================================== 256 | jinroq: 続けたいです。ただ、続けられるような環境が上手く作れていないです。 257 | ======================================== 258 | ken3ypa: 259 | Yes. 260 | ======================================== 261 | kirikak2: はい。OSSパッチ会にも機会があれば参加したいです。 262 | ======================================== 263 | kozo2: 続けたい 264 | ======================================== 265 | luccafort: 普段コードを読んだりすることはあったけれどあまりOSSにコミットすることがなかったので出来る範囲で貢献していきたいなと感じました。 266 | ======================================== 267 | makicamel: (Answer) 268 | はい!!!! 269 | ======================================== 270 | nyamadori: 機会があればしたい 271 | ======================================== 272 | shiro615: はい! 273 | ======================================== 274 | sinsoku: I want to continue as long as I have motivation and time. 275 | ======================================== 276 | st0012: I'm already an regular contributor and still will be in the future 😄 277 | ======================================== 278 | tmtm: はい 279 | ======================================== 280 | tomog105: Yes 281 | ======================================== 282 | watson1978: はい、もちろん🎉 283 | ======================================== 284 | yahonda: Yes 285 | ======================================== 286 | ybiquitous: もちろんです!!! 287 | ======================================== 288 | youchan: したいです!NLPをRubyでいい感じにしたいです! 289 | ======================================== 290 | yysaki: Yes 291 | ======================================== 292 | znz: 変わらず続けていきたいです。 293 | ======================================== 294 | 295 | --- 296 | etc 297 | --- 298 | 284km: Had fun! 299 | ======================================== 300 | MITSUBOSHI: 今年も開催いただきありがとうございました。 301 | ======================================== 302 | Nyoho: ようちゃんさんのRuby力を目の前でまざまざと見せられて魅せられました! 研鑽を積んで少しでも近づけるように頑張りたいです! 303 | ======================================== 304 | UsaMomokawa: 「やりたいこと」をコードに落とし込む過程について、みんなで楽しめました。 305 | 新しい知識とおいしいご飯をたくさん接種できました。ありがとうございました。 306 | ======================================== 307 | aycabta: So tired. 308 | ======================================== 309 | chang-jun: Rubykaigiのセッションの後に行うのすごくいいと思いました! 310 | ======================================== 311 | chinatz: 開催ありがとうございます! 312 | オープンな場所で、周りのグループの話もちょっと耳に入れながらわいわいできてよかったです。OSS活動貢献への関心も高まりました。 313 | コードで懇親できた点がとてもよかったです。同じものに興味がある人同士やそれについて詳しい人たちと交流することができました。 314 | ======================================== 315 | condor: 2時間は短めのようにも思うがどうでしょうか。 316 | ======================================== 317 | h-akanuma: I'd like to attend again! 318 | ======================================== 319 | hachi8833: 冒頭からWiFiがなかなかつながらず、30minほど手こずってしまいました😅 320 | youchanさんのNLP話と実演が刺激になりました 321 | 今までmecabベース方面はふわっとしか知らなかったのですが、やりたいことをいくつか思いつきました😍 322 | ======================================== 323 | hoshinotsuyoshi: 去年も参加しました! またお願いします!! 324 | ======================================== 325 | ioquatix: It would be useful to have some pens and paper. The food was very nice. It was very relaxing. I wish we had more time together. 326 | ======================================== 327 | jeremyevans: Thank you very much for providing a venue for all of us to work on improving Ruby during RubyKaigi. 328 | ======================================== 329 | jinroq: 昨年は mruby チームでしたが、もくもく会でした。今回はみんなコミュニケーション取れたので良かったです。 330 | ======================================== 331 | ken3ypa: 332 | None. 333 | ======================================== 334 | kirikak2: ホストしていただいた、Speeeさん、ありがとうございました! 335 | ======================================== 336 | kozo2: 集まるとプログラミング以外に浮気をしなくなるのでよい 337 | ======================================== 338 | luccafort: なにかをやりきるには時間が足りなくて厳しかったです!><; 339 | コードを書くのに集中してしまうと会話せず黙々と作業してしまい、食事の手が止まってしまったので何かこの辺り仕組みで解決できればいいなと感じました。 340 | ======================================== 341 | makicamel: (Answer) 342 | 本当に貴重な機会をありがとうございました!! 343 | セッションを聞いて「やりたいなあ…」という気持ちが湧いてきたタイミングでこういう機会を頂いて、もっと気持ちが高まりました!! 344 | ありがとうございます!!! 345 | ======================================== 346 | nyamadori: 参加者のレベルが高くてすごい! 347 | ======================================== 348 | shiro615: みんなでコードを書いたりするとモチベーションがあがりますね。 349 | ======================================== 350 | sinsoku: It is fun to write code with everyone. 351 | Thanks for organizing the event! 352 | ======================================== 353 | st0012: I hope we can have some kind of chat rooms for each team. It'll be easier to share information between members 354 | ======================================== 355 | tmtm: 来年も期待してます。 356 | ======================================== 357 | tomog105: グループ分けして同じテーブルでわいわいやるというのが良かったと思います。 358 | ======================================== 359 | watson1978: 私は知り合いの方と一緒に作業にあたり雑談多めでしたが、他のテーブルではどういう状況だったか興味があります。もっといろいろな方とわいわいと継続できたらと願っております。 360 | ======================================== 361 | yahonda: 興味を持った人同士で同じテーブルを作るのはよいアイディアだと思いました。 362 | ======================================== 363 | ybiquitous: 場所や時間の確保など運営が大変だとは思いますが、できるかぎり継続していただけると大変ありがたいです! 364 | ======================================== 365 | youchan: Red Data ToolsというコミュニティでNLPもやっています。興味を持った方はぜひ参加してみてください。 366 | https://red-data-tools.github.io/ja/ 367 | ======================================== 368 | yysaki: テーマを決めた席に集まったので、具体的な相談がしやすくてよかったです。 369 | ======================================== 370 | znz: Wi-Fi 情報を確認せずに入ってしまったらわからないままで、テザリングで繋いでいたので、ネットワーク情報の掲示を増やしてほしいです。 371 | ======================================== 372 | ``` 373 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/284km.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | True 9 | A lot of pull requests for Charty have come!! 10 | groups: 11 | # どのグループに参加しましたか? 12 | # Which groups did you join? 13 | - Charty 14 | next: 15 | # 今後も日常的にOSS開発を続けたいですか? 16 | # Will you keep on contributing to open source? 17 | | 18 | True 19 | etc: 20 | # なにか思ったことがあれば自由に書いてください。 21 | # Pleae give us any feedback. 22 | | 23 | Had fun! 24 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/MITSUBOSHI.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。特にRubyのビルドをしたり、date_parse.cなどのコードを読み追っていくのが。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Ruby 13 | next: 14 | # 今後も日常的にOSS開発を続けたいですか? 15 | # Will you keep on contributing to open source? 16 | | 17 | はい。していきたいです。 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # Pleae give us any feedback. 21 | | 22 | 今年も開催いただきありがとうございました。 23 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/Nyoho.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | はい!!!!!!!! 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - NLP 13 | next: 14 | # 今後も日常的にOSS開発を続けたいですか? 15 | # Will you keep on contributing to open source? 16 | | 17 | はい!!!!!!!!!!!!! 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # Pleae give us any feedback. 21 | | 22 | ようちゃんさんのRuby力を目の前でまざまざと見せられて魅せられました! 研鑽を積んで少しでも近づけるように頑張りたいです! 23 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/README.md: -------------------------------------------------------------------------------- 1 | # How to feedback(フィードバック方法) 2 | 3 | ## English 4 | 5 | 1. Fork this repository 6 | 2. Create a branch such as `rubykaigi-2019-feedback` 7 | 3. Copy `rubykaigi-2019/feedback/template.yaml` to `feedback/#{your_github_account}.yaml` 8 | 4. Fill your answers against questions in `feedback/#{your_github_account}.yaml` 9 | 5. Commit `rubykaigi-2019/feedback/#{your_github_account}.yaml` 10 | 6. Push the branch 11 | 7. Send a pull request 12 | 13 | ## Japanese 14 | 15 | 1. このリポジトリーをフォーク 16 | 2. `rubykaigi-2019-feedback`ようなブランチを作る 17 | 3. `rubykaigi-2019/feedback/template.yaml`を`feedback/#{your_github_account}.yaml`にコピー 18 | 4. `rubykaigi-2019/feedback/#{your_github_account}.yaml`内の質問に回答 19 | 5. `rubykaigi-2019/feedback/#{your_github_account}.yaml`をコミット 20 | 6. このブランチをpush 21 | 7. プルリクエストを作成 22 | 23 | ## Command line 24 | 25 | Fork this repository! 26 | 27 | ```console 28 | % git clone https://github.com/#{your_github_account}/code-party.git 29 | % cd code-party.git 30 | % git checkout -b rubykaigi-2019-feedback 31 | % cp feedback/template.yaml feedback/#{your_github_account}.yaml 32 | % #{your_favorite_editor} feedback/#{your_github_account}.yaml 33 | % git add feedback/#{your_github_account}.yaml 34 | % git commit feedback/#{your_github_account}.yaml 35 | % git push origin rubykaigi-2019-feedback 36 | ``` 37 | 38 | Send a pull request! 39 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/UsaMomokawa.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。 9 | 自然言語処理がどのように行われているのか、チュートリアルな部分について、実際のコードを見ながら理解できました。 10 | groups: 11 | # どのグループに参加しましたか? 12 | # Which groups did you join? 13 | - NLP 14 | next: 15 | # 今後も日常的にOSS開発を続けたいですか? 16 | # Will you keep on contributing to open source? 17 | | 18 | ぜひ挑戦してみたいです。 19 | etc: 20 | # なにか思ったことがあれば自由に書いてください。 21 | # Pleae give us any feedback. 22 | | 23 | 「やりたいこと」をコードに落とし込む過程について、みんなで楽しめました。 24 | 新しい知識とおいしいご飯をたくさん接種できました。ありがとうございました。 25 | 26 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/aycabta.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | | 4 | I was fixing many hardcore bugs, so I was exhausted. 5 | groups: 6 | - Ruby 7 | next: 8 | | 9 | Of cause. 10 | etc: 11 | | 12 | So tired. 13 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/chang-jun.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しめました。新しい知識が得られたのと、同じように関心を持っている方や実際に開発をガンガン進められている話を聞けたので。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - NLP 13 | next: 14 | # 今後も日常的にOSS開発を続けたいですか? 15 | # Will you keep on contributing to open source? 16 | | 17 | まだハードルが高い感じがしますが、ゆくゆくは携われたらなと思います。 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # Pleae give us any feedback. 21 | | 22 | Rubykaigiのセッションの後に行うのすごくいいと思いました! 23 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/chinatz.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。 9 | Red Data Toolsの方々がいるテーブルでChartyを動かしてみることができました。 10 | OSS貢献の第一歩で、Chartyのドキュメンテーションにコミットすることができました。 11 | groups: 12 | # どのグループに参加しましたか? 13 | # Which groups did you join? 14 | - Charty 15 | next: 16 | # 今後も日常的にOSS開発を続けたいですか? 17 | # Will you keep on contributing to open source? 18 | | 19 | はい。 20 | etc: 21 | # なにか思ったことがあれば自由に書いてください。 22 | # Pleae give us any feedback. 23 | | 24 | 開催ありがとうございます! 25 | オープンな場所で、周りのグループの話もちょっと耳に入れながらわいわいできてよかったです。OSS活動貢献への関心も高まりました。 26 | コードで懇親できた点がとてもよかったです。同じものに興味がある人同士やそれについて詳しい人たちと交流することができました。 27 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/condor.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかった。去年の続きができた 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - MySQL 13 | next: 14 | # 今後も日常的にOSS開発を続けたいですか? 15 | # Will you keep on contributing to open source? 16 | | 17 | 時間が取れれば続けたいが、時間が取れない現状がある 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # Pleae give us any feedback. 21 | | 22 | 2時間は短めのようにも思うがどうでしょうか。 23 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/h-akanuma.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | I had fun about thinking about some code with other attendees. But we shoud start it earlyer than we ded. We did something interesting individually in the 1st half of the time. 9 | 他の参加者とコードを見ながら考えることができたのは楽しかったです。でも前半は個々に興味のあることをやっていたので、もっと早く始められればよかったと思います。 10 | groups: 11 | # どのグループに参加しましたか? 12 | # Which groups did you join? 13 | - Ruby 14 | next: 15 | # 今後も日常的にOSS開発を続けたいですか? 16 | # Will you keep on contributing to open source? 17 | | 18 | - Currently I'm not contributing to OSS. But I'd like to start it. 19 | etc: 20 | # なにか思ったことがあれば自由に書いてください。 21 | # Pleae give us any feedback. 22 | | 23 | I'd like to attend again! 24 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/hachi8833.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 間違いなく楽しいイベントでした! 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - NLP 13 | - ... 14 | next: 15 | # 今後も日常的にOSS開発を続けたいですか? 16 | # Will you keep on contributing to open source? 17 | | 18 | はい、今も細々とやってます☺️ 19 | etc: 20 | # なにか思ったことがあれば自由に書いてください。 21 | # Pleae give us any feedback. 22 | | 23 | 冒頭からWiFiがなかなかつながらず、30minほど手こずってしまいました😅 24 | youchanさんのNLP話と実演が刺激になりました 25 | 今までmecabベース方面はふわっとしか知らなかったのですが、やりたいことをいくつか思いつきました😍 26 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/hanachin.yml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | | 4 | Redmineの環境構築を皆でしてtrunk・2.6、MySQL・PostgreSQL・SQLite3、いろんな動作環境で同時にテストを流してみんな同じテストが落ちて盛り上がって楽しかった。 5 | RedmineやRedmineプラグイン開発の面白さを話せて楽しかった。 6 | システムの時刻をUTC+02:00に変えるとテストが通って爆笑してしまった。 7 | rmagickメンテナーの方がいたのでrmagickがサポートしているImageMagick・rubyのバージョンがあるというのを教えてもらえてよかった。 8 | 将来的にRedmineがサポートしているrubyのバージョンとコンフリクトしそう。 9 | groups: 10 | - Redmine 11 | next: 12 | | 13 | やっていきたい 14 | etc: 15 | | 16 | コード見てもりあがってすごくたのしかったです!! 17 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/hoshinotsuyoshi.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです! 9 | 他にもrubocopやってる人もいて、良かったです。 10 | issue解決のPRを途中まで書けました。 11 | 他のツールの開発の人とも相席だったので、席移動しなくても喋れてよかったです。 12 | groups: 13 | # どのグループに参加しましたか? 14 | # Which groups did you join? 15 | - rubocop 16 | next: 17 | # 今後も日常的にOSS開発を続けたいですか? 18 | # Will you keep on contributing to open source? 19 | | 20 | 仕事でつっかえたらやります! 21 | etc: 22 | # なにか思ったことがあれば自由に書いてください。 23 | # Pleae give us any feedback. 24 | | 25 | 去年も参加しました! またお願いします!! 26 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/iberianpig.yml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | - はい 5 | # Did you have fun? 6 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 7 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 8 | - ユーティリティを作りたかったが、rubocop利用時のgitワークフローの改善ポイントがディスカッション出来たのが良かったです 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - 'Rubocop & Rspec' 13 | next: 14 | # 今後も日常的にOSS開発を続けたいですか? 15 | # Will you keep on contributing to open source? 16 | Yes 17 | etc: 18 | # なにか思ったことがあれば自由に書いてください。 19 | # Pleae give us any feedback. 20 | 21 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/ioquatix.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | | 4 | I enjoyed to spend time with other Ruby programmers. We have trouble communicating with language, but we can communciate with code. 5 | groups: 6 | - Ruby (DRb) 7 | next: 8 | | 9 | Yes. 10 | etc: 11 | | 12 | It would be useful to have some pens and paper. The food was very nice. It was very relaxing. I wish we had more time together. 13 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/jeremyevans.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | Yes. I had a lot of fun working on Ruby syntax changes. 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Ruby 13 | next: 14 | # 今後も日常的にOSS開発を続けたいですか? 15 | # Will you keep on contributing to open source? 16 | | 17 | Definitely. 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # Pleae give us any feedback. 21 | | 22 | Thank you very much for providing a venue for all of us to work on improving Ruby during RubyKaigi. 23 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/jinroq.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 昨年も参加した oda-i3 です。遅れて来たので環境構築で終わってしまいました…。残念! 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - redmine 13 | next: 14 | # 今後も日常的にOSS開発を続けたいですか? 15 | # Will you keep on contributing to open source? 16 | | 17 | 続けたいです。ただ、続けられるような環境が上手く作れていないです。 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # Pleae give us any feedback. 21 | | 22 | 昨年は mruby チームでしたが、もくもく会でした。今回はみんなコミュニケーション取れたので良かったです。 23 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/kantarow.yml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | Rubyistの方たちと交流したり, chartyにコミットしたのが楽しかったです 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - charty 13 | next: 14 | # 今後も日常的にOSS開発を続けたいですか? 15 | # Will you keep on contributing to open source? 16 | | 17 | 続けたいです 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # Pleae give us any feedback. 21 | | 22 | とても楽しかったのでまた参加したいです 23 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/ken3ypa.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | - Yes. 6 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 7 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 8 | - インド出身の方と英語でやりとりしつつ、一緒にコードを書くことが出来た。 9 | - これは初めての経験だった。 10 | groups: 11 | # どのグループに参加しましたか? 12 | # Which groups did you join? 13 | - Ruby 14 | next: 15 | # 今後も日常的にOSS開発を続けたいですか? 16 | # Will you keep on contributing to open source? 17 | - Yes. 18 | etc: 19 | - None. 20 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/kirikak2.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | なかなか時間が取れずに後回しになっていたrailsへのバグ報告が出来ました。 9 | railsへのissue報告は初めてでしたが@yahondaさんに助言をいただきながら出せました。 10 | groups: 11 | # どのグループに参加しましたか? 12 | # Which groups did you join? 13 | - Rails 14 | next: 15 | # 今後も日常的にOSS開発を続けたいですか? 16 | # Will you keep on contributing to open source? 17 | | 18 | はい。OSSパッチ会にも機会があれば参加したいです。 19 | etc: 20 | # なにか思ったことがあれば自由に書いてください。 21 | # Pleae give us any feedback. 22 | | 23 | ホストしていただいた、Speeeさん、ありがとうございました! 24 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/kozo2.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかった。chartyのgemの作者とお話できたから 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - charty 13 | next: 14 | # 今後も日常的にOSS開発を続けたいですか? 15 | # Will you keep on contributing to open source? 16 | | 17 | 続けたい 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # Pleae give us any feedback. 21 | | 22 | 集まるとプログラミング以外に浮気をしなくなるのでよい 23 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/kunitoo.yml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | インターネットで知っていた人とお話しながら、コードが書けて楽しかった 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - mysql 13 | next: 14 | # 今後も日常的にOSS開発を続けたいですか? 15 | # Will you keep on contributing to open source? 16 | | 17 | 続けていきたい 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # Pleae give us any feedback. 21 | | 22 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/luccafort.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 普段Railsの話の主体でなかなか1つのGemのissueをみたりコードを実装したりすることがなかったので普段お世話になっているGemに少しばかりでも恩返しできればいいなというのが普段の仕事とは違ったコードの楽しみがあってよかったです。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - (Rspec/Rubocop) 13 | next: 14 | # 今後も日常的にOSS開発を続けたいですか? 15 | # Will you keep on contributing to open source? 16 | | 17 | 普段コードを読んだりすることはあったけれどあまりOSSにコミットすることがなかったので出来る範囲で貢献していきたいなと感じました。 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # Pleae give us any feedback. 21 | | 22 | なにかをやりきるには時間が足りなくて厳しかったです!><; 23 | コードを書くのに集中してしまうと会話せず黙々と作業してしまい、食事の手が止まってしまったので何かこの辺り仕組みで解決できればいいなと感じました。 24 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/makicamel.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | (Answer) 9 | とっっっっても楽しかったです!!! 10 | ようさんに「初心者なのでチュートリアルから」と直接お話して頂いて、さらに隣で説明しながらライブコーディングしていただいて、 11 | すっごい勉強になって楽しかったです!! 12 | 今度は自分で書きます!!! 13 | groups: 14 | # どのグループに参加しましたか? 15 | # Which groups did you join? 16 | - (NLP) 17 | next: 18 | # 今後も日常的にOSS開発を続けたいですか? 19 | # Will you keep on contributing to open source? 20 | | 21 | (Answer) 22 | はい!!!! 23 | etc: 24 | # なにか思ったことがあれば自由に書いてください。 25 | # Pleae give us any feedback. 26 | | 27 | (Answer) 28 | 本当に貴重な機会をありがとうございました!! 29 | セッションを聞いて「やりたいなあ…」という気持ちが湧いてきたタイミングでこういう機会を頂いて、もっと気持ちが高まりました!! 30 | ありがとうございます!!! -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/nyamadori.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # Did you have fun? 4 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 5 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 6 | | 7 | 楽しかった。Rails に詳しい人が近くにいたのでモチベーション高く作業できた。 8 | groups: 9 | # どのグループに参加しましたか? 10 | # Which groups did you join? 11 | - Rails 12 | next: 13 | # 今後も日常的にOSS開発を続けたいですか? 14 | # Will you keep on contributing to open source? 15 | | 16 | 機会があればしたい 17 | etc: 18 | # なにか思ったことがあれば自由に書いてください。 19 | # Pleae give us any feedback. 20 | | 21 | 参加者のレベルが高くてすごい! 22 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/shiro615.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 賑やかな雰囲気でコードが書けて楽しかったです。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Apache Arrow 13 | next: 14 | # 今後も日常的にOSS開発を続けたいですか? 15 | # Will you keep on contributing to open source? 16 | | 17 | はい! 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # Pleae give us any feedback. 21 | | 22 | みんなでコードを書いたりするとモチベーションがあがりますね。 23 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/sinsoku.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | I was taught code from Ruby comitters and I had a good experience. 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Ruby 13 | next: 14 | # 今後も日常的にOSS開発を続けたいですか? 15 | # Will you keep on contributing to open source? 16 | | 17 | I want to continue as long as I have motivation and time. 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # Pleae give us any feedback. 21 | | 22 | It is fun to write code with everyone. 23 | Thanks for organizing the event! 24 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/st0012.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | It's an excellent event to make new friends (and meet some old friends as well). 9 | It's also very fun to have someone discussing open source works in person. 10 | groups: 11 | # どのグループに参加しましたか? 12 | # Which groups did you join? 13 | - Rails 14 | next: 15 | # 今後も日常的にOSS開発を続けたいですか? 16 | # Will you keep on contributing to open source? 17 | | 18 | I'm already an regular contributor and still will be in the future 😄 19 | etc: 20 | # なにか思ったことがあれば自由に書いてください。 21 | # Pleae give us any feedback. 22 | | 23 | I hope we can have some kind of chat rooms for each team. It'll be easier to share information between members 24 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/template.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | (Answer) 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - (Group1) 13 | - (Group2) 14 | - ... 15 | next: 16 | # 今後も日常的にOSS開発を続けたいですか? 17 | # Will you keep on contributing to open source? 18 | | 19 | (Answer) 20 | etc: 21 | # なにか思ったことがあれば自由に書いてください。 22 | # Please give us any feedback. 23 | | 24 | (Answer) 25 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/tmtm.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | はい。MySQLの話ができた。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - MySQL 13 | next: 14 | # 今後も日常的にOSS開発を続けたいですか? 15 | # Will you keep on contributing to open source? 16 | | 17 | はい 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # Pleae give us any feedback. 21 | | 22 | 来年も期待してます。 23 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/tomog105.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | Charty の開発に小さな貢献が出来た。また、OSS の開発に慣れていない人や Charty を知らない人に対しての貢献も出来たと思いなお良かった。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Charty 13 | next: 14 | # 今後も日常的にOSS開発を続けたいですか? 15 | # Will you keep on contributing to open source? 16 | | 17 | Yes 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # Pleae give us any feedback. 21 | | 22 | グループ分けして同じテーブルでわいわいやるというのが良かったと思います。 23 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/watson1978.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | Redmine のプラグイン開発されている方と作業ができて、いろいろと知見をいただけて楽しかったです。Redmine のような歴史のあるアプリケーションでもタイムゾーンに依存しているテストがあり、テストが不安定なケースがあったり興味深かったです。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Redmine 13 | next: 14 | # 今後も日常的にOSS開発を続けたいですか? 15 | # Will you keep on contributing to open source? 16 | | 17 | はい、もちろん🎉 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # Pleae give us any feedback. 21 | | 22 | 私は知り合いの方と一緒に作業にあたり雑談多めでしたが、他のテーブルではどういう状況だったか興味があります。もっといろいろな方とわいわいと継続できたらと願っております。 23 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/yahonda.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。私自身のやっているRailsへのpull request自体は終わらなかったですが、Issueのつくりかたについて話をしたり、知っていたこと(MySQLのRails 6での変更)をもとにアドバイスできたので。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Rails 13 | - (Group2) 14 | - ... 15 | next: 16 | # 今後も日常的にOSS開発を続けたいですか? 17 | # Will you keep on contributing to open source? 18 | | 19 | Yes 20 | etc: 21 | # なにか思ったことがあれば自由に書いてください。 22 | # Pleae give us any feedback. 23 | | 24 | 興味を持った人同士で同じテーブルを作るのはよいアイディアだと思いました。 25 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/yancya.yml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | Redmine のリポジトリを clone してテストを実行するだけで落ちまくってしまって、調べてみたら、どうやらタイムゾーンによって落ちたり落ちなかったりすることが分かって、めっちゃウケた 8 | RMagick を使ったコードがエラーで落ちて困っていたら、なぜか同じテーブルに RMagick のメンテナーの人がいて助けてくれたの、めっちゃウケる 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Redmine 13 | next: 14 | # またコード懇親会があったら参加したいですか? 15 | # Do you want to participate if there is a code party? 16 | またおねがいします 17 | etc: 18 | # なにか思ったことがあれば自由に書いてください。 19 | # You can send any feedbacks to organizers. 20 | とくにないす 21 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/ybiquitous.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | ruby/rubyを初めてbuildしたので、興奮しました! 9 | prelude.rbをいじってObject#blank?メソッド生やしたり、String#reiwa?メソッド生やしたりしましたw。 10 | @matzさん、@n0kadaさん、@ktouさん、@yuguiさんと普通に話せたので、うれしかったです。 11 | 特に@yuguiさんには懇切丁寧に教えていただきました!ありがとうございます! 12 | groups: 13 | # どのグループに参加しましたか? 14 | # Which groups did you join? 15 | - Ruby core (?) group 16 | next: 17 | # 今後も日常的にOSS開発を続けたいですか? 18 | # Will you keep on contributing to open source? 19 | | 20 | もちろんです!!! 21 | etc: 22 | # なにか思ったことがあれば自由に書いてください。 23 | # Pleae give us any feedback. 24 | | 25 | 場所や時間の確保など運営が大変だとは思いますが、できるかぎり継続していただけると大変ありがたいです! 26 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/youchan.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。 9 | 女性の参加者が増えたのもよいですね。 10 | groups: 11 | # どのグループに参加しましたか? 12 | # Which groups did you join? 13 | - NLP 14 | next: 15 | # 今後も日常的にOSS開発を続けたいですか? 16 | # Will you keep on contributing to open source? 17 | | 18 | したいです!NLPをRubyでいい感じにしたいです! 19 | etc: 20 | # なにか思ったことがあれば自由に書いてください。 21 | # Pleae give us any feedback. 22 | | 23 | Red Data ToolsというコミュニティでNLPもやっています。興味を持った方はぜひ参加してみてください。 24 | https://red-data-tools.github.io/ja/ 25 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/yysaki.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 楽しかったです。自分のワークアラウンドで対処していた箇所をより妥当なやり方の設定について相談して頂き、対処できました。Railsコミッターの方と話せたのは刺激になりました。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Rails 13 | - (Group2) 14 | - ... 15 | next: 16 | # 今後も日常的にOSS開発を続けたいですか? 17 | # Will you keep on contributing to open source? 18 | | 19 | Yes 20 | etc: 21 | # なにか思ったことがあれば自由に書いてください。 22 | # Pleae give us any feedback. 23 | | 24 | テーマを決めた席に集まったので、具体的な相談がしやすくてよかったです。 25 | 26 | -------------------------------------------------------------------------------- /rubykaigi-2019/feedback/znz.yaml: -------------------------------------------------------------------------------- 1 | questions: 2 | fun: 3 | # 楽しかったですか? 4 | # Did you have fun? 5 | # 楽しかった場合はどういう部分が楽しかったかも教えてください。(例:Ruby書くことそのものが楽しかった、●●のgemの作者とお話できたから、など) 6 | # If you had fun, what kind of part was fun?(ex:Because I was able to talk with the author of ●●gem, Ruby it was fun to write, etc.) 7 | | 8 | 知らない人とも話ができてよかったです。 9 | groups: 10 | # どのグループに参加しましたか? 11 | # Which groups did you join? 12 | - Ruby (dRuby) 13 | next: 14 | # 今後も日常的にOSS開発を続けたいですか? 15 | # Will you keep on contributing to open source? 16 | | 17 | 変わらず続けていきたいです。 18 | etc: 19 | # なにか思ったことがあれば自由に書いてください。 20 | # Pleae give us any feedback. 21 | | 22 | Wi-Fi 情報を確認せずに入ってしまったらわからないままで、テザリングで繋いでいたので、ネットワーク情報の掲示を増やしてほしいです。 23 | --------------------------------------------------------------------------------