SlideShare a Scribd company logo
1 of 94
Download to read offline
Thursday, September 1, 11
"You'll all be in line for
              promotions when this is
              over!"                       Source: Major T. J. "King" Kong, in the
                                           movie "Dr. Strangelove"




Thursday, September 1, 11
Dale Cruse
              author, "HTML5 Multimedia
              Development Cookbook"


Thursday, September 1, 11
HOW
Thursday, September 1, 11
I
Thursday, September 1, 11
learned
Thursday, September 1, 11
to
Thursday, September 1, 11
stop
Thursday, September 1, 11
worrying
Thursday, September 1, 11
&
Thursday, September 1, 11
love
Thursday, September 1, 11
Thursday, September 1, 11
what is html5?



Thursday, September 1, 11
html5 is:

                  •         html

Thursday, September 1, 11
html5 is:

                  •         old & new at the same time

Thursday, September 1, 11
still good: <a> <abbr> <address>
     <area> <b> <base> <bdo>
<blockquote> <body> <br> <button>
  <caption> <cite> <code> <col>
<colgroup> <dd> <del> <dfn> <div>
<dl> <dt> <em> <fieldset> <form>
  <h1> <h2> <h3> <h4> <h5> <h6>
 <head> <hr> <i> <iframe> <img>
   <input> <ins> <kbd> <label>
Thursday, September 1, 11
still good: <legend> <li> <link>
<map> <menu> <noscript> <object>
  <ol> <optgroup> <option> <p>
  <param> <pre> <q> <s> <samp>
<script> <select> <small> <span>
  <strong> <style> <sub> <sup>
 <table> <tbody> <td> <textarea>
<tfoot> <th> <thead> <title> <tr>
           <ul> <var>
Thursday, September 1, 11
no good: <acronym> <applet>
      <basefont> <big> <center> <dir>
         <font> <frame> <frameset>
       <noframes> <strike> <tt> <u>
                   <xmp>

Thursday, September 1, 11
more gooder: <article> <aside>
   <audio> <canvas> <command>
  <datalist> <details> <embed>
 <figcaption> <figure> <footer>
<header> <hgroup> <keygen> <mark>
<meter> <nav> <output> <progress>
   <rp> <rt> <ruby> <section>
<source> <summary> <time> <video>
              <wbr>
Thursday, September 1, 11
what it’s not



Thursday, September 1, 11
html5 isn’t:

                  •         css3

Thursday, September 1, 11
html5 isn’t:

                  •         design

Thursday, September 1, 11
html5 isn’t:

                  •         a flash killer

Thursday, September 1, 11
myth #1:
                     <flash_killer>

Thursday, September 1, 11
myth #2:
                     <hype>

Thursday, September 1, 11
myth #3:
                     <not_ready>

Thursday, September 1, 11
myth #4:
                     <easy_multimedia>

Thursday, September 1, 11
myth #5:
                     <xml_killer>

Thursday, September 1, 11
So what?



Thursday, September 1, 11
so what?

                  •         more browser goodness

Thursday, September 1, 11
so what?

                  •         advantages for different people

Thursday, September 1, 11
Publishers



Thursday, September 1, 11
Publishers

                  •         mobile

Thursday, September 1, 11
Publishers

                  •         use what you know

Thursday, September 1, 11
Publishers

                  •         on even when it's off

Thursday, September 1, 11
designers



Thursday, September 1, 11
designers

                  •         freedom

Thursday, September 1, 11
Thursday, September 1, 11
front-end developers



Thursday, September 1, 11
front-end developers

                  •         doctype

Thursday, September 1, 11
<!doctype html>




Thursday, September 1, 11
front-end developers

                  •         semantic naming

Thursday, September 1, 11
more gooder: <article> <aside>
   <audio> <canvas> <datalist>
 <details> <figcaption> <figure>
   <footer> <header> <hgroup>
  <keygen> <mark> <meter> <nav>
  <output> <progress> <section>
<source> <summary> <time> <video>
Thursday, September 1, 11
"Do not piss your future
              self off!"
                                         Source: Jeremy Keith, in his An Event Apart
                                         presentation.




Thursday, September 1, 11
front-end developers

                  •         multimedia

Thursday, September 1, 11
<video src="">




Thursday, September 1, 11
<video src="">
                            <audio src="">




Thursday, September 1, 11
<video src="">
                            <audio src="">

                             ubiquitous as:
                             <img src="">


Thursday, September 1, 11
middle-tier developers



Thursday, September 1, 11
middle-tier developers

                  •         javascript

Thursday, September 1, 11
middle-tier developers

                  •         web sockets

Thursday, September 1, 11
content creators



Thursday, September 1, 11
content creators

                  •         seo

Thursday, September 1, 11
content creators

                  •         content first, finally

Thursday, September 1, 11
"If you don't know what
               you're designing, you can't
               design it."
                                             Source: Jeffrey Zeldman, during his DIBI
                                             Conference keynote




Thursday, September 1, 11
consumers



Thursday, September 1, 11
consumers

                  •         no upgrade path

Thursday, September 1, 11
consumers

                  •         mobile advantages

Thursday, September 1, 11
who’s using it?



Thursday, September 1, 11
who’s using it?

                  •         google

Thursday, September 1, 11
Thursday, September 1, 11
who’s using it?

                  •         facebook

Thursday, September 1, 11
Thursday, September 1, 11
who’s using it?

                  •         apple

Thursday, September 1, 11
Thursday, September 1, 11
how can i use it?



Thursday, September 1, 11
how can i use it?

                  •         update your doctype

Thursday, September 1, 11
<!doctype html>




Thursday, September 1, 11
how can i use it?

                  •         use semantic naming

Thursday, September 1, 11
<header>




Thursday, September 1, 11
<footer>




Thursday, September 1, 11
<nav>




Thursday, September 1, 11
<div>




Thursday, September 1, 11
how can i use it?

                  •         relook your forms

Thursday, September 1, 11
old school: <input name="keys"
                            value="Search">



Thursday, September 1, 11
new school: <input name="keys"
                            placeholder="Search">



Thursday, September 1, 11
old school: JavaScript-based date
                            picker.



Thursday, September 1, 11
new school: <input type="date">

Thursday, September 1, 11
how can i use it?

                 •      ready for more?

Thursday, September 1, 11
now what?



Thursday, September 1, 11
books:



Thursday, September 1, 11
books:



Thursday, September 1, 11
books:



Thursday, September 1, 11
websites:

                  •         diveintohtml5.org


Thursday, September 1, 11
websites:

                  •         html5doctor.com


Thursday, September 1, 11
websites:

                  •         html5rocks.com


Thursday, September 1, 11
events:

                  •         An event apart

Thursday, September 1, 11
events:

                  •         build guild

Thursday, September 1, 11
events:

                  •         other meetups

Thursday, September 1, 11
events:
                  •         other meetups:
                      •meetup.com/Boston-HTML5-Game-
                             Development



Thursday, September 1, 11
questions?



Thursday, September 1, 11
thank you



Thursday, September 1, 11
Credits:
                  •         All movie stills from "Dr. Strangelove"
                  •         Strangelove fonts by MyFonts.com
                  •         zeldman photo from zeldman.com
                  •         jeremy keith photo from adactio.co.uk
Thursday, September 1, 11
Dale Cruse
              author, "HTML5 Multimedia
              Development Cookbook"
              dalejcruse.com


Thursday, September 1, 11

More Related Content

Viewers also liked

Viewers also liked (8)

Net Beans J2 Me Tutorial
Net Beans J2 Me TutorialNet Beans J2 Me Tutorial
Net Beans J2 Me Tutorial
 
50 is a lot
50 is a lot50 is a lot
50 is a lot
 
Pain masterclass
Pain masterclassPain masterclass
Pain masterclass
 
Know This, Work Here
Know This, Work HereKnow This, Work Here
Know This, Work Here
 
My power point slides
My power point slidesMy power point slides
My power point slides
 
My power point slides
My power point slidesMy power point slides
My power point slides
 
Fam2final presentation
Fam2final presentationFam2final presentation
Fam2final presentation
 
Proyect 3
Proyect 3Proyect 3
Proyect 3
 

Similar to How I Learned To Stop Worrying & Love HTML5

Slaying Bugs with Gradle and Jenkins
Slaying Bugs with Gradle and JenkinsSlaying Bugs with Gradle and Jenkins
Slaying Bugs with Gradle and JenkinsDavid Kay
 
Content focused web design
Content focused web designContent focused web design
Content focused web designEddie Monge
 
Herramientas de desarrollo e implementacion
Herramientas de desarrollo e implementacionHerramientas de desarrollo e implementacion
Herramientas de desarrollo e implementacionCarlos Solis
 
Some simple tips for front-end performance in WordPress
Some simple tips for front-end performance in WordPressSome simple tips for front-end performance in WordPress
Some simple tips for front-end performance in WordPressiparr
 
Advanced Skinning & Styling for Android
Advanced Skinning & Styling for AndroidAdvanced Skinning & Styling for Android
Advanced Skinning & Styling for Androidcephus07
 
Bringing History Alive: Telling stories with Linked Data and open source tools
Bringing History Alive: Telling stories with Linked Data and open source toolsBringing History Alive: Telling stories with Linked Data and open source tools
Bringing History Alive: Telling stories with Linked Data and open source toolsDavid Peterson
 
03 spring framework
03 spring framework03 spring framework
03 spring frameworkAtsushi Sano
 
Tackling Big Data with Hadoop
Tackling Big Data with HadoopTackling Big Data with Hadoop
Tackling Big Data with Hadooppoorlytrainedape
 
Release Early & Release Often: Reducing Deployment Friction
Release Early & Release Often: Reducing Deployment FrictionRelease Early & Release Often: Reducing Deployment Friction
Release Early & Release Often: Reducing Deployment FrictionEngine Yard
 
Goto aarhus: Mobile Browser as a platform
Goto aarhus: Mobile Browser as a platformGoto aarhus: Mobile Browser as a platform
Goto aarhus: Mobile Browser as a platformMaximiliano Firtman
 
KANBAN – NOT „YET ANOTHER DEVELOPMENT PROCESS“ (FLORIAN EISENBERG) - LKCE13
KANBAN – NOT „YET ANOTHER DEVELOPMENT PROCESS“ (FLORIAN EISENBERG) - LKCE13KANBAN – NOT „YET ANOTHER DEVELOPMENT PROCESS“ (FLORIAN EISENBERG) - LKCE13
KANBAN – NOT „YET ANOTHER DEVELOPMENT PROCESS“ (FLORIAN EISENBERG) - LKCE13Lean Kanban Central Europe
 
Developers! Y U No Open Source Ur Code?
Developers! Y U No Open Source Ur Code?Developers! Y U No Open Source Ur Code?
Developers! Y U No Open Source Ur Code?Craig Marvelley
 
Website/Social Media Program Blue Thumb Pond Expo
Website/Social Media Program Blue Thumb Pond ExpoWebsite/Social Media Program Blue Thumb Pond Expo
Website/Social Media Program Blue Thumb Pond ExpoBlue Thumb
 
Image and Music: Processing plus Pure Data with libpd library
Image and Music: Processing plus Pure Data with libpd libraryImage and Music: Processing plus Pure Data with libpd library
Image and Music: Processing plus Pure Data with libpd libraryPETER KIRN
 

Similar to How I Learned To Stop Worrying & Love HTML5 (20)

Going Social
Going SocialGoing Social
Going Social
 
Slaying Bugs with Gradle and Jenkins
Slaying Bugs with Gradle and JenkinsSlaying Bugs with Gradle and Jenkins
Slaying Bugs with Gradle and Jenkins
 
Content focused web design
Content focused web designContent focused web design
Content focused web design
 
CSS Power Tools
CSS Power ToolsCSS Power Tools
CSS Power Tools
 
jQuery Mobile
jQuery MobilejQuery Mobile
jQuery Mobile
 
Herramientas de desarrollo e implementacion
Herramientas de desarrollo e implementacionHerramientas de desarrollo e implementacion
Herramientas de desarrollo e implementacion
 
Some simple tips for front-end performance in WordPress
Some simple tips for front-end performance in WordPressSome simple tips for front-end performance in WordPress
Some simple tips for front-end performance in WordPress
 
Advanced Skinning & Styling for Android
Advanced Skinning & Styling for AndroidAdvanced Skinning & Styling for Android
Advanced Skinning & Styling for Android
 
Bringing History Alive: Telling stories with Linked Data and open source tools
Bringing History Alive: Telling stories with Linked Data and open source toolsBringing History Alive: Telling stories with Linked Data and open source tools
Bringing History Alive: Telling stories with Linked Data and open source tools
 
03 spring framework
03 spring framework03 spring framework
03 spring framework
 
Pocket Knife JS
Pocket Knife JSPocket Knife JS
Pocket Knife JS
 
Tackling Big Data with Hadoop
Tackling Big Data with HadoopTackling Big Data with Hadoop
Tackling Big Data with Hadoop
 
Release Early & Release Often: Reducing Deployment Friction
Release Early & Release Often: Reducing Deployment FrictionRelease Early & Release Often: Reducing Deployment Friction
Release Early & Release Often: Reducing Deployment Friction
 
Goto aarhus: Mobile Browser as a platform
Goto aarhus: Mobile Browser as a platformGoto aarhus: Mobile Browser as a platform
Goto aarhus: Mobile Browser as a platform
 
KANBAN – NOT „YET ANOTHER DEVELOPMENT PROCESS“ (FLORIAN EISENBERG) - LKCE13
KANBAN – NOT „YET ANOTHER DEVELOPMENT PROCESS“ (FLORIAN EISENBERG) - LKCE13KANBAN – NOT „YET ANOTHER DEVELOPMENT PROCESS“ (FLORIAN EISENBERG) - LKCE13
KANBAN – NOT „YET ANOTHER DEVELOPMENT PROCESS“ (FLORIAN EISENBERG) - LKCE13
 
Developers! Y U No Open Source Ur Code?
Developers! Y U No Open Source Ur Code?Developers! Y U No Open Source Ur Code?
Developers! Y U No Open Source Ur Code?
 
Reviving RIM
Reviving RIMReviving RIM
Reviving RIM
 
Website/Social Media Program Blue Thumb Pond Expo
Website/Social Media Program Blue Thumb Pond ExpoWebsite/Social Media Program Blue Thumb Pond Expo
Website/Social Media Program Blue Thumb Pond Expo
 
Image and Music: Processing plus Pure Data with libpd library
Image and Music: Processing plus Pure Data with libpd libraryImage and Music: Processing plus Pure Data with libpd library
Image and Music: Processing plus Pure Data with libpd library
 
Caridy patino - node-js
Caridy patino - node-jsCaridy patino - node-js
Caridy patino - node-js
 

Recently uploaded

08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
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...Martijn de Jong
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
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...Miguel Araújo
 
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
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
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 productivityPrincipled Technologies
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
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
 

Recently uploaded (20)

08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
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...
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
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...
 
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
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
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
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
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
 

How I Learned To Stop Worrying & Love HTML5