27
05/10/2014 13:57 All Hail Our 'Bot Masters :: Chat-Ops for fun & profit Page 1 of 27 file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf All Hail Our 'Bot All Hail Our 'Bot Masters! Masters! Chat-Ops for fun & profit Chat-Ops for fun & profit PHPNW14 Unconference PHPNW14 Unconference

All Hail Our 'Bot Masters PHPNW14 Unconference

Embed Size (px)

DESCRIPTION

My talk from the PHPNW14 unconference track, October 4th 2014.

Citation preview

Page 1: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 1 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

All Hail Our 'BotAll Hail Our 'BotMasters!Masters!

Chat-Ops for fun & profitChat-Ops for fun & profitPHPNW14 UnconferencePHPNW14 Unconference

Page 2: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 2 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

By the way...By the way...

Page 3: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 3 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

What the hell isWhat the hell isChat-Ops?Chat-Ops?

Page 4: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 4 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

How do I startHow do I start

Page 5: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 5 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

HubotHubot

Page 6: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 6 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

Meet ZacMeet Zac

Page 7: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 7 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

$ git checkout -b feature/my-new-feature

# do some coding, commit changes

$ git push -u origin feature/my-new-feature

Page 8: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 8 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

Page 9: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 9 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

Page 10: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 10 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

> zac deploy feature/my-new-thing-a-ma-bob to dev1

Page 11: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 11 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

Page 12: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 12 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

Page 13: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 13 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

> zac what can i deploy# or> zac what can i deploy like feature

Page 14: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 14 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

Page 15: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 15 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

module.exports = (robot) ->

robot.respond /deploy (.*) to (.*)/i, (msg) -> env = new Environment(escape(msg.match[2]), robot, msg) env.deploy(escape(msg.match[1]))

robot.respond /whats on (.*)/i, (msg) -> env = new Environment(escape(msg.match[1]), robot, msg) env.deployed()

Page 16: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 16 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

But, what else?But, what else?

Page 17: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 17 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

Page 18: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 18 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

Page 19: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 19 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

Page 20: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 20 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

Page 21: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 21 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

Page 22: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 22 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

Why is this so im-Why is this so im-portantportant

By placing all of the tools directly in theconversation, everyone is pairing all of the time

Jesse Newman

Page 23: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 23 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

Everyone seesEveryone seesthis from 1st daythis from 1st day

Page 24: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 24 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

MobileMobile

Page 25: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 25 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

Remote WorkRemote Work

Page 26: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 26 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

SecureSecure

Page 27: All Hail Our 'Bot Masters PHPNW14 Unconference

05/10/2014 13:57All Hail Our 'Bot Masters :: Chat-Ops for fun & profit

Page 27 of 27file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf

Thanks for Thanks for listeninglistening

I'm Dave Baker / @fully_baked1/4 of @PHPDorset org team

Lead Developer student-crm.co.ukhttps://joind.in/talk/view/12143