SlideShare a Scribd company logo
[robotlegs]




for Actionscript 3
Me




     Joel Hooks
       Robotlegs Enthusiast

     on the web
       www.joelhooks.com
     @jhooks
     email
     joelhooks@gmail.com
Who Started Robotlegs?




                 Shaun Smith
                Robotlegs Inventor


                     find him
         shaun.boyblack.co.za
                   @darscan
Not to mention...




                Till Schneidereit
                    SwiftSuspenders Maestro


                          find him
    http://www.tillschneidereit.de/
                  @tschneidereit
Contributors	




                      Robert Penner @robPenner

                     Jonnie Hallman @DestroyToday

                        Sean Hess @seanhess

                      Craig Wickesser @codecraig


          and so many others have contributed to the community
                 through support, ideas, and examples...
What’s in it for me?




                       the pitch
What’s in it for me?




                          do you need a

     a pure Actionscript 3 micro-architecture
                       for flash, flex and air?
What’s in it for me?




              are you using a framework but feel sad about...
What’s in it for me?




              are you using a framework but feel sad about...

                               casting
What’s in it for me?




              are you using a framework but feel sad about...

                             casting
                            Singletons
What’s in it for me?




              are you using a framework but feel sad about...

                            casting
                          Singletons
                        service locators
What’s in it for me?




              are you using a framework but feel sad about...

                          casting
                        Singletons
                      service locators
                   display list event bus
What’s in it for me?




                   do you want a better mechanism for...
What’s in it for me?




                   do you want a better mechanism for...

              wiring your objects together
What’s in it for me?




                   do you want a better mechanism for...

              wiring your objects together
               managing dependencies
What’s in it for me?




                   do you want a better mechanism for...

              wiring your objects together
               managing dependencies
                   managing events
What’s in it for me?




                   do you want a better mechanism for...

              wiring your objects together
               managing dependencies
                   managing events
                    structured MVC
Robotlegs is...




     a pure Actionscript 3 micro-architecture
Robotlegs is...




     a pure Actionscript 3 micro-architecture
              robotlegs has no Flex framework dependencies.
Robotlegs is...




                  flash, flex, and air
Robotlegs is...




     a mechanism for wiring objects together
Robotlegs is...




     a mechanism for wiring objects together
                  focused solely on this limited scope
Robotlegs is...




     a mechanism for wiring objects together
                    focused solely on this limited scope
              by providing kickass tools to get your job done
Why Robotlegs?




                  lightweight
                 ~1100 lines of code...
Why Robotlegs?




        automated dependency injection
Why Robotlegs?




        automated dependency injection
                     [Inject]
Why Robotlegs?




                               :ʼ(



                 fight carpel tunnel
Why Robotlegs?




                 remove framework pain
Why Robotlegs?




        MVC+S reference implementation
Why Robotlegs?




        MVC+S reference implementation
                 a little prescription goes a long way...
Why Robotlegs?




        MVC+S reference implementation
                 a little prescription goes a long way...
                                  but...
Why Robotlegs?




            whatever you need it to be
Why Robotlegs?




            whatever you need it to be
         highly extensible to support YOUR workflow and style
Why Robotlegs?




             whatever you need it to be
        highly extensible to support YOUR workflow and style
     MVCS provides documentation and common ground for teams...
Why Robotlegs?




                 modular support
Why Robotlegs?




                 peer reviewed
Why Robotlegs?




     objects communicate via native events
Why Robotlegs?




     objects communicate via native events
             custom events with strongly typed properties
Why Robotlegs?




     objects communicate via native events
             custom events with strongly typed properties
                  or maybe you prefer AS3-Signals?
Why Robotlegs?




                 well documented
Why Robotlegs?




                     fully unit tested
                 because your project is important.
Why Robotlegs?




                        stable
                 strict semantic versioning
                     http://semver.org/
Why Robotlegs?




                 welcoming community
                         hi!
Why Robotlegs?




                 knowledge.robotlegs.org




                  Community supported through Tender
What Robotlegs isn’t...
What Robotlegs isn’t...
Where to Start?




         MVC+S reference implementation
Robotlegs MVCS Implementation
Robotlegs in Action




                                  Flickr Image Gallery Demo*
           *part of the Robotlegs Demo Bundle available here: http://github.com/robotlegs/robotlegs-demos-Bundle
Robotlegs in Action




                      GalleryView Component
Robotlegs in Action




                      GallerySearch Component
Robotlegs in Action




                      GalleryLabel Component
Context




          Context initializes the framework
Context
Context




          Context provides an event bus
Context Event Dispatcher Routes Events
Context




          not limited to a single Context
Context




          not limited to a single Context
            multiple Contexts for modular development
Context




          not limited to a single Context
            multiple Contexts for modular development
                     thereʼs a utility for that...
Actor




        Actor is the base class for
        Model and Service classes
Models and Services Extend Actor
Actor




        eventDispatcher is injected
                into Actor
Actor




    Actor provides a dispatch(event) method
Actor




        Actor is for your convenience
Model




        Models extend Actor
Model




        Models provide an API for data
Model
Model




        Models sit between application data
                 and other actors
Model




             Models should not
        listen for framework events
Model




        Models dispatch framework events
Models Dispatch Events
Service




          Services extend Actor
Service




 Services communicate with the outside world
   and provides an API to external services
Service
Service




          Services can parse results
            from external services
Service




              Services can parse results
                from external services
          foreign data should be converted at the first opportunity
Service
Service




          Services do not store data
Service




          Services do not store data
               data is stored on a Model
Service




               Services do not
          receive framework events
Service




          Services dispatch framework events
Services Dispatch Events
View




          the View is represented by your
       view components and their Mediators
View




 Mediators provide API for view components
View




 Mediators provide API for view components
              to keep the framework out
Mediators Access View Component APIs
View
View




  Mediators listen for view component events
Mediators Listen to View Components
View




       Mediators listen for framework events
Mediators Listen for Events
View




       Mediators dispatch framework events
Mediators Dispatch Events
View




       view components are not coupled to
                their Mediators
View




       view components are not coupled to
                their Mediators
                or any other framework class
View




       view components are not coupled to
                their Mediators
                or any other framework class
                           period.
View




       Mediators are coupled to their
            view components
View




             Mediators can access
       Service and Model classes directly
View




             Mediators can access
       Service and Model classes directly
           but this will couple the Mediator to the Actor
Accessing Models and Services from Mediators




                         (tread carefully)
Controller




        represented by the Command class
Controller




      Commands are executed in response
            to framework events
Controllers Executed by Events
Controller




             Commands are stateless
Controller




             Commands are stateless
                  they execute and die
Controller




             Commands are stateless
                    they execute and die
               performing a single unit of work
Controller
Controller




             Commands perform work on
             Service and Model classes
Controller




             Commands perform work on
             Service and Model classes
                  and occasionally Mediators
Controller Performs Work
Controller
Controller




         Commands receive data from the
            events that trigger them
Controller
Controller




     Commands dispatch framework events
Controller Dispatches Events
Controller




 Commands do not receive framework events
Controller




 Commands do not receive framework events
             outside of the event that triggers them
Controller




 Commands do not receive framework events
             outside of the event that triggers them
                 which is available for injection
Typical Flow of Events in Robotlegs
User Performs an Action (button click)
View Component Dispatches Event to Mediator
Mediator Dispatches Event that Triggers
Command calls a Method on a Service
Service Makes External call and Parses Data
Service Updates the Model (directly or via
Model Dispatches Event that Mediator Responds
Mediator Updates View with Current Data
Robotlegs MVCS
Collaborative Development



                 github makes it easy!




                       github.com/robotlegs
Collaborative Development




    comments, criticism, and ideas welcome
Collaborative Development




                   fork the framework
Collaborative Development




            create examples and utilities
Collaborative Development




      create an alternative implementation
www.robotlegs.org
  download the framework
best practices documentation
      project on github
 FAQ and Knowledge Base
        live examples
Questions?

More Related Content

Similar to Robotlegs AS3 from Flash and the City 2010

Developing Actors in Azure with .net
Developing Actors in Azure with .netDeveloping Actors in Azure with .net
Developing Actors in Azure with .net
Marco Parenzan
 
Developing maintainable Cordova applications
Developing maintainable Cordova applicationsDeveloping maintainable Cordova applications
Developing maintainable Cordova applications
Ivano Malavolta
 
Jump Start To Ooad And Design Patterns
Jump Start To Ooad And Design PatternsJump Start To Ooad And Design Patterns
Jump Start To Ooad And Design Patterns
Lalit Kale
 
Jump start to OOP, OOAD, and Design Pattern
Jump start to OOP, OOAD, and Design PatternJump start to OOP, OOAD, and Design Pattern
Jump start to OOP, OOAD, and Design Pattern
Nishith Shukla
 
Design Patterns For 70% Of Programmers In The World
Design Patterns For 70% Of Programmers In The WorldDesign Patterns For 70% Of Programmers In The World
Design Patterns For 70% Of Programmers In The World
Saurabh Moody
 
Intro to Muon - How to build Polyglot Message and Event Microservices
Intro to Muon - How to build Polyglot Message and Event MicroservicesIntro to Muon - How to build Polyglot Message and Event Microservices
Intro to Muon - How to build Polyglot Message and Event Microservices
David Dawson
 
springtraning-7024840-phpapp01.pdf
springtraning-7024840-phpapp01.pdfspringtraning-7024840-phpapp01.pdf
springtraning-7024840-phpapp01.pdf
BruceLee275640
 
Entity Component Systems
Entity Component SystemsEntity Component Systems
Entity Component Systems
Yos Riady
 
The art of Azure Functions (unit) testing and monitoring
The art of Azure Functions (unit) testing and monitoringThe art of Azure Functions (unit) testing and monitoring
The art of Azure Functions (unit) testing and monitoring
Massimo Bonanni
 
Gof design pattern
Gof design patternGof design pattern
Gof design pattern
naveen kumar
 
Evolve Your Code
Evolve Your CodeEvolve Your Code
Evolve Your Code
RookieOne
 
Simple Ways to Get Your Organization to Adopt the AsyncAPI Spec
Simple Ways to Get Your Organization to Adopt the AsyncAPI SpecSimple Ways to Get Your Organization to Adopt the AsyncAPI Spec
Simple Ways to Get Your Organization to Adopt the AsyncAPI Spec
Axway
 
A Backpack to go the Extra-Functional Mile (a hitched hike by the PROWESS pro...
A Backpack to go the Extra-Functional Mile (a hitched hike by the PROWESS pro...A Backpack to go the Extra-Functional Mile (a hitched hike by the PROWESS pro...
A Backpack to go the Extra-Functional Mile (a hitched hike by the PROWESS pro...
Laura M. Castro
 
Beyond design patterns phpnw14
Beyond design patterns   phpnw14Beyond design patterns   phpnw14
Beyond design patterns phpnw14
Anthony Ferrara
 
Functional solid
Functional solidFunctional solid
Functional solid
Matt Stine
 
Stateful patterns in Azure Functions
Stateful patterns in Azure FunctionsStateful patterns in Azure Functions
Stateful patterns in Azure Functions
Massimo Bonanni
 
Javascript spaghetti stirtrek_5_17
Javascript  spaghetti stirtrek_5_17Javascript  spaghetti stirtrek_5_17
Javascript spaghetti stirtrek_5_17Jared Faris
 
Escape the defaults - Configure Sling like AEM as a Cloud Service
Escape the defaults - Configure Sling like AEM as a Cloud ServiceEscape the defaults - Configure Sling like AEM as a Cloud Service
Escape the defaults - Configure Sling like AEM as a Cloud Service
Robert Munteanu
 
Building Rich User Experiences Without JavaScript Spaghetti
Building Rich User Experiences Without JavaScript SpaghettiBuilding Rich User Experiences Without JavaScript Spaghetti
Building Rich User Experiences Without JavaScript Spaghetti
Jared Faris
 

Similar to Robotlegs AS3 from Flash and the City 2010 (20)

Developing Actors in Azure with .net
Developing Actors in Azure with .netDeveloping Actors in Azure with .net
Developing Actors in Azure with .net
 
Developing maintainable Cordova applications
Developing maintainable Cordova applicationsDeveloping maintainable Cordova applications
Developing maintainable Cordova applications
 
Jump Start To Ooad And Design Patterns
Jump Start To Ooad And Design PatternsJump Start To Ooad And Design Patterns
Jump Start To Ooad And Design Patterns
 
Jump start to OOP, OOAD, and Design Pattern
Jump start to OOP, OOAD, and Design PatternJump start to OOP, OOAD, and Design Pattern
Jump start to OOP, OOAD, and Design Pattern
 
Design Patterns For 70% Of Programmers In The World
Design Patterns For 70% Of Programmers In The WorldDesign Patterns For 70% Of Programmers In The World
Design Patterns For 70% Of Programmers In The World
 
Swiz DAO
Swiz DAOSwiz DAO
Swiz DAO
 
Intro to Muon - How to build Polyglot Message and Event Microservices
Intro to Muon - How to build Polyglot Message and Event MicroservicesIntro to Muon - How to build Polyglot Message and Event Microservices
Intro to Muon - How to build Polyglot Message and Event Microservices
 
springtraning-7024840-phpapp01.pdf
springtraning-7024840-phpapp01.pdfspringtraning-7024840-phpapp01.pdf
springtraning-7024840-phpapp01.pdf
 
Entity Component Systems
Entity Component SystemsEntity Component Systems
Entity Component Systems
 
The art of Azure Functions (unit) testing and monitoring
The art of Azure Functions (unit) testing and monitoringThe art of Azure Functions (unit) testing and monitoring
The art of Azure Functions (unit) testing and monitoring
 
Gof design pattern
Gof design patternGof design pattern
Gof design pattern
 
Evolve Your Code
Evolve Your CodeEvolve Your Code
Evolve Your Code
 
Simple Ways to Get Your Organization to Adopt the AsyncAPI Spec
Simple Ways to Get Your Organization to Adopt the AsyncAPI SpecSimple Ways to Get Your Organization to Adopt the AsyncAPI Spec
Simple Ways to Get Your Organization to Adopt the AsyncAPI Spec
 
A Backpack to go the Extra-Functional Mile (a hitched hike by the PROWESS pro...
A Backpack to go the Extra-Functional Mile (a hitched hike by the PROWESS pro...A Backpack to go the Extra-Functional Mile (a hitched hike by the PROWESS pro...
A Backpack to go the Extra-Functional Mile (a hitched hike by the PROWESS pro...
 
Beyond design patterns phpnw14
Beyond design patterns   phpnw14Beyond design patterns   phpnw14
Beyond design patterns phpnw14
 
Functional solid
Functional solidFunctional solid
Functional solid
 
Stateful patterns in Azure Functions
Stateful patterns in Azure FunctionsStateful patterns in Azure Functions
Stateful patterns in Azure Functions
 
Javascript spaghetti stirtrek_5_17
Javascript  spaghetti stirtrek_5_17Javascript  spaghetti stirtrek_5_17
Javascript spaghetti stirtrek_5_17
 
Escape the defaults - Configure Sling like AEM as a Cloud Service
Escape the defaults - Configure Sling like AEM as a Cloud ServiceEscape the defaults - Configure Sling like AEM as a Cloud Service
Escape the defaults - Configure Sling like AEM as a Cloud Service
 
Building Rich User Experiences Without JavaScript Spaghetti
Building Rich User Experiences Without JavaScript SpaghettiBuilding Rich User Experiences Without JavaScript Spaghetti
Building Rich User Experiences Without JavaScript Spaghetti
 

Recently uploaded

Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
Kari Kakkonen
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
ControlCase
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
Product School
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Tobias Schneck
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
Elena Simperl
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
Product School
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Product School
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
Product School
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
DianaGray10
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
g2nightmarescribd
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 

Recently uploaded (20)

Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
DevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA ConnectDevOps and Testing slides at DASA Connect
DevOps and Testing slides at DASA Connect
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
PCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase TeamPCI PIN Basics Webinar from the Controlcase Team
PCI PIN Basics Webinar from the Controlcase Team
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
Kubernetes & AI - Beauty and the Beast !?! @KCD Istanbul 2024
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3UiPath Test Automation using UiPath Test Suite series, part 3
UiPath Test Automation using UiPath Test Suite series, part 3
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 

Robotlegs AS3 from Flash and the City 2010

Editor's Notes

  1. boiler plate code is teh sux.
  2. Frameworks are mission critical. They should be stable and well tested. Period.
  3. This was the first example I ever created with Robotlegs. Originally it was a Parsley example, but in the middle of the series I found Robotlegs and didn’t look back.