SlideShare a Scribd company logo
1 of 66
Download to read offline
Mobile-Controlled Drone
Autonomous Delivery System
Harvard-HKUST International Design
Experience 2015
Brian Krentz, Mayank Kumar, Yixing Liu (Eva), Vinh Nguyen,
KamFai Tsang (Elvis), Erin Walk, Billie Wei, Ruilin Wen (Gary)
1
2
What? Why? Who? How?
Does
it
work?
What
is
next?
3
Starting Point
DJI Flamewheel 450 Pixhawk Autopilot
4
Reliable
FunctionalRequirements
Safe
User
FriendlyAffordable
5
400g
Payload
1 mile
> 5 m/s
Technical Specifications
6
1 mile
Communication
20 min
Battery Life
0.2%
loss rate
Technical Specifications
7
Customer & Vendor Surveys
$3.66
63.6%
0-2 miles
59.5
minutes
Small items
Low
weight
delivery
Most deliveries
≤ 1 mile
*Taken from survey of 33 users and 10 businesses.
Customer
Vendor
ReliableReliable
Fast & affordableFast & affordable
8
Long Wait for Delivery Unpredictable Delivery Time
Customer & Vendor Surveys
9
What? Who? How?
Does
it
work?
What
is
next?
What
?
Why?
10
imagecourtesyofAmazon
11
Flirtey drone
12
DJI Phantom 3
13
Mobile-Controlled Drone Autonomous Delivery System
14
https://youtu.be/7oQx65cQ5sA
15
What? How?
Does
it
work?
What
is
next?
What
?
Who?Why?
16
Young Professionals Local Business Owners
Our Users
Design Process
17
Research
User &
Business
Surveys
Prototyping
Testing, User
Feedback, Design
Iteration
Design ProcessDesign Process
18
Does
it
work?
What
is
next?
What
?
How?Why? Who?
Drone
Delivery
System
19
customers
place order
track drone
vendor
view orders
send drone out
successful delivery
Operations Flow Chart
20
Hardware
&
Firmware
Software Mechanical
Key Technical Points
21
Vendor
Interface
Customer
Interface
Application
Backend
GPS System
Rotors
Application
Order
Information
MAVLink
(Protocol)
Address Address
Current
State
Current
State
Command Command
Serial Port
(Interface)
Current
Location
Current
Location
Radio
Frequency
(Hardware)
Sensors
UAV
Controller
Communication UAV
Gripper
22
Hardware
&
Firmware
Software Mechanical
Key Technical Points
23
Qt Creator - Powerful cross-platform GUI design tool
MAVLink - Micro Air Vehicle Communication Protocol
Deployable to Android devices and potentially to iOS
24
User Interface
Functions & Logic
Communication MAVLink
Application Structure
QML
Serial Port (radio) WiFi
Page Handlers Functions
QtLocation &
QtPositioning APIs
C/C++
Responsive Design
25
User Interface: Paper Prototyping
26
27
Predicted vs. Actual Flight Path
Predicted
Actual
Path
60m Start
End
28
QtPositioning & QtLocation APIs
Customer
Interface
Address
GeoCodeModel
(Lat,Long)
Open Street
Maps (OSM)
Plugin
Vendor
Interface
MapItemView
Map Data
(map
image)
Map
Circle
(addresses)
Map Polyline
(trajectory)
(Lat,
Long)
(Lat, Long)
29
UAV
Communication Network
Android
Application
(TCP Client)
Computer
Ground
Control
Station
(TCP Server)
Flight Control
Commands
GPS &
Battery
Information
WiFi
433 MHz Telemetry
Flight information
mode switch
safety control
flight control command
30
MAVLink
To reduce latency, we tried to limit the transmission datastream by making smart
choices of messages. We picked 9 out of more than 200 MAVLink messages:
#1 heartbeat: time information
#2 system status: battery voltage and percentage
#30 attitude: row, pitch, yaw and attitude rates
#32 local position: x, y, z, 3-axis velocity and 3-axis acceleration
#33 global position: latitude, longitude, relative altitude
#105 high resolution IMU
#253 status text: drone flight log
#69 manual_control: direct flight commands and mode switch
#76 long command: arm and disarm
31
Features
Computer Ground Control Station (GCS) has
● a serial port for radio telemetry to communicate with UAV
● a TCP server to connect the Android app and UAV together
● a flexible mode switch panel
● a display of real-time flight data
● a console to display flight log
● four sliders for manual control of row, pitch, yaw, throttle and fast key
Android Application has:
● a TCP client to connect to the server via IP address and port number
● functional manual control in the local area network (LAN)
32
Ground Control
Station
App
33
App
34
User Experience Survey (Application)
Summary of the User Experience Survey Results, Survey Size N=12
Average Score (out of 10) Standard Deviation
Ease of ordering (Customer) 8.8 1.1
Usefulness of the Map (Customer) 7.8 2.3
Ease of delivering (Vendor) 9.2 0.7
Ease of checking pending orders
(Vendor)
9.7 0.6
Ease of checking battery status
(Vendor)
8.6 1.4
Overall 8.8 /
Key Technical Points
35
Hardware
&
Firmware
Software Mechanical
36
Delivery
Object Avoidance
Gripper
37
38
● Firmware onboard is consisted of multiple processes
● uORB stands for “Micro Object Request Broker”
● Is a mechanism for processes onboard to “communicate”
● Data packed into C structs and published/subscribed to
relevant “topics”
Inter-Process Communication
——uORB
Inter-Process Communication
——uORB
39
Sensor Process
Attitude Controller
Process
topic 3(irrelevant)
topic 2(manual control)
topic 1(sensor values )
40
Inter-Process Communication
——Advantage
publisher
process
subscriber
process
topic 3
uORB topic 2
topic 1
myProcess
myTopic
(parameters we need)
41
Controlling by Mobile/PC Terminal
How the Radio Controller works
● Radio signal is decoded into several values including: Roll, Pitch, Yaw and Throttle
● Then published to the MANUAL_CONTROL_SETPOINT topic
● Subscribed by the Position Controller Process
● Position Controller Process maneuvers the drone
Transmit Decode Roll
Pitch
Yaw
Throttle
Publish Position
Controller
Process
MANUAL_
CONTROL_
SETPOINT topic
Subscribe
42
Controlling by Mobile/PC Terminal
How our PC/Mobile Control works:
Instead of going through the decoding procedure, we send desired Roll, Pitch, Yaw, and
Throttle information directly to the mainboard using MAVlink Protocol
Mavlink
Roll
Pitch
Yaw
Throttle
Position
Controller
Process
MANUAL_
CONTROL_
SETPOINT topic
SubscribePublish
Delivery Route
3. Descend
2. Fly to Destination
5. Return Home
6. Shutoff 4. Dropoff
Launch
Site
navigation_main.cpp
commander.cpp
MAIN_STATE_DELIVERY
NAVIGATION_STATE_DELIVERY
delivery.cpp
Delivery
Address
1. Preflight
Proximity Sensor Specs
● Using the MB-1240 ultrasonic proximity sensor to detect barrier
● Accurate sensing range from 20cm to 600cm
● Sensor gives out analog output ranging from 0-3.3V
● ADC sampling function runs in System Ticks
● Sample rate of 100Hz
44
Barrier Avoidance Feature
45
Barrier Avoidance Feature
commander.cpp
adc.cpp
ADC_PROX uORB
MAIN_STATE_POSCTL
mc_pos_control.cpp
Publish a thrust informationBarrier
Detected
Stop
Ascend till
barrier avoided
Gripper Control
servo_ctl.c
delivery.cpp
turn_servo uORB
drv_pwm_output.h
46
Torque
1.8 kg*cm
47
Hardware
&
Firmware
Software Mechanical
Key Technical Points
48
Gripper
Landing Gear
Shell
49
Retractable-wire
pulley
Efficient delivery
Less power
consumed
Fragile
Servo controlled
Jaw
Simple
Robust
Gripper Design
Mechanical Design Evolution
50
Landing Gear: Design Analysis
More bending at all 4 corners
Cause UAV to topple
Redundant central part
Styrofoam supports at the four ends
Extended out for better balance
Easy attachment
Mechanical Design Evolution
51
Beautiful and robust
heavy: 600g
complex: hard to 3d print
and manufacture
Simpler, less complex,
still heavy: 250g
easy to manufacture but
fragile
Simpler, robust,
light (weight: 70g)
easy to manufacture,
And beautiful!
UAV Shell: Design Evolution
52
What
is
next?
What
?
Does
it
work?
Why? Who? How?
53
54
Performance Testing
Flight Speeds on a 57 m Trajectory
Trial Time in Flight
(s)
Mean Speed
(m/s)
1 8.5 6.7
2 8.3 6.8
3 7.8 7.3
Average 8.2 6.9
Battery Life Testing
Trial 3300mAh
(320g)
5000mAh
(541g)
1 (Min:Sec) 15:20 20:43
2 (Min:Sec) 15:21 20:09
Average 15:21 20:26
55
400g
payload
1 mile
> 5m/s
Technical Specifications
450g 1.25 miles 7 m/s
56
1 mile
Communication
20 min
Battery Life
0.2%
loss rate
Technical Specifications
1.25 miles20:26 0%
57
What
?
What’s
next?
Why? Who? How?
Does
it
work?
● Increasing payload to 1 kg (~ the weight of 15” pizza)
● Optimizing battery usage for 30 minutes
● Increasing delivery mileage to 3 km
○ Improving the communication system range
● Improving accuracy of drone tracking for door deliveries
● Developing more comprehensive object avoidance
○ More than just ascending
58
Future Work
Acknowledgements
● Evelyn Hu, Ling Shi, and Kei May Lau, thank you for creating and nurturing the Harvard-HKUST
program. Without you, none of us would be here right now enjoying this enriching experience
of international collaboration.
● Many thanks to our mentors Chris, Daniela, Avi, Lina, Xuan, and Bing, We greatly appreciated
your advice, guidance, and all those cross-time-zone Skype sessions. We couldn’t have done it
without your support!
● Sarah and Patricia, thank you for ensuring all of our needs were met in Cambridge and Hong
Kong and going above and beyond in taking care of us.
● The Harvard-HKUST Design Team is grateful for the financial support of Harvard alumnus
Xiang Dong “XD” Yang and Nancy Yang, the Harvard School of Engineering and Applied
Sciences, the Hong Kong University of Science and Technology, and the Harvard President’s
Innovation Fund for International Experiences.
59
Q&A
60
Connect
With Us
Website
http://projects.iq.harvard.edu/h2sp
Facebook
https://www.facebook.com/hkustharvard
61
Design
Team
2015
Brian Krentz
Mayank Kumar
Yixing Liu (Eva)
Vinh Nguyen
KamFai Tsang (Elvis)
Erin Walk
Billie Wei
Ruilin Wen (Gary)
62
Fin
63
Appendix I - Flight Safety Concern
64
Flight
Certification
Preflight
Checklist
Appendix II
http://www.gizmag.com/flirtey-drones-deliver-medicine-in-us-
first/38102/
● The citizens of Wise County, Virginia lack access to proper healthcare
● Previously, medical supplies were delivered each year to the area by truck
● CEO Sweeney says, "they said that if there was a way they could receive the
medication quicker that would help"
● Sweeney hopes this proof of concept whereby the benefits of drone delivery are
realized, albeit on a small scale, will act as a catalyst for the delivery of everyday
items.
65
Appendix III
http://www.forbes.com/sites/gregorymcneal/2015/02/15/the-drones-are-coming-
heres-what-president-obama-thinks-about-privacy/
● Drones are expected to create 70,000 jobs with an economic impact of more than
$13.6 billion in the first three years after their integration into U.S. skies.
66

More Related Content

Viewers also liked

Drone101 - Introduction to Multirotors
Drone101 - Introduction to MultirotorsDrone101 - Introduction to Multirotors
Drone101 - Introduction to MultirotorsJohnson Lam
 
Forge - DevCon 2016: Building a Drone Imagery Service
Forge - DevCon 2016: Building a Drone Imagery ServiceForge - DevCon 2016: Building a Drone Imagery Service
Forge - DevCon 2016: Building a Drone Imagery ServiceAutodesk
 
The Race for Same Day Delivery in Online Retail
The Race for Same Day Delivery in Online RetailThe Race for Same Day Delivery in Online Retail
The Race for Same Day Delivery in Online RetailSteve Keifer
 
Caixa Empreender Award 2016| Enterprise it - Connect Robotics (bgi)
Caixa Empreender Award 2016| Enterprise it - Connect Robotics (bgi)Caixa Empreender Award 2016| Enterprise it - Connect Robotics (bgi)
Caixa Empreender Award 2016| Enterprise it - Connect Robotics (bgi)Caixa Geral Depósitos
 
Master mitie drone plan
Master mitie drone  planMaster mitie drone  plan
Master mitie drone planGareth Davies
 
Mitie - Solving problems with drones
Mitie - Solving problems with dronesMitie - Solving problems with drones
Mitie - Solving problems with dronesWill Credicott
 
Sora Raku (Rakuten Drone Project)
Sora Raku (Rakuten Drone Project)Sora Raku (Rakuten Drone Project)
Sora Raku (Rakuten Drone Project)Rakuten Group, Inc.
 
Building a Thought Controlled Drone
Building a Thought Controlled DroneBuilding a Thought Controlled Drone
Building a Thought Controlled DroneJim McKeeth
 
Drone Academy Thailand Profile (May 2017)
Drone Academy Thailand Profile (May 2017)Drone Academy Thailand Profile (May 2017)
Drone Academy Thailand Profile (May 2017)Drone Academy Thailand
 

Viewers also liked (16)

Drones (UAV)
Drones (UAV)Drones (UAV)
Drones (UAV)
 
TARGET(EDIT).pptx
TARGET(EDIT).pptxTARGET(EDIT).pptx
TARGET(EDIT).pptx
 
Drone101 - Introduction to Multirotors
Drone101 - Introduction to MultirotorsDrone101 - Introduction to Multirotors
Drone101 - Introduction to Multirotors
 
Forge - DevCon 2016: Building a Drone Imagery Service
Forge - DevCon 2016: Building a Drone Imagery ServiceForge - DevCon 2016: Building a Drone Imagery Service
Forge - DevCon 2016: Building a Drone Imagery Service
 
The Race for Same Day Delivery in Online Retail
The Race for Same Day Delivery in Online RetailThe Race for Same Day Delivery in Online Retail
The Race for Same Day Delivery in Online Retail
 
Caixa Empreender Award 2016| Enterprise it - Connect Robotics (bgi)
Caixa Empreender Award 2016| Enterprise it - Connect Robotics (bgi)Caixa Empreender Award 2016| Enterprise it - Connect Robotics (bgi)
Caixa Empreender Award 2016| Enterprise it - Connect Robotics (bgi)
 
Master mitie drone plan
Master mitie drone  planMaster mitie drone  plan
Master mitie drone plan
 
Mitie - Solving problems with drones
Mitie - Solving problems with dronesMitie - Solving problems with drones
Mitie - Solving problems with drones
 
drone
dronedrone
drone
 
Drone delivery service
Drone delivery serviceDrone delivery service
Drone delivery service
 
Sora Raku (Rakuten Drone Project)
Sora Raku (Rakuten Drone Project)Sora Raku (Rakuten Drone Project)
Sora Raku (Rakuten Drone Project)
 
Building a Thought Controlled Drone
Building a Thought Controlled DroneBuilding a Thought Controlled Drone
Building a Thought Controlled Drone
 
Drone Academy Thailand Profile (May 2017)
Drone Academy Thailand Profile (May 2017)Drone Academy Thailand Profile (May 2017)
Drone Academy Thailand Profile (May 2017)
 
Drones: Present & Future
Drones: Present & FutureDrones: Present & Future
Drones: Present & Future
 
Drones
DronesDrones
Drones
 
Drone for the Future
Drone for the FutureDrone for the Future
Drone for the Future
 

Similar to Harvard HKUST 2015 - Final Presentation

Mining Assumptions for Software Components using Machine Learning
Mining Assumptions for Software Components using Machine LearningMining Assumptions for Software Components using Machine Learning
Mining Assumptions for Software Components using Machine LearningLionel Briand
 
istio: service mesh for all
istio: service mesh for allistio: service mesh for all
istio: service mesh for allMandar Jog
 
Driving Efficiency with Splunk Cloud at Gatwick Airport
Driving Efficiency with Splunk Cloud at Gatwick AirportDriving Efficiency with Splunk Cloud at Gatwick Airport
Driving Efficiency with Splunk Cloud at Gatwick AirportSplunk
 
slide presentation ai receptionist (1).pptx
slide presentation ai receptionist (1).pptxslide presentation ai receptionist (1).pptx
slide presentation ai receptionist (1).pptxAfiqIrzuan
 
DESIGN AND CONSTRUCTION OF A LINUX BASED WEB (1)
DESIGN AND CONSTRUCTION OF A LINUX BASED WEB (1)DESIGN AND CONSTRUCTION OF A LINUX BASED WEB (1)
DESIGN AND CONSTRUCTION OF A LINUX BASED WEB (1)Ibrahim Yusuf Salihu
 
Software and Machine Vision Competencies
Software and Machine Vision CompetenciesSoftware and Machine Vision Competencies
Software and Machine Vision CompetenciesAmita Chitale
 
Engineering Netflix Global Operations in the Cloud
Engineering Netflix Global Operations in the CloudEngineering Netflix Global Operations in the Cloud
Engineering Netflix Global Operations in the CloudJosh Evans
 
What is a Service Mesh and what can it do for your Microservices
What is a Service Mesh and what can it do for your MicroservicesWhat is a Service Mesh and what can it do for your Microservices
What is a Service Mesh and what can it do for your MicroservicesMatt Turner
 
Immersive Video Delivery: From Omnidirectional Video to Holography
Immersive Video Delivery: From Omnidirectional Video to HolographyImmersive Video Delivery: From Omnidirectional Video to Holography
Immersive Video Delivery: From Omnidirectional Video to HolographyAlpen-Adria-Universität
 
(ISM301) Engineering Netflix Global Operations In The Cloud
(ISM301) Engineering Netflix Global Operations In The Cloud(ISM301) Engineering Netflix Global Operations In The Cloud
(ISM301) Engineering Netflix Global Operations In The CloudAmazon Web Services
 
Telecoms Evangelist Meet 2
Telecoms Evangelist Meet 2Telecoms Evangelist Meet 2
Telecoms Evangelist Meet 2Arrows Group
 
Service Mesh - kilometer 30 in a microservice marathon
Service Mesh - kilometer 30 in a microservice marathonService Mesh - kilometer 30 in a microservice marathon
Service Mesh - kilometer 30 in a microservice marathonMichael Hofmann
 
Functional verification techniques EW16 session
Functional verification techniques  EW16 sessionFunctional verification techniques  EW16 session
Functional verification techniques EW16 sessionSameh El-Ashry
 
5 Tips for Better Water Quality Monitoring with ASVs
5 Tips for Better Water Quality Monitoring with ASVs5 Tips for Better Water Quality Monitoring with ASVs
5 Tips for Better Water Quality Monitoring with ASVsXylem Inc.
 
Build and Host Real-world Machine Learning Services from Scratch @ pycontw2019
Build and Host Real-world Machine Learning Services from Scratch @ pycontw2019 Build and Host Real-world Machine Learning Services from Scratch @ pycontw2019
Build and Host Real-world Machine Learning Services from Scratch @ pycontw2019 Chun-Yu Tseng
 
SARENA: SFC-Enabled Architecture for Adaptive Video Streaming Applications
SARENA: SFC-Enabled Architecture for Adaptive Video Streaming ApplicationsSARENA: SFC-Enabled Architecture for Adaptive Video Streaming Applications
SARENA: SFC-Enabled Architecture for Adaptive Video Streaming ApplicationsAlpen-Adria-Universität
 
Bringing Learnings from Googley Microservices with gRPC - Varun Talwar, Google
Bringing Learnings from Googley Microservices with gRPC - Varun Talwar, GoogleBringing Learnings from Googley Microservices with gRPC - Varun Talwar, Google
Bringing Learnings from Googley Microservices with gRPC - Varun Talwar, GoogleAmbassador Labs
 
IEEEGlobecom'22-OL-RICHTER.pdf
IEEEGlobecom'22-OL-RICHTER.pdfIEEEGlobecom'22-OL-RICHTER.pdf
IEEEGlobecom'22-OL-RICHTER.pdfReza Farahani
 

Similar to Harvard HKUST 2015 - Final Presentation (20)

Mining Assumptions for Software Components using Machine Learning
Mining Assumptions for Software Components using Machine LearningMining Assumptions for Software Components using Machine Learning
Mining Assumptions for Software Components using Machine Learning
 
istio: service mesh for all
istio: service mesh for allistio: service mesh for all
istio: service mesh for all
 
Driving Efficiency with Splunk Cloud at Gatwick Airport
Driving Efficiency with Splunk Cloud at Gatwick AirportDriving Efficiency with Splunk Cloud at Gatwick Airport
Driving Efficiency with Splunk Cloud at Gatwick Airport
 
slide presentation ai receptionist (1).pptx
slide presentation ai receptionist (1).pptxslide presentation ai receptionist (1).pptx
slide presentation ai receptionist (1).pptx
 
DESIGN AND CONSTRUCTION OF A LINUX BASED WEB (1)
DESIGN AND CONSTRUCTION OF A LINUX BASED WEB (1)DESIGN AND CONSTRUCTION OF A LINUX BASED WEB (1)
DESIGN AND CONSTRUCTION OF A LINUX BASED WEB (1)
 
Software and Machine Vision Competencies
Software and Machine Vision CompetenciesSoftware and Machine Vision Competencies
Software and Machine Vision Competencies
 
Engineering Netflix Global Operations in the Cloud
Engineering Netflix Global Operations in the CloudEngineering Netflix Global Operations in the Cloud
Engineering Netflix Global Operations in the Cloud
 
What is a Service Mesh and what can it do for your Microservices
What is a Service Mesh and what can it do for your MicroservicesWhat is a Service Mesh and what can it do for your Microservices
What is a Service Mesh and what can it do for your Microservices
 
Immersive Video Delivery: From Omnidirectional Video to Holography
Immersive Video Delivery: From Omnidirectional Video to HolographyImmersive Video Delivery: From Omnidirectional Video to Holography
Immersive Video Delivery: From Omnidirectional Video to Holography
 
(ISM301) Engineering Netflix Global Operations In The Cloud
(ISM301) Engineering Netflix Global Operations In The Cloud(ISM301) Engineering Netflix Global Operations In The Cloud
(ISM301) Engineering Netflix Global Operations In The Cloud
 
Telecoms Evangelist Meet 2
Telecoms Evangelist Meet 2Telecoms Evangelist Meet 2
Telecoms Evangelist Meet 2
 
Hello istio
Hello istioHello istio
Hello istio
 
Service Mesh - kilometer 30 in a microservice marathon
Service Mesh - kilometer 30 in a microservice marathonService Mesh - kilometer 30 in a microservice marathon
Service Mesh - kilometer 30 in a microservice marathon
 
Functional verification techniques EW16 session
Functional verification techniques  EW16 sessionFunctional verification techniques  EW16 session
Functional verification techniques EW16 session
 
5 Tips for Better Water Quality Monitoring with ASVs
5 Tips for Better Water Quality Monitoring with ASVs5 Tips for Better Water Quality Monitoring with ASVs
5 Tips for Better Water Quality Monitoring with ASVs
 
Build and Host Real-world Machine Learning Services from Scratch @ pycontw2019
Build and Host Real-world Machine Learning Services from Scratch @ pycontw2019 Build and Host Real-world Machine Learning Services from Scratch @ pycontw2019
Build and Host Real-world Machine Learning Services from Scratch @ pycontw2019
 
Resume
ResumeResume
Resume
 
SARENA: SFC-Enabled Architecture for Adaptive Video Streaming Applications
SARENA: SFC-Enabled Architecture for Adaptive Video Streaming ApplicationsSARENA: SFC-Enabled Architecture for Adaptive Video Streaming Applications
SARENA: SFC-Enabled Architecture for Adaptive Video Streaming Applications
 
Bringing Learnings from Googley Microservices with gRPC - Varun Talwar, Google
Bringing Learnings from Googley Microservices with gRPC - Varun Talwar, GoogleBringing Learnings from Googley Microservices with gRPC - Varun Talwar, Google
Bringing Learnings from Googley Microservices with gRPC - Varun Talwar, Google
 
IEEEGlobecom'22-OL-RICHTER.pdf
IEEEGlobecom'22-OL-RICHTER.pdfIEEEGlobecom'22-OL-RICHTER.pdf
IEEEGlobecom'22-OL-RICHTER.pdf
 

Recently uploaded

Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptxLBM Solutions
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024BookNet Canada
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfjimielynbastida
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 

Recently uploaded (20)

Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Key Features Of Token Development (1).pptx
Key  Features Of Token  Development (1).pptxKey  Features Of Token  Development (1).pptx
Key Features Of Token Development (1).pptx
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
New from BookNet Canada for 2024: BNC BiblioShare - Tech Forum 2024
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Pigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping ElbowsPigging Solutions Piggable Sweeping Elbows
Pigging Solutions Piggable Sweeping Elbows
 
Science&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdfScience&tech:THE INFORMATION AGE STS.pdf
Science&tech:THE INFORMATION AGE STS.pdf
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptxVulnerability_Management_GRC_by Sohang Sengupta.pptx
Vulnerability_Management_GRC_by Sohang Sengupta.pptx
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 

Harvard HKUST 2015 - Final Presentation