SlideShare a Scribd company logo
1 of 86
Download to read offline
Web	
  Development	
  
Aditya	
  Narayan	
  
CEO,	
  TurnToTech	
  
	
  mobile	
  technology	
  school	
  and	
  
incubator	
  
	
  
Past:	
  2	
  startups,	
  chief	
  architect	
  at	
  
Marvel,	
  head	
  of	
  security	
  at	
  
Starwood	
  
Web	
  Development	
  
1989,	
  CERN	
  
The	
  web	
  server	
  
Tim	
  Berners-­‐Lee	
  
The	
  browser	
  
HTTP	
  
HTML	
  
URL’s	
  
Web	
  Development	
  
How	
  does	
  a	
  web	
  applicaOon	
  
work?	
  
Web	
  Server	
  
HTML Files, JPGs, business logic
1.	
  Type	
  	
  
info.cern.ch/TheProject.html	
  
in	
  the	
  browser	
  
2.	
  Browser	
  
connects	
  to	
  server	
  
named	
  info.cern.ch	
  
3.	
  Browser	
  asks	
  for	
  
a	
  resource	
  called	
  
TheProject.html	
  
5.	
  TheProject.html	
  
	
  is	
  sent	
  back	
  to	
  the	
  
browser	
  
4.	
  TheProject.html	
  
	
  may	
  have	
  links	
  to	
  other	
  websites	
  
Tim Berners-Lee
1989
Domain	
  name	
  
Server	
  
Browser	
  
Login	
  
Database	
  
Secure	
  
Reliable	
  
Graphics	
  
designer	
  
Should	
  
work	
  on	
  
mobile	
  
Fast	
  
Future	
  
proof	
  
Cost	
  
AnalyOcs	
  
Data	
  
Developer	
  
Features	
  
Let’s	
  develop	
  a	
  	
  
web	
  app	
  
APIs	
  
But	
  where’s	
  the	
  recipe?	
  
Business	
  
InformaOon	
  
Technology	
  
Focus:	
  Business	
  Process	
  
Admin	
  
HR	
  
Employee	
  
Admin	
  
AP	
  
Vendors	
  
Focus:	
  Business	
  Process	
  
Outcome:	
  User	
  roles,	
  System	
  features	
  and	
  capabiliOes	
  
Business	
  
Business	
  
InformaOon	
  
Technology	
  
Focus:	
  InformaOon	
  hierarchy,	
  NavigaOon	
  
Focus:	
  InformaOon	
  hierarchy,	
  
NavigaOon	
  
Outcome:	
  Data	
  model,	
  Screen	
  
layout	
  
InformaOon	
  
Business	
  
InformaOon	
  
Technology	
  
Hardware	
  
System	
  So[ware	
  
ApplicaOon	
  So[ware	
  
Hardware	
  
System	
  So[ware	
  
ApplicaOon	
  So[ware	
  
Backend,	
  Frontend,	
  CSS,	
  
HTML,	
  HTTP,	
  Framework,	
  
Ruby	
  on	
  Rails,	
  JavaScript,	
  
Database	
  server,	
  Web	
  
Server	
  …	
  
1.	
  User	
  types	
  	
  
www.webapp.com/index.html	
  	
  	
  
in	
  the	
  browser	
  
2.	
  Browser	
  connects	
  to	
  server	
  named	
  
www.webapp.com	
  
3.	
  Browser	
  asks	
  for	
  a	
  resource	
  called	
  
index.html	
  
5.	
  The	
  final	
  index.html	
  is	
  sent	
  back	
  to	
  
the	
  browser	
  
4.	
  index.html	
  may	
  need	
  some	
  data	
  
from	
  a	
  database	
  server	
  
Browser	
  (Thin	
  client)	
  
Downloads	
  UI	
  code	
  from	
  server	
  and	
  runs	
  it	
  

Web	
  Server	
  
Contains	
  business	
  rules	
  and	
  generates	
  code	
  for	
  the	
  
browser	
  

	
  
Database	
  Server	
  
Holds	
  the	
  data	
  
Database	
  Server	
  
Holds	
  the	
  data	
  
	
  
Web	
  Server	
  
Contains	
  business	
  rules	
  and	
  generates	
  code	
  for	
  
the	
  browser	
  
	
  
Browser	
  (Thin	
  client)	
  
Downloads	
  UI	
  code	
  from	
  server	
  and	
  runs	
  it	
  
Q:	
  How	
  are	
  different	
  browsers	
  
running	
  on	
  different	
  operaOng	
  
systems	
  able	
  to	
  use	
  the	
  same	
  
web	
  app?	
  
A:	
  Standards	
  such	
  as	
  HTML	
  and	
  
HTTP	
  
Code	
  that	
  runs	
  in	
  the	
  
browser	
  is	
  front-­‐end	
  code	
  
HTML,	
  CSS	
  and	
  JavaScript	
  
QuesOon:	
  How	
  are	
  different	
  browsers	
  able	
  to	
  work	
  
with	
  the	
  same	
  web	
  app?	
  	
  
Answer:	
  HTML,	
  CSS	
  and	
  JavaScript	
  happen	
  to	
  be	
  
standards	
  accepted	
  worldwide	
  without	
  excepOon	
  
	
  
HTML	
  will	
  let	
  you	
  write	
  UI	
  code	
  
in	
  without	
  wriOng	
  ‘real’	
  code	
  

<bufon	
  type="bufon">Click	
  Me!</bufon>	
  
	
  
CSS	
  adds	
  ‘personality’	
  
<bufon	
  type="bufon">	
  
Click	
  Me!	
  
</bufon>	
  
<bufon	
  type="bufon”	
  	
  
style="	
  background-­‐color:orange">	
  
Click	
  Me!	
  
</bufon>	
  
Alerts	
  



	
  
Form	
  validaOon	
  
JavaScript	
  
HTML	
  and	
  CSS	
  can	
  make	
  your	
  pages	
  look	
  
nice	
  
	
  
But	
  they	
  don’t	
  make	
  the	
  pages	
  appear	
  
responsive	
  
	
  
JavaScript	
  was	
  created	
  as	
  a	
  simple	
  
language	
  to	
  address	
  this	
  need	
  
Technologies	
  derived	
  from	
  
JavaScript	
  
AJAX	
  
	
  
jquery	
  
	
  
Angular	
  
And	
  code	
  that	
  doesn’t	
  run	
  
in	
  the	
  browser	
  is	
  back-­‐end	
  
code	
  
Typical	
  backend	
  code	
  
runs	
  on	
  the	
  Web	
  
Server	
  and	
  the	
  
Database	
  server	
  
Typical	
  backend	
  code	
  
runs	
  on	
  the	
  Web	
  
Server	
  and	
  the	
  
Database	
  server	
  
RelaOonal	
  Database	
  
Typically,	
  code	
  wrifen	
  in	
  SQL	
  runs	
  on	
  
the	
  database	
  server	
  
And	
  SQL	
  code	
  is	
  all	
  about	
  performing	
  
CRUD	
  operaOons	
  on	
  Data	
  
Create	
  
Read	
  
Update	
  
Delete	
  
Typical	
  backend	
  code	
  
runs	
  on	
  the	
  Web	
  
Server	
  and	
  the	
  
Database	
  server	
  
Web	
  Servers	
  
There	
  are	
  several	
  compeOng	
  
frameworks	
  for	
  running	
  code	
  on	
  Web	
  
Servers	
  
JEE,.NET,	
  Rails,	
  Django,	
  PHP	
  
Web	
  Servers	
  
There	
  are	
  several	
  compeOng	
  
frameworks	
  for	
  running	
  code	
  on	
  Web	
  
Servers	
  
JEE,.NET,	
  Ruby	
  on	
  Rails,	
  Django,	
  PHP	
  
What	
  is	
  a	
  
framework?	
  
Architecture	
  and	
  
standards	
  of	
  the	
  web	
  
constrain	
  the	
  kind	
  of	
  
code	
  you	
  can	
  write.	
  	
  
The	
  general	
  pafern	
  
	
  
receive	
  request	
  from	
  browser	
  
connect	
  to	
  database	
  	
  
generate	
  page	
  
send	
  page	
  to	
  browser	
  
Imagine	
  a	
  web	
  app	
  with	
  
1000	
  pages	
  
receive	
  request	
  from	
  browser	
  
connect	
  to	
  database	
  	
  
generate	
  page	
  
send	
  page	
  to	
  browser	
  
Frameworks	
  do	
  all	
  the	
  
plumbing	
  

You	
  write	
  code	
  specific	
  to	
  
your	
  app	
  	
  
PlaKorm	
   Language	
   Supported	
  by	
  
JEE	
   Java	
   Oracle	
  
.NET	
   C#	
   Microso[	
  
Ruby	
  on	
  Rails	
   Ruby	
   Community	
  
Django	
   Python	
   Community	
  
PHP	
   PHP	
   Community	
  
Backend,	
  Frontend,	
  CSS,	
  
HTML,	
  HTTP,	
  Framework,	
  
Ruby	
  on	
  Rails,	
  JavaScript,	
  
Database	
  server,	
  Web	
  
Server	
  …	
  
How	
  about	
  systems	
  
talking	
  to	
  systems?	
  
XML	
  
JSON	
  
HTTP	
  
iOS	
  
Android	
  
Mobile	
  Plaqorms	
  
Mobile	
  changes	
  the	
  	
  
noOon	
  of	
  front-­‐end	
  and	
  	
  
backend	
  
Just	
  like	
  web,	
  mobile	
  
plaqorms	
  have	
  their	
  
frameworks	
  
A	
  mobile	
  app	
  is	
  self	
  
contained	
  
server	
  only	
  provides	
  data,	
  
not	
  code	
  
XML	
  
JSON	
  
HTTP	
  
ObjecOve-­‐C	
   Java	
  
{Watching=7,	
  Buying=23,	
  Selling=5}	
  
How	
  much	
  so[ware	
  do	
  
we	
  need	
  to	
  build?	
  	
  
	
  
How	
  much	
  can	
  we	
  
license?	
  
Open	
  Source	
  
Development	
  
Agile	
  
Waterfall	
  
TDD	
  
Deployment	
  
Hosted	
  
Public	
  Cloud	
  
Private	
  Cloud	
  
System	
  
Management	
  
A	
  server	
  must	
  be	
  
always	
  on	
  
New	
  Relic,	
  Pingdom	
  
AnalyOcs	
  
Google	
  AnalyOcs	
  
Security	
  and	
  Privacy	
  
Over	
  the	
  wire	
  
At	
  rest	
  
EncrypOon	
  
SSL
Variety	
  of	
  standards	
  
OAuth	
  
New	
  Developments	
  
Web	
  Sockets	
  
HTML5	
  
MongoDB	
  
Neo4j	
  
Cassandra	
  
Web	
  Sockets	
  
HTML5	
  
NoSQL	
  
The	
  web	
  relies	
  on	
  
open	
  standards	
  

More Related Content

What's hot

Difference between-web-designing-and-web-development
Difference between-web-designing-and-web-developmentDifference between-web-designing-and-web-development
Difference between-web-designing-and-web-developmentGlobal Media Insight
 
Web Development and Web Development technologies - Temitayo Fadojutimi
Web Development and Web Development technologies - Temitayo FadojutimiWeb Development and Web Development technologies - Temitayo Fadojutimi
Web Development and Web Development technologies - Temitayo FadojutimiTemitayo Fadojutimi
 
Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1Oleksii Prohonnyi
 
Front-End Web Development
Front-End Web DevelopmentFront-End Web Development
Front-End Web DevelopmentYash Sati
 
Web Designing Presentation
Web Designing PresentationWeb Designing Presentation
Web Designing PresentationRahulSuri30
 
Web development ppt
Web development pptWeb development ppt
Web development pptParasJain222
 
Responsive web design
Responsive web designResponsive web design
Responsive web designRuss Weakley
 
Web Development Ppt
Web Development PptWeb Development Ppt
Web Development PptBruce Tucker
 
ppt of web designing and development
ppt of web designing and developmentppt of web designing and development
ppt of web designing and development47ishu
 
Front End Development | Introduction
Front End Development | IntroductionFront End Development | Introduction
Front End Development | IntroductionJohnTaieb
 
Introduction to web development
Introduction to web developmentIntroduction to web development
Introduction to web developmentMohammed Safwat
 
Web Development In 2018
Web Development In 2018Web Development In 2018
Web Development In 2018Traversy Media
 
Front end web development
Front end web developmentFront end web development
Front end web developmentviveksewa
 
Presentation of web designing
Presentation of web designingPresentation of web designing
Presentation of web designingsreejagiri
 
Internship presentation
Internship presentationInternship presentation
Internship presentationWasim Shemna
 
Introduction of Html/css/js
Introduction of Html/css/jsIntroduction of Html/css/js
Introduction of Html/css/jsKnoldus Inc.
 

What's hot (20)

Difference between-web-designing-and-web-development
Difference between-web-designing-and-web-developmentDifference between-web-designing-and-web-development
Difference between-web-designing-and-web-development
 
Web Development and Web Development technologies - Temitayo Fadojutimi
Web Development and Web Development technologies - Temitayo FadojutimiWeb Development and Web Development technologies - Temitayo Fadojutimi
Web Development and Web Development technologies - Temitayo Fadojutimi
 
Web Development
Web DevelopmentWeb Development
Web Development
 
Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1Front-end development introduction (HTML, CSS). Part 1
Front-end development introduction (HTML, CSS). Part 1
 
Front-End Web Development
Front-End Web DevelopmentFront-End Web Development
Front-End Web Development
 
Web Designing Presentation
Web Designing PresentationWeb Designing Presentation
Web Designing Presentation
 
Web development ppt
Web development pptWeb development ppt
Web development ppt
 
Responsive web design
Responsive web designResponsive web design
Responsive web design
 
Web Development Ppt
Web Development PptWeb Development Ppt
Web Development Ppt
 
ppt of web designing and development
ppt of web designing and developmentppt of web designing and development
ppt of web designing and development
 
Web development
Web developmentWeb development
Web development
 
Front End Development | Introduction
Front End Development | IntroductionFront End Development | Introduction
Front End Development | Introduction
 
Introduction to web development
Introduction to web developmentIntroduction to web development
Introduction to web development
 
Web Designing
Web Designing Web Designing
Web Designing
 
Web Development In 2018
Web Development In 2018Web Development In 2018
Web Development In 2018
 
Front end web development
Front end web developmentFront end web development
Front end web development
 
Presentation of web designing
Presentation of web designingPresentation of web designing
Presentation of web designing
 
Internship presentation
Internship presentationInternship presentation
Internship presentation
 
Introduction of Html/css/js
Introduction of Html/css/jsIntroduction of Html/css/js
Introduction of Html/css/js
 
Javascript
JavascriptJavascript
Javascript
 

Viewers also liked

Web Design & Development Trends Presentation
Web Design & Development Trends PresentationWeb Design & Development Trends Presentation
Web Design & Development Trends PresentationRichard Bowden
 
Tech Interview Job Prep
Tech Interview Job PrepTech Interview Job Prep
Tech Interview Job PrepTurnToTech
 
Web Application Frameworks - Web Technologies (1019888BNR)
Web Application Frameworks - Web Technologies (1019888BNR)Web Application Frameworks - Web Technologies (1019888BNR)
Web Application Frameworks - Web Technologies (1019888BNR)Beat Signer
 
Website Development Process
Website Development ProcessWebsite Development Process
Website Development ProcessHend Al-Khalifa
 
Web application framework
Web application frameworkWeb application framework
Web application frameworkPankaj Chand
 
Embedded System Tools ppt
Embedded System Tools  pptEmbedded System Tools  ppt
Embedded System Tools pptHalai Hansika
 

Viewers also liked (6)

Web Design & Development Trends Presentation
Web Design & Development Trends PresentationWeb Design & Development Trends Presentation
Web Design & Development Trends Presentation
 
Tech Interview Job Prep
Tech Interview Job PrepTech Interview Job Prep
Tech Interview Job Prep
 
Web Application Frameworks - Web Technologies (1019888BNR)
Web Application Frameworks - Web Technologies (1019888BNR)Web Application Frameworks - Web Technologies (1019888BNR)
Web Application Frameworks - Web Technologies (1019888BNR)
 
Website Development Process
Website Development ProcessWebsite Development Process
Website Development Process
 
Web application framework
Web application frameworkWeb application framework
Web application framework
 
Embedded System Tools ppt
Embedded System Tools  pptEmbedded System Tools  ppt
Embedded System Tools ppt
 

Similar to Web Development Presentation

Web Development Today
Web Development TodayWeb Development Today
Web Development Todaybretticus
 
Fundamentals of Web Development For Non-Developers
Fundamentals of Web Development For Non-DevelopersFundamentals of Web Development For Non-Developers
Fundamentals of Web Development For Non-DevelopersLemi Orhan Ergin
 
Making Of PHP Based Web Application
Making Of PHP Based Web ApplicationMaking Of PHP Based Web Application
Making Of PHP Based Web ApplicationSachin Walvekar
 
Application development using Zend Framework
Application development using Zend FrameworkApplication development using Zend Framework
Application development using Zend FrameworkMahmud Ahsan
 
Web Designs Services
Web Designs ServicesWeb Designs Services
Web Designs ServicesNusrat Khanom
 
Best of Microsoft Dev Camp 2015
Best of Microsoft Dev Camp 2015Best of Microsoft Dev Camp 2015
Best of Microsoft Dev Camp 2015Bluegrass Digital
 
webdevelopmentppt-210923044639 (1).pptx
webdevelopmentppt-210923044639 (1).pptxwebdevelopmentppt-210923044639 (1).pptx
webdevelopmentppt-210923044639 (1).pptxlearnEnglish51
 
Web Application Development Fundamentals
Web Application Development FundamentalsWeb Application Development Fundamentals
Web Application Development FundamentalsMohammed Makhlouf
 
Top 10 Node.JS Frameworks To Gear Up Your Web App Development in 2021
Top 10 Node.JS Frameworks To Gear Up Your Web App Development in 2021Top 10 Node.JS Frameworks To Gear Up Your Web App Development in 2021
Top 10 Node.JS Frameworks To Gear Up Your Web App Development in 2021Katy Slemon
 
Node.js and the MEAN Stack Building Full-Stack Web Applications.pdf
Node.js and the MEAN Stack Building Full-Stack Web Applications.pdfNode.js and the MEAN Stack Building Full-Stack Web Applications.pdf
Node.js and the MEAN Stack Building Full-Stack Web Applications.pdflubnayasminsebl
 
Basics of Web Development.pptx
Basics of Web Development.pptxBasics of Web Development.pptx
Basics of Web Development.pptxPalash Sukla Das
 
Web development: Why do we need it ?
Web development: Why do we need it ?Web development: Why do we need it ?
Web development: Why do we need it ?anubhavdoodleblue123
 
Ch10 Hacking Web Servers http://ouo.io/2Bt7X
Ch10 Hacking Web Servers http://ouo.io/2Bt7XCh10 Hacking Web Servers http://ouo.io/2Bt7X
Ch10 Hacking Web Servers http://ouo.io/2Bt7Xphanleson
 
AIR - Framework ( Cairngorm and Parsley )
AIR - Framework ( Cairngorm and Parsley )AIR - Framework ( Cairngorm and Parsley )
AIR - Framework ( Cairngorm and Parsley )senthil0809
 
Syllabus for Technical courses
Syllabus for Technical coursesSyllabus for Technical courses
Syllabus for Technical coursesMontek1Learning
 
Getting started with dotnet core Web APIs
Getting started with dotnet core Web APIsGetting started with dotnet core Web APIs
Getting started with dotnet core Web APIsKnoldus Inc.
 

Similar to Web Development Presentation (20)

Web Development Today
Web Development TodayWeb Development Today
Web Development Today
 
Fundamentals of Web Development For Non-Developers
Fundamentals of Web Development For Non-DevelopersFundamentals of Web Development For Non-Developers
Fundamentals of Web Development For Non-Developers
 
Making Of PHP Based Web Application
Making Of PHP Based Web ApplicationMaking Of PHP Based Web Application
Making Of PHP Based Web Application
 
Application development using Zend Framework
Application development using Zend FrameworkApplication development using Zend Framework
Application development using Zend Framework
 
Web Designs Services
Web Designs ServicesWeb Designs Services
Web Designs Services
 
Best of Microsoft Dev Camp 2015
Best of Microsoft Dev Camp 2015Best of Microsoft Dev Camp 2015
Best of Microsoft Dev Camp 2015
 
webdevelopmentppt-210923044639 (1).pptx
webdevelopmentppt-210923044639 (1).pptxwebdevelopmentppt-210923044639 (1).pptx
webdevelopmentppt-210923044639 (1).pptx
 
php
phpphp
php
 
Web Application Development Fundamentals
Web Application Development FundamentalsWeb Application Development Fundamentals
Web Application Development Fundamentals
 
Top 10 Node.JS Frameworks To Gear Up Your Web App Development in 2021
Top 10 Node.JS Frameworks To Gear Up Your Web App Development in 2021Top 10 Node.JS Frameworks To Gear Up Your Web App Development in 2021
Top 10 Node.JS Frameworks To Gear Up Your Web App Development in 2021
 
CODE IGNITER
CODE IGNITERCODE IGNITER
CODE IGNITER
 
Node.js and the MEAN Stack Building Full-Stack Web Applications.pdf
Node.js and the MEAN Stack Building Full-Stack Web Applications.pdfNode.js and the MEAN Stack Building Full-Stack Web Applications.pdf
Node.js and the MEAN Stack Building Full-Stack Web Applications.pdf
 
Introduction To CodeIgniter
Introduction To CodeIgniterIntroduction To CodeIgniter
Introduction To CodeIgniter
 
Basics of Web Development.pptx
Basics of Web Development.pptxBasics of Web Development.pptx
Basics of Web Development.pptx
 
Web development: Why do we need it ?
Web development: Why do we need it ?Web development: Why do we need it ?
Web development: Why do we need it ?
 
Ch10 Hacking Web Servers http://ouo.io/2Bt7X
Ch10 Hacking Web Servers http://ouo.io/2Bt7XCh10 Hacking Web Servers http://ouo.io/2Bt7X
Ch10 Hacking Web Servers http://ouo.io/2Bt7X
 
AIR - Framework ( Cairngorm and Parsley )
AIR - Framework ( Cairngorm and Parsley )AIR - Framework ( Cairngorm and Parsley )
AIR - Framework ( Cairngorm and Parsley )
 
Asp
AspAsp
Asp
 
Syllabus for Technical courses
Syllabus for Technical coursesSyllabus for Technical courses
Syllabus for Technical courses
 
Getting started with dotnet core Web APIs
Getting started with dotnet core Web APIsGetting started with dotnet core Web APIs
Getting started with dotnet core Web APIs
 

More from TurnToTech

Why Mobile is driving eCommerce
Why Mobile is driving eCommerceWhy Mobile is driving eCommerce
Why Mobile is driving eCommerceTurnToTech
 
Beginning iOS Development with Swift
Beginning iOS Development with SwiftBeginning iOS Development with Swift
Beginning iOS Development with SwiftTurnToTech
 
Strings and common operations
Strings and common operationsStrings and common operations
Strings and common operationsTurnToTech
 
Pass by value and pass by reference
Pass by value and pass by reference Pass by value and pass by reference
Pass by value and pass by reference TurnToTech
 
What's new in iOS 10 for developers?
What's new in iOS 10 for developers?What's new in iOS 10 for developers?
What's new in iOS 10 for developers?TurnToTech
 

More from TurnToTech (7)

Why Mobile is driving eCommerce
Why Mobile is driving eCommerceWhy Mobile is driving eCommerce
Why Mobile is driving eCommerce
 
Beginning iOS Development with Swift
Beginning iOS Development with SwiftBeginning iOS Development with Swift
Beginning iOS Development with Swift
 
noSQL
noSQLnoSQL
noSQL
 
Strings and common operations
Strings and common operationsStrings and common operations
Strings and common operations
 
Pass by value and pass by reference
Pass by value and pass by reference Pass by value and pass by reference
Pass by value and pass by reference
 
Numbers
NumbersNumbers
Numbers
 
What's new in iOS 10 for developers?
What's new in iOS 10 for developers?What's new in iOS 10 for developers?
What's new in iOS 10 for developers?
 

Recently uploaded

My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
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
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDGMarianaLemus7
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
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
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
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
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 

Recently uploaded (20)

My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
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
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
APIForce Zurich 5 April Automation LPDG
APIForce Zurich 5 April  Automation LPDGAPIForce Zurich 5 April  Automation LPDG
APIForce Zurich 5 April Automation LPDG
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
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
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
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
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 

Web Development Presentation