SlideShare a Scribd company logo
Our Sponsors and Partners
GDSC DYPCOE Welcomes you
all in Backend Development
Bootcamp!
Google Developer Student Clubs
Google Developer Student Clubs (GDSC) are community groups for college
and university students interested in Google developer technologies.
Students from all undergraduate or graduate programs with an interest in
growing as a developer are welcome. By joining a GDSC, students grow their
knowledge in a peer-to-peer learning environment and build solutions for
local businesses and their community.
What is GDSC?
Past Events of 2021-22
Android Study
Jams 2021-22
Android Study Jams Submissions
Total App Submissions: 40
Winner Apps: 3
Special Category Winners: 3
Special Category #3 : UX & Simplicity
Special Category #2 : Innovative Idea
Special Category #1 : UI & Use of Online DB
Rank #3
Rank #2
Rank #1
Backend Bootcamp
What you will learn?
●JavaScript Refresher
●Node JS
●Express JS
●Mongo DB
●Hands-on Idea Box
https://ideabox-gdsc.herokuapp.com/
Bhushan Kale
Intro to JavaScript
What is JS?
Did you know :
●Over 97% of websites use JavaScript on the
client side for web page behavior
●JavaScript can be used in both the front-end
and back-end of web development
Why to learn JavaScript?
●Dynamic Websites
●Games
●Frameworks
●Versatile
●In short, almost everything😱
Ise ghar kyu kehte ho,
Jilha kyu nahi ghoshit kar dete
What points we will cover
●Data types
●Variables
●Conditional Statements
●Objects, Arrays
●JSON, import/export syntax
●Functions
●Operators
Variables
Const
Let
Var
let name;
var name = “GDSC”; name = “GDSC”;
let name= “GDSC”;
var let const
var name;
// undefined
// “GDSC”
// undefined
// “GDSC”
// “GDSC”
const name;
name = “GDSC”;
const name = “GDSC”;
// error
// “GDSC”
// “GDSC”
❌
❌
You missed a
semicolon;
JS: Don’t worry!
Conditional Statements
if (condition) {
// block of code to be executed if the
condition is true
} else {
// block of code to be executed if the
condition is false
}
Objects in JS:
●Collection of key : value pairs
●Access and modify specific values
let student = {
firstName:”Rahul”,
rollNo : 99,
isPresent : true,
}
console.log(student.isPresent)
// true
●An array can hold many values under a
single name, and you can access the values
by referring to an index number
Arrays in JS
let studentDetails = [
{
firstName:”Rahul”,
rollNo : 99,
isPresent : true,
},
{
firstName:”Preeti”,
rollNo : 100,
isPresent : false,
},
]
// output
JavaScript
*JavaScript *Programmer
Mrunmayi Shirke
Intro to JavaScript-2
condition
? statement1
: statement 2
Ternary Operators
Comparison
5 == “5”
false
function MyFunc() {
console.log(“It works..”);
}
MyFunc();
Functions
Function keyword Function name
Function call
Arrow Functions
Function name = () => {
. . .
}
●Syntactical format of
functions
Callback Functions
●Passing function as parameter
to another function.
●Also known as First Class
Citizens
const arr = [1, 2, 3, 4, 5];
const result = arr.map(ele => ele * 2);
console.log(result);
// 2, 4, 6, 8, 10
Map Method
Rahul after learning JS
Om Gawande
Node JS Intro, and
Folder structure
NodeJs
●Server-side platform
●Runtime environment
●Event driven
●Non-blocking I/O model
Folder Structure
Node Package Manager
●Nodemon
●Express
Mere Paas Authentication Token Hai
Pranav Yeole
Server & REST API
Let’s explore Backend
Learn about – NodeJS, Express & REST API
● What is NodeJS?
● What’s a Backend & Why use it?
● Setting up Server in Node
● Express & other JavaScript frameworks
● REST API & Request Response cycle
What is node.js & why is it so
popular?
“Node.js is an asynchronous event-driven JavaScript
runtime to build scalable network applications.”
What is a backend?
What does it do?
“The stuff that makes a website function.”
●Backend provides an interface to interact with data &
integrate functionalities like authentication, payments etc.
What is localhost? How to
setup a server with node.js
●Localhost is the hostname or the computer that is
currently in use to run a program.
What is express.js & other
javaScript frameworks used
with node?
“Express is a routing and middleware web
framework that has minimal functionality of its
own.”
What is mongoose?
Why use it?
“Elegant mongodb object modelling for
node.js.”
What is REST API & request
response objects?
REST API conventions & Http Verbs
Request Object – Headers | Body | Query | Params
What are Headers?
●Headers provide information about the request context, so
that the server can tailor the response.
headers: {
Content-type: "application/json",
Accept: "application/json",
Authorization: "Bearer
hVmYq3t6w9z$CcQfTjWnZr4u" }
Example -
Request object & attributes
Request Body
● Query strings are Key-Value pairs attached to
the end of a URL to request dynamic
information from the server.
● Params contains parsed route parameters
derived from named sections of the URL.
Query & Params
● Request body contains information that client
sends to the api.
What are Status Codes?
●Status Codes alerts the client to information about
the success of the operation.
https://developer.mozilla.org/en-
US/docs/Web/HTTP/Status
What CORS policy? Why it is enforced?
●CORS stands for Cross-Origin Resource Sharing. It
allows you to make requests from one website to
another website in the browser.
●This is normally prohibited by another browser
policy called the Same-Origin Policy (SOP)
Response Body
●Response body contains information that the server sends
back.
const admin = await Admin.findOne({ email });
if (!admin) {
return res.status(401).json({ msg: "admin not found"
});
}
Example -
Middleware & Error Handling
● Middlewares are functions that execute during the request to
server and have access to the request and response objects.
What is Authentication? Why
is it used?
●Authentication is the process of verifying a user’s identity
by obtaining credentials and authorizing the user to
access certain resources on the server.
Thanks for your time & Patience
<>Let’s code together 🚀</>
NOW IF YOU’RE READY
Database
Why?
●Because variables are NOT Permanent
●A database is a systematic collection of data. They
support electronic storage and manipulation of data.
Databases make data management easy.
Variable sun ke Permanent
samjhe kya?
TEMPORARYhai mai!!!!
My Website without
Database
My Website after using
Database
Mongo Atlas is a Cloud Database, We will host our
Database on Mongo Atlas
Because,
बादल
Important ह
ै
Now comes the CONNECTION
Connecting Users….
Bass….. ho gaya!!!!
Connected Users….
Jaise har event,
Online nahi hota
Jaise har club,
GDSC nahi hota!!!
Waise hi
Har Database me,
Table nahi hota
MySQL
Tables
MongoDB
Collection
Let’s deploy our application🚀
https://dashboard.heroku.com/
https://app.netlify.com/
Thank you
Hope you’ll found this event
interesting!
If you have any doubts feel
free to ask!

More Related Content

What's hot

Suggest.js
Suggest.jsSuggest.js
Suggest.js
Mohd Saeed
 
Naga Srinivas
Naga SrinivasNaga Srinivas
Internet and Web Technology (CLASS-14) [JSP] | NIC/NIELIT Web Technology
Internet and Web Technology (CLASS-14) [JSP] | NIC/NIELIT Web Technology Internet and Web Technology (CLASS-14) [JSP] | NIC/NIELIT Web Technology
Internet and Web Technology (CLASS-14) [JSP] | NIC/NIELIT Web Technology
Ayes Chinmay
 
Jdbc
JdbcJdbc
Jdbc
Ishucs
 
From User Action to Framework Reaction
From User Action to Framework ReactionFrom User Action to Framework Reaction
From User Action to Framework Reaction
jbandi
 
Web components
Web componentsWeb components
Web components
Mohd Saeed
 
JavaScript Jump Start 20220214
JavaScript Jump Start 20220214JavaScript Jump Start 20220214
JavaScript Jump Start 20220214
Haim Michael
 
Internet and Web Technology (CLASS-9) [React.js] | NIC/NIELIT Web Technology
Internet and Web Technology (CLASS-9) [React.js] | NIC/NIELIT Web TechnologyInternet and Web Technology (CLASS-9) [React.js] | NIC/NIELIT Web Technology
Internet and Web Technology (CLASS-9) [React.js] | NIC/NIELIT Web Technology
Ayes Chinmay
 
How my team is applying JS framework for PHP projects.
How my team is applying JS framework for PHP projects.How my team is applying JS framework for PHP projects.
How my team is applying JS framework for PHP projects.
Damon Hung Tran
 
Wt unit 5 client &amp; server side framework
Wt unit 5 client &amp; server side frameworkWt unit 5 client &amp; server side framework
Wt unit 5 client &amp; server side framework
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
J2EE jsp_03
J2EE jsp_03J2EE jsp_03
J2EE jsp_03
Biswabrata Banerjee
 
Java script session 3
Java script session 3Java script session 3
Java script session 3
Saif Ullah Dar
 
Ng init | EPI Sousse
Ng init | EPI SousseNg init | EPI Sousse
Ng init | EPI Sousse
Hamdi Hmidi
 
Wt unit 2 ppts client side technology
Wt unit 2 ppts client side technologyWt unit 2 ppts client side technology
Wt unit 2 ppts client side technology
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Introduction to java_script
Introduction to java_scriptIntroduction to java_script
Introduction to java_script
Basavaraj Hampali
 
JAVA SCRIPT
JAVA SCRIPTJAVA SCRIPT
JAVA SCRIPT
Go4Guru
 
Real World Single Page App - A Knockout Case Study
Real World Single Page App - A Knockout Case StudyReal World Single Page App - A Knockout Case Study
Real World Single Page App - A Knockout Case Study
housecor
 
Introduction to Knockout Js
Introduction to Knockout JsIntroduction to Knockout Js
Introduction to Knockout Js
Knoldus Inc.
 
Jsp session implicit object
Jsp session implicit objectJsp session implicit object
Jsp session implicit object
chauhankapil
 

What's hot (19)

Suggest.js
Suggest.jsSuggest.js
Suggest.js
 
Naga Srinivas
Naga SrinivasNaga Srinivas
Naga Srinivas
 
Internet and Web Technology (CLASS-14) [JSP] | NIC/NIELIT Web Technology
Internet and Web Technology (CLASS-14) [JSP] | NIC/NIELIT Web Technology Internet and Web Technology (CLASS-14) [JSP] | NIC/NIELIT Web Technology
Internet and Web Technology (CLASS-14) [JSP] | NIC/NIELIT Web Technology
 
Jdbc
JdbcJdbc
Jdbc
 
From User Action to Framework Reaction
From User Action to Framework ReactionFrom User Action to Framework Reaction
From User Action to Framework Reaction
 
Web components
Web componentsWeb components
Web components
 
JavaScript Jump Start 20220214
JavaScript Jump Start 20220214JavaScript Jump Start 20220214
JavaScript Jump Start 20220214
 
Internet and Web Technology (CLASS-9) [React.js] | NIC/NIELIT Web Technology
Internet and Web Technology (CLASS-9) [React.js] | NIC/NIELIT Web TechnologyInternet and Web Technology (CLASS-9) [React.js] | NIC/NIELIT Web Technology
Internet and Web Technology (CLASS-9) [React.js] | NIC/NIELIT Web Technology
 
How my team is applying JS framework for PHP projects.
How my team is applying JS framework for PHP projects.How my team is applying JS framework for PHP projects.
How my team is applying JS framework for PHP projects.
 
Wt unit 5 client &amp; server side framework
Wt unit 5 client &amp; server side frameworkWt unit 5 client &amp; server side framework
Wt unit 5 client &amp; server side framework
 
J2EE jsp_03
J2EE jsp_03J2EE jsp_03
J2EE jsp_03
 
Java script session 3
Java script session 3Java script session 3
Java script session 3
 
Ng init | EPI Sousse
Ng init | EPI SousseNg init | EPI Sousse
Ng init | EPI Sousse
 
Wt unit 2 ppts client side technology
Wt unit 2 ppts client side technologyWt unit 2 ppts client side technology
Wt unit 2 ppts client side technology
 
Introduction to java_script
Introduction to java_scriptIntroduction to java_script
Introduction to java_script
 
JAVA SCRIPT
JAVA SCRIPTJAVA SCRIPT
JAVA SCRIPT
 
Real World Single Page App - A Knockout Case Study
Real World Single Page App - A Knockout Case StudyReal World Single Page App - A Knockout Case Study
Real World Single Page App - A Knockout Case Study
 
Introduction to Knockout Js
Introduction to Knockout JsIntroduction to Knockout Js
Introduction to Knockout Js
 
Jsp session implicit object
Jsp session implicit objectJsp session implicit object
Jsp session implicit object
 

Similar to GDSC Backend Bootcamp.pptx

Switch to Backend 2023
Switch to Backend 2023Switch to Backend 2023
Backend Development Bootcamp - Node [Online & Offline] In Bangla
Backend Development Bootcamp - Node [Online & Offline] In BanglaBackend Development Bootcamp - Node [Online & Offline] In Bangla
Backend Development Bootcamp - Node [Online & Offline] In Bangla
Stack Learner
 
HARI 1.8 RESUME
HARI 1.8 RESUMEHARI 1.8 RESUME
HARI 1.8 RESUME
HARI KISHORE REDDY MARIDI
 
Abdulla Resume
Abdulla ResumeAbdulla Resume
Abdulla Resume
Shaik Abdulla
 
Grails 101
Grails 101Grails 101
Grails 101
David Jacobs
 
Internship softwaretraining@ijse
Internship softwaretraining@ijseInternship softwaretraining@ijse
Internship softwaretraining@ijse
Jinadi Rashmika
 
JavaScript Interview Questions with Answers
JavaScript Interview Questions with AnswersJavaScript Interview Questions with Answers
JavaScript Interview Questions with Answers
AK Deep Knowledge
 
Top 50 Node.js Interview Questions and Answers | Edureka
Top 50 Node.js Interview Questions and Answers | EdurekaTop 50 Node.js Interview Questions and Answers | Edureka
Top 50 Node.js Interview Questions and Answers | Edureka
Edureka!
 
MongoDB Days Silicon Valley: Winning the Dreamforce Hackathon with MongoDB
MongoDB Days Silicon Valley: Winning the Dreamforce Hackathon with MongoDBMongoDB Days Silicon Valley: Winning the Dreamforce Hackathon with MongoDB
MongoDB Days Silicon Valley: Winning the Dreamforce Hackathon with MongoDB
MongoDB
 
dinesh_7.0_years_exp_in_java
dinesh_7.0_years_exp_in_javadinesh_7.0_years_exp_in_java
dinesh_7.0_years_exp_in_java
Dinesh Rajput
 
Revolutionizing the Data Abstraction Layer with IBM Optim pureQuery and DB2
Revolutionizing the Data Abstraction Layer with IBM Optim pureQuery and DB2Revolutionizing the Data Abstraction Layer with IBM Optim pureQuery and DB2
Revolutionizing the Data Abstraction Layer with IBM Optim pureQuery and DB2
Vladimir Bacvanski, PhD
 
KiranGara_JEE_7Yrs
KiranGara_JEE_7YrsKiranGara_JEE_7Yrs
KiranGara_JEE_7Yrs
Kiran Gara
 
API
APIAPI
JSFest 2019: Technology agnostic microservices at SPA frontend
JSFest 2019: Technology agnostic microservices at SPA frontendJSFest 2019: Technology agnostic microservices at SPA frontend
JSFest 2019: Technology agnostic microservices at SPA frontend
Vlad Fedosov
 
ResumeWithPassport
ResumeWithPassportResumeWithPassport
ResumeWithPassport
Sandeep Mukherji
 
Beginning MEAN Stack
Beginning MEAN StackBeginning MEAN Stack
Beginning MEAN Stack
Rob Davarnia
 
Resume
ResumeResume
(M) brochure full stack development learning path
(M) brochure full stack development learning path(M) brochure full stack development learning path
(M) brochure full stack development learning path
NirupamNishant2
 
ghanshyam_java_j2ee
ghanshyam_java_j2eeghanshyam_java_j2ee
ghanshyam_java_j2ee
ghanshyam sharma
 
RahulBio_Exp_JAVA14
RahulBio_Exp_JAVA14RahulBio_Exp_JAVA14
RahulBio_Exp_JAVA14
candy partner
 

Similar to GDSC Backend Bootcamp.pptx (20)

Switch to Backend 2023
Switch to Backend 2023Switch to Backend 2023
Switch to Backend 2023
 
Backend Development Bootcamp - Node [Online & Offline] In Bangla
Backend Development Bootcamp - Node [Online & Offline] In BanglaBackend Development Bootcamp - Node [Online & Offline] In Bangla
Backend Development Bootcamp - Node [Online & Offline] In Bangla
 
HARI 1.8 RESUME
HARI 1.8 RESUMEHARI 1.8 RESUME
HARI 1.8 RESUME
 
Abdulla Resume
Abdulla ResumeAbdulla Resume
Abdulla Resume
 
Grails 101
Grails 101Grails 101
Grails 101
 
Internship softwaretraining@ijse
Internship softwaretraining@ijseInternship softwaretraining@ijse
Internship softwaretraining@ijse
 
JavaScript Interview Questions with Answers
JavaScript Interview Questions with AnswersJavaScript Interview Questions with Answers
JavaScript Interview Questions with Answers
 
Top 50 Node.js Interview Questions and Answers | Edureka
Top 50 Node.js Interview Questions and Answers | EdurekaTop 50 Node.js Interview Questions and Answers | Edureka
Top 50 Node.js Interview Questions and Answers | Edureka
 
MongoDB Days Silicon Valley: Winning the Dreamforce Hackathon with MongoDB
MongoDB Days Silicon Valley: Winning the Dreamforce Hackathon with MongoDBMongoDB Days Silicon Valley: Winning the Dreamforce Hackathon with MongoDB
MongoDB Days Silicon Valley: Winning the Dreamforce Hackathon with MongoDB
 
dinesh_7.0_years_exp_in_java
dinesh_7.0_years_exp_in_javadinesh_7.0_years_exp_in_java
dinesh_7.0_years_exp_in_java
 
Revolutionizing the Data Abstraction Layer with IBM Optim pureQuery and DB2
Revolutionizing the Data Abstraction Layer with IBM Optim pureQuery and DB2Revolutionizing the Data Abstraction Layer with IBM Optim pureQuery and DB2
Revolutionizing the Data Abstraction Layer with IBM Optim pureQuery and DB2
 
KiranGara_JEE_7Yrs
KiranGara_JEE_7YrsKiranGara_JEE_7Yrs
KiranGara_JEE_7Yrs
 
API
APIAPI
API
 
JSFest 2019: Technology agnostic microservices at SPA frontend
JSFest 2019: Technology agnostic microservices at SPA frontendJSFest 2019: Technology agnostic microservices at SPA frontend
JSFest 2019: Technology agnostic microservices at SPA frontend
 
ResumeWithPassport
ResumeWithPassportResumeWithPassport
ResumeWithPassport
 
Beginning MEAN Stack
Beginning MEAN StackBeginning MEAN Stack
Beginning MEAN Stack
 
Resume
ResumeResume
Resume
 
(M) brochure full stack development learning path
(M) brochure full stack development learning path(M) brochure full stack development learning path
(M) brochure full stack development learning path
 
ghanshyam_java_j2ee
ghanshyam_java_j2eeghanshyam_java_j2ee
ghanshyam_java_j2ee
 
RahulBio_Exp_JAVA14
RahulBio_Exp_JAVA14RahulBio_Exp_JAVA14
RahulBio_Exp_JAVA14
 

Recently uploaded

Hand Rolled Applicative User Validation Code Kata
Hand Rolled Applicative User ValidationCode KataHand Rolled Applicative User ValidationCode Kata
Hand Rolled Applicative User Validation Code Kata
Philip Schwarz
 
How Can Hiring A Mobile App Development Company Help Your Business Grow?
How Can Hiring A Mobile App Development Company Help Your Business Grow?How Can Hiring A Mobile App Development Company Help Your Business Grow?
How Can Hiring A Mobile App Development Company Help Your Business Grow?
ToXSL Technologies
 
Mobile app Development Services | Drona Infotech
Mobile app Development Services  | Drona InfotechMobile app Development Services  | Drona Infotech
Mobile app Development Services | Drona Infotech
Drona Infotech
 
SQL Accounting Software Brochure Malaysia
SQL Accounting Software Brochure MalaysiaSQL Accounting Software Brochure Malaysia
SQL Accounting Software Brochure Malaysia
GohKiangHock
 
Malibou Pitch Deck For Its €3M Seed Round
Malibou Pitch Deck For Its €3M Seed RoundMalibou Pitch Deck For Its €3M Seed Round
Malibou Pitch Deck For Its €3M Seed Round
sjcobrien
 
UI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
UI5con 2024 - Keynote: Latest News about UI5 and it’s EcosystemUI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
UI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
Peter Muessig
 
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
mz5nrf0n
 
一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理
dakas1
 
8 Best Automated Android App Testing Tool and Framework in 2024.pdf
8 Best Automated Android App Testing Tool and Framework in 2024.pdf8 Best Automated Android App Testing Tool and Framework in 2024.pdf
8 Best Automated Android App Testing Tool and Framework in 2024.pdf
kalichargn70th171
 
Requirement Traceability in Xen Functional Safety
Requirement Traceability in Xen Functional SafetyRequirement Traceability in Xen Functional Safety
Requirement Traceability in Xen Functional Safety
Ayan Halder
 
Top 9 Trends in Cybersecurity for 2024.pptx
Top 9 Trends in Cybersecurity for 2024.pptxTop 9 Trends in Cybersecurity for 2024.pptx
Top 9 Trends in Cybersecurity for 2024.pptx
devvsandy
 
socradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdfsocradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdf
SOCRadar
 
Energy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina JonuziEnergy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina Jonuzi
Green Software Development
 
Enums On Steroids - let's look at sealed classes !
Enums On Steroids - let's look at sealed classes !Enums On Steroids - let's look at sealed classes !
Enums On Steroids - let's look at sealed classes !
Marcin Chrost
 
316895207-SAP-Oil-and-Gas-Downstream-Training.pptx
316895207-SAP-Oil-and-Gas-Downstream-Training.pptx316895207-SAP-Oil-and-Gas-Downstream-Training.pptx
316895207-SAP-Oil-and-Gas-Downstream-Training.pptx
ssuserad3af4
 
Artificia Intellicence and XPath Extension Functions
Artificia Intellicence and XPath Extension FunctionsArtificia Intellicence and XPath Extension Functions
Artificia Intellicence and XPath Extension Functions
Octavian Nadolu
 
Using Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query PerformanceUsing Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query Performance
Grant Fritchey
 
Webinar On-Demand: Using Flutter for Embedded
Webinar On-Demand: Using Flutter for EmbeddedWebinar On-Demand: Using Flutter for Embedded
Webinar On-Demand: Using Flutter for Embedded
ICS
 
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Łukasz Chruściel
 
What next after learning python programming basics
What next after learning python programming basicsWhat next after learning python programming basics
What next after learning python programming basics
Rakesh Kumar R
 

Recently uploaded (20)

Hand Rolled Applicative User Validation Code Kata
Hand Rolled Applicative User ValidationCode KataHand Rolled Applicative User ValidationCode Kata
Hand Rolled Applicative User Validation Code Kata
 
How Can Hiring A Mobile App Development Company Help Your Business Grow?
How Can Hiring A Mobile App Development Company Help Your Business Grow?How Can Hiring A Mobile App Development Company Help Your Business Grow?
How Can Hiring A Mobile App Development Company Help Your Business Grow?
 
Mobile app Development Services | Drona Infotech
Mobile app Development Services  | Drona InfotechMobile app Development Services  | Drona Infotech
Mobile app Development Services | Drona Infotech
 
SQL Accounting Software Brochure Malaysia
SQL Accounting Software Brochure MalaysiaSQL Accounting Software Brochure Malaysia
SQL Accounting Software Brochure Malaysia
 
Malibou Pitch Deck For Its €3M Seed Round
Malibou Pitch Deck For Its €3M Seed RoundMalibou Pitch Deck For Its €3M Seed Round
Malibou Pitch Deck For Its €3M Seed Round
 
UI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
UI5con 2024 - Keynote: Latest News about UI5 and it’s EcosystemUI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
UI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
 
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
原版定制美国纽约州立大学奥尔巴尼分校毕业证学位证书原版一模一样
 
一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理
 
8 Best Automated Android App Testing Tool and Framework in 2024.pdf
8 Best Automated Android App Testing Tool and Framework in 2024.pdf8 Best Automated Android App Testing Tool and Framework in 2024.pdf
8 Best Automated Android App Testing Tool and Framework in 2024.pdf
 
Requirement Traceability in Xen Functional Safety
Requirement Traceability in Xen Functional SafetyRequirement Traceability in Xen Functional Safety
Requirement Traceability in Xen Functional Safety
 
Top 9 Trends in Cybersecurity for 2024.pptx
Top 9 Trends in Cybersecurity for 2024.pptxTop 9 Trends in Cybersecurity for 2024.pptx
Top 9 Trends in Cybersecurity for 2024.pptx
 
socradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdfsocradar-q1-2024-aviation-industry-report.pdf
socradar-q1-2024-aviation-industry-report.pdf
 
Energy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina JonuziEnergy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina Jonuzi
 
Enums On Steroids - let's look at sealed classes !
Enums On Steroids - let's look at sealed classes !Enums On Steroids - let's look at sealed classes !
Enums On Steroids - let's look at sealed classes !
 
316895207-SAP-Oil-and-Gas-Downstream-Training.pptx
316895207-SAP-Oil-and-Gas-Downstream-Training.pptx316895207-SAP-Oil-and-Gas-Downstream-Training.pptx
316895207-SAP-Oil-and-Gas-Downstream-Training.pptx
 
Artificia Intellicence and XPath Extension Functions
Artificia Intellicence and XPath Extension FunctionsArtificia Intellicence and XPath Extension Functions
Artificia Intellicence and XPath Extension Functions
 
Using Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query PerformanceUsing Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query Performance
 
Webinar On-Demand: Using Flutter for Embedded
Webinar On-Demand: Using Flutter for EmbeddedWebinar On-Demand: Using Flutter for Embedded
Webinar On-Demand: Using Flutter for Embedded
 
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️Need for Speed: Removing speed bumps from your Symfony projects ⚡️
Need for Speed: Removing speed bumps from your Symfony projects ⚡️
 
What next after learning python programming basics
What next after learning python programming basicsWhat next after learning python programming basics
What next after learning python programming basics
 

GDSC Backend Bootcamp.pptx