SlideShare ist ein Scribd-Unternehmen logo
1 von 47
Downloaden Sie, um offline zu lesen
July 12, 2014
Front-End Design Conference 2014
Contextually Aware Web Design
Front-End Design Conference
 07.12.14
 #contextAware2
Front-End Design Conference
 07.12.14
 #contextAware
1. Defining contextual awareness
2. Applications in web design
3. Level 4 Media Queries
4. Summary
3
Front-End Design Conference
 07.12.14
 #contextAware
We bring together product
design, brand communications,
social connections and content
to help businesses thrive.
4
Front-End Design Conference
 07.12.14
 #contextAware
Context is as important as content.
5
Front-End Design Conference
 07.12.14
 #contextAware
Can context effect design?
6
Front-End Design Conference
 07.12.14
 #contextAware
We’ve already answered yes.
7
Front-End Design Conference
 07.12.14
 #contextAware
Responsive web design is all
about being contextually aware.
8
Front-End Design Conference
 07.12.14
 #contextAware
What is Contextual Awareness?
SECTION 1
9
Front-End Design Conference
 07.12.14
 #contextAware
Contextually Aware Web Design: 
Appropriating user context based on any JavaScript accessible data point in
order to deduce a users assumed context. Essentially its a theory that if you
can assume what a user is doing you can alter a design to meet the users
immediate needs and use all available user data to circumvent frivolous UI or
build more intelligent design systems based on a users physical surrounding.
10
Front-End Design Conference
 07.12.14
 #contextAware
Contextually aware design uses
JavaScript to access available
data points within a users
environment and adjust the
design accordingly.
11
Front-End Design Conference
 07.12.14
 #contextAware
Sensors are used to establish
context.
12
Front-End Design Conference
 07.12.14
 #contextAware
@media(sensor){

 adjustment
}
13
Front-End Design Conference
 07.12.14
 #contextAware14
Disseminating active map
information to mobile hosts
Front-End Design Conference
 07.12.14
 #contextAware
Historically the web design has
been an observed medium.
15
Front-End Design Conference
 07.12.14
 #contextAware
Google uses personal data to
extend contextual awareness
across all it’s products.
16
Front-End Design Conference
 07.12.14
 #contextAware
Apple’s M7 co-processor
introduced a whole new set of
capabilities.
17
Front-End Design Conference
 07.12.14
 #contextAware
Contextual Awareness for the web
SECTION 2
18
Front-End Design Conference
 07.12.14
 #contextAware
User
Task
Environment
Technology
19
Front-End Design Conference
 07.12.14
 #contextAware
User: What can we contextualize
about the user to create a better
experience?
20
Front-End Design Conference
 07.12.14
 #contextAware
Task: What is the user
attempting to accomplish?
21
Front-End Design Conference
 07.12.14
 #contextAware
Environment: Where and when
is the user.
22
Front-End Design Conference
 07.12.14
 #contextAware
Technology: What device is the
user visiting with?
23
Front-End Design Conference
 07.12.14
 #contextAware
A contextual breakpoint is the
point at which the context of a
website has changed.
24
Front-End Design Conference
 07.12.14
 #contextAware
morning
25
time of day
night
coffee milkshake
noon
tea
Front-End Design Conference
 07.12.14
 #contextAware
In this example our contextual
breakpoints are morning, noon,
and night.
26
Front-End Design Conference
 07.12.14
 #contextAware
var sensors = {
morning: function(){
var x = new Date();
x = x.getHours()
return !!(x > 4 && x < 12);
},
afternoon: function(){
var x = new Date();
x = x.getHours()
return !!(x >= 12 && x < 18);
},
evening: function(){
var x = new Date();
x = x.getHours()
return !!(x >= 18 && x < 24 || x > 0 && x <= 4);
},
};
27
Front-End Design Conference
 07.12.14
 #contextAware
All contextual breakpoints
should result in true or false.
28
Front-End Design Conference
 07.12.14
 #contextAware
if(sensors.morning){
// morning actions
}
29
Front-End Design Conference
 07.12.14
 #contextAware
for (var x in sensors) {
console.log(sensors[x]());
}
30
Front-End Design Conference
 07.12.14
 #contextAware
for (var x in sensors) {
if(sensors[x]()){
var html = document.documentElement;
html.className += "is-" + x;
};
}
31
Front-End Design Conference
 07.12.14
 #contextAware
.is-afternoon #message{color:red;}
32
Front-End Design Conference
 07.12.14
 #contextAware
nome.js is a JavaScript library for
contextual awareness.
33
Front-End Design Conference
 07.12.14
 #contextAware
nome.ready(function() {
!
});
34
Front-End Design Conference
 07.12.14
 #contextAware
Level 4 Media Queries
SECTION 3
35
Front-End Design Conference
 07.12.14
 #contextAware
With Level 4 Media Queries
there are a few interesting
possibilities.
36
Front-End Design Conference
 07.12.14
 #contextAware
@media(light-level: [value])
37
Front-End Design Conference
 07.12.14
 #contextAware
@media(light-level: dim){}
@media(light-level: normal){}
@media(light-level: washed){}
38
Front-End Design Conference
 07.12.14
 #contextAware
<script>
CSS.customMedia.set('--foo', 5);
</script>
<style>
@media (_foo: 5) { ... }
@media (_foo < 10) { ... }
</style>
39
Front-End Design Conference
 07.12.14
 #contextAware
Pointer is used to define the
target area covered by a
pointing device
40
Front-End Design Conference
 07.12.14
 #contextAware
@media{pointer:coarse}
@media{pointer:fine}
41
Front-End Design Conference
 07.12.14
 #contextAware
Display Quality Media Features:
scan, resolution, update frequency
42
Front-End Design Conference
 07.12.14
 #contextAware
Summary
SECTION 4
43
Front-End Design Conference
 07.12.14
 #contextAware
iOS8 seems to be built around
contextual awareness
44
Front-End Design Conference
 07.12.14
 #contextAware
The internet of things still needs
the internet.
45
Front-End Design Conference
 07.12.14
 #contextAware
Contextual aware requires
thoughtfulness and imagination.
46
Front-End Design Conference
 07.12.14
 #contextAware
Thank you,
@matthew_carver
47

Weitere ähnliche Inhalte

Ähnlich wie Contextual awareness for the web

Latest_Edwin_Alberto_Arias_Espinoza
Latest_Edwin_Alberto_Arias_EspinozaLatest_Edwin_Alberto_Arias_Espinoza
Latest_Edwin_Alberto_Arias_EspinozaEdwin Espinoza
 
Containers, Serverless, Polyglot Development World, And Others…10 trends resh...
Containers, Serverless, Polyglot Development World, And Others…10 trends resh...Containers, Serverless, Polyglot Development World, And Others…10 trends resh...
Containers, Serverless, Polyglot Development World, And Others…10 trends resh...PROIDEA
 
Gapand 2017 - Diseñando Arquitecturas Serverless en Azure
Gapand 2017 - Diseñando Arquitecturas Serverless en AzureGapand 2017 - Diseñando Arquitecturas Serverless en Azure
Gapand 2017 - Diseñando Arquitecturas Serverless en AzureAlberto Diaz Martin
 
Graphs & Neo4j - Past Present Future
Graphs & Neo4j - Past Present FutureGraphs & Neo4j - Past Present Future
Graphs & Neo4j - Past Present Futurejexp
 
CNCF, State of Serverless & Project Nuclio
CNCF, State of Serverless & Project NuclioCNCF, State of Serverless & Project Nuclio
CNCF, State of Serverless & Project NuclioLee Calcote
 
Cookbook for Building An App
Cookbook for Building An AppCookbook for Building An App
Cookbook for Building An AppManish Jain
 
The future of Prototpying
The future of PrototpyingThe future of Prototpying
The future of PrototpyingNetcetera
 
RapidECA - The Vision
RapidECA - The VisionRapidECA - The Vision
RapidECA - The Visionrapideca
 
EnSuite-Cloud ReVue Releases SmartPicking Tools for CAD Assemblies
EnSuite-Cloud ReVue Releases SmartPicking Tools for CAD AssembliesEnSuite-Cloud ReVue Releases SmartPicking Tools for CAD Assemblies
EnSuite-Cloud ReVue Releases SmartPicking Tools for CAD Assembliesflashnewsrelease
 
Imaginea Introduction
Imaginea IntroductionImaginea Introduction
Imaginea Introductionarun_imaginea
 
GoodBarber presentation for students
GoodBarber presentation for studentsGoodBarber presentation for students
GoodBarber presentation for studentsDominique SIACCI
 
Mastinder singh visualcv_resume
Mastinder singh visualcv_resumeMastinder singh visualcv_resume
Mastinder singh visualcv_resumeMastinder Singh
 
Things You Should Know Before Hiring Nodejs Developers.pptx
Things You Should Know Before Hiring Nodejs Developers.pptxThings You Should Know Before Hiring Nodejs Developers.pptx
Things You Should Know Before Hiring Nodejs Developers.pptx75waytechnologies
 
Graduation Presentation
Graduation PresentationGraduation Presentation
Graduation PresentationSander Mulders
 
React Native App Development Company in USA and India
React Native App Development Company in USA and India				React Native App Development Company in USA and India
React Native App Development Company in USA and India Shelly Megan
 

Ähnlich wie Contextual awareness for the web (20)

Latest_Edwin_Alberto_Arias_Espinoza
Latest_Edwin_Alberto_Arias_EspinozaLatest_Edwin_Alberto_Arias_Espinoza
Latest_Edwin_Alberto_Arias_Espinoza
 
Containers, Serverless, Polyglot Development World, And Others…10 trends resh...
Containers, Serverless, Polyglot Development World, And Others…10 trends resh...Containers, Serverless, Polyglot Development World, And Others…10 trends resh...
Containers, Serverless, Polyglot Development World, And Others…10 trends resh...
 
Gapand 2017 - Diseñando Arquitecturas Serverless en Azure
Gapand 2017 - Diseñando Arquitecturas Serverless en AzureGapand 2017 - Diseñando Arquitecturas Serverless en Azure
Gapand 2017 - Diseñando Arquitecturas Serverless en Azure
 
Graphs & Neo4j - Past Present Future
Graphs & Neo4j - Past Present FutureGraphs & Neo4j - Past Present Future
Graphs & Neo4j - Past Present Future
 
SchiebelResume
SchiebelResumeSchiebelResume
SchiebelResume
 
CNCF, State of Serverless & Project Nuclio
CNCF, State of Serverless & Project NuclioCNCF, State of Serverless & Project Nuclio
CNCF, State of Serverless & Project Nuclio
 
Cookbook for Building An App
Cookbook for Building An AppCookbook for Building An App
Cookbook for Building An App
 
The future of Prototpying
The future of PrototpyingThe future of Prototpying
The future of Prototpying
 
Dominion over domains
Dominion over domainsDominion over domains
Dominion over domains
 
RapidECA - The Vision
RapidECA - The VisionRapidECA - The Vision
RapidECA - The Vision
 
Bridging Front.pdf
Bridging Front.pdfBridging Front.pdf
Bridging Front.pdf
 
Kunal bhatia resume mass
Kunal bhatia   resume massKunal bhatia   resume mass
Kunal bhatia resume mass
 
EnSuite-Cloud ReVue Releases SmartPicking Tools for CAD Assemblies
EnSuite-Cloud ReVue Releases SmartPicking Tools for CAD AssembliesEnSuite-Cloud ReVue Releases SmartPicking Tools for CAD Assemblies
EnSuite-Cloud ReVue Releases SmartPicking Tools for CAD Assemblies
 
Imaginea Introduction
Imaginea IntroductionImaginea Introduction
Imaginea Introduction
 
GoodBarber presentation for students
GoodBarber presentation for studentsGoodBarber presentation for students
GoodBarber presentation for students
 
Mastinder singh visualcv_resume
Mastinder singh visualcv_resumeMastinder singh visualcv_resume
Mastinder singh visualcv_resume
 
Inventor 2011 Detail Brochure
Inventor 2011 Detail BrochureInventor 2011 Detail Brochure
Inventor 2011 Detail Brochure
 
Things You Should Know Before Hiring Nodejs Developers.pptx
Things You Should Know Before Hiring Nodejs Developers.pptxThings You Should Know Before Hiring Nodejs Developers.pptx
Things You Should Know Before Hiring Nodejs Developers.pptx
 
Graduation Presentation
Graduation PresentationGraduation Presentation
Graduation Presentation
 
React Native App Development Company in USA and India
React Native App Development Company in USA and India				React Native App Development Company in USA and India
React Native App Development Company in USA and India
 

Kürzlich hochgeladen

Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Sheetaleventcompany
 
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
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 Standkumarajju5765
 
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girlsstephieert
 
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Roomishabajaj13
 
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts servicevipmodelshub1
 
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$kojalkojal131
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts servicesonalikaur4
 
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With RoomVIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Roomdivyansh0kumar0
 
₹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
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Delhi Call girls
 
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 WebJames Anderson
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Roomdivyansh0kumar0
 

Kürzlich hochgeladen (20)

Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Ashram Chowk Delhi 💯Call Us 🔝8264348440🔝
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
 
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Samaira 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Samaira 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
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
 
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
 
Russian Call girls in Dubai +971563133746 Dubai Call girls
Russian  Call girls in Dubai +971563133746 Dubai  Call girlsRussian  Call girls in Dubai +971563133746 Dubai  Call girls
Russian Call girls in Dubai +971563133746 Dubai Call girls
 
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls KolkataRussian Call Girls in Kolkata Ishita 🤌  8250192130 🚀 Vip Call Girls Kolkata
Russian Call Girls in Kolkata Ishita 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
 
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
 
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
Call Girls Dubai Prolapsed O525547819 Call Girls In Dubai Princes$
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
 
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Porur Phone 🍆 8250192130 👅 celebrity escorts service
 
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With RoomVIP Kolkata Call Girl Dum Dum 👉 8250192130  Available With Room
VIP Kolkata Call Girl Dum Dum 👉 8250192130 Available With Room
 
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
₹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...
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
 
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
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
 

Contextual awareness for the web