SlideShare a Scribd company logo
1 of 169
hi
These are the slides I used for a
three hour presentation/workshop
about HTML5 and other modern
techniques that can be used to
build web apps.
LET’S CONNECT


• http://www.linkedin.com/in/jorishens
• @goodbytes on Twitter
• http://www.goodbytes.be
THE 10 YEAR
TECH CYCLE
1960s
HIPPIES & MAINFRAMES
source: oldhippie.com
1970s
MINI COMPUTING
source: computerhistory.org
1980s
PERSONAL COMPUTING
image credit: couldn’t verify
1990s
DESKTOP INTERNET COMPUTING
1991: HTML
1994: HTML 2
1996: CSS1 + Javascript
1997: HTML4
1998: CSS 2
2000: XHTML 1
DESKTOPS
 800px * 600px
WEB DESIGN
  IN 1997
A.K.A. MY FIRST WEBSITE
LIFE WAS GREAT!
  no spam, no facebook, ICQ
  and 800px of safe canvas!
<TABLES>
<font color=”red”>
        yuk
      </font>
CSS !
2002: Tableless Web Design




  <TABLES>
2005




AJAX
1 - click on link


         2 - AJAX call to
                like.php
server
         3 - php updates
              the db and
                responds

           4 - js catches
           response and
              updates UI
NO PAGE
REFRESH
WEB DESIGN
UNTIL ... 2007
http://www.flickr.com/photos/30713600@N00/4143454588/
NEW
POSSIBILITIES
MOBILE ACCESS
GPS+COMPASS
ACCELEROMETER
 + GYROSCOPE
ACCELEROMETER
 + GYROSCOPE
CAMERA
CAMERA
OFFLINE DATA
GOING NATIVE?
ADVANTAGES
OF GOING NATIVE
★ APP STORE REVENUE
★ APP STORE REVENUE
★ HARDWARE ACCESS
DISADVANTAGES
OF GOING NATIVE
APP APPROVAL
TAKES FOREVER
MORE COMPLEX
HTML5
AND RELATED AWESOMENESS
READY IN
2022
2022
= “require at least two
 browsers to completely
pass [HTML 5 test suites]”
JUNE 2011
  CSS2.1 is now a
W3C recommendation
  (after 13 years)
NEW SEMANTIC
    TAGS
<!DOCTYPE html>
source:(h*p://www.smashingmagazine.com/2009/07/16/html5>and>the>future>of>the>web/
OLD BROWSERS?
http://www.impressivewebs.com/difference-block-inline-css/
PROBLEM
I don’t know <header>, <footer>, ...
         I’ll just make it inline
SOLUTION
http://meyerweb.com/eric/tools/css/reset/
IE6, 7, 8


OLD BROWSERS?
GEOLOCATION?
OFFLINE DATA?
FORMS
<VIDEO>

                   Flash
<video width="400" height="360" src="vid.mp4">
<AUDIO>
<CANVAS>
http://www.cuttherope.ie/
http://chrome.angrybirds.com
http://chalk.37signals.com
<CANVAS>+<VIDEO>
     = lolcatz




http://html5demos.com/video-canvas
SPEECH?




http://www.goodbytes.be/presentations/pica/speech.html
SPEECH?




http://www.goodbytes.be/presentations/pica/speech.html
DRAG&DROP


http://html5demos.com/drag
WEB SOCKETS
“REAL TIME”
    vs
 “POLLING”
GOT CANDY?

   http://www.flickr.com/photos/53552950@N00/2379078919
★ GOOGLE DOCS
★ GOOGLE DOCS
★ LIVE CHAT
★ GOOGLE DOCS
★ LIVE CHAT
★ GAMES
★ GOOGLE DOCS
★ LIVE CHAT
★ GAMES
★ ...
CSS3
AND OTHER HIPSTER TECHNIQUES
PHOTOSHOP
PHOTOSHOP
SPEC NOT FINAL YET


        -moz-
       -webkit-
          -o-
         -ms-
DO IT FUTURE PROOF
OR GO PREFIX FREE
border-image
SHAPES
h*p://www.css3shapes.com/
SHAPES




http://nicolasgallagher.com/pure-css-social-media-icons/
h*p://desandro.com/arCcles/opera>logo>css/
h*p://cordobo.com/1630>internet>explorer>pure>css>logo/
h*p://graphicpeel.com/cssiosicons
h*p://www.lensco.be/files/clocks/
CSS
ANIMATIONS
CSS ANIMATIONS




   http://leaverou.github.com/animatable/
CSS
GRADIENTS
CSS GRADIENTS
                 Complex :(




               Generators :)
http://gradients.glrzad.com/
http://www.westciv.com/tools/gradients/
TYPOGRAPHY
@font-face
• fontsquirrel.com, google fonts, typekit, ...
ICON FONTS
.icon:before
{content:'e048';}




  http://somerandomdude.com/work/iconic/
SVG
SVG
• h*p://webtypographyforthelonely.com/
SVG
• Scalable Vector Graphics
• not new
• resolution-independant
• XML
• http://www.w3schools.com/svg/default.asp
 <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
   <circle cx="100" cy="50" r="40" stroke="black"
   stroke-width="2" fill="red" />
 </svg>
SVG((Scalable(Vector(Graphics)




h*p://www.drawasCckman.com/   h*p://www.w3schools.com/svg/default.asp
EXAMPLES
http://pattern.dk/sun/
http://pattern.dk/sun/
http://pattern.dk/sun/
LET’S BUILD
A SIMPLE APP
GET LOCATION
GET TOILETS
ANIMATE LOGO
GET CLOSEST RESULT
SHOW RESULT
RESTART ON LOGO CLICK
ALREADY DONE
ALREADY DONE
APPLE SPECIFIC
  SETTINGS
APP ICONS
STARTUP
 SCREEN
STARTUP
 SCREEN
GO FULLSCREEN
HTML/CSS/JS
   ONLY
WORKS ON
*ANY* DEVICE
GEOLOCATION
if (navigator.geolocation) {
  navigator.geolocation.getCurrentPosition(success, error);
} else {
  //error
}

function success(position)
{
//position.coords.latitude
//position.coords.longitude
}
OPEN DATA API
CSS3 TRANSITIONS +
   ANIMATIONS
FRAMEWORKS
FRAMEWORKS
FRAMEWORKS
FRAMEWORKS
FRAMEWORKS
WHERE DO I GO
 FROM HERE?
EXPERIMENT
Chrome Experiments
• h*p://www.chromeexperiments.com/arcadefire/
http://ro.me
Q&A
HTML5

• new semantic tags
• JavaScript API’s
• already here
• more than just html
CSS3
• less Photoshop
• scalable
• lightweight (mobile!)
• design in the browser
• watch out for vendor prefixes
SOURCES

•   http://bit.ly/5BqHuj

•   http://www.pakzilla.com/2012/01/01/a-reference-to-html-5-tags/

•   http://designshack.co.uk/articles/css/10-amazing-examples-of-innovative-css3-animation

•   http://www.webdesignerwall.com/trends/47-amazing-css3-animation-demos/

•   http://www.1stwebdesigner.com/development/50-awesome-css3-animations/
SOURCES / CSS3

•   http://www.css3.info

•   http://line25.com/tutorials/create-a-letterpress-effect-with-css-text-shadow

•   http://www.smashingmagazine.com/2009/06/15/take-your-design-to-the-next-level-with-
    css3/

•   http://designshack.co.uk/articles/css/10-amazing-examples-of-innovative-css3-animation

•   http://www.webdesignerwall.com/trends/47-amazing-css3-animation-demos/

•   http://www.1stwebdesigner.com/development/50-awesome-css3-animations/
SOURCES /
         MOBILE APPS

•   http://taylor.fausak.me/2012/03/27/ios-web-app-icons-and-startup-images/

•   http://developer.apple.com/library/ios/#documentation/AppleApplications/Reference/
    SafariWebContent/Introduction/Introduction.html#//apple_ref/doc/uid/TP40002051-CH1-
    SW1

•   http://cheeaun.com/blog/2012/03/how-i-built-hacker-news-mobile-web-app

•   http://lanyrd.com/2011/bd11/sccwh/

•   http://net.tutsplus.com/tutorials/javascript-ajax/start-using-html5-websockets-today/

More Related Content

What's hot

Inkscape: Mockup that site (BADcamp edition)
Inkscape: Mockup that site (BADcamp edition)Inkscape: Mockup that site (BADcamp edition)
Inkscape: Mockup that site (BADcamp edition)
Donna Benjamin
 
Week5 BA
Week5 BAWeek5 BA
Week5 BA
CMoz
 
Responsive Web Design Process #HOWidc
Responsive Web Design Process #HOWidcResponsive Web Design Process #HOWidc
Responsive Web Design Process #HOWidc
Steve Fisher
 
Inkscape: Mockup that site
Inkscape: Mockup that siteInkscape: Mockup that site
Inkscape: Mockup that site
Donna Benjamin
 

What's hot (20)

Responsive Design
Responsive DesignResponsive Design
Responsive Design
 
Building desktop applications with web technologies - ELECTRON the easy way
Building desktop applications with web technologies - ELECTRON the easy wayBuilding desktop applications with web technologies - ELECTRON the easy way
Building desktop applications with web technologies - ELECTRON the easy way
 
Augmented Reality (AR) - The Future of Mobile Applications?
Augmented Reality (AR) - The Future of Mobile Applications? Augmented Reality (AR) - The Future of Mobile Applications?
Augmented Reality (AR) - The Future of Mobile Applications?
 
CSS Tricks for WordPress - WordCamp Phoenix
CSS Tricks for WordPress - WordCamp PhoenixCSS Tricks for WordPress - WordCamp Phoenix
CSS Tricks for WordPress - WordCamp Phoenix
 
Standards.Next: Canvas
Standards.Next: CanvasStandards.Next: Canvas
Standards.Next: Canvas
 
Virtually Anyone
Virtually AnyoneVirtually Anyone
Virtually Anyone
 
This Old Website: : Applying HTML5, CSS3, and Responsive Design to An Existin...
This Old Website: : Applying HTML5, CSS3, and Responsive Design to An Existin...This Old Website: : Applying HTML5, CSS3, and Responsive Design to An Existin...
This Old Website: : Applying HTML5, CSS3, and Responsive Design to An Existin...
 
Inkscape for web and UI mockups
Inkscape for web and UI mockupsInkscape for web and UI mockups
Inkscape for web and UI mockups
 
Inkscape: Mockup that site (BADcamp edition)
Inkscape: Mockup that site (BADcamp edition)Inkscape: Mockup that site (BADcamp edition)
Inkscape: Mockup that site (BADcamp edition)
 
Week5 BA
Week5 BAWeek5 BA
Week5 BA
 
Designer vs Developer: BE THE UNICORN
Designer vs Developer: BE THE UNICORNDesigner vs Developer: BE THE UNICORN
Designer vs Developer: BE THE UNICORN
 
Part 2: Intermediate Designing for Multiple Devices - GA London, 31 Jul 2013
Part 2: Intermediate Designing for Multiple Devices - GA London, 31 Jul 2013Part 2: Intermediate Designing for Multiple Devices - GA London, 31 Jul 2013
Part 2: Intermediate Designing for Multiple Devices - GA London, 31 Jul 2013
 
Accessibility in Canvas 3D
Accessibility in Canvas 3DAccessibility in Canvas 3D
Accessibility in Canvas 3D
 
WebGL, WebVR and the Metaverse
WebGL, WebVR and the MetaverseWebGL, WebVR and the Metaverse
WebGL, WebVR and the Metaverse
 
Responsive Web Design Process #HOWidc
Responsive Web Design Process #HOWidcResponsive Web Design Process #HOWidc
Responsive Web Design Process #HOWidc
 
Responsive Design Workflow
Responsive Design WorkflowResponsive Design Workflow
Responsive Design Workflow
 
Essential html tweaks for accessible themes
Essential html tweaks for accessible themesEssential html tweaks for accessible themes
Essential html tweaks for accessible themes
 
Inkscape: Mockup that site
Inkscape: Mockup that siteInkscape: Mockup that site
Inkscape: Mockup that site
 
React Storybook, Atomic Design, and ITCSS
React Storybook, Atomic Design, and ITCSSReact Storybook, Atomic Design, and ITCSS
React Storybook, Atomic Design, and ITCSS
 
Adm web 01 - html css - a-frame
Adm   web 01 - html  css - a-frameAdm   web 01 - html  css - a-frame
Adm web 01 - html css - a-frame
 

Viewers also liked

Computer-Supported Collaborative Learning with Mind-Maps
Computer-Supported Collaborative Learning with Mind-MapsComputer-Supported Collaborative Learning with Mind-Maps
Computer-Supported Collaborative Learning with Mind-Maps
Georgiy Gerkushenko
 

Viewers also liked (12)

Designing for web & beyond – don’t get caught with your browser down finalclean
Designing for web & beyond – don’t get caught with your browser down finalcleanDesigning for web & beyond – don’t get caught with your browser down finalclean
Designing for web & beyond – don’t get caught with your browser down finalclean
 
Creative collaboration in online computer-supported collaborative learning.
Creative collaboration in online computer-supported collaborative learning.Creative collaboration in online computer-supported collaborative learning.
Creative collaboration in online computer-supported collaborative learning.
 
Conceptualizing collaboration in the context of computer-supported collaborat...
Conceptualizing collaboration in the context of computer-supported collaborat...Conceptualizing collaboration in the context of computer-supported collaborat...
Conceptualizing collaboration in the context of computer-supported collaborat...
 
Average case Analysis of Quicksort
Average case Analysis of QuicksortAverage case Analysis of Quicksort
Average case Analysis of Quicksort
 
Computer-Supported Collaborative Learning with Mind-Maps
Computer-Supported Collaborative Learning with Mind-MapsComputer-Supported Collaborative Learning with Mind-Maps
Computer-Supported Collaborative Learning with Mind-Maps
 
Computer-Supported Collaborative Learning (CSCL), Virtual Math Teams (VMT) an...
Computer-Supported Collaborative Learning (CSCL), Virtual Math Teams (VMT) an...Computer-Supported Collaborative Learning (CSCL), Virtual Math Teams (VMT) an...
Computer-Supported Collaborative Learning (CSCL), Virtual Math Teams (VMT) an...
 
Blended learning in Software Engineering Education: the Application Lifecycle...
Blended learning in Software Engineering Education: the Application Lifecycle...Blended learning in Software Engineering Education: the Application Lifecycle...
Blended learning in Software Engineering Education: the Application Lifecycle...
 
Agile Software Development - Agile and Scrum Intro
Agile Software Development - Agile and Scrum IntroAgile Software Development - Agile and Scrum Intro
Agile Software Development - Agile and Scrum Intro
 
Quicksort
QuicksortQuicksort
Quicksort
 
Quick sort Algorithm Discussion And Analysis
Quick sort Algorithm Discussion And AnalysisQuick sort Algorithm Discussion And Analysis
Quick sort Algorithm Discussion And Analysis
 
Divide and conquer - Quick sort
Divide and conquer - Quick sortDivide and conquer - Quick sort
Divide and conquer - Quick sort
 
Quick Sort
Quick SortQuick Sort
Quick Sort
 

Similar to HTML5 for Web Designers

[refreshpitt] Adaptive Images in Responsive Web Design
[refreshpitt] Adaptive Images in Responsive Web Design[refreshpitt] Adaptive Images in Responsive Web Design
[refreshpitt] Adaptive Images in Responsive Web Design
Christopher Schmitt
 
[drupalcampatx] Adaptive Images in Responsive Web Design
[drupalcampatx] Adaptive Images in Responsive Web Design[drupalcampatx] Adaptive Images in Responsive Web Design
[drupalcampatx] Adaptive Images in Responsive Web Design
Christopher Schmitt
 

Similar to HTML5 for Web Designers (20)

CSS3: The Future is Now at DrupalCon San Francisco
CSS3: The Future is Now at DrupalCon San FranciscoCSS3: The Future is Now at DrupalCon San Francisco
CSS3: The Future is Now at DrupalCon San Francisco
 
Echo HTML5
Echo HTML5Echo HTML5
Echo HTML5
 
Mobile First Responsive Design
Mobile First Responsive DesignMobile First Responsive Design
Mobile First Responsive Design
 
It's a Mod World - A Practical Guide to Rocking Modernizr
It's a Mod World - A Practical Guide to Rocking ModernizrIt's a Mod World - A Practical Guide to Rocking Modernizr
It's a Mod World - A Practical Guide to Rocking Modernizr
 
Introduction to html5
Introduction to html5Introduction to html5
Introduction to html5
 
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
Familiar HTML5 - 事例とサンプルコードから学ぶ 身近で普通に使わているHTML5
 
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
Progressive Enhancement 2.0 (jQuery Conference SF Bay Area 2011)
 
3d web
3d web3d web
3d web
 
Progressive Enhancement 2.0 (Conference Agnostic)
Progressive Enhancement 2.0 (Conference Agnostic)Progressive Enhancement 2.0 (Conference Agnostic)
Progressive Enhancement 2.0 (Conference Agnostic)
 
[refreshpitt] Adaptive Images in Responsive Web Design
[refreshpitt] Adaptive Images in Responsive Web Design[refreshpitt] Adaptive Images in Responsive Web Design
[refreshpitt] Adaptive Images in Responsive Web Design
 
Developing web applications in 2010
Developing web applications in 2010Developing web applications in 2010
Developing web applications in 2010
 
Mobile Web Talk
Mobile Web TalkMobile Web Talk
Mobile Web Talk
 
Fisl 11 - Dicas de Desenvolvimento Web com Ruby
Fisl 11 - Dicas de Desenvolvimento Web com RubyFisl 11 - Dicas de Desenvolvimento Web com Ruby
Fisl 11 - Dicas de Desenvolvimento Web com Ruby
 
Death of a Themer
Death of a ThemerDeath of a Themer
Death of a Themer
 
How to Develop Cross-Platform Apps
How to Develop Cross-Platform AppsHow to Develop Cross-Platform Apps
How to Develop Cross-Platform Apps
 
Angular js mobile jsday 2014 - Verona 14 may
Angular js mobile   jsday 2014 - Verona 14 mayAngular js mobile   jsday 2014 - Verona 14 may
Angular js mobile jsday 2014 - Verona 14 may
 
Html5 & less css
Html5 & less cssHtml5 & less css
Html5 & less css
 
Consegi 2010 - Dicas de Desenvolvimento Web com Ruby
Consegi 2010 - Dicas de Desenvolvimento Web com RubyConsegi 2010 - Dicas de Desenvolvimento Web com Ruby
Consegi 2010 - Dicas de Desenvolvimento Web com Ruby
 
[drupalcampatx] Adaptive Images in Responsive Web Design
[drupalcampatx] Adaptive Images in Responsive Web Design[drupalcampatx] Adaptive Images in Responsive Web Design
[drupalcampatx] Adaptive Images in Responsive Web Design
 
Now you see me... Adaptive Web Design and Development
Now you see me... Adaptive Web Design and DevelopmentNow you see me... Adaptive Web Design and Development
Now you see me... Adaptive Web Design and Development
 

Recently uploaded

Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 
+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...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 

Recently uploaded (20)

Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024Top 10 Most Downloaded Games on Play Store in 2024
Top 10 Most Downloaded Games on Play Store in 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
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...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 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
 
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, ...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
+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...
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 

HTML5 for Web Designers