SlideShare a Scribd company logo
1 of 25
5304101373
2. 5404101301
3. 5404101313
4. 5404101348
5. 5404101409
1
( 313)
313)
Text
flied server
1
Application server 1
Web application 2
5
o Text field 8
o Check Box) 8
o Text Area 9
o Radio Button 9
o Select /Menu 10
o 11
o Button) 11
12
12
12
13
Run 15
16
Web Application
web application
JSP
In put
web browser
- Application server
- Web application
-
1. Application server
eclipse compile Deploy
Application server Tomcat tab server
window new server
Apache Tomcat v6.0 server Tomcat v7.0 server
Browse folder Tomcat
2. WebApplication Project
Web-Base Application Project
File new Project
Folder Web Dynamic Web Project
2.2 Project Name = “………..”
File Eclipse Directory
Default
Directory
Next
Folder source code Output Folder
Class File
directory Run
3.
Form.jsp
source code
<formaction="ProFile.jsp"name="form01"method="post"onsubmi
t="return check()">
<table>
<tr>
<td> </td>
<td><inputtype="text"maxlength="13"id="idcard"name="idcard
"placeholder= ><br></td>
</tr>
<tr>
<tdalign="right"> </td>
<td><inputtype="text"maxlength="30"placeholder= id="nam
e"name="name"><br></td>
</tr>
<tr>
<tdalign="right"> </td>
<td><inputtype="text"maxlength="30"placeholder= id=
"lastname"name="lastname"><br></td>
</tr>
<tr>
<tdalign="right"> </td>
<td><inputtype="radio"checked="checked"name="sex"> <inpu
ttype="radio"name="sex"> <br></td>
</tr>
<tr>
<tdalign="right"> </td>
<td><inputtype="checkbox"name="sport"value=" ">
<inputtype="checkbox"name="sport"value=" ">
<inputtype="checkbox"name="sport"value=" ">
<inputtype="checkbox"name="sport"value=" "> <br></
td>
</tr>
<tr>
<tdalign="right"> </td>
<td><textareaplaceholder= id="address"
name="address"></textarea><br></td>
</tr>
<tr>
<tdalign="right"> </td>
<td><selectname="county">
<optionvalue=" "> </option>
<optionvalue=" "> </option>
<optionvalue=" "> </option>
<optionvalue=" "> </option>
<optionvalue=" "> </option>
<optionvalue=" "> </option>
<optionvalue="> "> </option>
</select><br></td>
</tr>
<tr>
<tdalign="right"> </td>
<td><inputtype="text"maxlength="10"placeholder= id=
"tell"name="tell"><br></td>
</tr>
<tr>
<tdalign="right"> </td>
<td><inputtype="text"placeholder= id="email"name="ema
il"><br></td>
</tr>
<tr>
<tdalign="right"> </td>
<td><inputtype="file"id="pic"name="pic"><br></td>
</tr>
<tr>
<tdalign="center"colspan="2"><inputtype="submit"name="ok"v
alue=" "">
<inputtype="reset"name="delete"value=" "><br></td>
</tr>
</table>
</form>
Text field
<inputtype="text"maxlength="13"id="idcard"name="idcar
d"placeholder= >
(type) text maxlength
idcard ID
Check Box)
<inputtype="checkbox"name="sport"value=" ">
<inputtype="checkbox"name="sport"value=" ">
<inputtype="checkbox"name="sport"value=" ">
<inputtype="checkbox"name="sport"value=" ">
(type) checkbox
sport value
Text Area
Text Area
E-mail
Text Field
<textareaplaceholder= id="address"
name="address"></textarea>
textarea
address ID placeholder
3 Radio Button
Radio Button
<inputtype="radio"checked="checked"name="sex"> <inp
uttype="radio"name="sex">
(type) radio
sex checked
Select /Menu
Select /Menu
<selectname="county">
<optionvalue=" "> </option>
<optionvalue=" "> </option>
<optionvalue=" "> </option>
<optionvalue=" "> </option>
<optionvalue=" "> </option>
<optionvalue=" "> </option>
<optionvalue=" "> </option>
select
county value
Upload Server
Browse
<inputtype="file"id="pic"name="pic">
(type) file pic
Button)
Submit Reset
CGI Script)
<inputtype="submit"name="ok"value=" "">
<inputtype="reset"name="delete"value=" ">
(type)
submit reset ok
delete
Web Browser
Web Browser
Form.jsp Add
-
-
Form
- Idcard
- Name
- Last name
- Sex
- Sport
- Address
- County
- Tell
- Email
- Pic
Http
request
getParameter
String idcard = request.getParameter("idcard");
String name = request.getParameter("name");
String lastname = request.getParameter("lastname");
String sex = request.getParameter("sex");
String address = request.getParameter("address");
String county = request.getParameter("county");
String tell = request.getParameter("tell");
String email = request.getParameter("email");
String pic = request.getParameter("pic");
String sport[] = request.getParameterValues("sport");
2.
server Web
Browser
Code
<table>
<tr>
<tdalign="center"colspan="2"><imgalt=""src="images/<%=pic%
>"width="60"height="60"></td>
</tr>
<tr>
<td> </td>
<td><%=idcard%><br></td>
</tr>
<tr>
<tdalign="right"> </td>
<td><%=name%><br></td>
</tr>
<tr>
<tdalign="right"> </td>
<td><%=lastname%><br></td>
</tr>
<tr>
<tdalign="right"> </td>
<td><%if(sex.equals("sex")){%> <%
}else{%> <%}%><br></td>
</tr>
<tr>
<tdalign="right"> </td>
<td><%for(int i=0;i<sport.length;i++){ %>
<%=sport[i] %><%if(i<sport.length-1){ %>, <%}} %>
<br></td>
</tr>
<tr>
<tdalign="right"> </td>
<td><%=address%><br></td>
</tr>
<tr>
<tdalign="right"> </td>
<td><%=county%><br></td>
</tr>
<tr>
<tdalign="right"> </td>
<td><%=tell%><br></td>
</tr>
<tr>
<tdalign="right"> </td>
<td><%=email%><br></td>
</tr>
</table>
1. Run
Run As Run on Server Finish
http://freepowerpoint-
template.blogspot.com/search/label/Templates?updated-
max= T A A B A &max-
results=
http://office.microsoft.com/en-us/templates/template-categories-
FX aspx
http://office.microsoft.com/en-
us/templates/results.aspx?qu=technology&av=zpp#ai:TC
|
https://sites.google.com/site/class technique
http://www.library.cddkorat.com/index.php?option=com_content
&view=article&id= &catid=
---------
&Itemid=
http://www.slideshare.net/dakcom/webprogramming-eclipsejsp
http://www.nectect.or.th
http://www.webthaidd.com/dreamweaver/news.php?id=445
---
http://cannot.info/page?p=1310520034773
http://www.pyayam.com/article/show.php?Category=webpage&
No=67

More Related Content

What's hot

Build Your First Java Jersey JAX-RS REST Web Service in less than 15 Minutes
Build Your First Java Jersey JAX-RS REST Web Service in less than 15 MinutesBuild Your First Java Jersey JAX-RS REST Web Service in less than 15 Minutes
Build Your First Java Jersey JAX-RS REST Web Service in less than 15 MinutesRobert Li
 
Windows Phone 8 - 7 Local Database
Windows Phone 8 - 7 Local DatabaseWindows Phone 8 - 7 Local Database
Windows Phone 8 - 7 Local DatabaseOliver Scheer
 
Flask patterns
Flask patternsFlask patterns
Flask patternsit-people
 
Mongo db rev001.
Mongo db rev001.Mongo db rev001.
Mongo db rev001.Rich Helton
 
Ten mistakes functional java
Ten mistakes functional javaTen mistakes functional java
Ten mistakes functional javaBrian Vermeer
 
Box connector Mule ESB Integration
Box connector Mule ESB IntegrationBox connector Mule ESB Integration
Box connector Mule ESB IntegrationAnilKumar Etagowni
 
Request dispatching in servlet
Request dispatching in servletRequest dispatching in servlet
Request dispatching in servletvikram singh
 
Javascript tutorial RESTful APIs for Free
Javascript tutorial RESTful APIs for FreeJavascript tutorial RESTful APIs for Free
Javascript tutorial RESTful APIs for FreeEueung Mulyana
 
Android ui layouts ,cntls,webservices examples codes
Android ui layouts ,cntls,webservices examples codesAndroid ui layouts ,cntls,webservices examples codes
Android ui layouts ,cntls,webservices examples codesAravindharamanan S
 
Database By Salman Mushtaq
Database By Salman MushtaqDatabase By Salman Mushtaq
Database By Salman MushtaqSalman Mushtaq
 

What's hot (19)

Build Your First Java Jersey JAX-RS REST Web Service in less than 15 Minutes
Build Your First Java Jersey JAX-RS REST Web Service in less than 15 MinutesBuild Your First Java Jersey JAX-RS REST Web Service in less than 15 Minutes
Build Your First Java Jersey JAX-RS REST Web Service in less than 15 Minutes
 
Windows Phone 8 - 7 Local Database
Windows Phone 8 - 7 Local DatabaseWindows Phone 8 - 7 Local Database
Windows Phone 8 - 7 Local Database
 
Flask patterns
Flask patternsFlask patterns
Flask patterns
 
Mongo db rev001.
Mongo db rev001.Mongo db rev001.
Mongo db rev001.
 
JSP Error handling
JSP Error handlingJSP Error handling
JSP Error handling
 
Glassfish JEE Server Administration - Clustering
Glassfish JEE Server Administration - ClusteringGlassfish JEE Server Administration - Clustering
Glassfish JEE Server Administration - Clustering
 
PSICQUIC tutorial
PSICQUIC tutorialPSICQUIC tutorial
PSICQUIC tutorial
 
Lecture14
Lecture14Lecture14
Lecture14
 
Acs sim errorlog
Acs sim errorlogAcs sim errorlog
Acs sim errorlog
 
Ten mistakes functional java
Ten mistakes functional javaTen mistakes functional java
Ten mistakes functional java
 
Box connector Mule ESB Integration
Box connector Mule ESB IntegrationBox connector Mule ESB Integration
Box connector Mule ESB Integration
 
Flask Basics
Flask BasicsFlask Basics
Flask Basics
 
Servlet life cycle
Servlet life cycleServlet life cycle
Servlet life cycle
 
Request dispatching in servlet
Request dispatching in servletRequest dispatching in servlet
Request dispatching in servlet
 
Dill
DillDill
Dill
 
Javascript tutorial RESTful APIs for Free
Javascript tutorial RESTful APIs for FreeJavascript tutorial RESTful APIs for Free
Javascript tutorial RESTful APIs for Free
 
Android ui layouts ,cntls,webservices examples codes
Android ui layouts ,cntls,webservices examples codesAndroid ui layouts ,cntls,webservices examples codes
Android ui layouts ,cntls,webservices examples codes
 
Servlet Filter
Servlet FilterServlet Filter
Servlet Filter
 
Database By Salman Mushtaq
Database By Salman MushtaqDatabase By Salman Mushtaq
Database By Salman Mushtaq
 

Viewers also liked (8)

Lecture4
Lecture4Lecture4
Lecture4
 
Lecture11
Lecture11Lecture11
Lecture11
 
บทที่3
บทที่3บทที่3
บทที่3
 
บทที่1
บทที่1บทที่1
บทที่1
 
บทที่6 update&delete
บทที่6 update&deleteบทที่6 update&delete
บทที่6 update&delete
 
M61
M61M61
M61
 
Lecture2
Lecture2Lecture2
Lecture2
 
csmju313 L4
csmju313 L4csmju313 L4
csmju313 L4
 

Similar to บทที่1

Sec.1 กล ม 1 เร__องการสร_างแบบฟอร_มและการส_งค_าต_วแปร
Sec.1 กล  ม 1 เร__องการสร_างแบบฟอร_มและการส_งค_าต_วแปรSec.1 กล  ม 1 เร__องการสร_างแบบฟอร_มและการส_งค_าต_วแปร
Sec.1 กล ม 1 เร__องการสร_างแบบฟอร_มและการส_งค_าต_วแปรBongza Naruk
 
The need for speed uk fest
The need for speed uk festThe need for speed uk fest
The need for speed uk festdawoe
 
Umbraco - DUUGFest 17 -The need for speed
Umbraco - DUUGFest 17 -The need for speedUmbraco - DUUGFest 17 -The need for speed
Umbraco - DUUGFest 17 -The need for speeddawoe
 
Twelve ways to make your apps suck less
Twelve ways to make your apps suck lessTwelve ways to make your apps suck less
Twelve ways to make your apps suck lessFons Sonnemans
 
Apache Flink Stream Processing
Apache Flink Stream ProcessingApache Flink Stream Processing
Apache Flink Stream ProcessingSuneel Marthi
 
Oracle Endeca Developer's Guide
Oracle Endeca Developer's GuideOracle Endeca Developer's Guide
Oracle Endeca Developer's GuideKeyur Shah
 
.Net course-in-mumbai-ppt
.Net course-in-mumbai-ppt.Net course-in-mumbai-ppt
.Net course-in-mumbai-pptvibrantuser
 
Asp.net By Durgesh Singh
Asp.net By Durgesh SinghAsp.net By Durgesh Singh
Asp.net By Durgesh Singhimdurgesh
 
websphere cast iron labs
 websphere cast iron labs websphere cast iron labs
websphere cast iron labsAMIT KUMAR
 
자바 웹 개발 시작하기 (1주차 : 웹 어플리케이션 체험 실습)
자바 웹 개발 시작하기 (1주차 : 웹 어플리케이션 체험 실습)자바 웹 개발 시작하기 (1주차 : 웹 어플리케이션 체험 실습)
자바 웹 개발 시작하기 (1주차 : 웹 어플리케이션 체험 실습)DK Lee
 
Scaling asp.net websites to millions of users
Scaling asp.net websites to millions of usersScaling asp.net websites to millions of users
Scaling asp.net websites to millions of usersoazabir
 
Automation anywhere Training Materials
Automation anywhere Training MaterialsAutomation anywhere Training Materials
Automation anywhere Training MaterialsShekar S
 

Similar to บทที่1 (20)

Sec.1 กล ม 1 เร__องการสร_างแบบฟอร_มและการส_งค_าต_วแปร
Sec.1 กล  ม 1 เร__องการสร_างแบบฟอร_มและการส_งค_าต_วแปรSec.1 กล  ม 1 เร__องการสร_างแบบฟอร_มและการส_งค_าต_วแปร
Sec.1 กล ม 1 เร__องการสร_างแบบฟอร_มและการส_งค_าต_วแปร
 
The need for speed uk fest
The need for speed uk festThe need for speed uk fest
The need for speed uk fest
 
Umbraco - DUUGFest 17 -The need for speed
Umbraco - DUUGFest 17 -The need for speedUmbraco - DUUGFest 17 -The need for speed
Umbraco - DUUGFest 17 -The need for speed
 
Tomcat + other things
Tomcat + other thingsTomcat + other things
Tomcat + other things
 
Soap Component
Soap ComponentSoap Component
Soap Component
 
A View about ASP .NET and their objectives
A View about ASP .NET and their objectivesA View about ASP .NET and their objectives
A View about ASP .NET and their objectives
 
Twelve ways to make your apps suck less
Twelve ways to make your apps suck lessTwelve ways to make your apps suck less
Twelve ways to make your apps suck less
 
Ajax workshop
Ajax workshopAjax workshop
Ajax workshop
 
Apache Flink Stream Processing
Apache Flink Stream ProcessingApache Flink Stream Processing
Apache Flink Stream Processing
 
AD102 - Break out of the Box
AD102 - Break out of the BoxAD102 - Break out of the Box
AD102 - Break out of the Box
 
Oracle Endeca Developer's Guide
Oracle Endeca Developer's GuideOracle Endeca Developer's Guide
Oracle Endeca Developer's Guide
 
How to use soap component
How to use soap componentHow to use soap component
How to use soap component
 
Keyword driven testing in qtp
Keyword driven testing in qtpKeyword driven testing in qtp
Keyword driven testing in qtp
 
.Net course-in-mumbai-ppt
.Net course-in-mumbai-ppt.Net course-in-mumbai-ppt
.Net course-in-mumbai-ppt
 
Asp.net By Durgesh Singh
Asp.net By Durgesh SinghAsp.net By Durgesh Singh
Asp.net By Durgesh Singh
 
websphere cast iron labs
 websphere cast iron labs websphere cast iron labs
websphere cast iron labs
 
Web based development
Web based developmentWeb based development
Web based development
 
자바 웹 개발 시작하기 (1주차 : 웹 어플리케이션 체험 실습)
자바 웹 개발 시작하기 (1주차 : 웹 어플리케이션 체험 실습)자바 웹 개발 시작하기 (1주차 : 웹 어플리케이션 체험 실습)
자바 웹 개발 시작하기 (1주차 : 웹 어플리케이션 체험 실습)
 
Scaling asp.net websites to millions of users
Scaling asp.net websites to millions of usersScaling asp.net websites to millions of users
Scaling asp.net websites to millions of users
 
Automation anywhere Training Materials
Automation anywhere Training MaterialsAutomation anywhere Training Materials
Automation anywhere Training Materials
 

Recently uploaded

Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...apidays
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
AI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAnitaRaj43
 
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
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Zilliz
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWERMadyBayot
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native ApplicationsWSO2
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Orbitshub
 
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)Samir Dash
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdfSandro Moreira
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 

Recently uploaded (20)

Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
AI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by AnitarajAI in Action: Real World Use Cases by Anitaraj
AI in Action: Real World Use Cases by Anitaraj
 
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
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWEREMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
EMPOWERMENT TECHNOLOGY GRADE 11 QUARTER 2 REVIEWER
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
AI+A11Y 11MAY2024 HYDERBAD GAAD 2024 - HelloA11Y (11 May 2024)
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 

บทที่1