SlideShare ist ein Scribd-Unternehmen logo
1 von 64
EXPERIMENTING
WITH HOLOLENS
FEATURING: HOLOLENS APP CASE
FOR ECOMMERCE
Luis Gomes
@_lufego
Frontend Engineer
at commercetools gmbH
Frontend Engineer
Frontend Engineer
Frontend Engineer
?
?
?
CURIOUSITY
C#
Windows OS
HOLOLENS APP
THE
CASE
UNDERSTANDING THE CONCEPTS
VR
Virtual Reality
AR
Augmented Reality
MR
Mixed Reality
VIRTUAL REALITY
“…A computer-generated simulation
of a three-dimensional image or
environment that can be interacted
with in a seemingly real or physical
way by a person using special
electronic equipment.”
UNDERSTANDING THE CONCEPTS
VR AR MR
Virtual Reality Augmented Reality Mixed Reality
AUGMENTED
REALITY
The real-world content
and the CG content are not
able to respond to each other.
UNDERSTANDING THE CONCEPTS
VR AR MR
Virtual Reality Augmented Reality Mixed Reality
Mixed Reality
“…Is the merging of real and virtual worlds
to produce new environments and visualisations
where physical and digital objects co-exist and interact in real time.”
UNDERSTANDING THE CONCEPTS
VR AR MR
Virtual Reality Augmented Reality Mixed Reality
UNDERSTANDING THE CONCEPTS
VR
Virtual Reality
AR
Augmented Reality
What does it mean for
ecommerce?
IN ECOMMERCE
AUGMENTED REALITY
IS ALREADY A REALITY
Mobile Augmented Reality could become the primary
driver of a $108 billion VR/AR market by 2021
(underperform $94 billion, outperform $122 billion)
https://www.digi-capital.com/news/2017/01/after-mixed-year-mobile-ar-to-drive-108-billion-vrar-market-by-2021
Ikea Place APP
WHY?
& Online Shopping
Expectation
Expectation is the
root of all heartache
- William Shakespeare
Expectation is the
mother of all frustration
- Unknown
Expectation Reality
Expectation Reality
WHY HOLOLENS
WHY
- It’s much more immersive than AR/VR
- The commercetools API is flexible and
allows us to
- We wanted to experiment something
New; Never done before
- Why not?
commercetools API
DEMO TIME
HOW IT CONNECTS
TO OUR API
LEARNINGS
CollisionAPIRequest.js
function OnTriggerEnter (product: Collider) {
}
function OnTriggerExit (product: Collider) {
removeLineItem(product.name);
}
addLineItem(product.name);
function OnTriggerEnter (product: Collider) {
}
addLineItem(product.name);
addLineItem(product.name);
CollisionAPIRequest.js
function addLineItem(productId) {
changeTextAndColor("Loading...", Color.yellow);
var requestUrl = "https://api.sphere.io/medimux-shop/carts/" + loggedUserCartId;
var getUserCart = gameObject.Find("API").GetComponent.<GetAPI>().Get(requestUrl);
yield getUserCart;
if (getUserCart.error) {
// If it fails to return the information, logs the error in the console
Debug.Log(getUserCart.error);
} else {
var currentCartVersion = JSON.Parse(getUserCart.text)["version"];
var cartVersionNumber = int.Parse(currentCartVersion);
// Builds body for the POST request
var requestBody = "{"version":" + cartVersionNumber
+ ", "actions": [{ "action": "addLineItem","
+ ""productId": "" + productId
+ "", "variantId": 1 }]}";
var postAddLineItem = gameObject.Find("API").GetComponent.<GetAPI>().Post(requestUrl, requestBody);
yield postAddLineItem;
if (!postAddLineItem.error) {
gameObject.Find("cartInSuccessSound").GetComponent.<AudioSource>().Play();
changeTextAndColor("Product added", Color.green);
} else {
// Plays feedback Audio
gameObject.Find("cartInErrorSound").GetComponent.<AudioSource>().Play();
changeTextAndColor("Product cannot be added", Color.red);
};
}
}
addLineItem
CollisionAPIRequest.js
addLineItem
productId
CollisionAPIRequest.js
addLineItem
var requestUrl = "https://api.sphere.io/medimux-shop/carts/" + loggedUserCartId;
CollisionAPIRequest.js
addLineItem
var getUserCart = Get(requestUrl);
CollisionAPIRequest.js
addLineItem
yield getUserCart;
CollisionAPIRequest.js
addLineItem
} else {
}
CollisionAPIRequest.js
addLineItem
var currentCartVersion = JSON.Parse(getUserCart.text)["version"]
CollisionAPIRequest.js
addLineItem
var requestBody = "{"version":" + cartVersionNumber
+ ", "actions": [{ "action": "addLineItem",
+ ""productId": "" + productId
+ "", "variantId": 1 }]}";
CollisionAPIRequest.js
addLineItem
var postAddLineItem = Post(requestUrl, requestBody);
yield postAddLineItem;
CollisionAPIRequest.js
addLineItem
var getUserCart = Get(requestUrl);
var postAddLineItem = Post(requestUrl, requestBody);
CollisionAPIRequest.js
addLineItem
gameObject.Find("API").GetComponent.<GetAPI>().Get( );
gameObject.Find("API").GetComponent.<GetAPI>().Post( );
API.js
function Get(url) {
var form = new WWWForm();
var headers = form.headers;
headers["Accept"] = "application/json";
headers["Content-Type"] = "application/json";
headers["Authorization"] = generatedToken;
return new WWW(url, null, headers);
}
function Post (url, payload : String) {
var form = new WWWForm();
var headers = form.headers;
var encoding = new System.Text.UTF8Encoding();
var rawData = encoding.GetBytes(payload);
headers["Accept"] = "application/json";
headers["Content-Type"] = "application/json";
headers["Authorization"] = generatedToken;
return new WWW(url, rawData, headers);
}
getProductInfo();
getToken();
getUserCart();
getHologramsList();
postRemoveLineItem();
postAddLineItem();
WHERE TO START
DEVELOPING FOR HOLOLENS
WHERE TO START
- Follow step-by-step tutorials
https://developer.microsoft.com/en-us/windows/mixed-reality/academy
- Grab the tools
Unity, Visual Studio, Windows OS
- Deep dive on the documentation
https://docs.microsoft.com/en-us/hololens/
LEARNINGS
LEARNINGS
- You don’t need to know everything
- Start small. Increase progressively
- Don’t be afraid to try new things
BE CURIOUS
Thank you!
@_lufego
luis.gomes@commercetools.de

Weitere ähnliche Inhalte

Ähnlich wie Experimenting with HoloLens for E-Commerce

Firefox OS: HTML5 sur les stéroïdes - HTML5mtl - 2014-04-22
Firefox OS: HTML5 sur les stéroïdes - HTML5mtl - 2014-04-22Firefox OS: HTML5 sur les stéroïdes - HTML5mtl - 2014-04-22
Firefox OS: HTML5 sur les stéroïdes - HTML5mtl - 2014-04-22
Frédéric Harper
 
HTML pour le web mobile, Firefox OS - Devfest Nantes - 2014-11-07
HTML pour le web mobile, Firefox OS - Devfest Nantes - 2014-11-07HTML pour le web mobile, Firefox OS - Devfest Nantes - 2014-11-07
HTML pour le web mobile, Firefox OS - Devfest Nantes - 2014-11-07
Frédéric Harper
 

Ähnlich wie Experimenting with HoloLens for E-Commerce (20)

Hacking Reality: Browser-Based VR with HTML5
Hacking Reality: Browser-Based VR with HTML5Hacking Reality: Browser-Based VR with HTML5
Hacking Reality: Browser-Based VR with HTML5
 
Microsoft ignite tour - Create an immersive experience with office 365 data ...
Microsoft ignite tour  - Create an immersive experience with office 365 data ...Microsoft ignite tour  - Create an immersive experience with office 365 data ...
Microsoft ignite tour - Create an immersive experience with office 365 data ...
 
HTML5 WebWorks
HTML5 WebWorksHTML5 WebWorks
HTML5 WebWorks
 
Firefox OS: HTML5 sur les stéroïdes - HTML5mtl - 2014-04-22
Firefox OS: HTML5 sur les stéroïdes - HTML5mtl - 2014-04-22Firefox OS: HTML5 sur les stéroïdes - HTML5mtl - 2014-04-22
Firefox OS: HTML5 sur les stéroïdes - HTML5mtl - 2014-04-22
 
The Future of Progressive Web Apps - Google for Indonesia
The Future of Progressive Web Apps - Google for IndonesiaThe Future of Progressive Web Apps - Google for Indonesia
The Future of Progressive Web Apps - Google for Indonesia
 
Firefox OS, HTML5 to the next level - Python Montreal - 2014-05-12
Firefox OS, HTML5 to the next level - Python Montreal - 2014-05-12Firefox OS, HTML5 to the next level - Python Montreal - 2014-05-12
Firefox OS, HTML5 to the next level - Python Montreal - 2014-05-12
 
Augmenting Education (ISQ)
Augmenting Education (ISQ)Augmenting Education (ISQ)
Augmenting Education (ISQ)
 
Augmenting Education
Augmenting Education   Augmenting Education
Augmenting Education
 
HTML pour le web mobile, Firefox OS - Devfest Nantes - 2014-11-07
HTML pour le web mobile, Firefox OS - Devfest Nantes - 2014-11-07HTML pour le web mobile, Firefox OS - Devfest Nantes - 2014-11-07
HTML pour le web mobile, Firefox OS - Devfest Nantes - 2014-11-07
 
Augmenting education
Augmenting educationAugmenting education
Augmenting education
 
Pushing the Web: Interesting things to Know
Pushing the Web: Interesting things to KnowPushing the Web: Interesting things to Know
Pushing the Web: Interesting things to Know
 
Mozilla Web Apps - Super-VanJS
Mozilla Web Apps - Super-VanJSMozilla Web Apps - Super-VanJS
Mozilla Web Apps - Super-VanJS
 
Firefox OS
Firefox OSFirefox OS
Firefox OS
 
mobl
moblmobl
mobl
 
Build 2017 - B8108 - App engagement in Windows Timeline and Cortana with User...
Build 2017 - B8108 - App engagement in Windows Timeline and Cortana with User...Build 2017 - B8108 - App engagement in Windows Timeline and Cortana with User...
Build 2017 - B8108 - App engagement in Windows Timeline and Cortana with User...
 
How We Built a Mobile Electronic Health Record App Using Xamarin, Angular, an...
How We Built a Mobile Electronic Health Record App Using Xamarin, Angular, an...How We Built a Mobile Electronic Health Record App Using Xamarin, Angular, an...
How We Built a Mobile Electronic Health Record App Using Xamarin, Angular, an...
 
GDG GeorgeTown Devfest 2014 Presentation: Android Wear: A Developer's Perspec...
GDG GeorgeTown Devfest 2014 Presentation: Android Wear: A Developer's Perspec...GDG GeorgeTown Devfest 2014 Presentation: Android Wear: A Developer's Perspec...
GDG GeorgeTown Devfest 2014 Presentation: Android Wear: A Developer's Perspec...
 
Go Mobile with Apache Cordova, Zagreb 2014
Go Mobile with Apache Cordova, Zagreb 2014Go Mobile with Apache Cordova, Zagreb 2014
Go Mobile with Apache Cordova, Zagreb 2014
 
Pivorak.javascript.global domination
Pivorak.javascript.global dominationPivorak.javascript.global domination
Pivorak.javascript.global domination
 
Andriy Vandakurov about "Frontend. Global domination"
Andriy Vandakurov about  "Frontend. Global domination" Andriy Vandakurov about  "Frontend. Global domination"
Andriy Vandakurov about "Frontend. Global domination"
 

Mehr von Dirk Hoerig

Mehr von Dirk Hoerig (20)

Lego-Bausteine des Online-Handels
Lego-Bausteine des Online-HandelsLego-Bausteine des Online-Handels
Lego-Bausteine des Online-Handels
 
It's the Experience, Stupid!
It's the Experience, Stupid!It's the Experience, Stupid!
It's the Experience, Stupid!
 
Alexa, Chatbots & Co: Getting ready for the Post-Web World with a Headless Ap...
Alexa, Chatbots & Co: Getting ready for the Post-Web World with a Headless Ap...Alexa, Chatbots & Co: Getting ready for the Post-Web World with a Headless Ap...
Alexa, Chatbots & Co: Getting ready for the Post-Web World with a Headless Ap...
 
Research Paper: The New Chiefs of Commerce in the Digital Enterprise
Research Paper: The New Chiefs of Commerce in the Digital EnterpriseResearch Paper: The New Chiefs of Commerce in the Digital Enterprise
Research Paper: The New Chiefs of Commerce in the Digital Enterprise
 
Wie Händler und Hersteller in der Post-Webshop-Ära zu Technologieunternehmen ...
Wie Händler und Hersteller in der Post-Webshop-Ära zu Technologieunternehmen ...Wie Händler und Hersteller in der Post-Webshop-Ära zu Technologieunternehmen ...
Wie Händler und Hersteller in der Post-Webshop-Ära zu Technologieunternehmen ...
 
Connected Channels - eCommerce Beyond Desktop with commercetools / Deutscher ...
Connected Channels - eCommerce Beyond Desktop with commercetools / Deutscher ...Connected Channels - eCommerce Beyond Desktop with commercetools / Deutscher ...
Connected Channels - eCommerce Beyond Desktop with commercetools / Deutscher ...
 
Magnolia and commercetools, a powerful combination of content and commerce.
Magnolia and commercetools, a powerful combination of content and commerce.Magnolia and commercetools, a powerful combination of content and commerce.
Magnolia and commercetools, a powerful combination of content and commerce.
 
Warum Pureplay-E-Commerce in 5 Jahren tot ist
Warum Pureplay-E-Commerce in 5 Jahren tot istWarum Pureplay-E-Commerce in 5 Jahren tot ist
Warum Pureplay-E-Commerce in 5 Jahren tot ist
 
How APIs Are Driving the New Commerce Landscape
How APIs Are Driving the New Commerce LandscapeHow APIs Are Driving the New Commerce Landscape
How APIs Are Driving the New Commerce Landscape
 
Osudio + commercetools Webinar: Microservices - Flexibilität und Geschwindigk...
Osudio + commercetools Webinar: Microservices - Flexibilität und Geschwindigk...Osudio + commercetools Webinar: Microservices - Flexibilität und Geschwindigk...
Osudio + commercetools Webinar: Microservices - Flexibilität und Geschwindigk...
 
Storytelling mit Content Commerce
Storytelling mit Content CommerceStorytelling mit Content Commerce
Storytelling mit Content Commerce
 
Boosting Product Categorization with Machine Learning
Boosting Product Categorization with Machine Learning Boosting Product Categorization with Machine Learning
Boosting Product Categorization with Machine Learning
 
Commerce technology of the past stifles marketing organizations of the future
Commerce technology of the past stifles marketing organizations of the futureCommerce technology of the past stifles marketing organizations of the future
Commerce technology of the past stifles marketing organizations of the future
 
Wer wagt - erreicht den Kunden von morgen!
Wer wagt - erreicht den Kunden von morgen!Wer wagt - erreicht den Kunden von morgen!
Wer wagt - erreicht den Kunden von morgen!
 
How do you transform Europes largest bicycle cooperative into an online retai...
How do you transform Europes largest bicycle cooperative into an online retai...How do you transform Europes largest bicycle cooperative into an online retai...
How do you transform Europes largest bicycle cooperative into an online retai...
 
The Future of Commerce Technology
The Future of Commerce TechnologyThe Future of Commerce Technology
The Future of Commerce Technology
 
Gefangen in der Innovationsspirale?
Gefangen in der Innovationsspirale?Gefangen in der Innovationsspirale?
Gefangen in der Innovationsspirale?
 
Micro-Service Architectures in E-Commerce environments with SPHERE.IO / comme...
Micro-Service Architectures in E-Commerce environments with SPHERE.IO / comme...Micro-Service Architectures in E-Commerce environments with SPHERE.IO / comme...
Micro-Service Architectures in E-Commerce environments with SPHERE.IO / comme...
 
How APIs are defining the future of retail - Shopping with Google Glass throu...
How APIs are defining the future of retail - Shopping with Google Glass throu...How APIs are defining the future of retail - Shopping with Google Glass throu...
How APIs are defining the future of retail - Shopping with Google Glass throu...
 
APIDays Berlin Edition 2014
APIDays Berlin Edition 2014APIDays Berlin Edition 2014
APIDays Berlin Edition 2014
 

Kürzlich hochgeladen

Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
soniya singh
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
sexy call girls service in goa
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
imonikaupta
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
Diya Sharma
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
ellan12
 
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Call Girls In Delhi Whatsup 9873940964 Enjoy Unlimited Pleasure
 

Kürzlich hochgeladen (20)

Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
 
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark WebGDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
GDG Cloud Southlake 32: Kyle Hettinger: Demystifying the Dark Web
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024
 
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
WhatsApp 📞 8448380779 ✅Call Girls In Mamura Sector 66 ( Noida)
 
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
VVIP Pune Call Girls Sinhagad WhatSapp Number 8005736733 With Elite Staff And...
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
Ganeshkhind ! Call Girls Pune - 450+ Call Girl Cash Payment 8005736733 Neha T...
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
 
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
 
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort ServiceBusty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
Busty Desi⚡Call Girls in Vasundhara Ghaziabad >༒8448380779 Escort Service
 
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
 
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night StandHot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
 

Experimenting with HoloLens for E-Commerce