SlideShare une entreprise Scribd logo
1  sur  46
SKILLFULLY USING ALL OF YOUR


ASSETS
FOR IMPROVED PERFORMANCE

           VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
THE PREMISE

    VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
FASTER SITES
 ARE BETTER

   VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
FACEBOOK.COM: EMPTY CACHE
  BACK-END   FRONT-END



                                  5%




                            95%




                            VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
FACEBOOK.COM: PRIMED CACHE
  BACK-END   FRONT-END




                                          19%




                         81%




                               VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
FRONT-END
PERFORMANCE MATTERS

       VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
THE FACTORS

    VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
IMAGE SIZES
   VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
IMAGE SIZES
HTTP REQUESTS
    VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
IMAGE SIZES
   HTTP REQUESTS
GZIPPED COMPONENTS
       VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
IMAGE SIZES
   HTTP REQUESTS
GZIPPED COMPONENTS
 CACHE MANAGEMENT
       VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
IMAGE SIZES
   HTTP REQUESTS
GZIPPED COMPONENTS
 CACHE MANAGEMENT
  CSS EXPRESSIONS
       VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
IMAGE SIZES
   HTTP REQUESTS
GZIPPED COMPONENTS
 CACHE MANAGEMENT
  CSS EXPRESSIONS
CSS & JS POSITIONING
       VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
CSS & JS POSITIONING


       VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
THE RULES

   VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
Rule #1:
TWO AT A TIME


    VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
Rule #2:
SCRIPTS CAN BLOCK


      VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
Part 1:

STYLESHEETS

    VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
DON’T USE @IMPORT


      VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
DON’T USE @IMPORT
   unless it’s all you use
  & it’s all at a single level

           VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
HTML: @import “a.css”
HTML: @import “b.css”




     VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
HTML: @import “a.css”
       HTML: @import “b.css”


HTML

                       a.css

                       b.css




            VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
HTML: @import “a.css”
            HTML: @import “b.css”


     HTML

                            a.css

                            b.css




Single-level @import only: not so bad

                 VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
HTML: LINK “a.css”
HTML: @import “b.css”




     VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
HTML: LINK “a.css”
       HTML: @import “b.css”


HTML

        a.css

                                             b.css




                VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
HTML: LINK “a.css”
          HTML: @import “b.css”


HTML

           a.css

                                                b.css




 Mixed LINK and @import: Breaks IE

                   VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
HTML: LINK “a.css”
          a.css: @import “b.css”


HTML

           a.css

                                                b.css




   @import inside LINK: Breaks ALL

                   VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
HTML: LINK “a.css”
          a.css: @import “b.css”


HTML

           a.css

                                                b.css




   @import inside LINK: Breaks ALL

                   VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
HTML: LINK “a.css”
               HTML: LINK “b.css”
               b.css: @import “c.css”


HTML

                a.css

       b.css

                                                     c.css



       LINK blocks @import on IE
                        VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
HTML: LINK “a.css”
               HTML: LINK “b.css”
               b.css: @import “c.css”


HTML

                a.css

       b.css

                         c.css



        but NOT on other browsers
                        VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
HTML: LINK “a.css”
           HTML: LINK “b.css”
           HTML: LINK “c.css”


HTML

            a.css

            b.css

                                                 c.css



       All LINKs work as expected
                    VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
WHY NOT JUST USE
 @IMPORT ONLY?

      VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
Part 2:

SCRIPTS

  VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
IE PRIORITIZES SCRIPTS


        VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
HTML: @import “a.css”
                 HTML: @import “b.css”
                 HTML: @import “c.css”
                 HTML: SCRIPT “test.js”
HTML

                 test.js

         a.css

                                       b.css

                                                        c.css



@import is prioritized below header SCRIPT
                           VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
SCRIPTS CAN BLOCK


      VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
IE 6/7, FIREFOX 2/3, SAFARI 3, CHROME 1, OPERA:

 HTML

          test.js

                               test2.js

                                                             a.css

                                                            img.jpg




                    VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
IE8, SAFARI 4, CHROME 2

HTML

       test.js

       test2.js

                       a.css

                                                          img.jpg




                  VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
SCRIPT DOM ELEMENTS


       VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
SCRIPT DOM ELEMENTS
       DON’T BLOCK
        CROSS-SITE
    EASILY-UNDERSTOOD
 TRIGGERS BUSY INDICATORS

          VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
SCRIPT DOM ELEMENTS

 DOESN’T PRESERVE SCRIPT
 ORDER EXCEPT FOR FIREFOX
        AND OPERA


          VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
SCRIPT DEFERRAL


     VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
SCRIPT DEFERRAL
       defer=”defer”

ENFORECES LOAD ORDER IN IE,
 SAFARI 4, CHROME 2, FF 3.1

          VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
SCRIPTS AT THE BOTTOM
   unless you need them sooner



            VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
FIN

VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
Get in Touch!

speakerrate.com/whafro
  jackson@jounce.net
       @whafro
          VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009

Contenu connexe

En vedette

Building an HTML5 Video Player
Building an HTML5 Video PlayerBuilding an HTML5 Video Player
Building an HTML5 Video PlayerJim Jeffers
 
Jacks of All Trades or Masters of One?
Jacks of All Trades or Masters of One?Jacks of All Trades or Masters of One?
Jacks of All Trades or Masters of One?M. Jackson Wilkinson
 
Pen & Paper Tools for getting from Research to Design
Pen & Paper Tools for getting from Research to DesignPen & Paper Tools for getting from Research to Design
Pen & Paper Tools for getting from Research to DesignKate Rutter
 
Say Goodbye to Bullet Points
Say Goodbye to Bullet PointsSay Goodbye to Bullet Points
Say Goodbye to Bullet PointsPerpa Hsieh
 
Basic Chemistry on Your Slide
Basic Chemistry on Your SlideBasic Chemistry on Your Slide
Basic Chemistry on Your SlidePerpa Hsieh
 
Social Media Is Dead: Long Live Common Sense.
Social Media Is Dead: Long Live Common Sense.Social Media Is Dead: Long Live Common Sense.
Social Media Is Dead: Long Live Common Sense.David Armano
 
What the F**K is Social Media: One Year Later
What the F**K is Social Media: One Year LaterWhat the F**K is Social Media: One Year Later
What the F**K is Social Media: One Year LaterMartafy!
 
Bring Your Textbook to Life! Ideas & Resources
Bring Your Textbook to Life! Ideas & ResourcesBring Your Textbook to Life! Ideas & Resources
Bring Your Textbook to Life! Ideas & ResourcesShelly Sanchez Terrell
 
The Now and Next of Learning and Technology
The Now and Next of Learning and TechnologyThe Now and Next of Learning and Technology
The Now and Next of Learning and TechnologyDavid Kelly
 
10 E-Learning Trends to watch in 2016
10 E-Learning Trends to watch in 201610 E-Learning Trends to watch in 2016
10 E-Learning Trends to watch in 2016Aurion Learning
 
16 Tips on How To Make Money on Udemy – Passive Income from Teaching Online
16 Tips on How To Make Money on Udemy – Passive Income from Teaching Online16 Tips on How To Make Money on Udemy – Passive Income from Teaching Online
16 Tips on How To Make Money on Udemy – Passive Income from Teaching OnlineRob Cubbon
 
Zara Marketing Campaign Design
Zara Marketing Campaign DesignZara Marketing Campaign Design
Zara Marketing Campaign DesignCarmen Neghina
 
Shall we play a game?
Shall we play a game?Shall we play a game?
Shall we play a game?Maciej Lasyk
 
Study: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving CarsStudy: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving CarsLinkedIn
 
What Would Steve Do? 10 Lessons from the World's Most Captivating Presenters
What Would Steve Do? 10 Lessons from the World's Most Captivating PresentersWhat Would Steve Do? 10 Lessons from the World's Most Captivating Presenters
What Would Steve Do? 10 Lessons from the World's Most Captivating PresentersHubSpot
 
Can We Assess Creativity?
Can We Assess Creativity?Can We Assess Creativity?
Can We Assess Creativity?John Spencer
 
Hype vs. Reality: The AI Explainer
Hype vs. Reality: The AI ExplainerHype vs. Reality: The AI Explainer
Hype vs. Reality: The AI ExplainerLuminary Labs
 
Visual Design with Data
Visual Design with DataVisual Design with Data
Visual Design with DataSeth Familian
 

En vedette (19)

Building an HTML5 Video Player
Building an HTML5 Video PlayerBuilding an HTML5 Video Player
Building an HTML5 Video Player
 
Jacks of All Trades or Masters of One?
Jacks of All Trades or Masters of One?Jacks of All Trades or Masters of One?
Jacks of All Trades or Masters of One?
 
Pen & Paper Tools for getting from Research to Design
Pen & Paper Tools for getting from Research to DesignPen & Paper Tools for getting from Research to Design
Pen & Paper Tools for getting from Research to Design
 
Usability & Webdesign 2010
Usability & Webdesign 2010Usability & Webdesign 2010
Usability & Webdesign 2010
 
Say Goodbye to Bullet Points
Say Goodbye to Bullet PointsSay Goodbye to Bullet Points
Say Goodbye to Bullet Points
 
Basic Chemistry on Your Slide
Basic Chemistry on Your SlideBasic Chemistry on Your Slide
Basic Chemistry on Your Slide
 
Social Media Is Dead: Long Live Common Sense.
Social Media Is Dead: Long Live Common Sense.Social Media Is Dead: Long Live Common Sense.
Social Media Is Dead: Long Live Common Sense.
 
What the F**K is Social Media: One Year Later
What the F**K is Social Media: One Year LaterWhat the F**K is Social Media: One Year Later
What the F**K is Social Media: One Year Later
 
Bring Your Textbook to Life! Ideas & Resources
Bring Your Textbook to Life! Ideas & ResourcesBring Your Textbook to Life! Ideas & Resources
Bring Your Textbook to Life! Ideas & Resources
 
The Now and Next of Learning and Technology
The Now and Next of Learning and TechnologyThe Now and Next of Learning and Technology
The Now and Next of Learning and Technology
 
10 E-Learning Trends to watch in 2016
10 E-Learning Trends to watch in 201610 E-Learning Trends to watch in 2016
10 E-Learning Trends to watch in 2016
 
16 Tips on How To Make Money on Udemy – Passive Income from Teaching Online
16 Tips on How To Make Money on Udemy – Passive Income from Teaching Online16 Tips on How To Make Money on Udemy – Passive Income from Teaching Online
16 Tips on How To Make Money on Udemy – Passive Income from Teaching Online
 
Zara Marketing Campaign Design
Zara Marketing Campaign DesignZara Marketing Campaign Design
Zara Marketing Campaign Design
 
Shall we play a game?
Shall we play a game?Shall we play a game?
Shall we play a game?
 
Study: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving CarsStudy: The Future of VR, AR and Self-Driving Cars
Study: The Future of VR, AR and Self-Driving Cars
 
What Would Steve Do? 10 Lessons from the World's Most Captivating Presenters
What Would Steve Do? 10 Lessons from the World's Most Captivating PresentersWhat Would Steve Do? 10 Lessons from the World's Most Captivating Presenters
What Would Steve Do? 10 Lessons from the World's Most Captivating Presenters
 
Can We Assess Creativity?
Can We Assess Creativity?Can We Assess Creativity?
Can We Assess Creativity?
 
Hype vs. Reality: The AI Explainer
Hype vs. Reality: The AI ExplainerHype vs. Reality: The AI Explainer
Hype vs. Reality: The AI Explainer
 
Visual Design with Data
Visual Design with DataVisual Design with Data
Visual Design with Data
 

Plus de M. Jackson Wilkinson

Plus de M. Jackson Wilkinson (7)

Rebooting the Blue Button
Rebooting the Blue ButtonRebooting the Blue Button
Rebooting the Blue Button
 
Designing for Silence
Designing for SilenceDesigning for Silence
Designing for Silence
 
Tips for Presenting
Tips for PresentingTips for Presenting
Tips for Presenting
 
How MacGyver Would Do Design Research
How MacGyver Would Do Design ResearchHow MacGyver Would Do Design Research
How MacGyver Would Do Design Research
 
UX Matters
UX MattersUX Matters
UX Matters
 
Up to Speed on HTML 5 and CSS 3
Up to Speed on HTML 5 and CSS 3Up to Speed on HTML 5 and CSS 3
Up to Speed on HTML 5 and CSS 3
 
Design and UX in an Agile Process
Design and UX in an Agile ProcessDesign and UX in an Agile Process
Design and UX in an Agile Process
 

Dernier

Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
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.pptxRustici Software
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelDeepika Singh
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityWSO2
 
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 2024Victor Rentea
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
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​Bhuvaneswari Subramani
 
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 Ontologyjohnbeverley2021
 
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 AmsterdamUiPathCommunity
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
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 DevelopersWSO2
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 

Dernier (20)

Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
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
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
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
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
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​
 
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
 
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
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
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
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 

Asset Positioning for Performance

  • 1. SKILLFULLY USING ALL OF YOUR ASSETS FOR IMPROVED PERFORMANCE VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 2. THE PREMISE VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 3. FASTER SITES ARE BETTER VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 4. FACEBOOK.COM: EMPTY CACHE BACK-END FRONT-END 5% 95% VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 5. FACEBOOK.COM: PRIMED CACHE BACK-END FRONT-END 19% 81% VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 6. FRONT-END PERFORMANCE MATTERS VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 7. THE FACTORS VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 8. IMAGE SIZES VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 9. IMAGE SIZES HTTP REQUESTS VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 10. IMAGE SIZES HTTP REQUESTS GZIPPED COMPONENTS VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 11. IMAGE SIZES HTTP REQUESTS GZIPPED COMPONENTS CACHE MANAGEMENT VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 12. IMAGE SIZES HTTP REQUESTS GZIPPED COMPONENTS CACHE MANAGEMENT CSS EXPRESSIONS VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 13. IMAGE SIZES HTTP REQUESTS GZIPPED COMPONENTS CACHE MANAGEMENT CSS EXPRESSIONS CSS & JS POSITIONING VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 14. CSS & JS POSITIONING VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 15. THE RULES VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 16. Rule #1: TWO AT A TIME VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 17. Rule #2: SCRIPTS CAN BLOCK VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 18. Part 1: STYLESHEETS VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 19. DON’T USE @IMPORT VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 20. DON’T USE @IMPORT unless it’s all you use & it’s all at a single level VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 21. HTML: @import “a.css” HTML: @import “b.css” VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 22. HTML: @import “a.css” HTML: @import “b.css” HTML a.css b.css VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 23. HTML: @import “a.css” HTML: @import “b.css” HTML a.css b.css Single-level @import only: not so bad VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 24. HTML: LINK “a.css” HTML: @import “b.css” VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 25. HTML: LINK “a.css” HTML: @import “b.css” HTML a.css b.css VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 26. HTML: LINK “a.css” HTML: @import “b.css” HTML a.css b.css Mixed LINK and @import: Breaks IE VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 27. HTML: LINK “a.css” a.css: @import “b.css” HTML a.css b.css @import inside LINK: Breaks ALL VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 28. HTML: LINK “a.css” a.css: @import “b.css” HTML a.css b.css @import inside LINK: Breaks ALL VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 29. HTML: LINK “a.css” HTML: LINK “b.css” b.css: @import “c.css” HTML a.css b.css c.css LINK blocks @import on IE VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 30. HTML: LINK “a.css” HTML: LINK “b.css” b.css: @import “c.css” HTML a.css b.css c.css but NOT on other browsers VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 31. HTML: LINK “a.css” HTML: LINK “b.css” HTML: LINK “c.css” HTML a.css b.css c.css All LINKs work as expected VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 32. WHY NOT JUST USE @IMPORT ONLY? VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 33. Part 2: SCRIPTS VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 34. IE PRIORITIZES SCRIPTS VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 35. HTML: @import “a.css” HTML: @import “b.css” HTML: @import “c.css” HTML: SCRIPT “test.js” HTML test.js a.css b.css c.css @import is prioritized below header SCRIPT VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 36. SCRIPTS CAN BLOCK VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 37. IE 6/7, FIREFOX 2/3, SAFARI 3, CHROME 1, OPERA: HTML test.js test2.js a.css img.jpg VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 38. IE8, SAFARI 4, CHROME 2 HTML test.js test2.js a.css img.jpg VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 39. SCRIPT DOM ELEMENTS VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 40. SCRIPT DOM ELEMENTS DON’T BLOCK CROSS-SITE EASILY-UNDERSTOOD TRIGGERS BUSY INDICATORS VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 41. SCRIPT DOM ELEMENTS DOESN’T PRESERVE SCRIPT ORDER EXCEPT FOR FIREFOX AND OPERA VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 42. SCRIPT DEFERRAL VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 43. SCRIPT DEFERRAL defer=”defer” ENFORECES LOAD ORDER IN IE, SAFARI 4, CHROME 2, FF 3.1 VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 44. SCRIPTS AT THE BOTTOM unless you need them sooner VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 45. FIN VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009
  • 46. Get in Touch! speakerrate.com/whafro jackson@jounce.net @whafro VIGET LABS DESIGNSHARE | M. JACKSON WILKINSON | MAY 12, 2009