SlideShare una empresa de Scribd logo
1 de 121
Descargar para leer sin conexión
Thursday, July 7, 2011
Who am I ?

                     •
                     • Frank Wang / lifesinger
                     •           /

                     • http://lifesinger.wordpress.com/

Thursday, July 7, 2011
Topics

                     •
                     • Web      HTML

                     •        CSS

                     •         JavaScript

                     •
                     •
Thursday, July 7, 2011
Thursday, July 7, 2011
http://www.flickr.com/photos/kejun/3114605967/
Thursday, July 7, 2011
Thursday, July 7, 2011
Web   HTML




Thursday, July 7, 2011
Thursday, July 7, 2011
http://www.w3.org/People/Berners-Lee/
Thursday, July 7, 2011
• 1989   Tim Berners-Lee   HTML

                     • 1993   Mosaic

                     • 1994   W3C

                     • 1997   HTML 3.2

                     • 1999   HTML 4.01

                     • 2000   XHTML 1.0

                     • 2008   HTML 5


       http://www.w3.org/People/Raggett/book4/ch02.html
Thursday, July 7, 2011
HTML


                     •
                           HyperText Markup
                         Language

                     •     “    ”




Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
http://dancewithnet.com/2009/06/14/activating-browser-
                       modes-with-doctype/



Thursday, July 7, 2011
•          p, div, span, h1-h6, body...

                     •          ul, ol, dl, li, dd, dt
                     •                    a, em, strong, pre...
                     •          form, input, button, label...

                     •          img, object...
                     •          table, tr, td, caption, tbody...

                     •   ...

                  http://reference.sitepoint.com/html/elements
Thursday, July 7, 2011
HTML

                     •
                     •
                     •


Thursday, July 7, 2011
•   table

                     •     div   span

                     •     li




Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
HTML5




Thursday, July 7, 2011
Thursday, July 7, 2011
<progress>            <datalist>
                         <nav>                  <time>
                                     <canvas>
                                                           <figure>

                         <section>                <video>
                                     <audio>                    <ruby>
                                                     ...


                             http://www.w3.org/TR/html5/
Thursday, July 7, 2011
http://www.w3.org/TR/html5/
Thursday, July 7, 2011
CSS




Thursday, July 7, 2011
• 1994 Håkon Wium Lie      CSS

                    • 1996 CSS Level 1
                    • 1997 CSS Working Group
                    • 1998 CSS Level 2
                    • CSS Level 3


Thursday, July 7, 2011
CSS

                     •                 Cascading
                         Style Sheet

                     •
                     •



Thursday, July 7, 2011
Thursday, July 7, 2011
CSS
                     •
                     •
                     •




Thursday, July 7, 2011
http://www.w3.org/TR/css3-selectors/
Thursday, July 7, 2011
http://www.w3.org/wiki/CSS/Properties
Thursday, July 7, 2011
Thursday, July 7, 2011
display

                         •   div   p      block

                         •   span a img           inline

                         •   display: block/inline/inline-block/none;




Thursday, July 7, 2011
Thursday, July 7, 2011
http://www.quirksmode.org/css/display.html
Thursday, July 7, 2011
float


                         •
                         •




Thursday, July 7, 2011
Thursday, July 7, 2011
position


                     •   position: relative/absolute/static/fixed

                     •




Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
Cascading

                     •

                     •




Thursday, July 7, 2011
http://www.stuffandnonsense.co.uk/archives/
                                  css_specificity_wars.html
Thursday, July 7, 2011
CSS




                         http://csszengarden.com/
Thursday, July 7, 2011
CSS




                    http://www.quirksmode.org/css/contents.html

Thursday, July 7, 2011
CSS




                         http://www.gtalbot.org/BrowserBugsSection/
Thursday, July 7, 2011
CSS 3




                         http://media.24ways.org/2009/15/space.html
Thursday, July 7, 2011
Thursday, July 7, 2011
JavaScript




Thursday, July 7, 2011
• 1995 JavaScript
                     • 1996 ECMAScript
                     • 1999 ECMAScript 3
                     • 2009 ECMAScript 5
                     • ECMAScript Harmony


Thursday, July 7, 2011
JavaScript



Thursday, July 7, 2011
Java   JavaScript




Thursday, July 7, 2011
JavaScript                       C
                            Self
                                                “
                                                     ”
                                                         -- Brendan Eich




                         http://www.ruanyifeng.com/blog/2011/06/
                                 birth_of_javascript.html

Thursday, July 7, 2011
Java   Scheme
                         C
                                             Self


                              JavaScript




Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
Closure
          for(var i = 0; i < elements.length; i++) {
            (function(n) {
              elements[n].addEventListener(‘click’, function() {
                alert(n);
              });
            })(i);
          }


                    http://jibbering.com/faq/notes/closures/

Thursday, July 7, 2011
Prototype
            function Animal(name) {
              this.name = name;
            }
            function Dog(name) {
              Animal.call(this, name);
            }

            Dog.prototype = Object.create(Animal.prototype);
            Dog.prototype.constructor = Dog;

            var dog = new Dog(‘          ’);


       http://javascript.crockford.com/inheritance.html
Thursday, July 7, 2011
Thursday, July 7, 2011
DOM

     •                        Document
             Object Model

     •       DOM


     •       DOM            JavaScript




Thursday, July 7, 2011
DOM Scripting: Web Design with JavaScript and
                     the Document Object Model

Thursday, July 7, 2011
http://es5.github.com/
                         http://lifesinger.wordpress.com/2011/02/27/references-for-javascript-study/
Thursday, July 7, 2011
JavaScript




Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
vs.




Thursday, July 7, 2011
http://www.google.com/trends?q=yui%2Cjquery%2Cmootools%2Cdojo%2Csencha%2Cdojo




Thursday, July 7, 2011
http://www.google.com/trends?q=backbone%2Czepto%2Clabjs%2Cunderscore%2Cmustache
                                             %2Cmodernize&ctab=0&geo=all&date=all&sort=0




Thursday, July 7, 2011
Thursday, July 7, 2011
DOM Event Ajax...

                               Validator Storage Template...

                           Calendar Tabs Dialog...

                         MVC Unit Testing Module Loader...




Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
http://addyosmani.com/resources/toolschart/chart.pdf




Thursday, July 7, 2011
KISSY



Thursday, July 7, 2011
2008




Thursday, July 7, 2011
2009




Thursday, July 7, 2011
2008 - 2009
                •        yahoo-dom-event.js
                •                         UI

                           TBra

                •        2009                   suggest, kissy
                         editor
                •                 web pages
                •        KISSY

                •                       ExtJS



Thursday, July 7, 2011
2010




Thursday, July 7, 2011
2010
                •        Yahoo         YUI3

                •        YUI3
                                                 IE6-7

                •        jQuery

                •        KISSY                       Switchable   Calendar
                         DataLazyload AJBridge

                •                     webww       web apps

                •

Thursday, July 7, 2011
KISSY

                     •           KISSY Editor

                     •         YUI2   jQuery


                     •
                     • KISSY

Thursday, July 7, 2011
KISSY
                         core




Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
...



                         kissy


                                 --




Thursday, July 7, 2011
...
                         “
                                  ”




                             --




Thursday, July 7, 2011
--




Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
SeaJS




                          http://seajs.com/



Thursday, July 7, 2011
SeaJS


                     •
                     •
                     •

Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
1991
                     WorldWideWeb




                         http://en.wikipedia.org/wiki/Web_browser
Thursday, July 7, 2011
1993        Mosaic




         http://en.wikipedia.org/wiki/Mosaic_(web_browser)
Thursday, July 7, 2011
IE




Thursday, July 7, 2011
Firefox




Thursday, July 7, 2011
Chrome




Thursday, July 7, 2011
Safari




Thursday, July 7, 2011
Opera




Thursday, July 7, 2011
Thursday, July 7, 2011
WebKit
                                              Gecko




                           Trident


                                     Presto




Thursday, July 7, 2011
How browsers work




       http://taligarsiel.com/Projects/howbrowserswork1.htm

Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
WebKit Developer Tools




Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
Thursday, July 7, 2011
•
         •               1800

         •




Thursday, July 7, 2011
Thursday, July 7, 2011
1993




Thursday, July 7, 2011
2005




Thursday, July 7, 2011
2010




Thursday, July 7, 2011
2022 ?



Thursday, July 7, 2011
Q &A

                     • Twitter: @lifesinger
                     •             @

                     •
                     •                        lifesinger@gmail.com




Thursday, July 7, 2011
Thanks!




Thursday, July 7, 2011

Más contenido relacionado

La actualidad más candente

Paper prototyping
Paper prototypingPaper prototyping
Paper prototypingErik Duval
 
Introduction to Yahoo! Pipes
Introduction to Yahoo! PipesIntroduction to Yahoo! Pipes
Introduction to Yahoo! PipesPaul Bradshaw
 
Drinkers guide to PostgreSQL
Drinkers guide to PostgreSQLDrinkers guide to PostgreSQL
Drinkers guide to PostgreSQLAaron Thul
 
deSymfony 2012 - El entorno de Symfony2
deSymfony 2012 - El entorno de Symfony2deSymfony 2012 - El entorno de Symfony2
deSymfony 2012 - El entorno de Symfony2Albert Jessurum
 
Mastering CSS3 Selectors
Mastering CSS3 SelectorsMastering CSS3 Selectors
Mastering CSS3 SelectorsRachel Andrew
 
Html5/CSS3 in shanghai 2010
Html5/CSS3 in shanghai 2010Html5/CSS3 in shanghai 2010
Html5/CSS3 in shanghai 2010Zi Bin Cheah
 
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
 
Empa Edtec Talk April 2010
Empa Edtec Talk April 2010Empa Edtec Talk April 2010
Empa Edtec Talk April 2010andersand
 

La actualidad más candente (10)

Paper prototyping
Paper prototypingPaper prototyping
Paper prototyping
 
HTML5 - Yeah!
HTML5 - Yeah!HTML5 - Yeah!
HTML5 - Yeah!
 
Introduction to Yahoo! Pipes
Introduction to Yahoo! PipesIntroduction to Yahoo! Pipes
Introduction to Yahoo! Pipes
 
Drinkers guide to PostgreSQL
Drinkers guide to PostgreSQLDrinkers guide to PostgreSQL
Drinkers guide to PostgreSQL
 
deSymfony 2012 - El entorno de Symfony2
deSymfony 2012 - El entorno de Symfony2deSymfony 2012 - El entorno de Symfony2
deSymfony 2012 - El entorno de Symfony2
 
Mastering CSS3 Selectors
Mastering CSS3 SelectorsMastering CSS3 Selectors
Mastering CSS3 Selectors
 
Html5/CSS3 in shanghai 2010
Html5/CSS3 in shanghai 2010Html5/CSS3 in shanghai 2010
Html5/CSS3 in shanghai 2010
 
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
 
Empa Edtec Talk April 2010
Empa Edtec Talk April 2010Empa Edtec Talk April 2010
Empa Edtec Talk April 2010
 
Einstein finalist.nl
Einstein finalist.nlEinstein finalist.nl
Einstein finalist.nl
 

Similar a 让开发也懂前端

Rendering Views in JavaScript - "The New Web Architecture"
Rendering Views in JavaScript - "The New Web Architecture"Rendering Views in JavaScript - "The New Web Architecture"
Rendering Views in JavaScript - "The New Web Architecture"Jonathan Julian
 
Sean coates fifty things and tricks, confoo 2011
Sean coates fifty things and tricks, confoo 2011Sean coates fifty things and tricks, confoo 2011
Sean coates fifty things and tricks, confoo 2011Bachkoutou Toutou
 
Javascript Views, Client-side or Server-side with NodeJS
Javascript Views, Client-side or Server-side with NodeJSJavascript Views, Client-side or Server-side with NodeJS
Javascript Views, Client-side or Server-side with NodeJSSylvain Zimmer
 
Railsify your web development
Railsify your web developmentRailsify your web development
Railsify your web developmentThomas Lundström
 
Discussing Java's Future
Discussing Java's FutureDiscussing Java's Future
Discussing Java's FutureRay Gauss
 
Mobility in the financial industry
Mobility in the financial industryMobility in the financial industry
Mobility in the financial industryVincent Everts
 
Can Media Queries Save Us All?
Can Media Queries Save Us All?Can Media Queries Save Us All?
Can Media Queries Save Us All?Tim Kadlec
 
Inspiratiemiddag_Vincent_Everts_Finalist generatie_einstein_komt_eraan_07042011
Inspiratiemiddag_Vincent_Everts_Finalist generatie_einstein_komt_eraan_07042011Inspiratiemiddag_Vincent_Everts_Finalist generatie_einstein_komt_eraan_07042011
Inspiratiemiddag_Vincent_Everts_Finalist generatie_einstein_komt_eraan_07042011Finalist - open IT oplossingen
 
Opera Mobile HTML5 CSS3 Standards
Opera Mobile HTML5 CSS3 StandardsOpera Mobile HTML5 CSS3 Standards
Opera Mobile HTML5 CSS3 StandardsZi Bin Cheah
 
Node js techtalksto
Node js techtalkstoNode js techtalksto
Node js techtalkstoJason Diller
 
Desenvolvimento Indolor com JQuery Mobile
Desenvolvimento Indolor com JQuery MobileDesenvolvimento Indolor com JQuery Mobile
Desenvolvimento Indolor com JQuery MobileBruno Oliveira
 
HTML XHTML HTML5
HTML XHTML HTML5HTML XHTML HTML5
HTML XHTML HTML5timstone
 
You're doing it wrong
You're doing it wrongYou're doing it wrong
You're doing it wrongAdam Goucher
 
Scaling atlassian os v4
Scaling atlassian os v4Scaling atlassian os v4
Scaling atlassian os v4Soren Harner
 
Atlassian RoadTrip 2011 Slide Deck
Atlassian RoadTrip 2011 Slide DeckAtlassian RoadTrip 2011 Slide Deck
Atlassian RoadTrip 2011 Slide DeckAtlassian
 
Desacoplando aplicaciones
Desacoplando aplicacionesDesacoplando aplicaciones
Desacoplando aplicacionesAlvaro Videla
 

Similar a 让开发也懂前端 (20)

Rendering Views in JavaScript - "The New Web Architecture"
Rendering Views in JavaScript - "The New Web Architecture"Rendering Views in JavaScript - "The New Web Architecture"
Rendering Views in JavaScript - "The New Web Architecture"
 
Sean coates fifty things and tricks, confoo 2011
Sean coates fifty things and tricks, confoo 2011Sean coates fifty things and tricks, confoo 2011
Sean coates fifty things and tricks, confoo 2011
 
Geolinkeddata 07042011 1
Geolinkeddata 07042011 1Geolinkeddata 07042011 1
Geolinkeddata 07042011 1
 
GeoLinkedData
GeoLinkedDataGeoLinkedData
GeoLinkedData
 
Javascript Views, Client-side or Server-side with NodeJS
Javascript Views, Client-side or Server-side with NodeJSJavascript Views, Client-side or Server-side with NodeJS
Javascript Views, Client-side or Server-side with NodeJS
 
Railsify your web development
Railsify your web developmentRailsify your web development
Railsify your web development
 
Discussing Java's Future
Discussing Java's FutureDiscussing Java's Future
Discussing Java's Future
 
Namesmatter
NamesmatterNamesmatter
Namesmatter
 
Mobility in the financial industry
Mobility in the financial industryMobility in the financial industry
Mobility in the financial industry
 
Can Media Queries Save Us All?
Can Media Queries Save Us All?Can Media Queries Save Us All?
Can Media Queries Save Us All?
 
Inspiratiemiddag_Vincent_Everts_Finalist generatie_einstein_komt_eraan_07042011
Inspiratiemiddag_Vincent_Everts_Finalist generatie_einstein_komt_eraan_07042011Inspiratiemiddag_Vincent_Everts_Finalist generatie_einstein_komt_eraan_07042011
Inspiratiemiddag_Vincent_Everts_Finalist generatie_einstein_komt_eraan_07042011
 
Opera Mobile HTML5 CSS3 Standards
Opera Mobile HTML5 CSS3 StandardsOpera Mobile HTML5 CSS3 Standards
Opera Mobile HTML5 CSS3 Standards
 
Node js techtalksto
Node js techtalkstoNode js techtalksto
Node js techtalksto
 
Desenvolvimento Indolor com JQuery Mobile
Desenvolvimento Indolor com JQuery MobileDesenvolvimento Indolor com JQuery Mobile
Desenvolvimento Indolor com JQuery Mobile
 
HTML XHTML HTML5
HTML XHTML HTML5HTML XHTML HTML5
HTML XHTML HTML5
 
You're doing it wrong
You're doing it wrongYou're doing it wrong
You're doing it wrong
 
Scaling atlassian os v4
Scaling atlassian os v4Scaling atlassian os v4
Scaling atlassian os v4
 
Atlassian RoadTrip 2011 Slide Deck
Atlassian RoadTrip 2011 Slide DeckAtlassian RoadTrip 2011 Slide Deck
Atlassian RoadTrip 2011 Slide Deck
 
20110805 ui14課題2
20110805 ui14課題220110805 ui14課題2
20110805 ui14課題2
 
Desacoplando aplicaciones
Desacoplando aplicacionesDesacoplando aplicaciones
Desacoplando aplicaciones
 

Más de lifesinger

SeaJS 那些事儿
SeaJS 那些事儿SeaJS 那些事儿
SeaJS 那些事儿lifesinger
 
SeaJS - 前端模块化开发探索与网站性能优化实践
SeaJS - 前端模块化开发探索与网站性能优化实践SeaJS - 前端模块化开发探索与网站性能优化实践
SeaJS - 前端模块化开发探索与网站性能优化实践lifesinger
 
Intro-to-SeaJS
Intro-to-SeaJSIntro-to-SeaJS
Intro-to-SeaJSlifesinger
 
Progressive Enhancement
Progressive EnhancementProgressive Enhancement
Progressive Enhancementlifesinger
 
KISSY Mechanism
KISSY MechanismKISSY Mechanism
KISSY Mechanismlifesinger
 
The Beauty Of Refactoring
The Beauty Of RefactoringThe Beauty Of Refactoring
The Beauty Of Refactoringlifesinger
 
Closure Compiler vs YUICompressor
Closure Compiler vs YUICompressorClosure Compiler vs YUICompressor
Closure Compiler vs YUICompressorlifesinger
 

Más de lifesinger (7)

SeaJS 那些事儿
SeaJS 那些事儿SeaJS 那些事儿
SeaJS 那些事儿
 
SeaJS - 前端模块化开发探索与网站性能优化实践
SeaJS - 前端模块化开发探索与网站性能优化实践SeaJS - 前端模块化开发探索与网站性能优化实践
SeaJS - 前端模块化开发探索与网站性能优化实践
 
Intro-to-SeaJS
Intro-to-SeaJSIntro-to-SeaJS
Intro-to-SeaJS
 
Progressive Enhancement
Progressive EnhancementProgressive Enhancement
Progressive Enhancement
 
KISSY Mechanism
KISSY MechanismKISSY Mechanism
KISSY Mechanism
 
The Beauty Of Refactoring
The Beauty Of RefactoringThe Beauty Of Refactoring
The Beauty Of Refactoring
 
Closure Compiler vs YUICompressor
Closure Compiler vs YUICompressorClosure Compiler vs YUICompressor
Closure Compiler vs YUICompressor
 

Último

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
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
 
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
 
🐬 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
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...HostedbyConfluent
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
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
 

Último (20)

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of 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
 
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
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
Transforming Data Streams with Kafka Connect: An Introduction to Single Messa...
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
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
 

让开发也懂前端