SlideShare a Scribd company logo
1 of 40
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Webpage
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Agenda
❖ Webpage and DOM
❖ DOM Manipulation
❖ JavaScript and jQuery
❖ Why Angular?
❖ What is SPA?
❖ Angular Introduction
❖ Angular Features
❖ Angular Installation
❖ Basic Building Blocks of Angular
❖ Angular Architecture
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Webpage and DOM
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Webpage and DOM
DOM Tree of the HTML document
html
head
title
HTML Markup
<html>
<head>
<title> Angular 2 Tutorial </title>
</head>
<body>
<h1> Welcome to Angular 2 Tutorial </h1>
<p>Angular is a development platform for creating
a applications using modern web standards.</p>
</body>
</html>
body
h1 p
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
DOM Manipulation
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
DOM Manipulation
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
JavaScript
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
JavaScript & jQuery
➢ JavaScript is a programming language
designed for use in a web browser.
➢ Used for manipulating DOM
➢ Example:
Document.body.style.background = red;
➢ jQuery is a library built in JavaScript to
automate and simplify common tasks.
➢ Used for manipulating DOM
➢ Example:
$ (‘body’) .css (‘background’, ‘#ccc’);
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Why Angular?
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Why Angular?
2 Way Data Binding
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
What is a
Single Page Application?
EDUREKA ANGULAR 2 CERTIFICATION TRAINING www.edureka.co/angular-js
A Single Page Application is a web application that requires only a single page load in a web browser.
➢ Whole page is not reloaded every time
➢ Your browser fully renders the DOM once
➢ Later any server interactions is performed by
JavaScript which modifies the view
mail inbox
mail categories
What is SPA?
4
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Traditional Way Vs Single Page Application
Traditional Way
Life Cycle
Single Page Application
Life Cycle
Client Server
Initial request
form POST
initial request
AJAX
{ … }
JSON
Client Server
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Angular Introduction
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Angular Introduction
OpenSource Client Side
JavaScript framework created
by Google
Angular Framework
by Google
Useful for building complex
applications in the browser
(and beyond).
Angular accomplishes a lot
by embracing HTML,
JavaScript & CSS
Introduction of Object
Oriented Web Development
using TypeSCript
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Angular Features
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Angular Features
S P E E D A N D
P E R F O R M A N C E
E S 6 A N D T Y P E S C R I P T
S U P P O RT
M O D U L A R
S U P P O RT S M O B I L E ,
TA B L E T S , E TC .
01
02
03
04
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Angular Installation
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Module Component Metadata Template Data Binding
Services Directives
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Module is a class with
@NgModule metadata
Encapsulation of different
similar functionalities
Every Angular app has at
least one root module
Directives
Pipes
Components
Single Module
export
Similar
Functionalities
Module
Component
Metadata
Template
Data Binding
Services
Directives
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Importing Modules
Decorator
Declaring all the components
Provide Services to all
module’s component
Module
Component
Metadata
Template
Data Binding
Services
Directives
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Module
Component
Metadata
Template
Data Binding
Services
Directives
Nav Bar
News Feed
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Module
Component
Metadata
Template
Data Binding
Services
Directives
Sports
Component
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Importing Component Decorator
Decorator
Meta Data
Exporting Component Class
Module
Component
Metadata
Template
Data Binding
Services
Directives
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Metadata describes how
to process the class
Decorator is used to
attach metadata
@Component({
……
})
Component
{ }
MyClass Decorator
@NgModule({
……
})
Module
{ }
AppClass Decorator
Example:
Module
Component
Metadata
Template
Data Binding
Services
Directives
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Decorator that specifies how
to process an Angular Class
Creates an instance of the component
HTML template for the component
CSS Styling
Provides Service for the Component
Module
Component
Metadata
Template
Data Binding
Services
Directives
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Used to define view of a
component
Describes how the
component is rendered
on the page.
Looks like HTML, except
for a few differences.
Root
Component
{ }
Root
Template
< >
Child A
Component
{ }
Child A
Template
< >
Child B
Component
{ }
Child B
Template
< >
Child A
Component
{ }
Child A
Template
< >
Module
Component
Metadata
Template
Data Binding
Services
Directives
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Module
Component
Metadata
Template
Data Binding
Services
Directives
COMPONENTDOM
[property] = “value”
01
02
03
04
I N T E R P O L AT I O N
P R O P E R T Y B I N D I N G
E V E N T B I N D I N G
2 WAY D ATA B I N D I N G
COMPONENTDOM
(event) = “event handler”
COMPONENTDOM
[( ngModel )]
COMPONENTDOM
{{ value }}
T Y P E S O F D A T A B I N D I N G
Data binding plays an important role in communication between
a template and its component
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Data binding plays an important role in communication
between a template and its component.
Module
Component
Metadata
Template
Data Binding
Services
Directives
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Data binding is also important for communication between
parent and child components.
Parent Component
{ }
Event Binding
Property BindingModule
Component
Metadata
Template
Data Binding
Services
Directives
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
{ }
Data Access
Logging
Business Logic
Configuration
Components
SERVICES
Service is a broad category encompassing any value, function, or feature that
your application needs.
logging service data service message bus tax calculator
Example:
{ }Directives
Services
Module
Component
Metadata
Template
Data Binding
Services
Directives
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Module
Component
Metadata
Template
Data Binding
Services
Directives
Service Class
Service Method for
retrieving data
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Creates a new instance of
class along with its
required dependencies
Used to provide services
to a component
Service 2
{ }
Service 2
{ }
Component
Service 1
{ }
Service 3
{ }
Module
Component
Metadata
Template
Data Binding
Services
Directives
Dependency Injection
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Module
Component
Metadata
Template
Data Binding
Services
Directives
Injecting Service into the Component
Retrieving data
Importing Service Class
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Changes the appearance or behavior of a DOM elementModule
Component
Metadata
Template
Data Binding
Services
Directives
AT T R I B U T E D I R E C T I V E
S T R U C T U R A L D I R E C T I V E
C O M P O N E N T S1
2
3
Directives with a template
Adds & removes DOM elements
to change DOM layout
Changes the appearance or
behavior of an element
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Module
Component
Metadata
Template
Data Binding
Services
Directives
S T R U C T U R A L D I R E C T I V E2
Adds & removes DOM elements
to change DOM layout
Iterating over
the movies list
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Building Blocks of Angular
Module
Component
Metadata
Template
Data Binding
Services
Directives
AT T R I B U T E D I R E C T I V E3
Changes the appearance or
behavior of an element
Importing Directive, ElementRef
& HostListener
Directive Metadata
Injecting ElementRef to
access the DOM elements
Bold the text on cursor hover
Un-bold the text
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Angular Architecture
www.edureka.co/angular-jsEDUREKA ANGULARJS CERTIFICATION TRAINING
Angular Architecture
Template
< >
Directives
{ }
Components
Module
Components
{ }
Module
Service
{ }
Module
Fn
ƛ
Module
Value
3.14
Metadata
Property
Binding
Event
Binding
Injectors
Services
Metadata
EDUREKA ANGULAR 2 CERTIFICATION TRAINING www.edureka.co/angular-js
Thank You …
Questions/Queries/Feedback

More Related Content

What's hot

What's hot (20)

Angular 9
Angular 9 Angular 9
Angular 9
 
Angular
AngularAngular
Angular
 
Angular modules in depth
Angular modules in depthAngular modules in depth
Angular modules in depth
 
Angular Introduction By Surekha Gadkari
Angular Introduction By Surekha GadkariAngular Introduction By Surekha Gadkari
Angular Introduction By Surekha Gadkari
 
Angular interview questions
Angular interview questionsAngular interview questions
Angular interview questions
 
Angular - Chapter 1 - Introduction
 Angular - Chapter 1 - Introduction Angular - Chapter 1 - Introduction
Angular - Chapter 1 - Introduction
 
Angular - Chapter 5 - Directives
 Angular - Chapter 5 - Directives Angular - Chapter 5 - Directives
Angular - Chapter 5 - Directives
 
Angular 4 The new Http Client Module
Angular 4 The new Http Client ModuleAngular 4 The new Http Client Module
Angular 4 The new Http Client Module
 
Angular Data Binding
Angular Data BindingAngular Data Binding
Angular Data Binding
 
Angular Interview Questions & Answers
Angular Interview Questions & AnswersAngular Interview Questions & Answers
Angular Interview Questions & Answers
 
Angular - Chapter 3 - Components
Angular - Chapter 3 - ComponentsAngular - Chapter 3 - Components
Angular - Chapter 3 - Components
 
Angular - Chapter 7 - HTTP Services
Angular - Chapter 7 - HTTP ServicesAngular - Chapter 7 - HTTP Services
Angular - Chapter 7 - HTTP Services
 
React & GraphQL
React & GraphQLReact & GraphQL
React & GraphQL
 
Angular
AngularAngular
Angular
 
Meetup angular http client
Meetup angular http clientMeetup angular http client
Meetup angular http client
 
Dependency Injection
Dependency InjectionDependency Injection
Dependency Injection
 
Angular 2
Angular 2Angular 2
Angular 2
 
Typescript Fundamentals
Typescript FundamentalsTypescript Fundamentals
Typescript Fundamentals
 
Typescript ppt
Typescript pptTypescript ppt
Typescript ppt
 
Asp.Net Core MVC with Entity Framework
Asp.Net Core MVC with Entity FrameworkAsp.Net Core MVC with Entity Framework
Asp.Net Core MVC with Entity Framework
 

Similar to Angular 4 Tutorial | What's New In Angular 4 | Angular Training | Edureka

AngularJS = Browser applications on steroids
AngularJS = Browser applications on steroidsAngularJS = Browser applications on steroids
AngularJS = Browser applications on steroids
Maurice De Beijer [MVP]
 
AngularJS Introduction (Talk given on Aug 5 2013)
AngularJS Introduction (Talk given on Aug 5 2013)AngularJS Introduction (Talk given on Aug 5 2013)
AngularJS Introduction (Talk given on Aug 5 2013)
Abhishek Anand
 

Similar to Angular 4 Tutorial | What's New In Angular 4 | Angular Training | Edureka (20)

Angular 2 Training | Angular 2 Tutorial For Beginners | Angular Certification...
Angular 2 Training | Angular 2 Tutorial For Beginners | Angular Certification...Angular 2 Training | Angular 2 Tutorial For Beginners | Angular Certification...
Angular 2 Training | Angular 2 Tutorial For Beginners | Angular Certification...
 
Getting Started with AngularJS
Getting Started with AngularJSGetting Started with AngularJS
Getting Started with AngularJS
 
Angular from Zero to Mastery - Training (Intermediate)
Angular from Zero to Mastery - Training (Intermediate)Angular from Zero to Mastery - Training (Intermediate)
Angular from Zero to Mastery - Training (Intermediate)
 
Getting Started With AngularJS
Getting Started With AngularJSGetting Started With AngularJS
Getting Started With AngularJS
 
AngularJS for Beginners
AngularJS for BeginnersAngularJS for Beginners
AngularJS for Beginners
 
AngularJS - A JavaScript Framework
AngularJS - A JavaScript FrameworkAngularJS - A JavaScript Framework
AngularJS - A JavaScript Framework
 
AngularJS best-practices
AngularJS best-practicesAngularJS best-practices
AngularJS best-practices
 
Deep Dive into AngularJS Javascript Framework
Deep Dive into AngularJS Javascript FrameworkDeep Dive into AngularJS Javascript Framework
Deep Dive into AngularJS Javascript Framework
 
What Is Angular 2 | Angular 2 Tutorial For Beginners | Angular Training | Edu...
What Is Angular 2 | Angular 2 Tutorial For Beginners | Angular Training | Edu...What Is Angular 2 | Angular 2 Tutorial For Beginners | Angular Training | Edu...
What Is Angular 2 | Angular 2 Tutorial For Beginners | Angular Training | Edu...
 
Angular Js Get Started - Complete Course
Angular Js Get Started - Complete CourseAngular Js Get Started - Complete Course
Angular Js Get Started - Complete Course
 
Single Page Applications in SharePoint with Angular
Single Page Applications in SharePoint with AngularSingle Page Applications in SharePoint with Angular
Single Page Applications in SharePoint with Angular
 
ASP.NET MVC, AngularJS CRUD for Azerbaijan Technical University
ASP.NET MVC, AngularJS CRUD for Azerbaijan Technical UniversityASP.NET MVC, AngularJS CRUD for Azerbaijan Technical University
ASP.NET MVC, AngularJS CRUD for Azerbaijan Technical University
 
Leveling up with AngularJS
Leveling up with AngularJSLeveling up with AngularJS
Leveling up with AngularJS
 
Angular Routing Tutorial | AngularJS vs Angular Router | Angular Training | E...
Angular Routing Tutorial | AngularJS vs Angular Router | Angular Training | E...Angular Routing Tutorial | AngularJS vs Angular Router | Angular Training | E...
Angular Routing Tutorial | AngularJS vs Angular Router | Angular Training | E...
 
Angular JS
Angular JSAngular JS
Angular JS
 
AngularJS = Browser applications on steroids
AngularJS = Browser applications on steroidsAngularJS = Browser applications on steroids
AngularJS = Browser applications on steroids
 
AngularJS Introduction (Talk given on Aug 5 2013)
AngularJS Introduction (Talk given on Aug 5 2013)AngularJS Introduction (Talk given on Aug 5 2013)
AngularJS Introduction (Talk given on Aug 5 2013)
 
Responsive web design with Angularjs
Responsive web design with AngularjsResponsive web design with Angularjs
Responsive web design with Angularjs
 
Introduction to AngularJS Framework
Introduction to AngularJS FrameworkIntroduction to AngularJS Framework
Introduction to AngularJS Framework
 
Introduction to AngularJS
Introduction to AngularJSIntroduction to AngularJS
Introduction to AngularJS
 

More from Edureka!

More from Edureka! (20)

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | Edureka
 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | Edureka
 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | Edureka
 
Tableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaTableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | Edureka
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | Edureka
 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | Edureka
 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | Edureka
 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | Edureka
 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| Edureka
 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | Edureka
 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | Edureka
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | Edureka
 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | Edureka
 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | Edureka
 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | Edureka
 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | Edureka
 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | Edureka
 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | Edureka
 

Recently uploaded

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
Victor Rentea
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
?#DUbAI#??##{{(☎️+971_581248768%)**%*]'#abortion pills for sale in dubai@
 
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
panagenda
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Recently uploaded (20)

Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
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
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot ModelMcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
Mcleodganj Call Girls 🥰 8617370543 Service Offer VIP Hot Model
 
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...
 
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
 
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
 
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
Apidays New York 2024 - Passkeys: Developing APIs to enable passwordless auth...
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
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...
 

Angular 4 Tutorial | What's New In Angular 4 | Angular Training | Edureka