SlideShare uma empresa Scribd logo
1 de 92
responsible web design
        JONAS PÄCKOS

    EVRY SENSOMMARSYMPOSIUM 2012
web and mobile
 ux developer
  WEB DESIGNER ++
changes in personal computing




  http://www.asymco.com/2012/01/17/the-rise-and-fall-of-personal-computing/
changes in personal computing




  http://www.asymco.com/2012/01/17/the-rise-and-fall-of-personal-computing/
http://thenextweb.com/apple/2012/01/25/there-are-now-more-iphones-sold-than-babies-born-in-the-world-every-day/
responsive web design
responsive web design

      Fluid grids
    Flexible Media
    Media Queries
fluid grids




http://www.w3.org/History/19921103-hypertext/hypertext/WWW/TheProject.html
640 x 480
 800 x 600
1024 x 768
http://www.floridadisaster.org/SiteView.htm
flexible media

   Images
    Video
flexible media
flexible media
     1024px




                 683px
flexible media

img, video {
  max-width: 100%;
}
media queries

@media screen and (min-width:
320px) and (max-width: 768px)
{
...
}
common breakpoints
 320px   mobile portrait
 480px   mobile landscape
 600px   small tablet
 768px   tablet portrait
1024px   tablet landscape / netbook
1280px   desktop
”
Responsive design is not about
“designing for mobile.” But it’s not
about “designing for the desktop,”
either.
                                                             - Ethan Marcotte




       http://unstoppablerobotninja.com/entry/toffee-nosed/
”
Rather, it’s about adopting a more
flexible, device-agnostic approach
to designing for the web.
                                                             - Ethan Marcotte




       http://unstoppablerobotninja.com/entry/toffee-nosed/
”
Fluid grids, flexible images, and
media queries are the tools we use
to get a bit closer to that somewhat
abstract-sounding philosophy.
                                                             - Ethan Marcotte




       http://unstoppablerobotninja.com/entry/toffee-nosed/
common breakpoints
 320px   mobile portrait
 480px   mobile landscape
 600px   small tablet
 768px   tablet portrait
1024px   tablet landscape / netbook
1280px   desktop
Today’s common breakpoints aren’t
tomorrow’s. Create a device-agnostic
flexible platform.
                                                                                 - Brad Frost




 http://bradfrostweb.com/blog/mobile/beyond-media-queries-anatomy-of-an-adaptive-web-design/
android fragmentation


The Study. Over the past 6 months we've been logging the new devices that download OpenSignalMaps, we've based this study on 681,900 of these devices. We've l
at model, brand, API level (i.e. the version of Android) and screen size and we've tried to present this in the clearest form we can.




                                      http://opensignalmaps.com/reports/fragmentation.php
Over the past 6 months we've been
logging the new devices that download
OpenSignalMaps, we've based this study
on 681,900 of these devices.



         http://opensignalmaps.com/reports/fragmentation.php
We've looked at model, brand, API level
(i.e. the version of Android) and screen
size and we've tried to present this in
the clearest form we can.



          http://opensignalmaps.com/reports/fragmentation.php
android fragmentation




  http://opensignalmaps.com/reports/fragmentation.php
android versions




http://opensignalmaps.com/reports/fragmentation.php
screen resolution




http://opensignalmaps.com/reports/fragmentation.php
screen resolution




     Android
screen resolution




Android, most common screen sizes
screen resolution




   iPhone and iPad
http://designmind.frogdesign.com/blog/the-coming-zombie-apocalypse-small-cheap-devices-
                       will-disrupt-our-old-school-ux-assumptions.htm
responsive web design

                                                                                  content
performance                                                                       strategy

   feature                                     touch
  detection
                                                                                   conditional
    rwd with server-side                                                             loading
        components


      Photo Credit: http://howthehellshouldiknow-wallyworld.blogspot.se/2011/08/this-is-just-tip-of-iceberg.html
performance
71%
  Mobile web users expect websites to load
   as fast if not faster than desktop sites


http://www.compuware.com/d/release/592528/new-study-reveals-the-mobile-web-disappoints-global-consumers
74%
Mobile users will abandon a site if it takes
      more than 5 seconds to load


  http://www.gomez.com/resources/whitepapers/survey-report-what-users-want-from-mobile/
1 MB
          Average page size



http://gigaom.com/2012/05/23/the-growing-epidemic-of-page-bloat/
Average Page, 2012
JS      IMG         CSS   FLASH   HTML      OTHER



            196kb



     31kb
46kb

     82kb                                674kb

        37kb
http://mobitest.akamai.com/m/index.cgi
http://bradfrostweb.com/blog/web/mobile-first-responsive-web-design/
structure content first
work with real content
start with mobile
WYSIWYG
Do websites need to look exactly
  the same in every browser?
screen resolution




http://opensignalmaps.com/reports/fragmentation.php
WYSIWTF
http://styletil.es
http://styletil.es
http://foundation.zurb.com
http://twitter.github.com/bootstrap/
http://twitter.github.com/bootstrap/examples/fluid.html
twitter bootstrap mediaqueries

 @media       (min-width:                     1200px) {...}
 @media       (max-width:                     980px) {...}
 @media       (max-width:                     768px) {...}
 @media       (max-width:                     480px) {...}
 @media       (max-width:                     320px) {...}




   http://twitter.github.com/bootstrap/assets/css/bootstrap-responsive.css
a more mobile-first approach

@media       (min-width:                     320px) {...}
@media       (min-width:                     480px) {...}
@media       (min-width:                     768px) {...}
@media       (min-width:                     980px) {...}
@media       (min-width:                     1200px) {...}




  http://twitter.github.com/bootstrap/assets/css/bootstrap-responsive.css
common breakpoints
 320px   mobile portrait
 480px   mobile landscape
 600px   small tablet
 768px   tablet portrait
1024px   tablet landscape / netbook
1280px   desktop
Today’s common breakpoints aren’t
tomorrow’s. Create a device-agnostic
flexible platform.
                                                                                 - Brad Frost




 http://bradfrostweb.com/blog/mobile/beyond-media-queries-anatomy-of-an-adaptive-web-design/
a mobile-first and content
   connected approach

@media       (min-width:                     44em) {...}
@media       (min-width:                     56em) {...}
@media       (min-width:                     72em) {...}
@media       (min-width:                     100em) {...}




  http://twitter.github.com/bootstrap/assets/css/bootstrap-responsive.css
”
The absence of a media query is
in fact, the first media query.
                                                                   - Bryan Rieger




 http://www.slideshare.net/bryanrieger/rethinking-the-mobile-web-by-yiibu
begin with a lightweight default




A
                      fully flexible with default
B                     styles for navigation,
                      fonts, content and
C
                      no media query




    http://www.slideshare.net/yiibu/pragmatic-responsive-design
each style sheet augments the others
            breakpoint                              breakpoint
                     style sheet 1



                                                             augment original
       A                      A
                                                B            style sheet with
       B                             C
                                                             (only) the style
       C                                                     changes that are
                                                             needed to enhance
                                                             the layout



  < xx px wide               xx px to xxx px
  (or unable to
understand further
                           http://www.slideshare.net/yiibu/pragmatic-responsive-design
  instructions)
each style sheet augments the others
            breakpoint                              breakpoint                            breakpoint
                     style sheet 1                         style sheet 2


                                                             A          C
       A                      A                              B
                                                B                                              augment
       B                             C
                                                                                               once
                                                                                               again for
       C                                                                                       TVs etc.




  < xx px wide               xx px to xxx px                               >xxx px wide
  (or unable to
understand further
                           http://www.slideshare.net/yiibu/pragmatic-responsive-design
  instructions)
a common approach
                                                    One style sheet with media
                                                    queries on the inside.
                 styles.css




               @media {
           (min-width: 320px)
                   }

                                               a single css file is network
               @media {                        efficient, but includes
           (min-width: 480px)                  unnecessary style data that
                   }                           all devices end up downloading

               @media {
           (min-width: 640px)
                   }


                 @media {
           (min-width: 768px)
http://www.slideshare.net/yiibu/pragmatic-responsive-design
                       }
a more robust option
                                                                         Multiple style sheets with
                                                                         media queries on the inside.



MAJOR
BREAKPOINTS
IN DOCUMENT
HEAD
              basic.css                      mobile.css                       desktop.css




MINOR
              (typically)                   @media {                          @media {
BREAKPOINTS
              no media                  (min-width: 480px)                (min-width: 768px)
WITHIN EACH     queries                         }                                 }
STYLE SHEET
                                            @media {
                                        (min-width: 640px)
                                                }



                      http://www.slideshare.net/yiibu/pragmatic-responsive-design
http://scottjehl.github.com/CSS-Download-Tests/
http://www.zurb.com/article/883/small-painful-buttons-why-social-media-bu
http://www.zurb.com/article/883/small-painful-buttons-why-social-media-bu
To load the Facebook,
Twitter and Google social
media buttons for a total of
19 requests takes 246.7k in
bandwidth.

   http://www.zurb.com/article/883/small-painful-buttons-why-social-media-bu
https://twitter.com/stephenhay/status/157430546396483587
progressively enhanced social icons
<a href="http://www.facebook.com/sharer.php?
u=URL&t=TITLE">link or image</a>


<a href="http://twitter.com/home?status=STATUS" title="Click
to share this post on Twitter">Share on Twitter</a>


<a href="https://m.google.com/app/plus/x/?
v=compose&content=CONTENT">Image or text</a>
progressive enhancement

      JavaScript
          Behaviour


           CSS
         Presentation


         HTML
       Stabile foundation
aggressive enhancement
Some devices can’t display carousels, so why burden those
       devices with content that they don’t need?

 Progressive enhancement is where you gradually layer new
  functionality into a site according to the capabilities of the
                        browser or device.

 Aggressive enhancement goes further, treating content itself
                   as an enhancement.



               http://globalmoxie.com/blog/making-of-people-mobile.shtml
aggressive enhancement
    If a browser doesn’t have JavaScript, it doesn’t even
download the secondary carousel content. The result is a light
 page that lets the browser start rendering that basic content
                         right away.

   It’s a technique that’s respectful of visitors’ bandwidth,
                 computing power, and time.

           It’s not only responsive, it’s responsible.


               http://globalmoxie.com/blog/making-of-people-mobile.shtml
south street enhancement tools
Enhance
a tiny JavaScript framework designed to help developers determine if a browser is
capable of handling additional JavaScript and CSS enhancements, and load specific
enhancements for that browser as fast and simply as possible.


eCSSential
an experimental utility for making browsers load responsive CSS in a more responsible
way.


QuickConcat
a simple dynamic concatenator for html, css, and js files, written in PHP


AjaxInclude
a plugin that is designed for modular content construction, that runs on jQuery


AppendAround
A JavaScript pattern for responsive, roving markup.                                                    IA   L   SOUTH
                                                                                                    NT                                         DE
                                                                                        EC
                                                                                           S   SE
                                                                                                                STREET   AJ
                                                                                                                              A   XIN
                                                                                                                                      C   LU




PictureFill
a simple pattern for overhead-free responsive images today.


                                     https://github.com/filamentgroup/Southstreet
http://www.lukew.com/ff/entry.asp?1392
the smart tv
http://www.alistapart.com/articles/dao/



http://www.alistapart.com/articles/dao/
”
Make pages which are accessible,
regardless of the browser, platform
or screen that your reader chooses
or must use to access your pages.
                                                    - John Allsop




          http://www.alistapart.com/articles/dao/
”
Designing adaptable pages is
designing accessible pages.
                                                 - John Allsop




       http://www.alistapart.com/articles/dao/
”
Design responsibly!
                      - Jonas Päckos
thank you.
http://about.me/pekkos
http://www.slideshare.net/pekkos
     @pekkos

Mais conteúdo relacionado

Semelhante a Responsible Web Design

Responsive Web Design: buzzword or revolution?
Responsive Web Design: buzzword or revolution?Responsive Web Design: buzzword or revolution?
Responsive Web Design: buzzword or revolution?Wojtek Zając
 
CSS3 Media Queries: Mobile Elixir or CSS Snake Oil
CSS3 Media Queries: Mobile Elixir or CSS Snake OilCSS3 Media Queries: Mobile Elixir or CSS Snake Oil
CSS3 Media Queries: Mobile Elixir or CSS Snake Oiljameswillweb
 
Module 08: Responsive Web Design
Module 08: Responsive Web DesignModule 08: Responsive Web Design
Module 08: Responsive Web DesignDaniel Drew Turner
 
Responsive Web Design, get the best out of your designs - JavaScript Open Day...
Responsive Web Design, get the best out of your designs - JavaScript Open Day...Responsive Web Design, get the best out of your designs - JavaScript Open Day...
Responsive Web Design, get the best out of your designs - JavaScript Open Day...Frédéric Harper
 
CSS3: Simply Responsive
CSS3: Simply ResponsiveCSS3: Simply Responsive
CSS3: Simply ResponsiveDenise Jacobs
 
Effective and Efficient Design with CSS3
Effective and Efficient Design with CSS3Effective and Efficient Design with CSS3
Effective and Efficient Design with CSS3Zoe Gillenwater
 
Responsive Web Design for Universal Access
Responsive Web Design for Universal AccessResponsive Web Design for Universal Access
Responsive Web Design for Universal AccessKate Walser
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web DesignShawn Calvert
 
Responsive Web Design, the secret sauce - MSDEVMTL - 2016-01-25
Responsive Web Design, the secret sauce - MSDEVMTL - 2016-01-25Responsive Web Design, the secret sauce - MSDEVMTL - 2016-01-25
Responsive Web Design, the secret sauce - MSDEVMTL - 2016-01-25Frédéric Harper
 
Responsive websites. Toolbox
Responsive websites. ToolboxResponsive websites. Toolbox
Responsive websites. ToolboxWojtek Zając
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web DesignClarissa Peterson
 
FITC - 2012-04-23 - Responsive Web Design
FITC - 2012-04-23 - Responsive Web DesignFITC - 2012-04-23 - Responsive Web Design
FITC - 2012-04-23 - Responsive Web DesignFrédéric Harper
 
Responsive Web Design - Devoxx UK - 2014-06-13
Responsive Web Design - Devoxx UK - 2014-06-13Responsive Web Design - Devoxx UK - 2014-06-13
Responsive Web Design - Devoxx UK - 2014-06-13Frédéric Harper
 
Building Responsive Websites and Apps with Drupal
Building Responsive Websites and Apps with DrupalBuilding Responsive Websites and Apps with Drupal
Building Responsive Websites and Apps with DrupalFour Kitchens
 
Responsive webdesign WordCampNL 2012
Responsive webdesign WordCampNL 2012Responsive webdesign WordCampNL 2012
Responsive webdesign WordCampNL 2012Tom Hermans
 
Responsive Web Design tips and tricks.
Responsive Web Design tips and tricks.Responsive Web Design tips and tricks.
Responsive Web Design tips and tricks.GaziAhsan
 

Semelhante a Responsible Web Design (20)

Responsive Web Design: buzzword or revolution?
Responsive Web Design: buzzword or revolution?Responsive Web Design: buzzword or revolution?
Responsive Web Design: buzzword or revolution?
 
CSS3 Media Queries: Mobile Elixir or CSS Snake Oil
CSS3 Media Queries: Mobile Elixir or CSS Snake OilCSS3 Media Queries: Mobile Elixir or CSS Snake Oil
CSS3 Media Queries: Mobile Elixir or CSS Snake Oil
 
Bootstrap
BootstrapBootstrap
Bootstrap
 
Module 08: Responsive Web Design
Module 08: Responsive Web DesignModule 08: Responsive Web Design
Module 08: Responsive Web Design
 
Design
DesignDesign
Design
 
Responsive Web Design, get the best out of your designs - JavaScript Open Day...
Responsive Web Design, get the best out of your designs - JavaScript Open Day...Responsive Web Design, get the best out of your designs - JavaScript Open Day...
Responsive Web Design, get the best out of your designs - JavaScript Open Day...
 
CSS3: Simply Responsive
CSS3: Simply ResponsiveCSS3: Simply Responsive
CSS3: Simply Responsive
 
Effective and Efficient Design with CSS3
Effective and Efficient Design with CSS3Effective and Efficient Design with CSS3
Effective and Efficient Design with CSS3
 
Responsive Web Design for Universal Access
Responsive Web Design for Universal AccessResponsive Web Design for Universal Access
Responsive Web Design for Universal Access
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web Design
 
Responsive Web Design, the secret sauce - MSDEVMTL - 2016-01-25
Responsive Web Design, the secret sauce - MSDEVMTL - 2016-01-25Responsive Web Design, the secret sauce - MSDEVMTL - 2016-01-25
Responsive Web Design, the secret sauce - MSDEVMTL - 2016-01-25
 
Responsive websites. Toolbox
Responsive websites. ToolboxResponsive websites. Toolbox
Responsive websites. Toolbox
 
Introduction to Responsive Web Design
Introduction to Responsive Web DesignIntroduction to Responsive Web Design
Introduction to Responsive Web Design
 
FITC - 2012-04-23 - Responsive Web Design
FITC - 2012-04-23 - Responsive Web DesignFITC - 2012-04-23 - Responsive Web Design
FITC - 2012-04-23 - Responsive Web Design
 
Real-world CSS3
Real-world CSS3Real-world CSS3
Real-world CSS3
 
Responsive Web Design - Devoxx UK - 2014-06-13
Responsive Web Design - Devoxx UK - 2014-06-13Responsive Web Design - Devoxx UK - 2014-06-13
Responsive Web Design - Devoxx UK - 2014-06-13
 
Building Responsive Websites and Apps with Drupal
Building Responsive Websites and Apps with DrupalBuilding Responsive Websites and Apps with Drupal
Building Responsive Websites and Apps with Drupal
 
Responsive webdesign WordCampNL 2012
Responsive webdesign WordCampNL 2012Responsive webdesign WordCampNL 2012
Responsive webdesign WordCampNL 2012
 
Responsive Web Design tips and tricks.
Responsive Web Design tips and tricks.Responsive Web Design tips and tricks.
Responsive Web Design tips and tricks.
 
Rwd slidedeck
Rwd slidedeckRwd slidedeck
Rwd slidedeck
 

Último

Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
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
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
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
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
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
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
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
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
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
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
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
 
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
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 

Último (20)

Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
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
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
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.
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
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
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
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
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
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
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
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
 
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
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 

Responsible Web Design