SlideShare a Scribd company logo
ARTIFICIAL INTELLIGENCE BASED WEB/MOBILE APPLICATION & FACEBOOK MESSENGER BOT
FOR SEARCHING AND MATCHING BETWEEN ROOMMATES !
SUPERVISED BY
M. SAMI MNASSRI
REVIEWER
Ms. LINA HORCHANI
CHAIRMAN OF THE JURY
Ms. SIHEM TLILI
FINAL YEAR PROJECT
www.zooz.tn
http://www.ins.nat.tn/
new college students, every year!
~50,000
* Source : National Statistics Institute – Tunisia
*
http://www.ins.nat.tn/
new college students, every year!
~50,000
* Source : National Statistics Institute – Tunisia
*
The necessity of moving away from home and settling in a new place.
EXISTING SOLUTIONS
ADS-BASED WEBSITE : TAYARA.TN
WHAT’S MISSING ?
No specific layout/structure to hold a ‘Property’ details.
Lack of information about the Property.
No reference about the exact location.
X
X
X
No information regarding the author roommate Preferences.X
EXAMPLE #1
FACEBOOK GROUPS FOR FLAT-SHARING
EXAMPLE #2
WHAT’S MISSING ?
One text field to include all different types of information.
Lack of information about the Property.
No reference about the exact location.
X
X
X
Even when subscribed to the group’s activity, user only gets
notifications about “friends” activity.
X
THE IDEA ?
Web/Mobile application Facebook Messenger bot
THE IDEA ?
A PLATFORM FOR SEARCHING AND MATCHING BETWEEN ROOMMATES
Web/Mobile application Facebook Messenger bot
THE IDEA ?
Search for offers.
There you go :
A PLATFORM FOR SEARCHING AND MATCHING BETWEEN ROOMMATES
SYSTEM ANALYSIS SYSTEM ARCHITECTURE INTO THE CODE
WHAT WE WILL COVER
GENERAL OVERVIEW
SYSTEM ANALYSIS
WHAT, WHY and HOW ?
SYSTEM ANALYSIS
Search for offers Use Case diagram
USE CASE DIAGRAMS
Submit an offer Use Case diagram
USE CASE DIAGRAMS
CLASS DIAGRAM
SYSTEM ARCHITECTURE
SYSTEM ARCHITECTURE
HOW IT IS DESIGNED ?
Web/Mobile application Facebook Messenger bot
SYSTEM ARCHITECTURE
HOW IT IS DESIGNED ?
Facebook Messenger bot
SYSTEM ARCHITECTURE
Web/Mobile application
HOW IT IS DESIGNED ?
Facebook Messenger bot
SYSTEM ARCHITECTURE
Web/Mobile application
HOW IT IS DESIGNED ?
Web/Mobile application Facebook Messenger bot
SYSTEM ARCHITECTURE
HOW IT IS DESIGNED ?
SYSTEM ARCHITECTURE
Web/Mobile application Facebook Messenger bot
HOW IT IS DESIGNED ?
SYSTEM ARCHITECTURE
Web/Mobile application Facebook Messenger bot
HOW IT IS DESIGNED ?
Web/Mobile application Facebook Messenger bot
SYSTEM ARCHITECTURE
HOW IT WORKS ?
Web/Mobile application Facebook Messenger bot
SYSTEM ARCHITECTURE
HOW IT WORKS ?
Database
Web/Mobile application Facebook Messenger bot
SYSTEM ARCHITECTURE
HOW IT WORKS ?
Database
DATA {JSON Objects}
(WEB SERVICE)
> INTO THE CODE
<div class="row">
<div class="RED col-xs-12 col-sm-12 col-lg-12"></div>
</div>
<div class="row">
<div class=" BLUE col-xs-12 col-sm-12 col-lg-4"> </div>
<div class=" BLUE col-xs-12 col-sm-12 col-lg-4"></div>
<div class=" BLUE col-xs-12 col-sm-12 col-lg-4"></div>
</div>
<div class="row">
<div class=" ORANGE col-xs-12 col-sm-6 col-lg-6"> </div>
<div class=" ORANGE col-xs-12 col-sm-6 col-lg-6"></div>
</div>
SOURCE CODE PREVIEW
Web/Mobile Application
INTO THE CODE
Responsive User Interface: The “Web/Mobile” concept
Writing one code that fits different screen sizes
SOURCE CODE PREVIEW
Web/Mobile Application
INTO THE CODE
Getting data from the database
Example: Creating a web-service that generates all of the properties’ details
<?php
if ( have_posts() ) {
$json = array();
while ( have_posts() ) {
the_post();
$single = array(
'id‘ => $id, 'title‘ => get_the_title(), 'author‘ => get_the_author()
);
$json[] = $single;
}
header("Content-Type: application/json; charset=‘utf-8’");
echo $json;
}
SOURCE CODE
<?php
// retrieving data
$input = file_get_contents('php://input');
$data = json_decode($input, true);
// extracting information
$psid = $data["entry"][0]["messaging"][0]["sender"]["id"];
$message = $data["entry"][0]["messaging"][0]["message"]["text"];
// $message = “Asslema !”
// generate the adequate response & send a message (using the Send API)
// …
The Messenger Bot
INTO THE CODE
Retrieving information sent by the user
PREVIEW
Asslema !
SOURCE CODE PREVIEW
<?php
// fit the message into a JSON object response
$message = “Hello toutou !”;
$json = '{
"recipient": { "id" : "'.$psid.'" },
"message": { "text": "'.$message.'“ }
}';
// send the reponse
$ch = curl_init("https://graph.facebook.com/v2.6/me/messages?access_token="
.$PAGE_ACCESS_TOKEN);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $json);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
return curl_exec($ch);
The Messenger Bot
INTO THE CODE
The Send API
Hello toutou !
Asslema !
SOURCE CODE PREVIEW
<?php
// retrieving data
$input = file_get_contents('php://input');
$data = json_decode($input, true);
// extracting the user ID
$psid = $data["entry"][0]["messaging"][0]["sender"]["id"];
// getting the user’s coordinates
$userLat = $data['entry'][0]['messaging'][0]['message']['attachments'][0]['payload']['coordinates']['lat'];
$userLong = $data['entry'][0]['messaging'][0]['message']['attachments'][0]['payload']['coordinates']['long'];
// …
The Messenger Bot
INTO THE CODE
Working with the user’s geolocation
THE ‘PRODUCT’
www.zooz.tn
DISCOVERING THE APPLICATION
Home Page
Instant results within hands
Instant basic information about properties
Filter offers for more accurate results
www.zooz.tn
DISCOVERING THE APPLICATION
Property details Page
Detailed information about the property
Review the property and publish feedback
Possibility to save, share and print the property
www.zooz.tn
DISCOVERING THE APPLICATION
Announcer Profile Page
View user’s Information and Preferences
Reach the user for more details
www.zooz.tn
DISCOVERING THE APPLICATION
Submit a new property Page
Rich and easy-to-use interface
Possibility to save as a Draft
Email notification for success of submission
WHAT’S NEXT ?
FUTURE GOALS
www.zooz.tn
WHAT’S NEXT ?
Gregory Y. Titelman
“
JOIN THEM !
IF YOU CAN’T BEAT THEM
www.zooz.tn
WHAT’S NEXT ?
Full integration within Facebook
MEET
THE
TEAM
www.zooz.tn
WHAT’S NEXT ?
WORLDWIDE DEPLOYMENT
TARGET THE 2 BILLION MONTHLY ACTIVE FACEBOOK USERS
CONCLUSION
Every journey comes to an end, at some point!
MEET
THE
TEAM+350
HOURS OF CODING & DESIGN
+50
SODA CANS COMSUMED
+45 000
LINES OF CODE
∞PEOPLE CONTRIBUTED
THE JOURNEY IN NUMBERS !
www.zooz.tn
SAMI MNASSRI
COMPUTER SCIENCE STUDENT AT FACULTY OF SCIENCES OF GAFSA
mail@sammy.tnwww.sammy.tn
www.facebook.com/zooztunisia
MORE INFORMATION & FEEDBACK
asslema@zooz.tn
FOLLOW US ON FACEBOOK
Finding the ideal roommate !
ZOOZ

More Related Content

Similar to Zooz - Finding the perfect Roommate! [Slideshow]

Linked open data sandwich
Linked open data sandwichLinked open data sandwich
Linked open data sandwichThimo Thoeye
 
WIRED and the WP REST API
WIRED and the WP REST APIWIRED and the WP REST API
WIRED and the WP REST APIkvignos
 
MIKE Stack Introduction - MongoDB, io.js, KendoUI, and Express
MIKE Stack Introduction - MongoDB, io.js, KendoUI, and ExpressMIKE Stack Introduction - MongoDB, io.js, KendoUI, and Express
MIKE Stack Introduction - MongoDB, io.js, KendoUI, and ExpressCharlie Key
 
Website Accessibility 101
Website Accessibility 101Website Accessibility 101
Website Accessibility 101MadouPDX
 
2019-03 Recomendation Engine @ Confoo
2019-03 Recomendation Engine @ Confoo2019-03 Recomendation Engine @ Confoo
2019-03 Recomendation Engine @ Confooterry chay
 
The Future of the Web - Cold Front conference 2016
The Future of the Web - Cold Front conference 2016The Future of the Web - Cold Front conference 2016
The Future of the Web - Cold Front conference 2016Robert Nyman
 
Intro to Web Apps using HTML5 and Javascript
Intro to Web Apps using HTML5 and JavascriptIntro to Web Apps using HTML5 and Javascript
Intro to Web Apps using HTML5 and JavascriptBrian Hogg
 
Future of Work: A conversation with 50skills
Future of Work: A conversation with 50skillsFuture of Work: A conversation with 50skills
Future of Work: A conversation with 50skillsKristjan Kristjansson
 
Introduction to Facebook Graph API and OAuth 2
Introduction to Facebook Graph API and OAuth 2Introduction to Facebook Graph API and OAuth 2
Introduction to Facebook Graph API and OAuth 2Thai Pangsakulyanont
 
FSTO - An Affordable REST
FSTO - An Affordable RESTFSTO - An Affordable REST
FSTO - An Affordable RESTShanta Nathwani
 
An Affordable REST - Coder Camp Hamilton 2019
An Affordable REST - Coder Camp Hamilton 2019An Affordable REST - Coder Camp Hamilton 2019
An Affordable REST - Coder Camp Hamilton 2019Shanta Nathwani
 
Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs - Front in Bahia...
Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs  - Front in Bahia...Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs  - Front in Bahia...
Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs - Front in Bahia...Ícaro Medeiros
 
Laravel Poznań Meetup #2 - Creating chatbots with BotMan
Laravel Poznań Meetup #2 - Creating chatbots with BotManLaravel Poznań Meetup #2 - Creating chatbots with BotMan
Laravel Poznań Meetup #2 - Creating chatbots with BotManHighSolutions Sp. z o.o.
 
Creating Chatbots with Botman - English
Creating Chatbots with Botman - EnglishCreating Chatbots with Botman - English
Creating Chatbots with Botman - EnglishLaravel Poland MeetUp
 
Transforming your application with Elasticsearch
Transforming your application with ElasticsearchTransforming your application with Elasticsearch
Transforming your application with ElasticsearchBrian Ritchie
 
fb-researchの舞台裏No.2~技術編~(HatchUp主催 渋谷Facebookアプリ勉強会)
fb-researchの舞台裏No.2~技術編~(HatchUp主催 渋谷Facebookアプリ勉強会)fb-researchの舞台裏No.2~技術編~(HatchUp主催 渋谷Facebookアプリ勉強会)
fb-researchの舞台裏No.2~技術編~(HatchUp主催 渋谷Facebookアプリ勉強会)modeelf
 
Web of things introduction
Web of things introductionWeb of things introduction
Web of things introduction承翰 蔡
 
Social Semantic Web on Facebook Open Graph protocol and Twitter Annotations
Social Semantic Web on Facebook Open Graph protocol and Twitter AnnotationsSocial Semantic Web on Facebook Open Graph protocol and Twitter Annotations
Social Semantic Web on Facebook Open Graph protocol and Twitter AnnotationsMyungjin Lee
 
SES SF 2013_Assess Diagnose Fix How to Become a Leading SEO Mechanic_Grant Si...
SES SF 2013_Assess Diagnose Fix How to Become a Leading SEO Mechanic_Grant Si...SES SF 2013_Assess Diagnose Fix How to Become a Leading SEO Mechanic_Grant Si...
SES SF 2013_Assess Diagnose Fix How to Become a Leading SEO Mechanic_Grant Si...tsa1234
 

Similar to Zooz - Finding the perfect Roommate! [Slideshow] (20)

Linked open data sandwich
Linked open data sandwichLinked open data sandwich
Linked open data sandwich
 
WIRED and the WP REST API
WIRED and the WP REST APIWIRED and the WP REST API
WIRED and the WP REST API
 
MIKE Stack Introduction - MongoDB, io.js, KendoUI, and Express
MIKE Stack Introduction - MongoDB, io.js, KendoUI, and ExpressMIKE Stack Introduction - MongoDB, io.js, KendoUI, and Express
MIKE Stack Introduction - MongoDB, io.js, KendoUI, and Express
 
(Webinar Slides) Legal and Investigative Research on a Budget
(Webinar Slides) Legal and Investigative Research on a Budget(Webinar Slides) Legal and Investigative Research on a Budget
(Webinar Slides) Legal and Investigative Research on a Budget
 
Website Accessibility 101
Website Accessibility 101Website Accessibility 101
Website Accessibility 101
 
2019-03 Recomendation Engine @ Confoo
2019-03 Recomendation Engine @ Confoo2019-03 Recomendation Engine @ Confoo
2019-03 Recomendation Engine @ Confoo
 
The Future of the Web - Cold Front conference 2016
The Future of the Web - Cold Front conference 2016The Future of the Web - Cold Front conference 2016
The Future of the Web - Cold Front conference 2016
 
Intro to Web Apps using HTML5 and Javascript
Intro to Web Apps using HTML5 and JavascriptIntro to Web Apps using HTML5 and Javascript
Intro to Web Apps using HTML5 and Javascript
 
Future of Work: A conversation with 50skills
Future of Work: A conversation with 50skillsFuture of Work: A conversation with 50skills
Future of Work: A conversation with 50skills
 
Introduction to Facebook Graph API and OAuth 2
Introduction to Facebook Graph API and OAuth 2Introduction to Facebook Graph API and OAuth 2
Introduction to Facebook Graph API and OAuth 2
 
FSTO - An Affordable REST
FSTO - An Affordable RESTFSTO - An Affordable REST
FSTO - An Affordable REST
 
An Affordable REST - Coder Camp Hamilton 2019
An Affordable REST - Coder Camp Hamilton 2019An Affordable REST - Coder Camp Hamilton 2019
An Affordable REST - Coder Camp Hamilton 2019
 
Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs - Front in Bahia...
Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs  - Front in Bahia...Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs  - Front in Bahia...
Linked Data in Use: Schema.org, JSON-LD and hypermedia APIs - Front in Bahia...
 
Laravel Poznań Meetup #2 - Creating chatbots with BotMan
Laravel Poznań Meetup #2 - Creating chatbots with BotManLaravel Poznań Meetup #2 - Creating chatbots with BotMan
Laravel Poznań Meetup #2 - Creating chatbots with BotMan
 
Creating Chatbots with Botman - English
Creating Chatbots with Botman - EnglishCreating Chatbots with Botman - English
Creating Chatbots with Botman - English
 
Transforming your application with Elasticsearch
Transforming your application with ElasticsearchTransforming your application with Elasticsearch
Transforming your application with Elasticsearch
 
fb-researchの舞台裏No.2~技術編~(HatchUp主催 渋谷Facebookアプリ勉強会)
fb-researchの舞台裏No.2~技術編~(HatchUp主催 渋谷Facebookアプリ勉強会)fb-researchの舞台裏No.2~技術編~(HatchUp主催 渋谷Facebookアプリ勉強会)
fb-researchの舞台裏No.2~技術編~(HatchUp主催 渋谷Facebookアプリ勉強会)
 
Web of things introduction
Web of things introductionWeb of things introduction
Web of things introduction
 
Social Semantic Web on Facebook Open Graph protocol and Twitter Annotations
Social Semantic Web on Facebook Open Graph protocol and Twitter AnnotationsSocial Semantic Web on Facebook Open Graph protocol and Twitter Annotations
Social Semantic Web on Facebook Open Graph protocol and Twitter Annotations
 
SES SF 2013_Assess Diagnose Fix How to Become a Leading SEO Mechanic_Grant Si...
SES SF 2013_Assess Diagnose Fix How to Become a Leading SEO Mechanic_Grant Si...SES SF 2013_Assess Diagnose Fix How to Become a Leading SEO Mechanic_Grant Si...
SES SF 2013_Assess Diagnose Fix How to Become a Leading SEO Mechanic_Grant Si...
 

Recently uploaded

Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backElena Simperl
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsDorra BARTAGUIZ
 
Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesBhaskar Mitra
 
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo DiehlFuture Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo DiehlPeter Udo Diehl
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...Product School
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf91mobiles
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesLaura Byrne
 
НАДІЯ ФЕДЮШКО БАЦ «Професійне зростання QA спеціаліста»
НАДІЯ ФЕДЮШКО БАЦ  «Професійне зростання QA спеціаліста»НАДІЯ ФЕДЮШКО БАЦ  «Професійне зростання QA спеціаліста»
НАДІЯ ФЕДЮШКО БАЦ «Професійне зростання QA спеціаліста»QADay
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...Product School
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsPaul Groth
 
UiPath New York Community Day in-person event
UiPath New York Community Day in-person eventUiPath New York Community Day in-person event
UiPath New York Community Day in-person eventDianaGray10
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGuy Korland
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...Product School
 
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™UiPathCommunity
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Alison B. Lowndes
 
Quantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsQuantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsVlad Stirbu
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Ramesh Iyer
 
"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor TurskyiFwdays
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaRTTS
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance
 

Recently uploaded (20)

Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 
Search and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical FuturesSearch and Society: Reimagining Information Access for Radical Futures
Search and Society: Reimagining Information Access for Radical Futures
 
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo DiehlFuture Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
НАДІЯ ФЕДЮШКО БАЦ «Професійне зростання QA спеціаліста»
НАДІЯ ФЕДЮШКО БАЦ  «Професійне зростання QA спеціаліста»НАДІЯ ФЕДЮШКО БАЦ  «Професійне зростання QA спеціаліста»
НАДІЯ ФЕДЮШКО БАЦ «Професійне зростання QA спеціаліста»
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
UiPath New York Community Day in-person event
UiPath New York Community Day in-person eventUiPath New York Community Day in-person event
UiPath New York Community Day in-person event
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
 
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
Le nuove frontiere dell'AI nell'RPA con UiPath Autopilot™
 
Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
Quantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIsQuantum Computing: Current Landscape and the Future Role of APIs
Quantum Computing: Current Landscape and the Future Role of APIs
 
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
Builder.ai Founder Sachin Dev Duggal's Strategic Approach to Create an Innova...
 
"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdfFIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
FIDO Alliance Osaka Seminar: Passkeys and the Road Ahead.pdf
 

Zooz - Finding the perfect Roommate! [Slideshow]