SlideShare ist ein Scribd-Unternehmen logo
1 von 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

Weitere ähnliche Inhalte

Ähnlich wie 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
 

Ähnlich wie 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
 
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...
 
Design
DesignDesign
Design
 
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
 

Kürzlich hochgeladen

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
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
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
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKJago de Vreede
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfOverkill Security
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024The Digital Insurer
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
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
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfOverkill Security
 

Kürzlich hochgeladen (20)

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, ...
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
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
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUKSpring Boot vs Quarkus the ultimate battle - DevoxxUK
Spring Boot vs Quarkus the ultimate battle - DevoxxUK
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
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
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Cyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdfCyberprint. Dark Pink Apt Group [EN].pdf
Cyberprint. Dark Pink Apt Group [EN].pdf
 

Responsible Web Design