SlideShare ist ein Scribd-Unternehmen logo
1 von 126
Dive Into Javascript Event




      chengjing@taobao.com
Dive Into Javascript Event




      chengjing@taobao.com
Outline

Survey
Scenario
Preparation
Event Type
Event Mechanism
Implement an Event Library
Survey
Survey
YAHOO.util.Event.addListener(1,2,3,4,5)
Survey
YAHOO.util.Event.addListener(1,2,3,4,5)

YAHOO.util.Event.on
Scenario
Scenario



?
Preparation
Preparation


  YUI
Preparation
Event Type
Event Type
Interface Events   scroll resize focus blur ...
Event Type
Interface Events   scroll resize focus blur ...
Mouse Events       mouseover mouseout ...
Event Type
Interface Events   scroll resize focus blur ...
Mouse Events       mouseover mouseout ...
Form Events        submit reset ...
Event Type
Interface Events   scroll resize focus blur ...
Mouse Events       mouseover mouseout ...
Form Events        submit reset ...
W3C Events         dom manipulation...
Event Type
Interface Events   scroll resize focus blur ...
Mouse Events       mouseover mouseout ...
Form Events        submit reset ...
W3C Events         dom manipulation...
Microsoft Events   mouseenter mouseleave...
Mouse Event
Mouse Event
      dblclick              click

mousedown mousemove mouseover mouseout
Mouse Event
      dblclick              click

mousedown mousemove mouseover mouseout




         mouseenter mouseleave
Mouse Event
Mouse Event
Event Mechanism
Event Mechanism
Event Mechanism

   Click
Event Mechanism
Event Mechanism
Event Mechanism
Event Mechanism
Event Mechanism
Event Mechanism
Event Mechanism
Event Mechanism
Event Mechanism
Event Registration
Event Mechanism
Event Registration
Event Mechanism
Event Registration
Event Mechanism
Event Registration
Event Mechanism
Event Registration
Event Mechanism
Event Registration
Event Mechanism
Event Registration
Event Mechanism
Event Mechanism
Event Registration
Event Mechanism
Event Registration
Event Mechanism
Event Mechanism
Attention!
Event Mechanism
Attention!
Event Mechanism
Attention!




Same Parameters?
Event Mechanism
Attention!




Same Parameters?
Event Mechanism
Attention!




Same Parameters?
Event Mechanism
Event Mechanism
Same Parameters?
Event Mechanism
Same Parameters?
Event Mechanism
Same Parameters?
Event Mechanism
Same Parameters?

                   ≠
Event Mechanism
Same Parameters?

                   ≠
Event Mechanism
Same Parameters?

                   ≠
Event Mechanism
Same Parameters?

                   ≠

                   ≠
Event Mechanism
Event Mechanism
Sequence of Multiple Listeners
Event Mechanism
Sequence of Multiple Listeners
Event Mechanism
Sequence of Multiple Listeners
Event Mechanism
Sequence of Multiple Listeners




  alert(1)


  alert(2)
Event Mechanism
Sequence of Multiple Listeners




  alert(1)

             Queue
  alert(2)
Event Mechanism
Sequence of Multiple Listeners




  alert(1)

             Queue
  alert(2)
Event Mechanism
Sequence of Multiple Listeners




                                 alert(2)
  alert(1)

             Queue               alert(1)
  alert(2)
Event Mechanism
Sequence of Multiple Listeners




                                 alert(2)
  alert(1)

             Queue      Stack    alert(1)
  alert(2)
Event Mechanism
Event Mechanism
Event Object
Event Mechanism
Event Object
Event Mechanism
Event Mechanism
Turn Bubbling Off
Event Mechanism
Turn Bubbling Off
Event Mechanism
Event Mechanism
Event Target
Event Mechanism
Event Target
Event Mechanism
Event Target
Event Mechanism
Event Target
Event Mechanism
Event Target




               Target will
               always be
               element2
Event Mechanism
Event Target




                  Target will
                  always be
                  element2


e.currentTarget
Event Mechanism
Event Target




                  Target will
                  always be
                  element2


e.currentTarget
Event Mechanism
Event Target




                  Target will
                  always be
                  element2


e.currentTarget
Event Mechanism
Event Mechanism
“This” in Event
Event Mechanism
   “This” in Event
In Javascript this always refers to the “owner” of
the function we’re executing, or rather, to the
object that a function is a method of
Event Mechanism
   “This” in Event
In Javascript this always refers to the “owner” of
the function we’re executing, or rather, to the
object that a function is a method of
   Example: Register click handler on div1
Event Mechanism
   “This” in Event
In Javascript this always refers to the “owner” of
the function we’re executing, or rather, to the
object that a function is a method of
   Example: Register click handler on div1
Event Mechanism
   “This” in Event
In Javascript this always refers to the “owner” of
the function we’re executing, or rather, to the
object that a function is a method of
   Example: Register click handler on div1
Event Mechanism
   “This” in Event
In Javascript this always refers to the “owner” of
the function we’re executing, or rather, to the
object that a function is a method of
   Example: Register click handler on div1
Event Mechanism
   “This” in Event
In Javascript this always refers to the “owner” of
the function we’re executing, or rather, to the
object that a function is a method of
   Example: Register click handler on div1
Event Mechanism
   “This” in Event
In Javascript this always refers to the “owner” of
the function we’re executing, or rather, to the
object that a function is a method of
   Example: Register click handler on div1
Event Mechanism
   “This” in Event
In Javascript this always refers to the “owner” of
the function we’re executing, or rather, to the
object that a function is a method of
   Example: Register click handler on div1
Event Mechanism
   “This” in Event
In Javascript this always refers to the “owner” of
the function we’re executing, or rather, to the
object that a function is a method of
   Example: Register click handler on div1
Event Mechanism
   “This” in Event
In Javascript this always refers to the “owner” of
the function we’re executing, or rather, to the
object that a function is a method of
   Example: Register click handler on div1
Event Mechanism
   “This” in Event
In Javascript this always refers to the “owner” of
the function we’re executing, or rather, to the
object that a function is a method of
   Example: Register click handler on div1
Event Mechanism
   “This” in Event
In Javascript this always refers to the “owner” of
the function we’re executing, or rather, to the
object that a function is a method of
   Example: Register click handler on div1
Event Mechanism
   “This” in Event
In Javascript this always refers to the “owner” of
the function we’re executing, or rather, to the
object that a function is a method of
   Example: Register click handler on div1
Event Mechanism
   “This” in Event
In Javascript this always refers to the “owner” of
the function we’re executing, or rather, to the
object that a function is a method of
   Example: Register click handler on div1
Event Mechanism
   “This” in Event
In Javascript this always refers to the “owner” of
the function we’re executing, or rather, to the
object that a function is a method of
   Example: Register click handler on div1
Event Mechanism
   “This” in Event
In Javascript this always refers to the “owner” of
the function we’re executing, or rather, to the
object that a function is a method of
   Example: Register click handler on div1
Implement an Event Library
Implement an Event Library
Version one: “this”
Implement an Event Library
Version one: “this”
Implement an Event Library
Implement an Event Library
Version Two: e and data
Implement an Event Library
Version Two: e and data
Implement an Event Library
Version Two: e and data
Implement an Event Library
Implement an Event Library
Version Three: Combine e and data
Implement an Event Library
Version Three: Combine e and data
Implement an Event Library
Version Three: Combine e and data
Implement an Event Library
Version Three: Combine e and data
Implement an Event Library
Version Three: Combine e and data

              TODO:
              Encapsulate the original
              event object
Implement an Event Library
Version Three: Combine e and data

              TODO:
              Encapsulate the original
              event object
Acknowledge
Acknowledge

   PPK: http://www.quirksmode.org

   W3C: http://www.w3.org/TR/2000/REC-DOM-Level-2-

Events-20001113/

   YUI Source Code(v2.8.1): http://developer.yahoo.com/yui/2/

   JQuery Source Code(v1.4): http://jquery.com/

   Google Closure Library: http://code.google.com/closure/

library/
Thanks!

Weitere ähnliche Inhalte

Andere mochten auch

【第一季第三期】Thinking in Javascript & OO in Javascript - 清羽
【第一季第三期】Thinking in Javascript & OO in Javascript - 清羽【第一季第三期】Thinking in Javascript & OO in Javascript - 清羽
【第一季第三期】Thinking in Javascript & OO in Javascript - 清羽tbosstraining
 
【第一季第一期】开发的前端之痛 by 银环
【第一季第一期】开发的前端之痛 by 银环【第一季第一期】开发的前端之痛 by 银环
【第一季第一期】开发的前端之痛 by 银环tbosstraining
 
【第一季第四期】JavaScript Optimization
【第一季第四期】JavaScript Optimization【第一季第四期】JavaScript Optimization
【第一季第四期】JavaScript Optimizationtbosstraining
 
【第一季第一期】前端的深化 by 周杰
【第一季第一期】前端的深化 by 周杰【第一季第一期】前端的深化 by 周杰
【第一季第一期】前端的深化 by 周杰tbosstraining
 
【第一季第五期】要漂亮很容易!——超简单CSS速成教程
【第一季第五期】要漂亮很容易!——超简单CSS速成教程【第一季第五期】要漂亮很容易!——超简单CSS速成教程
【第一季第五期】要漂亮很容易!——超简单CSS速成教程tbosstraining
 
【第一季•第六期】Ajax & JSONP in Action
【第一季•第六期】Ajax & JSONP in Action【第一季•第六期】Ajax & JSONP in Action
【第一季•第六期】Ajax & JSONP in Actiontbosstraining
 

Andere mochten auch (6)

【第一季第三期】Thinking in Javascript & OO in Javascript - 清羽
【第一季第三期】Thinking in Javascript & OO in Javascript - 清羽【第一季第三期】Thinking in Javascript & OO in Javascript - 清羽
【第一季第三期】Thinking in Javascript & OO in Javascript - 清羽
 
【第一季第一期】开发的前端之痛 by 银环
【第一季第一期】开发的前端之痛 by 银环【第一季第一期】开发的前端之痛 by 银环
【第一季第一期】开发的前端之痛 by 银环
 
【第一季第四期】JavaScript Optimization
【第一季第四期】JavaScript Optimization【第一季第四期】JavaScript Optimization
【第一季第四期】JavaScript Optimization
 
【第一季第一期】前端的深化 by 周杰
【第一季第一期】前端的深化 by 周杰【第一季第一期】前端的深化 by 周杰
【第一季第一期】前端的深化 by 周杰
 
【第一季第五期】要漂亮很容易!——超简单CSS速成教程
【第一季第五期】要漂亮很容易!——超简单CSS速成教程【第一季第五期】要漂亮很容易!——超简单CSS速成教程
【第一季第五期】要漂亮很容易!——超简单CSS速成教程
 
【第一季•第六期】Ajax & JSONP in Action
【第一季•第六期】Ajax & JSONP in Action【第一季•第六期】Ajax & JSONP in Action
【第一季•第六期】Ajax & JSONP in Action
 

Ähnlich wie 【第一季第二期】Dive into javascript event

jQuery 1.7 Events
jQuery 1.7 EventsjQuery 1.7 Events
jQuery 1.7 Eventsdmethvin
 
Java gui event
Java gui eventJava gui event
Java gui eventSoftNutx
 
ITE 1122_ Event Handling.pptx
ITE 1122_ Event Handling.pptxITE 1122_ Event Handling.pptx
ITE 1122_ Event Handling.pptxudithaisur
 
event-handling.pptx
event-handling.pptxevent-handling.pptx
event-handling.pptxGood657694
 
JavaScript - Chapter 11 - Events
 JavaScript - Chapter 11 - Events  JavaScript - Chapter 11 - Events
JavaScript - Chapter 11 - Events WebStackAcademy
 
openFrameworks 007 - events
openFrameworks 007 - eventsopenFrameworks 007 - events
openFrameworks 007 - eventsroxlu
 
event-handling.pptx
event-handling.pptxevent-handling.pptx
event-handling.pptxusvirat1805
 
Aaai 2011 event processing tutorial
Aaai 2011 event processing tutorialAaai 2011 event processing tutorial
Aaai 2011 event processing tutorialOpher Etzion
 
Event driven application
Event driven applicationEvent driven application
Event driven applicationChris Saylor
 
Advance Java Programming(CM5I) Event handling
Advance Java Programming(CM5I) Event handlingAdvance Java Programming(CM5I) Event handling
Advance Java Programming(CM5I) Event handlingPayal Dungarwal
 
PROGRAMMING IN JAVA- unit 4-part II
PROGRAMMING IN JAVA- unit 4-part IIPROGRAMMING IN JAVA- unit 4-part II
PROGRAMMING IN JAVA- unit 4-part IISivaSankari36
 
Vldb 2010 event processing tutorial
Vldb 2010 event processing tutorialVldb 2010 event processing tutorial
Vldb 2010 event processing tutorialOpher Etzion
 
Javascript #8 : événements
Javascript #8 : événementsJavascript #8 : événements
Javascript #8 : événementsJean Michel
 
JavaScript_Events.pptx
JavaScript_Events.pptxJavaScript_Events.pptx
JavaScript_Events.pptxYagna15
 
Lab #2: Introduction to Javascript
Lab #2: Introduction to JavascriptLab #2: Introduction to Javascript
Lab #2: Introduction to JavascriptWalid Ashraf
 
PATTERNS06 - The .NET Event Model
PATTERNS06 - The .NET Event ModelPATTERNS06 - The .NET Event Model
PATTERNS06 - The .NET Event ModelMichael Heron
 
Yahoo presentation: JavaScript Events
Yahoo presentation: JavaScript EventsYahoo presentation: JavaScript Events
Yahoo presentation: JavaScript EventsPeter-Paul Koch
 
A Deep Dive into Spring Application Events
A Deep Dive into Spring Application EventsA Deep Dive into Spring Application Events
A Deep Dive into Spring Application EventsVMware Tanzu
 

Ähnlich wie 【第一季第二期】Dive into javascript event (20)

jQuery 1.7 Events
jQuery 1.7 EventsjQuery 1.7 Events
jQuery 1.7 Events
 
Java gui event
Java gui eventJava gui event
Java gui event
 
ITE 1122_ Event Handling.pptx
ITE 1122_ Event Handling.pptxITE 1122_ Event Handling.pptx
ITE 1122_ Event Handling.pptx
 
event-handling.pptx
event-handling.pptxevent-handling.pptx
event-handling.pptx
 
JavaScript - Chapter 11 - Events
 JavaScript - Chapter 11 - Events  JavaScript - Chapter 11 - Events
JavaScript - Chapter 11 - Events
 
openFrameworks 007 - events
openFrameworks 007 - eventsopenFrameworks 007 - events
openFrameworks 007 - events
 
event-handling.pptx
event-handling.pptxevent-handling.pptx
event-handling.pptx
 
Aaai 2011 event processing tutorial
Aaai 2011 event processing tutorialAaai 2011 event processing tutorial
Aaai 2011 event processing tutorial
 
Event driven application
Event driven applicationEvent driven application
Event driven application
 
Advance Java Programming(CM5I) Event handling
Advance Java Programming(CM5I) Event handlingAdvance Java Programming(CM5I) Event handling
Advance Java Programming(CM5I) Event handling
 
PROGRAMMING IN JAVA- unit 4-part II
PROGRAMMING IN JAVA- unit 4-part IIPROGRAMMING IN JAVA- unit 4-part II
PROGRAMMING IN JAVA- unit 4-part II
 
Vldb 2010 event processing tutorial
Vldb 2010 event processing tutorialVldb 2010 event processing tutorial
Vldb 2010 event processing tutorial
 
Javascript Browser Events.pdf
Javascript Browser Events.pdfJavascript Browser Events.pdf
Javascript Browser Events.pdf
 
Javascript #8 : événements
Javascript #8 : événementsJavascript #8 : événements
Javascript #8 : événements
 
JavaScript_Events.pptx
JavaScript_Events.pptxJavaScript_Events.pptx
JavaScript_Events.pptx
 
Lab #2: Introduction to Javascript
Lab #2: Introduction to JavascriptLab #2: Introduction to Javascript
Lab #2: Introduction to Javascript
 
PATTERNS06 - The .NET Event Model
PATTERNS06 - The .NET Event ModelPATTERNS06 - The .NET Event Model
PATTERNS06 - The .NET Event Model
 
Yahoo presentation: JavaScript Events
Yahoo presentation: JavaScript EventsYahoo presentation: JavaScript Events
Yahoo presentation: JavaScript Events
 
WPF Fundamentals
WPF FundamentalsWPF Fundamentals
WPF Fundamentals
 
A Deep Dive into Spring Application Events
A Deep Dive into Spring Application EventsA Deep Dive into Spring Application Events
A Deep Dive into Spring Application Events
 

Kürzlich hochgeladen

New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 

Kürzlich hochgeladen (20)

New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 

【第一季第二期】Dive into javascript event

Hinweis der Redaktion