SlideShare una empresa de Scribd logo
1 de 27
Descargar para leer sin conexión
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

Más contenido relacionado

Similar a 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 a 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
 

Último

Structuring Teams and Portfolios for Success
Structuring Teams and Portfolios for SuccessStructuring Teams and Portfolios for Success
Structuring Teams and Portfolios for Success
UXDXConf
 

Último (20)

Syngulon - Selection technology May 2024.pdf
Syngulon - Selection technology May 2024.pdfSyngulon - Selection technology May 2024.pdf
Syngulon - Selection technology May 2024.pdf
 
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on ThanabotsContinuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
Continuing Bonds Through AI: A Hermeneutic Reflection on Thanabots
 
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdfLinux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
Linux Foundation Edge _ Overview of FDO Software Components _ Randy at Intel.pdf
 
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
Choosing the Right FDO Deployment Model for Your Application _ Geoffrey at In...
 
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
Secure Zero Touch enabled Edge compute with Dell NativeEdge via FDO _ Brad at...
 
How we scaled to 80K users by doing nothing!.pdf
How we scaled to 80K users by doing nothing!.pdfHow we scaled to 80K users by doing nothing!.pdf
How we scaled to 80K users by doing nothing!.pdf
 
Designing for Hardware Accessibility at Comcast
Designing for Hardware Accessibility at ComcastDesigning for Hardware Accessibility at Comcast
Designing for Hardware Accessibility at Comcast
 
TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...
TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...
TEST BANK For, Information Technology Project Management 9th Edition Kathy Sc...
 
Long journey of Ruby Standard library at RubyKaigi 2024
Long journey of Ruby Standard library at RubyKaigi 2024Long journey of Ruby Standard library at RubyKaigi 2024
Long journey of Ruby Standard library at RubyKaigi 2024
 
IESVE for Early Stage Design and Planning
IESVE for Early Stage Design and PlanningIESVE for Early Stage Design and Planning
IESVE for Early Stage Design and Planning
 
State of the Smart Building Startup Landscape 2024!
State of the Smart Building Startup Landscape 2024!State of the Smart Building Startup Landscape 2024!
State of the Smart Building Startup Landscape 2024!
 
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdfThe Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
The Value of Certifying Products for FDO _ Paul at FIDO Alliance.pdf
 
The Metaverse: Are We There Yet?
The  Metaverse:    Are   We  There  Yet?The  Metaverse:    Are   We  There  Yet?
The Metaverse: Are We There Yet?
 
Structuring Teams and Portfolios for Success
Structuring Teams and Portfolios for SuccessStructuring Teams and Portfolios for Success
Structuring Teams and Portfolios for Success
 
ERP Contender Series: Acumatica vs. Sage Intacct
ERP Contender Series: Acumatica vs. Sage IntacctERP Contender Series: Acumatica vs. Sage Intacct
ERP Contender Series: Acumatica vs. Sage Intacct
 
AI mind or machine power point presentation
AI mind or machine power point presentationAI mind or machine power point presentation
AI mind or machine power point presentation
 
Oauth 2.0 Introduction and Flows with MuleSoft
Oauth 2.0 Introduction and Flows with MuleSoftOauth 2.0 Introduction and Flows with MuleSoft
Oauth 2.0 Introduction and Flows with MuleSoft
 
TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024TopCryptoSupers 12thReport OrionX May2024
TopCryptoSupers 12thReport OrionX May2024
 
Google I/O Extended 2024 Warsaw
Google I/O Extended 2024 WarsawGoogle I/O Extended 2024 Warsaw
Google I/O Extended 2024 Warsaw
 
ECS 2024 Teams Premium - Pretty Secure
ECS 2024   Teams Premium - Pretty SecureECS 2024   Teams Premium - Pretty Secure
ECS 2024 Teams Premium - Pretty Secure
 

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