SlideShare a Scribd company logo
1 of 135
Download to read offline
[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 .netMarco Parenzan
 
Developing maintainable Cordova applications
Developing maintainable Cordova applicationsDeveloping maintainable Cordova applications
Developing maintainable Cordova applicationsIvano Malavolta
 
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 PatternNishith Shukla
 
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 PatternsLalit Kale
 
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 WorldSaurabh 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 MicroservicesDavid Dawson
 
springtraning-7024840-phpapp01.pdf
springtraning-7024840-phpapp01.pdfspringtraning-7024840-phpapp01.pdf
springtraning-7024840-phpapp01.pdfBruceLee275640
 
Entity Component Systems
Entity Component SystemsEntity Component Systems
Entity Component SystemsYos 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 monitoringMassimo Bonanni
 
Gof design pattern
Gof design patternGof design pattern
Gof design patternnaveen kumar
 
Evolve Your Code
Evolve Your CodeEvolve Your Code
Evolve Your CodeRookieOne
 
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 SpecAxway
 
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 phpnw14Anthony Ferrara
 
Functional solid
Functional solidFunctional solid
Functional solidMatt Stine
 
Stateful patterns in Azure Functions
Stateful patterns in Azure FunctionsStateful patterns in Azure Functions
Stateful patterns in Azure FunctionsMassimo 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 ServiceRobert 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 SpaghettiJared 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 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
 
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
 
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

Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 

Recently uploaded (20)

Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 

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.