SlideShare a Scribd company logo
Computer Science E-75
Building Dynamic Websites
Harvard Extension School
http://cs75.net/




                            Lecture 5: JavaScript


                                     David J. Malan
                             malan@post.harvard.edu


                                                  0
Project 1




            1
JavaScript
 Core JavaScript 1.5 Reference
 http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference
 A re-introduction to JavaScript
 http://developer.mozilla.org/en/docs/A_re-introduction_to_JavaScript
 JavaScript Reference
 http://www.w3schools.com/jsref/
 JavaScript Tutorial
 http://www.w3schools.com/js/




                                                                        2
JavaScript
<script type="text/javascript">
// <![CDATA[

    . . .

// ]]>
</script>




                                  3
JavaScript
<script language="Javascript1.5">
// <![CDATA[

    . . .

// ]]>
</script>




                                    4
JavaScript
<script src="file.js" type="text/javascript"></script>




                                                         5
noscript
<script type="text/javascript">
// <![CDATA[

    document.write("hello, world");

// ]]>
</script>

<noscript>
  goodbye, world
</noscript>




                                      6
Statements
   break
   const
   continue
   do ... while
   for
   for ... in
   for each ... in
   function
   if ... else
   return
   switch
   throw
   try ... catch
   var
   while
   with
   ...


http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference#Statements

                                                                                7
focus()
<script type="text/javascript">
// <![CDATA[

    // put cursor in username field if empty
    if (document.forms.login.username.value == "")
    {
        document.forms.login.username.focus();
        document.forms.login.username.value = document.forms.login.username.value;
    }

    // else put cursor in password field
    else
    {
         document.forms.login.password.focus();
         document.forms.login.password.value = document.forms.login.password.value;
    }

// ]]>




                                                                                      8
Validation




             9
Regular Expressions
  RegEx
  http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Global_Functions:RegExp

  String
  http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference:Global_Functions:String




http://www.w3schools.com/jsref/jsref_obj_regexp.asp




                                                                                               10
Global Objects
   Array
   Boolean
   Date
   Function
   Math
   Number
   Object
   RegExp
   String
   ...

http://developer.mozilla.org/en/docs/Core_JavaScript_1.5_Reference#Global_Objects




                                                                                    11
Objects
var obj = new Object();
var obj = {};

obj.key = value;
obj["key"] = value;

var obj = { key: value };




                            12
Arrays
var a = new Array();
var a = [];

a[0] = "foo";
a[1] = "bar";
a[2] = "baz";




                       13
Arrays
var a = new Array();
var a = [];

a[a.length] = "foo";
a[a.length] = "bar";
a[a.length] = "baz";




                       14
OOP (Prototype-Based)
// constructor
function Foo()
{
    // property
    this.counter = 0;
}

// method
this.protoype.add = function(n) { this.counter += n; }




                                                         15
Event Handlers
   onblur
   onchange
   onclick
   onfocus
   onkeydown
   onkeyup
   onload
   onmousedown
   onmouseup
   onmouseout
   onmouseover
   onmouseup
   onresize
   onselect
   onsubmit
   ...

http://www.w3schools.com/jsref/jsref_events.asp
                                                  16
CSS Properties
  className
  style

http://codepunk.hardwar.org.uk/css2js.htm




                                            17
blink
function blinker()
{
    var blinks = document.getElementsByName("blink");
    for (var i = 0; i < blinks.length; i++)
    {
        if (blinks[i].style.visibility == "visible")
            blinks[i].style.visibility = "hidden";
        else
            blinks[i].style.visibility = "visible";
    }
}




                                                        18
YUI Event Utility
YAHOO.util.Event.addListener(window, "load", function() {
    window.setInterval("blinker()", 500);
});



http://developer.yahoo.com/yui/event/




                                                            19
Frameworks
 Dojo
 http://dojotoolkit.org/
 Prototype
 http://www.prototypejs.org/
 script.aculo.us
 http://script.aculo.us/
 YUI
 http://developer.yahoo.com/yui/


                                   20
YUI Library Utilities
  Animation Utility
  Drag and Drop Utility
  ImageLoader Utility
  ...

http://developer.yahoo.com/yui/




                                  21
YUI Library Controls/Widgets
  AutoComplete
  Button
  Calendar
  Color Picker
  Container
  Menu
  Slider
  TabView
  TreeView
  ...

http://developer.yahoo.com/yui/
                                  22
Quirks
http://www.quirksmode.org/js/contents.html




                                             23
Static Code Analysis
http://www.jslint.com/




                         24
Debuggers
 FireBug
 https://addons.mozilla.org/en-US/firefox/addon/1843
 JavaScript Debugger
 https://addons.mozilla.org/en-US/firefox/addon/216




                                                       25
Compressors
 JSMin
 http://javascript.crockford.com/jsmin.html
 packer
 http://dean.edwards.name/packer/
 ShrinkSafe
 http://dojotoolkit.org/docs/shrinksafe
 YUI Compressor
 http://developer.yahoo.com/yui/compressor/


                                              26
Computer Science E-75
Building Dynamic Websites
Harvard Extension School
http://cs75.net/




                            Lecture 5: JavaScript


                                     David J. Malan
                             malan@post.harvard.edu


                                                  27
Ad

Recommended

Cristiano Betta (Betta Works) - Lightweight Libraries with Rollup, Riot and R...
Cristiano Betta (Betta Works) - Lightweight Libraries with Rollup, Riot and R...
Techsylvania
 
"Your script just killed my site" by Steve Souders
"Your script just killed my site" by Steve Souders
Dmitry Makarchuk
 
Web Components With Rails
Web Components With Rails
Boris Nadion
 
Vue business first
Vue business first
Vitalii Ratyshnyi
 
Browserify
Browserify
davidchubbs
 
Packing it all: JavaScript module bundling from 2000 to now
Packing it all: JavaScript module bundling from 2000 to now
Derek Willian Stavis
 
Vue js 大型專案架構
Vue js 大型專案架構
Hina Chen
 
Lightning Talk: Making JS better with Browserify
Lightning Talk: Making JS better with Browserify
crgwbr
 
Elinvoimaa hunajasta-yleist-hunajatietoa-ja-kyttvinkkej
Elinvoimaa hunajasta-yleist-hunajatietoa-ja-kyttvinkkej
Pertti Paavola
 
Netvibes UWA workshop at ParisWeb 2007
Netvibes UWA workshop at ParisWeb 2007
Netvibes
 
JavaScript Dependencies, Modules & Browserify
JavaScript Dependencies, Modules & Browserify
Johan Nilsson
 
HTML5 Intro
HTML5 Intro
PavingWays Ltd.
 
An Intro into webpack
An Intro into webpack
Squash Apps Pvt Ltd
 
Modular JavaScript
Modular JavaScript
Andrew Eisenberg
 
Windows 8 for Web Developers
Windows 8 for Web Developers
Gustaf Nilsson Kotte
 
Webpack Tutorial, Uppsala JS
Webpack Tutorial, Uppsala JS
Emil Öberg
 
Zero-config JavaScript apps with RaveJS -- SVCC fall 2014
Zero-config JavaScript apps with RaveJS -- SVCC fall 2014
John Hann
 
Dependency Management with RequireJS
Dependency Management with RequireJS
Aaronius
 
https://www.facebook.com/valdyna.monna?fref=ts
https://www.facebook.com/valdyna.monna?fref=ts
Arif Alexi
 
Send.php
Send.php
abdoahmd44
 
iPhone Appleless Apps
iPhone Appleless Apps
Remy Sharp
 
PHP MVC Tutorial
PHP MVC Tutorial
Yang Bruce
 
Requirejs
Requirejs
sioked
 
Leave No One Behind with HTML5 - FFWD.PRO, Croatia
Leave No One Behind with HTML5 - FFWD.PRO, Croatia
Robert Nyman
 
Canjs
Canjs
bitovi
 
Requirejs
Requirejs
Jason Lotito
 
the 5 layers of web accessibility - Open Web Camp II
the 5 layers of web accessibility - Open Web Camp II
Dirk Ginader
 
Guia de Sobrevivência JS no mundo Open Source
Guia de Sobrevivência JS no mundo Open Source
Leonardo Balter
 
Ilu4 PHILIP LEE HARVEY - Cristielen Souza
Ilu4 PHILIP LEE HARVEY - Cristielen Souza
Cristielen Souza
 
大公司的Java面试题集
大公司的Java面试题集
yiditushe
 

More Related Content

What's hot (20)

Elinvoimaa hunajasta-yleist-hunajatietoa-ja-kyttvinkkej
Elinvoimaa hunajasta-yleist-hunajatietoa-ja-kyttvinkkej
Pertti Paavola
 
Netvibes UWA workshop at ParisWeb 2007
Netvibes UWA workshop at ParisWeb 2007
Netvibes
 
JavaScript Dependencies, Modules & Browserify
JavaScript Dependencies, Modules & Browserify
Johan Nilsson
 
HTML5 Intro
HTML5 Intro
PavingWays Ltd.
 
An Intro into webpack
An Intro into webpack
Squash Apps Pvt Ltd
 
Modular JavaScript
Modular JavaScript
Andrew Eisenberg
 
Windows 8 for Web Developers
Windows 8 for Web Developers
Gustaf Nilsson Kotte
 
Webpack Tutorial, Uppsala JS
Webpack Tutorial, Uppsala JS
Emil Öberg
 
Zero-config JavaScript apps with RaveJS -- SVCC fall 2014
Zero-config JavaScript apps with RaveJS -- SVCC fall 2014
John Hann
 
Dependency Management with RequireJS
Dependency Management with RequireJS
Aaronius
 
https://www.facebook.com/valdyna.monna?fref=ts
https://www.facebook.com/valdyna.monna?fref=ts
Arif Alexi
 
Send.php
Send.php
abdoahmd44
 
iPhone Appleless Apps
iPhone Appleless Apps
Remy Sharp
 
PHP MVC Tutorial
PHP MVC Tutorial
Yang Bruce
 
Requirejs
Requirejs
sioked
 
Leave No One Behind with HTML5 - FFWD.PRO, Croatia
Leave No One Behind with HTML5 - FFWD.PRO, Croatia
Robert Nyman
 
Canjs
Canjs
bitovi
 
Requirejs
Requirejs
Jason Lotito
 
the 5 layers of web accessibility - Open Web Camp II
the 5 layers of web accessibility - Open Web Camp II
Dirk Ginader
 
Guia de Sobrevivência JS no mundo Open Source
Guia de Sobrevivência JS no mundo Open Source
Leonardo Balter
 
Elinvoimaa hunajasta-yleist-hunajatietoa-ja-kyttvinkkej
Elinvoimaa hunajasta-yleist-hunajatietoa-ja-kyttvinkkej
Pertti Paavola
 
Netvibes UWA workshop at ParisWeb 2007
Netvibes UWA workshop at ParisWeb 2007
Netvibes
 
JavaScript Dependencies, Modules & Browserify
JavaScript Dependencies, Modules & Browserify
Johan Nilsson
 
Webpack Tutorial, Uppsala JS
Webpack Tutorial, Uppsala JS
Emil Öberg
 
Zero-config JavaScript apps with RaveJS -- SVCC fall 2014
Zero-config JavaScript apps with RaveJS -- SVCC fall 2014
John Hann
 
Dependency Management with RequireJS
Dependency Management with RequireJS
Aaronius
 
https://www.facebook.com/valdyna.monna?fref=ts
https://www.facebook.com/valdyna.monna?fref=ts
Arif Alexi
 
iPhone Appleless Apps
iPhone Appleless Apps
Remy Sharp
 
PHP MVC Tutorial
PHP MVC Tutorial
Yang Bruce
 
Requirejs
Requirejs
sioked
 
Leave No One Behind with HTML5 - FFWD.PRO, Croatia
Leave No One Behind with HTML5 - FFWD.PRO, Croatia
Robert Nyman
 
the 5 layers of web accessibility - Open Web Camp II
the 5 layers of web accessibility - Open Web Camp II
Dirk Ginader
 
Guia de Sobrevivência JS no mundo Open Source
Guia de Sobrevivência JS no mundo Open Source
Leonardo Balter
 

Viewers also liked (17)

Ilu4 PHILIP LEE HARVEY - Cristielen Souza
Ilu4 PHILIP LEE HARVEY - Cristielen Souza
Cristielen Souza
 
大公司的Java面试题集
大公司的Java面试题集
yiditushe
 
cs3157-summer06-lab1
cs3157-summer06-lab1
tutorialsruby
 
M A U N A ( S I L E N C E) & S U P E R L I V I N G D R S H R I N I W A S ...
M A U N A ( S I L E N C E) & S U P E R L I V I N G D R S H R I N I W A S ...
drsolapurkar
 
080620-16461915
080620-16461915
tutorialsruby
 
Changetheworldnow- the presentation 2016
Changetheworldnow- the presentation 2016
amir milo
 
Studi di settore ATTESTAZIONE, ASSEVERAZIONE e ASPETTI SANZIONATORI in CAPO a...
Studi di settore ATTESTAZIONE, ASSEVERAZIONE e ASPETTI SANZIONATORI in CAPO a...
gianlkr
 
Letter of Recommendation - Keith
Letter of Recommendation - Keith
Phillip Jacobson
 
BloggingWithStyle_2008
BloggingWithStyle_2008
tutorialsruby
 
Day4
Day4
tutorialsruby
 
11 17 Ethanol
11 17 Ethanol
Fauquier Horticulture
 
perl_objects
perl_objects
tutorialsruby
 
Extinción de las obligaciones danneriz y diaz v v-17.944.089
Extinción de las obligaciones danneriz y diaz v v-17.944.089
yenny mar g
 
Lakshmi ppt
Lakshmi ppt
suganya mvl
 
Church Giving: The rules have changed
Church Giving: The rules have changed
Ben Stroup
 
Mohamed Rafi Al Balushi updated CV 23022016docx
Mohamed Rafi Al Balushi updated CV 23022016docx
Mohamed RafI Qasim Al Balushi
 
Ilu4 PHILIP LEE HARVEY - Cristielen Souza
Ilu4 PHILIP LEE HARVEY - Cristielen Souza
Cristielen Souza
 
大公司的Java面试题集
大公司的Java面试题集
yiditushe
 
cs3157-summer06-lab1
cs3157-summer06-lab1
tutorialsruby
 
M A U N A ( S I L E N C E) & S U P E R L I V I N G D R S H R I N I W A S ...
M A U N A ( S I L E N C E) & S U P E R L I V I N G D R S H R I N I W A S ...
drsolapurkar
 
Changetheworldnow- the presentation 2016
Changetheworldnow- the presentation 2016
amir milo
 
Studi di settore ATTESTAZIONE, ASSEVERAZIONE e ASPETTI SANZIONATORI in CAPO a...
Studi di settore ATTESTAZIONE, ASSEVERAZIONE e ASPETTI SANZIONATORI in CAPO a...
gianlkr
 
Letter of Recommendation - Keith
Letter of Recommendation - Keith
Phillip Jacobson
 
BloggingWithStyle_2008
BloggingWithStyle_2008
tutorialsruby
 
Extinción de las obligaciones danneriz y diaz v v-17.944.089
Extinción de las obligaciones danneriz y diaz v v-17.944.089
yenny mar g
 
Church Giving: The rules have changed
Church Giving: The rules have changed
Ben Stroup
 
Ad

Similar to lecture5 (20)

Java script
Java script
Ramesh Kumar
 
Training javascript 2012 hcmut
Training javascript 2012 hcmut
University of Technology
 
05 JavaScript #burningkeyboards
05 JavaScript #burningkeyboards
Denis Ristic
 
JavaScript 101
JavaScript 101
ygv2000
 
Java script
Java script
vishal choudhary
 
Kann JavaScript elegant sein?
Kann JavaScript elegant sein?
jbandi
 
JavaScript: Creative Coding for Browsers
JavaScript: Creative Coding for Browsers
noweverywhere
 
Jslunch6
Jslunch6
Nao Haida
 
Reversing JavaScript
Reversing JavaScript
Roberto Suggi Liverani
 
Java Script basics and DOM
Java Script basics and DOM
Sukrit Gupta
 
Presenter manual RIA technology (specially for summer interns)
Presenter manual RIA technology (specially for summer interns)
XPERT INFOTECH
 
JavaScript Neednt Hurt - JavaBin talk
JavaScript Neednt Hurt - JavaBin talk
Thomas Kjeldahl Nilsson
 
Java script
Java script
Sukrit Gupta
 
JavaScript and AJAX
JavaScript and AJAX
Frane Bandov
 
lecture 6 javascript event and event handling.ppt
lecture 6 javascript event and event handling.ppt
ULADATZ
 
"Javascript" por Tiago Rodrigues
"Javascript" por Tiago Rodrigues
Núcleo de Electrónica e Informática da Universidade do Algarve
 
Advanced JavaScript
Advanced JavaScript
Mahmoud Tolba
 
Lecture7
Lecture7
Majid Taghiloo
 
Javascript done right - Open Web Camp III
Javascript done right - Open Web Camp III
Dirk Ginader
 
JavaScript 1.5 to 2.0 (TomTom)
JavaScript 1.5 to 2.0 (TomTom)
jeresig
 
05 JavaScript #burningkeyboards
05 JavaScript #burningkeyboards
Denis Ristic
 
JavaScript 101
JavaScript 101
ygv2000
 
Kann JavaScript elegant sein?
Kann JavaScript elegant sein?
jbandi
 
JavaScript: Creative Coding for Browsers
JavaScript: Creative Coding for Browsers
noweverywhere
 
Java Script basics and DOM
Java Script basics and DOM
Sukrit Gupta
 
Presenter manual RIA technology (specially for summer interns)
Presenter manual RIA technology (specially for summer interns)
XPERT INFOTECH
 
JavaScript and AJAX
JavaScript and AJAX
Frane Bandov
 
lecture 6 javascript event and event handling.ppt
lecture 6 javascript event and event handling.ppt
ULADATZ
 
Javascript done right - Open Web Camp III
Javascript done right - Open Web Camp III
Dirk Ginader
 
JavaScript 1.5 to 2.0 (TomTom)
JavaScript 1.5 to 2.0 (TomTom)
jeresig
 
Ad

More from tutorialsruby (20)

&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />
tutorialsruby
 
TopStyle Help &amp; &lt;b>Tutorial&lt;/b>
TopStyle Help &amp; &lt;b>Tutorial&lt;/b>
tutorialsruby
 
The Art Institute of Atlanta IMD 210 Fundamentals of Scripting &lt;b>...&lt;/b>
The Art Institute of Atlanta IMD 210 Fundamentals of Scripting &lt;b>...&lt;/b>
tutorialsruby
 
&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />
tutorialsruby
 
&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />
tutorialsruby
 
Standardization and Knowledge Transfer – INS0
Standardization and Knowledge Transfer – INS0
tutorialsruby
 
xhtml_basics
xhtml_basics
tutorialsruby
 
xhtml_basics
xhtml_basics
tutorialsruby
 
xhtml-documentation
xhtml-documentation
tutorialsruby
 
xhtml-documentation
xhtml-documentation
tutorialsruby
 
CSS
CSS
tutorialsruby
 
CSS
CSS
tutorialsruby
 
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
tutorialsruby
 
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
tutorialsruby
 
HowTo_CSS
HowTo_CSS
tutorialsruby
 
HowTo_CSS
HowTo_CSS
tutorialsruby
 
BloggingWithStyle_2008
BloggingWithStyle_2008
tutorialsruby
 
cascadingstylesheets
cascadingstylesheets
tutorialsruby
 
cascadingstylesheets
cascadingstylesheets
tutorialsruby
 
Winter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20Javascript
tutorialsruby
 
&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />
tutorialsruby
 
TopStyle Help &amp; &lt;b>Tutorial&lt;/b>
TopStyle Help &amp; &lt;b>Tutorial&lt;/b>
tutorialsruby
 
The Art Institute of Atlanta IMD 210 Fundamentals of Scripting &lt;b>...&lt;/b>
The Art Institute of Atlanta IMD 210 Fundamentals of Scripting &lt;b>...&lt;/b>
tutorialsruby
 
&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />
tutorialsruby
 
&lt;img src="../i/r_14.png" />
&lt;img src="../i/r_14.png" />
tutorialsruby
 
Standardization and Knowledge Transfer – INS0
Standardization and Knowledge Transfer – INS0
tutorialsruby
 
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
tutorialsruby
 
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
0047ecaa6ea3e9ac0a13a2fe96f4de3bfd515c88f5d90c1fae79b956363d7f02c7fa060269
tutorialsruby
 
BloggingWithStyle_2008
BloggingWithStyle_2008
tutorialsruby
 
cascadingstylesheets
cascadingstylesheets
tutorialsruby
 
cascadingstylesheets
cascadingstylesheets
tutorialsruby
 
Winter%200405%20-%20Advanced%20Javascript
Winter%200405%20-%20Advanced%20Javascript
tutorialsruby
 

Recently uploaded (20)

“Addressing Evolving AI Model Challenges Through Memory and Storage,” a Prese...
“Addressing Evolving AI Model Challenges Through Memory and Storage,” a Prese...
Edge AI and Vision Alliance
 
Supporting the NextGen 911 Digital Transformation with FME
Supporting the NextGen 911 Digital Transformation with FME
Safe Software
 
Oracle Cloud Infrastructure Generative AI Professional
Oracle Cloud Infrastructure Generative AI Professional
VICTOR MAESTRE RAMIREZ
 
“Why It’s Critical to Have an Integrated Development Methodology for Edge AI,...
“Why It’s Critical to Have an Integrated Development Methodology for Edge AI,...
Edge AI and Vision Alliance
 
National Fuels Treatments Initiative: Building a Seamless Map of Hazardous Fu...
National Fuels Treatments Initiative: Building a Seamless Map of Hazardous Fu...
Safe Software
 
Scaling GenAI Inference From Prototype to Production: Real-World Lessons in S...
Scaling GenAI Inference From Prototype to Production: Real-World Lessons in S...
Anish Kumar
 
Mastering AI Workflows with FME - Peak of Data & AI 2025
Mastering AI Workflows with FME - Peak of Data & AI 2025
Safe Software
 
Crypto Super 500 - 14th Report - June2025.pdf
Crypto Super 500 - 14th Report - June2025.pdf
Stephen Perrenod
 
cnc-drilling-dowel-inserting-machine-drillteq-d-510-english.pdf
cnc-drilling-dowel-inserting-machine-drillteq-d-510-english.pdf
AmirStern2
 
Your startup on AWS - How to architect and maintain a Lean and Mean account
Your startup on AWS - How to architect and maintain a Lean and Mean account
angelo60207
 
MuleSoft for AgentForce : Topic Center and API Catalog
MuleSoft for AgentForce : Topic Center and API Catalog
shyamraj55
 
The State of Web3 Industry- Industry Report
The State of Web3 Industry- Industry Report
Liveplex
 
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Alliance
 
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Alliance
 
June Patch Tuesday
June Patch Tuesday
Ivanti
 
Can We Use Rust to Develop Extensions for PostgreSQL? (POSETTE: An Event for ...
Can We Use Rust to Develop Extensions for PostgreSQL? (POSETTE: An Event for ...
NTT DATA Technology & Innovation
 
Data Validation and System Interoperability
Data Validation and System Interoperability
Safe Software
 
Reducing Conflicts and Increasing Safety Along the Cycling Networks of East-F...
Reducing Conflicts and Increasing Safety Along the Cycling Networks of East-F...
Safe Software
 
Analysis of the changes in the attitude of the news comments caused by knowin...
Analysis of the changes in the attitude of the news comments caused by knowin...
Matsushita Laboratory
 
Artificial Intelligence in the Nonprofit Boardroom.pdf
Artificial Intelligence in the Nonprofit Boardroom.pdf
OnBoard
 
“Addressing Evolving AI Model Challenges Through Memory and Storage,” a Prese...
“Addressing Evolving AI Model Challenges Through Memory and Storage,” a Prese...
Edge AI and Vision Alliance
 
Supporting the NextGen 911 Digital Transformation with FME
Supporting the NextGen 911 Digital Transformation with FME
Safe Software
 
Oracle Cloud Infrastructure Generative AI Professional
Oracle Cloud Infrastructure Generative AI Professional
VICTOR MAESTRE RAMIREZ
 
“Why It’s Critical to Have an Integrated Development Methodology for Edge AI,...
“Why It’s Critical to Have an Integrated Development Methodology for Edge AI,...
Edge AI and Vision Alliance
 
National Fuels Treatments Initiative: Building a Seamless Map of Hazardous Fu...
National Fuels Treatments Initiative: Building a Seamless Map of Hazardous Fu...
Safe Software
 
Scaling GenAI Inference From Prototype to Production: Real-World Lessons in S...
Scaling GenAI Inference From Prototype to Production: Real-World Lessons in S...
Anish Kumar
 
Mastering AI Workflows with FME - Peak of Data & AI 2025
Mastering AI Workflows with FME - Peak of Data & AI 2025
Safe Software
 
Crypto Super 500 - 14th Report - June2025.pdf
Crypto Super 500 - 14th Report - June2025.pdf
Stephen Perrenod
 
cnc-drilling-dowel-inserting-machine-drillteq-d-510-english.pdf
cnc-drilling-dowel-inserting-machine-drillteq-d-510-english.pdf
AmirStern2
 
Your startup on AWS - How to architect and maintain a Lean and Mean account
Your startup on AWS - How to architect and maintain a Lean and Mean account
angelo60207
 
MuleSoft for AgentForce : Topic Center and API Catalog
MuleSoft for AgentForce : Topic Center and API Catalog
shyamraj55
 
The State of Web3 Industry- Industry Report
The State of Web3 Industry- Industry Report
Liveplex
 
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Seminar: Authentication for a Billion Consumers - Amazon.pptx
FIDO Alliance
 
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Seminar: New Data: Passkey Adoption in the Workforce.pptx
FIDO Alliance
 
June Patch Tuesday
June Patch Tuesday
Ivanti
 
Can We Use Rust to Develop Extensions for PostgreSQL? (POSETTE: An Event for ...
Can We Use Rust to Develop Extensions for PostgreSQL? (POSETTE: An Event for ...
NTT DATA Technology & Innovation
 
Data Validation and System Interoperability
Data Validation and System Interoperability
Safe Software
 
Reducing Conflicts and Increasing Safety Along the Cycling Networks of East-F...
Reducing Conflicts and Increasing Safety Along the Cycling Networks of East-F...
Safe Software
 
Analysis of the changes in the attitude of the news comments caused by knowin...
Analysis of the changes in the attitude of the news comments caused by knowin...
Matsushita Laboratory
 
Artificial Intelligence in the Nonprofit Boardroom.pdf
Artificial Intelligence in the Nonprofit Boardroom.pdf
OnBoard
 

lecture5