2014-09-01から1ヶ月間の記事一覧

Ruboty Slack 入れ方

Rubyで開発されたbotにRubotyというものがある r7kamura/ruboty このRubotyをHerokuで動かしてSlackで使う方法について詳しく書く 1. Slackでチームをつくる Slack: Be less busy 2. XMPPを許可する RubotyはXMPP通信を用いている.設定は,ここでできる(/a…

A Tour of Go - 第2回 dwanGo

2回目. A Tour of Go - 第1回 dwanGo - にこにこインターネット package main import "fmt" // fibonacci is a function that returns // a function that returns an int. func fibonacci() func() int { x, y := 0, 1 return func() int { x, y = y, x+y …