SlideShare a Scribd company logo
1 of 27
Download to read offline
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
All Hail Our 'Bot 
Masters! 
Chat-Ops for fun & profit 
PHPNW14 Unconference 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 1 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
By the way... 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 2 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
What the hell is 
Chat-Ops? 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 3 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
How do I start 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 4 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
Hubot 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 5 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
Meet Zac 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 6 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
$ git checkout -b feature/my-new-feature 
# do some coding, commit changes 
$ git push -u origin feature/my-new-feature 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 7 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 8 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 9 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
> zac deploy feature/my-new-thing-a-ma-bob to dev1 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 10 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 11 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 12 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
#> ozarc what can i deploy > zac what can i deploy like feature 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 13 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 14 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
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() 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 15 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
But, what else? 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 16 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 17 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 18 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 19 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 20 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 21 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
Why is this so im-portant 
By placing all of the tools directly in the 
conversation, everyone is pairing all of the time 
Jesse Newman 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 22 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
Everyone sees 
this from 1st day 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 23 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
Mobile 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 24 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
Remote Work 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 25 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
Secure 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 26 of 27
All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 
Thanks for 
listening 
I'm Dave Baker / @fully_baked 
1/4 of @PHPDorset org team 
Lead Developer student-crm.co.uk 
https://joind.in/talk/view/12143 
file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 27 of 27

More Related Content

Similar to All Hail Our 'Bot Masters PHPNW14 Unconference

Dist::Zilla - Maximum Overkill for CPAN Distributions
Dist::Zilla - Maximum Overkill for CPAN DistributionsDist::Zilla - Maximum Overkill for CPAN Distributions
Dist::Zilla - Maximum Overkill for CPAN Distributions
Ricardo Signes
 
Writing Prefork Workers / Servers
Writing Prefork Workers / ServersWriting Prefork Workers / Servers
Writing Prefork Workers / Servers
Kazuho Oku
 
Harness the speed of the wheel
Harness the speed of the wheelHarness the speed of the wheel
Harness the speed of the wheel
xavfernandez
 
Tosca tc minutes 2012 06-07
Tosca tc minutes 2012 06-07Tosca tc minutes 2012 06-07
Tosca tc minutes 2012 06-07
IIIM
 
Http/2 - What's it all about?
Http/2  - What's it all about?Http/2  - What's it all about?
Http/2 - What's it all about?
Andy Davies
 
Openmeetings
OpenmeetingsOpenmeetings
Openmeetings
hs1250
 

Similar to All Hail Our 'Bot Masters PHPNW14 Unconference (20)

Frontend Performance: De débutant à Expert à Fou Furieux
Frontend Performance: De débutant à Expert à Fou FurieuxFrontend Performance: De débutant à Expert à Fou Furieux
Frontend Performance: De débutant à Expert à Fou Furieux
 
Konvensyen Webmaster Negeri Sabah 2013
Konvensyen Webmaster Negeri Sabah 2013Konvensyen Webmaster Negeri Sabah 2013
Konvensyen Webmaster Negeri Sabah 2013
 
Quick and Dirty Python Deployments with Heroku
Quick and Dirty Python Deployments with HerokuQuick and Dirty Python Deployments with Heroku
Quick and Dirty Python Deployments with Heroku
 
Dist::Zilla - Maximum Overkill for CPAN Distributions
Dist::Zilla - Maximum Overkill for CPAN DistributionsDist::Zilla - Maximum Overkill for CPAN Distributions
Dist::Zilla - Maximum Overkill for CPAN Distributions
 
Frontend Performance: Beginner to Expert to Crazy Person
Frontend Performance: Beginner to Expert to Crazy PersonFrontend Performance: Beginner to Expert to Crazy Person
Frontend Performance: Beginner to Expert to Crazy Person
 
Puppet - Automagically Manage your Configuration
Puppet - Automagically Manage your ConfigurationPuppet - Automagically Manage your Configuration
Puppet - Automagically Manage your Configuration
 
Frontend Performance: Beginner to Expert to Crazy Person
Frontend Performance: Beginner to Expert to Crazy PersonFrontend Performance: Beginner to Expert to Crazy Person
Frontend Performance: Beginner to Expert to Crazy Person
 
JDD2015: Ratpack: core of your micro-services - Andrey Adamovich
JDD2015: Ratpack: core of your micro-services - Andrey AdamovichJDD2015: Ratpack: core of your micro-services - Andrey Adamovich
JDD2015: Ratpack: core of your micro-services - Andrey Adamovich
 
JDD2015: Ratpack: core of your micro-services - Andrey Adamovich
JDD2015: Ratpack: core of your micro-services - Andrey AdamovichJDD2015: Ratpack: core of your micro-services - Andrey Adamovich
JDD2015: Ratpack: core of your micro-services - Andrey Adamovich
 
Jive Cloud & JiveX Cloud Spring Release '14
Jive Cloud & JiveX Cloud Spring Release '14Jive Cloud & JiveX Cloud Spring Release '14
Jive Cloud & JiveX Cloud Spring Release '14
 
apidays LIVE Hong Kong - Let's get started development of API client library ...
apidays LIVE Hong Kong - Let's get started development of API client library ...apidays LIVE Hong Kong - Let's get started development of API client library ...
apidays LIVE Hong Kong - Let's get started development of API client library ...
 
Writing Prefork Workers / Servers
Writing Prefork Workers / ServersWriting Prefork Workers / Servers
Writing Prefork Workers / Servers
 
TechTalkThursday 14.04.2016: Load tests of web applications as a service
TechTalkThursday 14.04.2016: Load tests of web applications as a serviceTechTalkThursday 14.04.2016: Load tests of web applications as a service
TechTalkThursday 14.04.2016: Load tests of web applications as a service
 
Digibury: Edd Barrett - A Case Study in Cross-Language Tracing
Digibury: Edd Barrett - A Case Study in Cross-Language TracingDigibury: Edd Barrett - A Case Study in Cross-Language Tracing
Digibury: Edd Barrett - A Case Study in Cross-Language Tracing
 
Harness the speed of the wheel
Harness the speed of the wheelHarness the speed of the wheel
Harness the speed of the wheel
 
Rip and convert blu ray to mp4 with blu-ray to mp4 converter
Rip and convert blu ray to mp4 with blu-ray to mp4 converterRip and convert blu ray to mp4 with blu-ray to mp4 converter
Rip and convert blu ray to mp4 with blu-ray to mp4 converter
 
Tosca tc minutes 2012 06-07
Tosca tc minutes 2012 06-07Tosca tc minutes 2012 06-07
Tosca tc minutes 2012 06-07
 
Http/2 - What's it all about?
Http/2  - What's it all about?Http/2  - What's it all about?
Http/2 - What's it all about?
 
ChainerUI v0.2, v0.3
ChainerUI v0.2, v0.3ChainerUI v0.2, v0.3
ChainerUI v0.2, v0.3
 
Openmeetings
OpenmeetingsOpenmeetings
Openmeetings
 

Recently uploaded

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 

Recently uploaded (20)

Less Is More: Utilizing Ballerina to Architect a Cloud Data Platform
Less Is More: Utilizing Ballerina to Architect a Cloud Data PlatformLess Is More: Utilizing Ballerina to Architect a Cloud Data Platform
Less Is More: Utilizing Ballerina to Architect a Cloud Data Platform
 
ChatGPT and Beyond - Elevating DevOps Productivity
ChatGPT and Beyond - Elevating DevOps ProductivityChatGPT and Beyond - Elevating DevOps Productivity
ChatGPT and Beyond - Elevating DevOps Productivity
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​Elevate Developer Efficiency & build GenAI Application with Amazon Q​
Elevate Developer Efficiency & build GenAI Application with Amazon Q​
 
Introduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDMIntroduction to use of FHIR Documents in ABDM
Introduction to use of FHIR Documents in ABDM
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
WSO2 Micro Integrator for Enterprise Integration in a Decentralized, Microser...
WSO2 Micro Integrator for Enterprise Integration in a Decentralized, Microser...WSO2 Micro Integrator for Enterprise Integration in a Decentralized, Microser...
WSO2 Micro Integrator for Enterprise Integration in a Decentralized, Microser...
 
Quantum Leap in Next-Generation Computing
Quantum Leap in Next-Generation ComputingQuantum Leap in Next-Generation Computing
Quantum Leap in Next-Generation Computing
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Choreo: Empowering the Future of Enterprise Software Engineering
Choreo: Empowering the Future of Enterprise Software EngineeringChoreo: Empowering the Future of Enterprise Software Engineering
Choreo: Empowering the Future of Enterprise Software Engineering
 
AI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by Anitaraj
 
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
JohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptxJohnPollard-hybrid-app-RailsConf2024.pptx
JohnPollard-hybrid-app-RailsConf2024.pptx
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
How to Check CNIC Information Online with Pakdata cf
How to Check CNIC Information Online with Pakdata cfHow to Check CNIC Information Online with Pakdata cf
How to Check CNIC Information Online with Pakdata cf
 
JavaScript Usage Statistics 2024 - The Ultimate Guide
JavaScript Usage Statistics 2024 - The Ultimate GuideJavaScript Usage Statistics 2024 - The Ultimate Guide
JavaScript Usage Statistics 2024 - The Ultimate Guide
 
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
 

All Hail Our 'Bot Masters PHPNW14 Unconference

  • 1. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 All Hail Our 'Bot Masters! Chat-Ops for fun & profit PHPNW14 Unconference file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 1 of 27
  • 2. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 By the way... file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 2 of 27
  • 3. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 What the hell is Chat-Ops? file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 3 of 27
  • 4. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 How do I start file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 4 of 27
  • 5. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 Hubot file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 5 of 27
  • 6. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 Meet Zac file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 6 of 27
  • 7. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 $ git checkout -b feature/my-new-feature # do some coding, commit changes $ git push -u origin feature/my-new-feature file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 7 of 27
  • 8. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 8 of 27
  • 9. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 9 of 27
  • 10. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 > zac deploy feature/my-new-thing-a-ma-bob to dev1 file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 10 of 27
  • 11. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 11 of 27
  • 12. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 12 of 27
  • 13. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 #> ozarc what can i deploy > zac what can i deploy like feature file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 13 of 27
  • 14. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 14 of 27
  • 15. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 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() file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 15 of 27
  • 16. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 But, what else? file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 16 of 27
  • 17. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 17 of 27
  • 18. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 18 of 27
  • 19. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 19 of 27
  • 20. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 20 of 27
  • 21. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 21 of 27
  • 22. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 Why is this so im-portant By placing all of the tools directly in the conversation, everyone is pairing all of the time Jesse Newman file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 22 of 27
  • 23. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 Everyone sees this from 1st day file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 23 of 27
  • 24. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 Mobile file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 24 of 27
  • 25. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 Remote Work file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 25 of 27
  • 26. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 Secure file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 26 of 27
  • 27. All Hail Our 'Bot Masters :: Chat-Ops for fun & profit 05/10/2014 13:57 Thanks for listening I'm Dave Baker / @fully_baked 1/4 of @PHPDorset org team Lead Developer student-crm.co.uk https://joind.in/talk/view/12143 file:///Users/david/Dropbox/Code/phpdorset/reveal.js/chatops_phpnw_oct14.html?print-pdf Page 27 of 27