SlideShare une entreprise Scribd logo
1  sur  110
Télécharger pour lire hors ligne
Google Glass 開發經驗分享 
Johnny Sung 
x 2014.10.26 @ MOPCON
Johnny Sung 
Mobile devices Developer 
https://fb.com/j796160836 
https://plus.google.com/+JohnnySung 
http://about.me/j796160836
Hiiir Works
世新廣播電臺 
Personal Works
Battery Checker 
https://glass.google.com/glassware/14294674819446771796
百萬種Google glass爽的⽅方式 
2014.10.26 
2014.06.25 
Developing Google Glass 
2014.08.27 
Google Glass 開發經驗分享
Handmade 
USB - 3.5mm phonejack for Glass™
Agenda 
• Google Glass 介紹 
• Mirror API 初探 
• 快速上⼿手 Glass Development Kit (GDK) 開發 
• Glassware上架審核重點 
• Google glass 與 Android wear 的異同之處
你知道嗎?
戴 Glass 的⼈人都有份感恩的⼼心
時間很寶貴。
Muki Wu (吳姿穎) 
MUKI space* 
台灣知名部落客 
• Wordpress 課程 
• RWD課程 
• ⽂文具⼿手帳 
(因為出賣朋友只好⼯工商⼀一下...)
Timeline (時間軸) 
https://www.youtube.com/watch?v=jK3WLILYhQs
MyGlass 連接 Google Glass
Live Card Clock Static Card
Clock 
Static Card 
Now Past
Clock 
Live Card 
Settings
Glass development 
• Mirror API 
• Glass Development Kit (GDK) 
• Hybrid
Mirror API
Mirror API 
• Periodic notifications & Static Card 
(Push notifications) 
• RESTful API 
• Choose a favorite language you like 
Go Java .Net PHP Python Ruby
Mirror API 可以做到 
• 可⾃自由抽換⾃自⼰己建⽴立的 Static Card 
• 聯絡⼈人(分享的對象) 
• 語⾳音指令 (eg: Take a note) 
• Location updates
Mirror API - OAuth Settings 
• Google Developers Console 
• 勾選 Mirror API 
• 設定OAuth Client ID
Tips for Mirror API (PHP) 
• Edited: $api_simple_key 不需要了 
• 沒有 DNS 域名? ⽤用 DNS 反解吧 
$ nslookup 114.42.21.220 
Server: 10.100.83.253 
Address: 10.100.83.253#53 
Non-authoritative answer: 
220.21.42.114.in-addr.arpa name = 114-42-21-220.dynamic.hinet.net. 
http://114-42-21-220.dynamic.hinet.net/
Mirror API - OAuth Settings 
• APPLICATION TYPE 
• Web application 
• AUTHORIZED JAVASCRIPT ORIGINS 
• http://114-42-21-220.dynamic.hinet.net/ 
• AUTHORIZED REDIRECT URI 
• http://114-42-21-220.dynamic.hinet.net/mirrorapi/ 
oauth2callback.php
⼤大家都說 Glass 是 ...
盗撮 
神器
拍照三部曲 
• ⽂文雅版 
• Ok glass, Take a picture 
Muki Wu
拍照三部曲 
• 技巧版 
• 眨眼拍照
拍照三部曲 
• ⽂文⻘青版 
• 推眼鏡
You can do this …
Ok glass, Take a picture. 
But don’t do this …
Glass Development Kit (GDK)
Android 4.4.2 KitKat (API 19) 
Glass Development Kit 
Preview 4.4.2 (API 19) 
Glass Development Kit Sneak Peek 
4.0.3 (API 15) 
Android 5.0
=. .
Glass development 
• Glass Development Kit (GDK) 
• Ongoing task & Live Card (活動卡⽚片,即時卡⽚片) 
• Low Frequency Rendering 
• High Frequency Rendering 
• Immersion (沉浸式體驗,獨佔式體驗)
<activity 
android:name=".MainActivity" 
android:label=“@string/app_name"> 
<intent-filter> 
<action android:name="android.intent.action.MAIN" /> 
<category android:name="android.intent.category.LAUNCHER" /> 
</intent-filter> 
</activity> 
<activity 
android:name=".MainActivity" 
android:immersive="true" > 
<intent-filter> 
<action 
android:name="com.google.android.glass.action.VOICE_TRIGGER" /> 
</intent-filter> 
<meta-data 
android:name="com.google.android.glass.VoiceTrigger" 
android:resource="@xml/voice_trigger_start" /> 
</activity>
public class HelloActivity extends Activity { 
private TextView sampleTextview; 
@Override 
protected void onCreate(Bundle savedInstanceState) { 
super.onCreate(savedInstanceState); 
setContentView(R.layout.card_main); 
sampleTextview = (TextView) findViewById(R.id.sample_txt); 
} 
} 
As same as android :D
Voice trigger 
ok glass, show me a demo
VoiceTriggers.Command 
• add an event 
• calculate 
• call me a car 
• capture a panorama 
• check me in 
• check this out 
• control my car 
• control my home 
• explore nearby 
• explore the stars 
• find a bike 
• find a dentist 
• find a doctor 
• find a hospital 
• find a passage 
• find a place 
• find a place to stay 
• find a product 
• find a recipe 
• find a video 
• find a website 
• find reviews 
• find the exchange rate 
• find the price 
• flip a coin 
• give me feedback 
• help me sign in 
• keep me awake 
• learn an instrument 
• learn a song Pick one you like !
Layout
Layout 
•Screen Size: 640 x 320 
•Padding: 40 x 40 
•Bottom Bar: 560 x 40 
• https://developers.google.com/glass/develop/gdk/ui-widgets 
• https://developers.google.com/glass/design/style
Layout
Touch input
Keypad 
Tap translates to KEYCODE_DPAD_CENTER. 
A camera button press 
translates to KEYCODE_CAMERA. 
Swipe down translates to KEYCODE_BACK.
Gestures 
• SWIPE_DOWN 
• TWO_SWIPE_DOWN 
• SWIPE_LEFT 
• TWO_SWIPE_LEFT 
• SWIPE_RIGHT 
• TWO_SWIPE_RIGHT 
• SWIPE_UP 
• TWO_SWIPE_UP 
• TAP 
• TWO_TAP 
• THREE_TAP 
• LONG_PRESS 
• TWO_LONG_PRESS 
• THREE_LONG_PRESS
http://www.slideshare.net/j796160836/developing-google-glass
Glass 殺⼿手級應⽤用?
舒壓。
Demo
Glassware上架審核重點
送審時間表 
• 05.23 收到送件 (BatteryLevel) 
• 05.29 語⾳音指令通過 
( Show the battery level -> Check the battery ) 
• 06.11 改名叫 Battery checker 更新送審
• 06.27 初步審查通過,開啟 Issue Tracker 
• 07.17 追加 Issue 
• 07.30 修完全部的 Issue 
• 08.11 從MyGlass看到 Developer only 
• 08.26 Ready for launch 
• 08.29 正式 Release
Product Icon 
Before After 
Provide logo icons that are white on transparent
640 × 360 tile image
640 × 360 tile image 
Before After
640 × 360 tile image
Screenshot & Context picture 
2528 × 1856 
640 × 360
Layout 
Before 
After
Layout
Baseline of text
Baseline of text
Layout
Product descriptions 
Glassware 
• A simple app that showed the current battery 
level of glass. Unlike the percentage in 
settings page, this app will response with 
voice directly. Hopes you will like it! 
Glass
Product descriptions 
• 區分 Android app vs. the Glassware. 
• Use Glass trademark 
• Glass™ 
• Glass is a trademark of Google Inc.
Assets Issue
常⾒見的錯誤 
• 不要將 Glass 放⼊入產品名稱的⼀一部份 
GlassPresenter Presenter for Glass™
常⾒見的錯誤 
• App功能不要照搬 
• Horizontal tugging feedback 
• 沒有作⽤用的觸控應該發出DISALLOW的聲⾳音 
(咚咚...咚咚...
Developer Settings
Show layout bounds
Layout screen overlay
Android Wear
Notification Center
Glass vs Wear 
• ⼀一個是眼鏡 
• Wifi / Bluetooth 4.0 
• 相機 
• 離線語⾳音辨識 
• 可獨⽴立作業 
• LiveCard 
• ⼀一個是⼿手錶 
• Bluetooth only 
• ⼼心跳檢測 
• 震動 
• ⼿手機螢幕的延伸 
• Notifications
Q & A
辦公室景⾊色
連結開發者、店家與消費者三方 
除了優惠券,還是聯播網 
在對的時間、對的地點給對的優惠券
Google glass developer Taiwan 
http://fb.com/groups/glassdev.taiwan 
不只聊 Glass 喔
惐晊EFS 
䵻ⵌ.01$0/ 
7*1闍䌌Ⰵ㜥⽷ 
謝謝總召 Mikimoto ⼤大⼤大

Contenu connexe

En vedette

Politieke cartoons
Politieke cartoonsPolitieke cartoons
Politieke cartoonsmupsterr
 
‘Media bevestigen stigma moslims’ NRC Handelsblad donderdag 6 november 2014
‘Media bevestigen stigma moslims’  NRC Handelsblad  donderdag 6 november 2014‘Media bevestigen stigma moslims’  NRC Handelsblad  donderdag 6 november 2014
‘Media bevestigen stigma moslims’ NRC Handelsblad donderdag 6 november 2014mupsterr
 
Good!愛點兒 - 雲端電子點餐系統
Good!愛點兒 - 雲端電子點餐系統Good!愛點兒 - 雲端電子點餐系統
Good!愛點兒 - 雲端電子點餐系統Johnny Sung
 
Google Goggles 拍一下 就能辨識圖片來源
Google Goggles 拍一下 就能辨識圖片來源Google Goggles 拍一下 就能辨識圖片來源
Google Goggles 拍一下 就能辨識圖片來源yunjuli
 
製作 Unity Plugin for iOS
製作 Unity Plugin for iOS製作 Unity Plugin for iOS
製作 Unity Plugin for iOSJohnny Sung
 
uPresenter, the story.
uPresenter, the story.uPresenter, the story.
uPresenter, the story.Johnny Sung
 
製作 Unity Plugin for Android
製作 Unity Plugin for Android製作 Unity Plugin for Android
製作 Unity Plugin for AndroidJohnny Sung
 
[Android] 多執行緒 - Handler和Thread的關係
[Android] 多執行緒 - Handler和Thread的關係[Android] 多執行緒 - Handler和Thread的關係
[Android] 多執行緒 - Handler和Thread的關係Johnny Sung
 
Developing Google Glass
Developing Google GlassDeveloping Google Glass
Developing Google GlassJohnny Sung
 
Everything About Bluetooth (淺談藍牙 4.0) - Central 篇
Everything About Bluetooth (淺談藍牙 4.0) - Central 篇Everything About Bluetooth (淺談藍牙 4.0) - Central 篇
Everything About Bluetooth (淺談藍牙 4.0) - Central 篇Johnny Sung
 
First meet with Android Auto
First meet with Android AutoFirst meet with Android Auto
First meet with Android AutoJohnny Sung
 
Les reseaux sociaux revolutionnent le tourisme le cas val thorens
Les reseaux sociaux revolutionnent le tourisme le cas val thorensLes reseaux sociaux revolutionnent le tourisme le cas val thorens
Les reseaux sociaux revolutionnent le tourisme le cas val thorensGregory Guzzo
 

En vedette (12)

Politieke cartoons
Politieke cartoonsPolitieke cartoons
Politieke cartoons
 
‘Media bevestigen stigma moslims’ NRC Handelsblad donderdag 6 november 2014
‘Media bevestigen stigma moslims’  NRC Handelsblad  donderdag 6 november 2014‘Media bevestigen stigma moslims’  NRC Handelsblad  donderdag 6 november 2014
‘Media bevestigen stigma moslims’ NRC Handelsblad donderdag 6 november 2014
 
Good!愛點兒 - 雲端電子點餐系統
Good!愛點兒 - 雲端電子點餐系統Good!愛點兒 - 雲端電子點餐系統
Good!愛點兒 - 雲端電子點餐系統
 
Google Goggles 拍一下 就能辨識圖片來源
Google Goggles 拍一下 就能辨識圖片來源Google Goggles 拍一下 就能辨識圖片來源
Google Goggles 拍一下 就能辨識圖片來源
 
製作 Unity Plugin for iOS
製作 Unity Plugin for iOS製作 Unity Plugin for iOS
製作 Unity Plugin for iOS
 
uPresenter, the story.
uPresenter, the story.uPresenter, the story.
uPresenter, the story.
 
製作 Unity Plugin for Android
製作 Unity Plugin for Android製作 Unity Plugin for Android
製作 Unity Plugin for Android
 
[Android] 多執行緒 - Handler和Thread的關係
[Android] 多執行緒 - Handler和Thread的關係[Android] 多執行緒 - Handler和Thread的關係
[Android] 多執行緒 - Handler和Thread的關係
 
Developing Google Glass
Developing Google GlassDeveloping Google Glass
Developing Google Glass
 
Everything About Bluetooth (淺談藍牙 4.0) - Central 篇
Everything About Bluetooth (淺談藍牙 4.0) - Central 篇Everything About Bluetooth (淺談藍牙 4.0) - Central 篇
Everything About Bluetooth (淺談藍牙 4.0) - Central 篇
 
First meet with Android Auto
First meet with Android AutoFirst meet with Android Auto
First meet with Android Auto
 
Les reseaux sociaux revolutionnent le tourisme le cas val thorens
Les reseaux sociaux revolutionnent le tourisme le cas val thorensLes reseaux sociaux revolutionnent le tourisme le cas val thorens
Les reseaux sociaux revolutionnent le tourisme le cas val thorens
 

Similaire à [MOPCON 2014] Google Glass 開發經驗分享

eBook - Developing Applications for Google Glass
eBook - Developing Applications for Google Glass eBook - Developing Applications for Google Glass
eBook - Developing Applications for Google Glass Unvired Inc.
 
Building for Google Glass - What You Need to Know
Building for Google Glass - What You Need to KnowBuilding for Google Glass - What You Need to Know
Building for Google Glass - What You Need to KnowApigee | Google Cloud
 
Google Glass @ BarCamp Orlando 2013
Google Glass @ BarCamp Orlando 2013Google Glass @ BarCamp Orlando 2013
Google Glass @ BarCamp Orlando 2013Jacques Fu
 
gyroFIRE - Google Glass Simulator
gyroFIRE - Google Glass SimulatorgyroFIRE - Google Glass Simulator
gyroFIRE - Google Glass SimulatorIna Centaur
 
Head first android apps dev tools
Head first android apps dev toolsHead first android apps dev tools
Head first android apps dev toolsShaka Huang
 
Conversionista : Conversion manager course - Stockholm 20 march 2013
Conversionista : Conversion manager course  - Stockholm 20 march 2013Conversionista : Conversion manager course  - Stockholm 20 march 2013
Conversionista : Conversion manager course - Stockholm 20 march 2013Craig Sullivan
 
Introduzione alle metodologie di sviluppo agile
Introduzione alle metodologie di sviluppo agileIntroduzione alle metodologie di sviluppo agile
Introduzione alle metodologie di sviluppo agileStefano Valle
 
Build (Web)VR with A-Frame (COSCUP 2019 Taipei)
Build (Web)VR with A-Frame (COSCUP 2019 Taipei)Build (Web)VR with A-Frame (COSCUP 2019 Taipei)
Build (Web)VR with A-Frame (COSCUP 2019 Taipei)Robert 'Bob' Reyes
 
Developing with Google Glass and Xamarin
Developing with Google Glass and XamarinDeveloping with Google Glass and Xamarin
Developing with Google Glass and XamarinXamarin
 
移动端Web app开发
移动端Web app开发移动端Web app开发
移动端Web app开发Zhang Xiaoxue
 
Create Your Own VR Experience
Create Your Own VR ExperienceCreate Your Own VR Experience
Create Your Own VR ExperienceMark Billinghurst
 
Experience with Google Glass and Business Applications
Experience with Google Glass and Business ApplicationsExperience with Google Glass and Business Applications
Experience with Google Glass and Business ApplicationsMarkus Van Kempen
 
Responsive websites. Toolbox
Responsive websites. ToolboxResponsive websites. Toolbox
Responsive websites. ToolboxWojtek Zając
 
Cardboard presentation - Narendra Parmar
Cardboard presentation - Narendra ParmarCardboard presentation - Narendra Parmar
Cardboard presentation - Narendra ParmarNarendra Parmar
 
Tri droid web development on android
Tri droid   web development on androidTri droid   web development on android
Tri droid web development on androidBrandon Smith
 
Web Development on Android
Web Development on AndroidWeb Development on Android
Web Development on AndroidBrandon Smith
 
Forge - DevCon 2016: Collaborative VR using Google Cardboard & the View & Dat...
Forge - DevCon 2016: Collaborative VR using Google Cardboard & the View & Dat...Forge - DevCon 2016: Collaborative VR using Google Cardboard & the View & Dat...
Forge - DevCon 2016: Collaborative VR using Google Cardboard & the View & Dat...Autodesk
 
PSU Web 2014: UX and Design Tools That Will Improve Your Productivity
PSU Web 2014: UX and Design Tools That Will Improve Your ProductivityPSU Web 2014: UX and Design Tools That Will Improve Your Productivity
PSU Web 2014: UX and Design Tools That Will Improve Your ProductivityJennifer Aldrich
 

Similaire à [MOPCON 2014] Google Glass 開發經驗分享 (20)

eBook - Developing Applications for Google Glass
eBook - Developing Applications for Google Glass eBook - Developing Applications for Google Glass
eBook - Developing Applications for Google Glass
 
Building for Google Glass - What You Need to Know
Building for Google Glass - What You Need to KnowBuilding for Google Glass - What You Need to Know
Building for Google Glass - What You Need to Know
 
Glass Project
Glass ProjectGlass Project
Glass Project
 
Google Glass @ BarCamp Orlando 2013
Google Glass @ BarCamp Orlando 2013Google Glass @ BarCamp Orlando 2013
Google Glass @ BarCamp Orlando 2013
 
gyroFIRE - Google Glass Simulator
gyroFIRE - Google Glass SimulatorgyroFIRE - Google Glass Simulator
gyroFIRE - Google Glass Simulator
 
Head first android apps dev tools
Head first android apps dev toolsHead first android apps dev tools
Head first android apps dev tools
 
Conversionista : Conversion manager course - Stockholm 20 march 2013
Conversionista : Conversion manager course  - Stockholm 20 march 2013Conversionista : Conversion manager course  - Stockholm 20 march 2013
Conversionista : Conversion manager course - Stockholm 20 march 2013
 
Introduzione alle metodologie di sviluppo agile
Introduzione alle metodologie di sviluppo agileIntroduzione alle metodologie di sviluppo agile
Introduzione alle metodologie di sviluppo agile
 
Build (Web)VR with A-Frame (COSCUP 2019 Taipei)
Build (Web)VR with A-Frame (COSCUP 2019 Taipei)Build (Web)VR with A-Frame (COSCUP 2019 Taipei)
Build (Web)VR with A-Frame (COSCUP 2019 Taipei)
 
Developing with Google Glass and Xamarin
Developing with Google Glass and XamarinDeveloping with Google Glass and Xamarin
Developing with Google Glass and Xamarin
 
移动端Web app开发
移动端Web app开发移动端Web app开发
移动端Web app开发
 
Create Your Own VR Experience
Create Your Own VR ExperienceCreate Your Own VR Experience
Create Your Own VR Experience
 
12206857
12206857 12206857
12206857
 
Experience with Google Glass and Business Applications
Experience with Google Glass and Business ApplicationsExperience with Google Glass and Business Applications
Experience with Google Glass and Business Applications
 
Responsive websites. Toolbox
Responsive websites. ToolboxResponsive websites. Toolbox
Responsive websites. Toolbox
 
Cardboard presentation - Narendra Parmar
Cardboard presentation - Narendra ParmarCardboard presentation - Narendra Parmar
Cardboard presentation - Narendra Parmar
 
Tri droid web development on android
Tri droid   web development on androidTri droid   web development on android
Tri droid web development on android
 
Web Development on Android
Web Development on AndroidWeb Development on Android
Web Development on Android
 
Forge - DevCon 2016: Collaborative VR using Google Cardboard & the View & Dat...
Forge - DevCon 2016: Collaborative VR using Google Cardboard & the View & Dat...Forge - DevCon 2016: Collaborative VR using Google Cardboard & the View & Dat...
Forge - DevCon 2016: Collaborative VR using Google Cardboard & the View & Dat...
 
PSU Web 2014: UX and Design Tools That Will Improve Your Productivity
PSU Web 2014: UX and Design Tools That Will Improve Your ProductivityPSU Web 2014: UX and Design Tools That Will Improve Your Productivity
PSU Web 2014: UX and Design Tools That Will Improve Your Productivity
 

Plus de Johnny Sung

[AI / ML] 用 LLM (Large language model) 來整理您的知識庫 @Devfest Taipei 2023
[AI / ML] 用 LLM (Large language model) 來整理您的知識庫 @Devfest Taipei 2023[AI / ML] 用 LLM (Large language model) 來整理您的知識庫 @Devfest Taipei 2023
[AI / ML] 用 LLM (Large language model) 來整理您的知識庫 @Devfest Taipei 2023Johnny Sung
 
[Flutter] Flutter Provider 看似簡單卻又不簡單的狀態管理工具 @ Devfest Kaohsiung 2023
[Flutter] Flutter Provider 看似簡單卻又不簡單的狀態管理工具 @ Devfest Kaohsiung 2023[Flutter] Flutter Provider 看似簡單卻又不簡單的狀態管理工具 @ Devfest Kaohsiung 2023
[Flutter] Flutter Provider 看似簡單卻又不簡單的狀態管理工具 @ Devfest Kaohsiung 2023Johnny Sung
 
[Golang] 以 Mobile App 工程師視角,帶你進入 Golang 的世界 (Introduction of GoLang)
[Golang] 以 Mobile App 工程師視角,帶你進入 Golang 的世界 (Introduction of GoLang) [Golang] 以 Mobile App 工程師視角,帶你進入 Golang 的世界 (Introduction of GoLang)
[Golang] 以 Mobile App 工程師視角,帶你進入 Golang 的世界 (Introduction of GoLang) Johnny Sung
 
[Flutter] 來體驗 bloc 小方塊的神奇魔法 @Devfest 2022
[Flutter] 來體驗 bloc 小方塊的神奇魔法 @Devfest 2022[Flutter] 來體驗 bloc 小方塊的神奇魔法 @Devfest 2022
[Flutter] 來體驗 bloc 小方塊的神奇魔法 @Devfest 2022Johnny Sung
 
與 Sign in with Apple 的愛恨情仇 @ iPlayground2020
與 Sign in with Apple 的愛恨情仇 @ iPlayground2020與 Sign in with Apple 的愛恨情仇 @ iPlayground2020
與 Sign in with Apple 的愛恨情仇 @ iPlayground2020Johnny Sung
 
Flutter 是什麼?用 Flutter 會省到時間嗎? @ GDG Devfest2020
Flutter 是什麼?用 Flutter 會省到時間嗎? @ GDG Devfest2020Flutter 是什麼?用 Flutter 會省到時間嗎? @ GDG Devfest2020
Flutter 是什麼?用 Flutter 會省到時間嗎? @ GDG Devfest2020Johnny Sung
 
談談 Android constraint layout
談談 Android constraint layout談談 Android constraint layout
談談 Android constraint layoutJohnny Sung
 
炎炎夏日學 Android 課程 - Part3: Android app 實作
炎炎夏日學 Android 課程 - Part3: Android app 實作炎炎夏日學 Android 課程 - Part3: Android app 實作
炎炎夏日學 Android 課程 - Part3: Android app 實作Johnny Sung
 
炎炎夏日學 Android 課程 - Part1: Kotlin 語法介紹
炎炎夏日學 Android 課程 -  Part1: Kotlin 語法介紹炎炎夏日學 Android 課程 -  Part1: Kotlin 語法介紹
炎炎夏日學 Android 課程 - Part1: Kotlin 語法介紹Johnny Sung
 
炎炎夏日學 Android 課程 - Part2: Android 元件介紹
炎炎夏日學 Android 課程 - Part2: Android 元件介紹炎炎夏日學 Android 課程 - Part2: Android 元件介紹
炎炎夏日學 Android 課程 - Part2: Android 元件介紹Johnny Sung
 
炎炎夏日學 Android 課程 - Part 0: 環境搭建
炎炎夏日學 Android 課程 - Part 0: 環境搭建炎炎夏日學 Android 課程 - Part 0: 環境搭建
炎炎夏日學 Android 課程 - Part 0: 環境搭建Johnny Sung
 
About Mobile Accessibility
About Mobile AccessibilityAbout Mobile Accessibility
About Mobile AccessibilityJohnny Sung
 
Introductions of Messaging bot 做聊天機器人
Introductions of Messaging bot 做聊天機器人Introductions of Messaging bot 做聊天機器人
Introductions of Messaging bot 做聊天機器人Johnny Sung
 
Everything About Bluetooth (淺談藍牙 4.0) - Peripheral 篇
Everything About Bluetooth (淺談藍牙 4.0) - Peripheral 篇Everything About Bluetooth (淺談藍牙 4.0) - Peripheral 篇
Everything About Bluetooth (淺談藍牙 4.0) - Peripheral 篇Johnny Sung
 
[MOPCON 2015] 談談行動裝置的 Accessibility
[MOPCON 2015] 談談行動裝置的 Accessibility[MOPCON 2015] 談談行動裝置的 Accessibility
[MOPCON 2015] 談談行動裝置的 AccessibilityJohnny Sung
 
A Quick look at ANCS (Apple Notification Center Service)
A Quick look at ANCS (Apple Notification Center Service)A Quick look at ANCS (Apple Notification Center Service)
A Quick look at ANCS (Apple Notification Center Service)Johnny Sung
 
Android Wear Development
Android Wear DevelopmentAndroid Wear Development
Android Wear DevelopmentJohnny Sung
 
Android workshop - 02. Glass development 101
Android workshop - 02. Glass development 101Android workshop - 02. Glass development 101
Android workshop - 02. Glass development 101Johnny Sung
 
Android workshop - 01. Getting started on android phone
Android workshop - 01. Getting started on android phoneAndroid workshop - 01. Getting started on android phone
Android workshop - 01. Getting started on android phoneJohnny Sung
 

Plus de Johnny Sung (19)

[AI / ML] 用 LLM (Large language model) 來整理您的知識庫 @Devfest Taipei 2023
[AI / ML] 用 LLM (Large language model) 來整理您的知識庫 @Devfest Taipei 2023[AI / ML] 用 LLM (Large language model) 來整理您的知識庫 @Devfest Taipei 2023
[AI / ML] 用 LLM (Large language model) 來整理您的知識庫 @Devfest Taipei 2023
 
[Flutter] Flutter Provider 看似簡單卻又不簡單的狀態管理工具 @ Devfest Kaohsiung 2023
[Flutter] Flutter Provider 看似簡單卻又不簡單的狀態管理工具 @ Devfest Kaohsiung 2023[Flutter] Flutter Provider 看似簡單卻又不簡單的狀態管理工具 @ Devfest Kaohsiung 2023
[Flutter] Flutter Provider 看似簡單卻又不簡單的狀態管理工具 @ Devfest Kaohsiung 2023
 
[Golang] 以 Mobile App 工程師視角,帶你進入 Golang 的世界 (Introduction of GoLang)
[Golang] 以 Mobile App 工程師視角,帶你進入 Golang 的世界 (Introduction of GoLang) [Golang] 以 Mobile App 工程師視角,帶你進入 Golang 的世界 (Introduction of GoLang)
[Golang] 以 Mobile App 工程師視角,帶你進入 Golang 的世界 (Introduction of GoLang)
 
[Flutter] 來體驗 bloc 小方塊的神奇魔法 @Devfest 2022
[Flutter] 來體驗 bloc 小方塊的神奇魔法 @Devfest 2022[Flutter] 來體驗 bloc 小方塊的神奇魔法 @Devfest 2022
[Flutter] 來體驗 bloc 小方塊的神奇魔法 @Devfest 2022
 
與 Sign in with Apple 的愛恨情仇 @ iPlayground2020
與 Sign in with Apple 的愛恨情仇 @ iPlayground2020與 Sign in with Apple 的愛恨情仇 @ iPlayground2020
與 Sign in with Apple 的愛恨情仇 @ iPlayground2020
 
Flutter 是什麼?用 Flutter 會省到時間嗎? @ GDG Devfest2020
Flutter 是什麼?用 Flutter 會省到時間嗎? @ GDG Devfest2020Flutter 是什麼?用 Flutter 會省到時間嗎? @ GDG Devfest2020
Flutter 是什麼?用 Flutter 會省到時間嗎? @ GDG Devfest2020
 
談談 Android constraint layout
談談 Android constraint layout談談 Android constraint layout
談談 Android constraint layout
 
炎炎夏日學 Android 課程 - Part3: Android app 實作
炎炎夏日學 Android 課程 - Part3: Android app 實作炎炎夏日學 Android 課程 - Part3: Android app 實作
炎炎夏日學 Android 課程 - Part3: Android app 實作
 
炎炎夏日學 Android 課程 - Part1: Kotlin 語法介紹
炎炎夏日學 Android 課程 -  Part1: Kotlin 語法介紹炎炎夏日學 Android 課程 -  Part1: Kotlin 語法介紹
炎炎夏日學 Android 課程 - Part1: Kotlin 語法介紹
 
炎炎夏日學 Android 課程 - Part2: Android 元件介紹
炎炎夏日學 Android 課程 - Part2: Android 元件介紹炎炎夏日學 Android 課程 - Part2: Android 元件介紹
炎炎夏日學 Android 課程 - Part2: Android 元件介紹
 
炎炎夏日學 Android 課程 - Part 0: 環境搭建
炎炎夏日學 Android 課程 - Part 0: 環境搭建炎炎夏日學 Android 課程 - Part 0: 環境搭建
炎炎夏日學 Android 課程 - Part 0: 環境搭建
 
About Mobile Accessibility
About Mobile AccessibilityAbout Mobile Accessibility
About Mobile Accessibility
 
Introductions of Messaging bot 做聊天機器人
Introductions of Messaging bot 做聊天機器人Introductions of Messaging bot 做聊天機器人
Introductions of Messaging bot 做聊天機器人
 
Everything About Bluetooth (淺談藍牙 4.0) - Peripheral 篇
Everything About Bluetooth (淺談藍牙 4.0) - Peripheral 篇Everything About Bluetooth (淺談藍牙 4.0) - Peripheral 篇
Everything About Bluetooth (淺談藍牙 4.0) - Peripheral 篇
 
[MOPCON 2015] 談談行動裝置的 Accessibility
[MOPCON 2015] 談談行動裝置的 Accessibility[MOPCON 2015] 談談行動裝置的 Accessibility
[MOPCON 2015] 談談行動裝置的 Accessibility
 
A Quick look at ANCS (Apple Notification Center Service)
A Quick look at ANCS (Apple Notification Center Service)A Quick look at ANCS (Apple Notification Center Service)
A Quick look at ANCS (Apple Notification Center Service)
 
Android Wear Development
Android Wear DevelopmentAndroid Wear Development
Android Wear Development
 
Android workshop - 02. Glass development 101
Android workshop - 02. Glass development 101Android workshop - 02. Glass development 101
Android workshop - 02. Glass development 101
 
Android workshop - 01. Getting started on android phone
Android workshop - 01. Getting started on android phoneAndroid workshop - 01. Getting started on android phone
Android workshop - 01. Getting started on android phone
 

Dernier

Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityWSO2
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Angeliki Cooney
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxRemote DBA Services
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesrafiqahmad00786416
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontologyjohnbeverley2021
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...Zilliz
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxRustici Software
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherRemote DBA Services
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Orbitshub
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 

Dernier (20)

Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Vector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptxVector Search -An Introduction in Oracle Database 23ai.pptx
Vector Search -An Introduction in Oracle Database 23ai.pptx
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Six Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal OntologySix Myths about Ontologies: The Basics of Formal Ontology
Six Myths about Ontologies: The Basics of Formal Ontology
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 

[MOPCON 2014] Google Glass 開發經驗分享