SlideShare a Scribd company logo
1 of 118
Download to read offline
max(imiliano) (@firt)man
GEARING UP
WITH GOOGLE GLASS
DEVELOPMENT
Zürich,Aug 29th, 2013
¡-­‐)
Thursday, August 29, 13
mobile+web developer
maximiliano
@firt
Thursday, August 29, 13
Thursday, August 29, 13
Thursday, August 29, 13
we’ll talk about glass
1- Experience
2- Glassware
3- Timeline
4- Browser
5- Code!
Thursday, August 29, 13
questions
yes, please
At the end or
during the conference
Thursday, August 29, 13
DISCLAIMER
Thursday, August 29, 13
Thursday, August 29, 13
HOLES
Thursday, August 29, 13
Thursday, August 29, 13
1- glass experience
Thursday, August 29, 13
quick video( )
Thursday, August 29, 13
MYTHS
Thursday, August 29, 13
Thursday, August 29, 13
Thursday, August 29, 13
Thursday, August 29, 13
Thursday, August 29, 13
Thursday, August 29, 13
Thursday, August 29, 13
Thursday, August 29, 13
Thursday, August 29, 13
Thursday, August 29, 13
Notifications on
your head
Thursday, August 29, 13
Notifications on
your head
Thursday, August 29, 13
Your content is
not so important
Thursday, August 29, 13
specs
nHD transparent
640x360
25" - 2.5m / 8  away
Thursday, August 29, 13
specs
Sensors
Thursday, August 29, 13
specs
Camera
Thursday, August 29, 13
specs
Multi-touch panel
Thursday, August 29, 13
specs
wifi
bluetooth
Thursday, August 29, 13
specs
Android 4.0
Thursday, August 29, 13
specs
bone conduction
transducer
Thursday, August 29, 13
quick demo( )
Thursday, August 29, 13
the experience
- different device
- not transparent apps
- limited AR
Thursday, August 29, 13
2- glassware
Thursday, August 29, 13
Thursday, August 29, 13
native
vs
web
Thursday, August 29, 13
today =
cloud
Thursday, August 29, 13
today =
cloud
Mirror API
Thursday, August 29, 13
tomorrow =
native
vs
cloud
Thursday, August 29, 13
tomorrow =
native GDK
vs
cloud Mirror API
Thursday, August 29, 13
quick demo( )
Thursday, August 29, 13
Thursday, August 29, 13
Thursday, August 29, 13
https
Thursday, August 29, 13
httpscontent
Thursday, August 29, 13
httpscontent
actions
Thursday, August 29, 13
https
http(s)
content
actions
Thursday, August 29, 13
glassware
Thursday, August 29, 13
glassware
Thursday, August 29, 13
glassware
- today vs tomorrow
- Mirror API
- GDK
- create a new architecture
Thursday, August 29, 13
3- timeline
Thursday, August 29, 13
timeline
past, now, future
Thursday, August 29, 13
quick demo( )
Thursday, August 29, 13
timeline
timeline items = card
Thursday, August 29, 13
timeline
card
Thursday, August 29, 13
timeline
standard card
pinned card
system card past
past
future
Thursday, August 29, 13
httpscontent
Thursday, August 29, 13
it's probable that the
user will never see our
card
(
)
Thursday, August 29, 13
timeline
content type
Thursday, August 29, 13
timeline
textcontent type
Thursday, August 29, 13
timeline
image
video
content type
Thursday, August 29, 13
timeline
htmlcontent type
Thursday, August 29, 13
timeline
card actions = menu items
Thursday, August 29, 13
timeline
menu items 101
1 or 2 words & icon
no arguments
system vs custom
Thursday, August 29, 13
How can I listen to
actions?
Thursday, August 29, 13
http(s)actions
Thursday, August 29, 13
How to reply?
Thursday, August 29, 13
httpscontent
Thursday, August 29, 13
timeline
contextual events
geolocation
Thursday, August 29, 13
timeline
contextual events
geolocation
share
Thursday, August 29, 13
timeline
contextual events
geolocation
share
launch "ok glass" menu
Thursday, August 29, 13
http(s)actions
Thursday, August 29, 13
timeline
Invocation voice commands
take a note
post an update
Thursday, August 29, 13
timeline
- card is the king
- menu items <> endpoint
- contextual events
- server-side intelligence
Thursday, August 29, 13
4- the browser
Thursday, August 29, 13
browser
invocation
google search
card's action
Thursday, August 29, 13
quick demo( )
Thursday, August 29, 13
browser
interaction
scroll
point and click
Thursday, August 29, 13
browser
responsive web design
mobile user agent
width: 427px
pixel ratio: 1.5
Thursday, August 29, 13
browser
html5
video, audio
devicemotion
scroll and touch events
no geo, speech, camera yet
Thursday, August 29, 13
browser
- better than it looks like
- experimental
- new ideas will come
- card + html5
Thursday, August 29, 13
5- code!
Thursday, August 29, 13
code!
Mirror API
OAuth 2.0
RESTful services
JSON
Thursday, August 29, 13
code!
1- Use HTTP
2- Use official APIs
Thursday, August 29, 13
new card
POST /mirror/v1/timeline HTTP/1.1
Host: www.googleapis.com
Authorization: Bearer {auth token}
Content-Type: application/json
Content-Length: 26
{ "text": "Hello world" }
HTTP
code!
Thursday, August 29, 13
new card
$card = new Google_TimelineItem();
$card->setText("Hello World");
$parameters = array();
$service->timeline
->insert($card, $parameters);
PHP
code!
Thursday, August 29, 13
new card
{
 "kind": "glass#timelineItem",
 "id": "1234567890",
 "created": "2012-09-25",
 "updated": "2012-09-25",
 "text": "Hello world"
}
(just an example)
code!
Thursday, August 29, 13
html!
{
"html": "<h1>Hello world<h1>
<p>Sorry, no marquee support</p>
"
}
JSON
code!
Thursday, August 29, 13
code!
static content
all semantic containers
tables, lists
custom css
no <script> <link> <iframe>
html5 on cards
Thursday, August 29, 13
map images
{
"html": "<h1>Your wife's location<h1>
<img src='glass://map?
w=240&h=360&marker=0;42.369590,-71.107132&m
arker=1;42.36254,-71.08726 height=360
width=240>"
}
JSON
code!
Thursday, August 29, 13
menu items
{ "text": "Hello world",
"menuItems": [
    {
      "action": "REPLY"
    }
  ]
}
JSON
code!
Thursday, August 29, 13
code!
built-in menu items
Thursday, August 29, 13
code!
built-in menu items
share
Thursday, August 29, 13
code!
built-in menu items
share
navigate to
Thursday, August 29, 13
code!
built-in menu items
share
navigate to
read aloud
Thursday, August 29, 13
code!
built-in menu items
share
navigate to
read aloud
delete
Thursday, August 29, 13
code!
built-in menu items
share
navigate to
read aloud
delete
voice call
Thursday, August 29, 13
code!
built-in menu items
share
navigate to
read aloud
delete
voice call
reply
Thursday, August 29, 13
code!
built-in menu items
share
navigate to
read aloud
delete
voice call
reply
toggle pin
Thursday, August 29, 13
code!
built-in menu items
share
navigate to
read aloud
delete
voice call
reply
toggle pin
view website
Thursday, August 29, 13
voice call
reply
toggle pin
view website
code!
built-in menu items
share
navigate to
read aloud
deleteYOU CAN CHANGE TITLE AND ICON
Thursday, August 29, 13
code!
bundles
Multi-page card
Different cards over time
Thursday, August 29, 13
I don't have a Glass!!!
Thursday, August 29, 13
I don't have a Glass!!!
Don't steal one
Thursday, August 29, 13
I don't have a Glass!!!
Don't steal one
Thursday, August 29, 13
I don't have a Glass!!!
Playground (official)
Thursday, August 29, 13
I don't have a Glass!!!
Glasssim.com
Thursday, August 29, 13
I don't have a Glass!!!
Xenologer for Android
Mirror API Emulator by Scarygami
Thursday, August 29, 13
I don't have a Glass!!!
At the end, you will need one
google.com/glass
Thursday, August 29, 13
code!
- mirror API: HTTP & JSON
- cards, menu items
- experimental emulation
Thursday, August 29, 13
6- what's next
Thursday, August 29, 13
what's next
- GDK
- Localization
- More Invocation Voice commands
For Glass
Thursday, August 29, 13
what's next
- developers.google.com/glass
- youtube.com/user/GoogleDevelopers
For You
Thursday, August 29, 13
wrapping up
Thursday, August 29, 13
glass
- understand the experience
- mirror api vs gdk vs browser
- Glassware cloud-based
- it's just the beginning
Thursday, August 29, 13
Thursday, August 29, 13
you can reach a good
experience
Pictures)from)freedigitalphotos.net)
Thanks!
firtman@gmail.com
@firt
firt.mobi/pmw
¡-­‐)
Ask me for 50% off
Thursday, August 29, 13

More Related Content

Viewers also liked

Greece...Forever & Ever
Greece...Forever & EverGreece...Forever & Ever
Greece...Forever & Everfondas vakalis
 
Sitios Web De Alto Rendimiento - Introduccion
Sitios Web De Alto Rendimiento - IntroduccionSitios Web De Alto Rendimiento - Introduccion
Sitios Web De Alto Rendimiento - IntroduccionMaximiliano Firtman
 
JISC BCE Comms & Marketing
JISC BCE Comms & MarketingJISC BCE Comms & Marketing
JISC BCE Comms & MarketingJISC BCE
 
HP41活動介紹-使用者研究
HP41活動介紹-使用者研究HP41活動介紹-使用者研究
HP41活動介紹-使用者研究悠識學院
 
易用性研究現場實務大綱 by David Liu
易用性研究現場實務大綱 by David Liu易用性研究現場實務大綱 by David Liu
易用性研究現場實務大綱 by David Liu悠識學院
 
LODのOLAP分析を可能にするETLフレームワークの提案
LODのOLAP分析を可能にするETLフレームワークの提案LODのOLAP分析を可能にするETLフレームワークの提案
LODのOLAP分析を可能にするETLフレームワークの提案Hiroyuki Inoue
 
Outdoor Education Working With Teens
Outdoor Education   Working With TeensOutdoor Education   Working With Teens
Outdoor Education Working With TeensPaul Hawkes
 
Kantara Initiative Seminar 2012 Panel Discussion
Kantara Initiative Seminar 2012 Panel DiscussionKantara Initiative Seminar 2012 Panel Discussion
Kantara Initiative Seminar 2012 Panel DiscussionNaohiro Fujie
 
Redwood Cradle to cradle Innov_ex 09
Redwood Cradle to cradle Innov_ex 09 Redwood Cradle to cradle Innov_ex 09
Redwood Cradle to cradle Innov_ex 09 Mary Rose
 

Viewers also liked (18)

Tutorial
TutorialTutorial
Tutorial
 
Photos southeast asia
Photos southeast asiaPhotos southeast asia
Photos southeast asia
 
Greece...Forever & Ever
Greece...Forever & EverGreece...Forever & Ever
Greece...Forever & Ever
 
Sitios Web De Alto Rendimiento - Introduccion
Sitios Web De Alto Rendimiento - IntroduccionSitios Web De Alto Rendimiento - Introduccion
Sitios Web De Alto Rendimiento - Introduccion
 
Phone security
Phone securityPhone security
Phone security
 
R2
R2R2
R2
 
JISC BCE Comms & Marketing
JISC BCE Comms & MarketingJISC BCE Comms & Marketing
JISC BCE Comms & Marketing
 
HP41活動介紹-使用者研究
HP41活動介紹-使用者研究HP41活動介紹-使用者研究
HP41活動介紹-使用者研究
 
易用性研究現場實務大綱 by David Liu
易用性研究現場實務大綱 by David Liu易用性研究現場實務大綱 by David Liu
易用性研究現場實務大綱 by David Liu
 
501 Ceu L Idcec 8 21 09
501 Ceu L Idcec 8 21 09501 Ceu L Idcec 8 21 09
501 Ceu L Idcec 8 21 09
 
LODのOLAP分析を可能にするETLフレームワークの提案
LODのOLAP分析を可能にするETLフレームワークの提案LODのOLAP分析を可能にするETLフレームワークの提案
LODのOLAP分析を可能にするETLフレームワークの提案
 
C. Medi Unitat 6
C. Medi  Unitat 6C. Medi  Unitat 6
C. Medi Unitat 6
 
Carpe Diem
Carpe DiemCarpe Diem
Carpe Diem
 
Outdoor Education Working With Teens
Outdoor Education   Working With TeensOutdoor Education   Working With Teens
Outdoor Education Working With Teens
 
Kantara Initiative Seminar 2012 Panel Discussion
Kantara Initiative Seminar 2012 Panel DiscussionKantara Initiative Seminar 2012 Panel Discussion
Kantara Initiative Seminar 2012 Panel Discussion
 
Deberes Del 4 Al 8 De Mayo
Deberes Del 4 Al 8 De MayoDeberes Del 4 Al 8 De Mayo
Deberes Del 4 Al 8 De Mayo
 
Redwood Cradle to cradle Innov_ex 09
Redwood Cradle to cradle Innov_ex 09 Redwood Cradle to cradle Innov_ex 09
Redwood Cradle to cradle Innov_ex 09
 
Mercur
MercurMercur
Mercur
 

Similar to Maximiliano's Gearing Up With Google Glass Development

Bring the Noise
Bring the NoiseBring the Noise
Bring the NoiseJon Cowie
 
Introduction to Vaadin 7
Introduction to Vaadin 7Introduction to Vaadin 7
Introduction to Vaadin 7lastrand
 
Herd the CATS! Project management drupalcamp colorado 2013
Herd the CATS! Project management drupalcamp colorado 2013Herd the CATS! Project management drupalcamp colorado 2013
Herd the CATS! Project management drupalcamp colorado 2013Creech
 
Continuous Delivery for the Web Platform
Continuous Delivery for the Web PlatformContinuous Delivery for the Web Platform
Continuous Delivery for the Web PlatformJarrod Overson
 
UX & Wireframes Know Your Weapon of Choice
UX & Wireframes Know Your Weapon of ChoiceUX & Wireframes Know Your Weapon of Choice
UX & Wireframes Know Your Weapon of ChoiceIntelligent_ly
 
Selecting a Web Framework
Selecting a Web FrameworkSelecting a Web Framework
Selecting a Web Frameworkpamselle
 
Designing the Mobile Experience
Designing the Mobile Experience Designing the Mobile Experience
Designing the Mobile Experience Abstraction
 
Designing the Mobile Experience
Designing the Mobile ExperienceDesigning the Mobile Experience
Designing the Mobile ExperienceKaKi Law
 
What's coming in Joomla 4 - Joomla Day Budapest 2013
What's coming in Joomla 4 - Joomla Day Budapest 2013What's coming in Joomla 4 - Joomla Day Budapest 2013
What's coming in Joomla 4 - Joomla Day Budapest 2013vdrover
 

Similar to Maximiliano's Gearing Up With Google Glass Development (15)

Bring the Noise
Bring the NoiseBring the Noise
Bring the Noise
 
Hadoop 101 v1
Hadoop 101 v1Hadoop 101 v1
Hadoop 101 v1
 
Introduction to Vaadin 7
Introduction to Vaadin 7Introduction to Vaadin 7
Introduction to Vaadin 7
 
Vaadin 7
Vaadin 7Vaadin 7
Vaadin 7
 
Front end-performance
Front end-performanceFront end-performance
Front end-performance
 
Html5 Development
Html5 DevelopmentHtml5 Development
Html5 Development
 
Herd the CATS! Project management drupalcamp colorado 2013
Herd the CATS! Project management drupalcamp colorado 2013Herd the CATS! Project management drupalcamp colorado 2013
Herd the CATS! Project management drupalcamp colorado 2013
 
Continuous Delivery for the Web Platform
Continuous Delivery for the Web PlatformContinuous Delivery for the Web Platform
Continuous Delivery for the Web Platform
 
UX & Wireframes Know Your Weapon of Choice
UX & Wireframes Know Your Weapon of ChoiceUX & Wireframes Know Your Weapon of Choice
UX & Wireframes Know Your Weapon of Choice
 
Selecting a Web Framework
Selecting a Web FrameworkSelecting a Web Framework
Selecting a Web Framework
 
CSS Master Class: Part 1
CSS Master Class: Part 1CSS Master Class: Part 1
CSS Master Class: Part 1
 
Designing the Mobile Experience
Designing the Mobile Experience Designing the Mobile Experience
Designing the Mobile Experience
 
Designing the Mobile Experience
Designing the Mobile ExperienceDesigning the Mobile Experience
Designing the Mobile Experience
 
Native Slide
Native SlideNative Slide
Native Slide
 
What's coming in Joomla 4 - Joomla Day Budapest 2013
What's coming in Joomla 4 - Joomla Day Budapest 2013What's coming in Joomla 4 - Joomla Day Budapest 2013
What's coming in Joomla 4 - Joomla Day Budapest 2013
 

More from Maximiliano Firtman

ChatGPT and AI for Web Developers
ChatGPT and AI for Web DevelopersChatGPT and AI for Web Developers
ChatGPT and AI for Web DevelopersMaximiliano Firtman
 
Hacking Web Performance en Español - JSConf México 2020
Hacking Web Performance en Español - JSConf México 2020Hacking Web Performance en Español - JSConf México 2020
Hacking Web Performance en Español - JSConf México 2020Maximiliano Firtman
 
Uncovering Secrets of Progressive Web Apps
Uncovering Secrets of Progressive Web AppsUncovering Secrets of Progressive Web Apps
Uncovering Secrets of Progressive Web AppsMaximiliano Firtman
 
Hacking Web Performance @ ForwardJS 2017
Hacking Web Performance @ ForwardJS 2017Hacking Web Performance @ ForwardJS 2017
Hacking Web Performance @ ForwardJS 2017Maximiliano Firtman
 
La Web Salta al Mundo Físico - Web meets Physical World (spanish)
La Web Salta al Mundo Físico - Web meets Physical World (spanish)La Web Salta al Mundo Físico - Web meets Physical World (spanish)
La Web Salta al Mundo Físico - Web meets Physical World (spanish)Maximiliano Firtman
 
Progressive Web Apps (español - spanish)
Progressive Web Apps (español - spanish)Progressive Web Apps (español - spanish)
Progressive Web Apps (español - spanish)Maximiliano Firtman
 
High Performance Web - Full Stack Toronto
High Performance Web - Full Stack TorontoHigh Performance Web - Full Stack Toronto
High Performance Web - Full Stack TorontoMaximiliano Firtman
 
Responsive Images and Performance
Responsive Images and PerformanceResponsive Images and Performance
Responsive Images and PerformanceMaximiliano Firtman
 
The Physical World meets the Web
The Physical World meets the WebThe Physical World meets the Web
The Physical World meets the WebMaximiliano Firtman
 
Extreme Web Performance for Mobile Devices
Extreme Web Performance for Mobile Devices Extreme Web Performance for Mobile Devices
Extreme Web Performance for Mobile Devices Maximiliano Firtman
 
Extreme Web Performance for Mobile Device Fluent 2015
Extreme Web Performance for Mobile Device Fluent 2015Extreme Web Performance for Mobile Device Fluent 2015
Extreme Web Performance for Mobile Device Fluent 2015Maximiliano Firtman
 
Extreme Web Performance for Mobile Devices - Velocity Barcelona 2014
Extreme Web Performance for Mobile Devices - Velocity Barcelona 2014Extreme Web Performance for Mobile Devices - Velocity Barcelona 2014
Extreme Web Performance for Mobile Devices - Velocity Barcelona 2014Maximiliano Firtman
 
Extreme Web Performance for Mobile Devices - Velocity NY
Extreme Web Performance for Mobile Devices - Velocity NYExtreme Web Performance for Mobile Devices - Velocity NY
Extreme Web Performance for Mobile Devices - Velocity NYMaximiliano Firtman
 
Extreme Web Performance for Mobile Devices
Extreme Web Performance for Mobile DevicesExtreme Web Performance for Mobile Devices
Extreme Web Performance for Mobile DevicesMaximiliano Firtman
 

More from Maximiliano Firtman (20)

ChatGPT and AI for Web Developers
ChatGPT and AI for Web DevelopersChatGPT and AI for Web Developers
ChatGPT and AI for Web Developers
 
PWA Cheat Sheet 2023
PWA Cheat Sheet 2023PWA Cheat Sheet 2023
PWA Cheat Sheet 2023
 
Hacking Web Performance en Español - JSConf México 2020
Hacking Web Performance en Español - JSConf México 2020Hacking Web Performance en Español - JSConf México 2020
Hacking Web Performance en Español - JSConf México 2020
 
The modern PWA Cheat Sheet
The modern PWA Cheat SheetThe modern PWA Cheat Sheet
The modern PWA Cheat Sheet
 
Hacking Web Performance 2019
Hacking Web Performance 2019Hacking Web Performance 2019
Hacking Web Performance 2019
 
Progressive Web Apps Keynote
Progressive Web Apps KeynoteProgressive Web Apps Keynote
Progressive Web Apps Keynote
 
Hacking Web Performance
Hacking Web PerformanceHacking Web Performance
Hacking Web Performance
 
Uncovering Secrets of Progressive Web Apps
Uncovering Secrets of Progressive Web AppsUncovering Secrets of Progressive Web Apps
Uncovering Secrets of Progressive Web Apps
 
Hacking Web Performance
Hacking Web Performance Hacking Web Performance
Hacking Web Performance
 
Hacking Web Performance @ ForwardJS 2017
Hacking Web Performance @ ForwardJS 2017Hacking Web Performance @ ForwardJS 2017
Hacking Web Performance @ ForwardJS 2017
 
La Web Salta al Mundo Físico - Web meets Physical World (spanish)
La Web Salta al Mundo Físico - Web meets Physical World (spanish)La Web Salta al Mundo Físico - Web meets Physical World (spanish)
La Web Salta al Mundo Físico - Web meets Physical World (spanish)
 
Progressive Web Apps (español - spanish)
Progressive Web Apps (español - spanish)Progressive Web Apps (español - spanish)
Progressive Web Apps (español - spanish)
 
High Performance Web - Full Stack Toronto
High Performance Web - Full Stack TorontoHigh Performance Web - Full Stack Toronto
High Performance Web - Full Stack Toronto
 
Responsive Images and Performance
Responsive Images and PerformanceResponsive Images and Performance
Responsive Images and Performance
 
The Physical World meets the Web
The Physical World meets the WebThe Physical World meets the Web
The Physical World meets the Web
 
Extreme Web Performance for Mobile Devices
Extreme Web Performance for Mobile Devices Extreme Web Performance for Mobile Devices
Extreme Web Performance for Mobile Devices
 
Extreme Web Performance for Mobile Device Fluent 2015
Extreme Web Performance for Mobile Device Fluent 2015Extreme Web Performance for Mobile Device Fluent 2015
Extreme Web Performance for Mobile Device Fluent 2015
 
Extreme Web Performance for Mobile Devices - Velocity Barcelona 2014
Extreme Web Performance for Mobile Devices - Velocity Barcelona 2014Extreme Web Performance for Mobile Devices - Velocity Barcelona 2014
Extreme Web Performance for Mobile Devices - Velocity Barcelona 2014
 
Extreme Web Performance for Mobile Devices - Velocity NY
Extreme Web Performance for Mobile Devices - Velocity NYExtreme Web Performance for Mobile Devices - Velocity NY
Extreme Web Performance for Mobile Devices - Velocity NY
 
Extreme Web Performance for Mobile Devices
Extreme Web Performance for Mobile DevicesExtreme Web Performance for Mobile Devices
Extreme Web Performance for Mobile Devices
 

Recently uploaded

A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI AgeCprime
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Strongerpanagenda
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Mark Goldstein
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
Glenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security ObservabilityGlenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security Observabilityitnewsafrica
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesThousandEyes
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxLoriGlavin3
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
A Glance At The Java Performance Toolbox
A Glance At The Java Performance ToolboxA Glance At The Java Performance Toolbox
A Glance At The Java Performance ToolboxAna-Maria Mihalceanu
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxfnnc6jmgwh
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...Wes McKinney
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructureitnewsafrica
 
Landscape Catalogue 2024 Australia-1.pdf
Landscape Catalogue 2024 Australia-1.pdfLandscape Catalogue 2024 Australia-1.pdf
Landscape Catalogue 2024 Australia-1.pdfAarwolf Industries LLC
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024TopCSSGallery
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterMydbops
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityIES VE
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPathCommunity
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Kaya Weers
 
Microservices, Docker deploy and Microservices source code in C#
Microservices, Docker deploy and Microservices source code in C#Microservices, Docker deploy and Microservices source code in C#
Microservices, Docker deploy and Microservices source code in C#Karmanjay Verma
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Alkin Tezuysal
 

Recently uploaded (20)

A Framework for Development in the AI Age
A Framework for Development in the AI AgeA Framework for Development in the AI Age
A Framework for Development in the AI Age
 
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better StrongerModern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
Modern Roaming for Notes and Nomad – Cheaper Faster Better Stronger
 
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
Arizona Broadband Policy Past, Present, and Future Presentation 3/25/24
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
Glenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security ObservabilityGlenn Lazarus- Why Your Observability Strategy Needs Security Observability
Glenn Lazarus- Why Your Observability Strategy Needs Security Observability
 
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyesHow to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
How to Effectively Monitor SD-WAN and SASE Environments with ThousandEyes
 
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptxDigital Identity is Under Attack: FIDO Paris Seminar.pptx
Digital Identity is Under Attack: FIDO Paris Seminar.pptx
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
A Glance At The Java Performance Toolbox
A Glance At The Java Performance ToolboxA Glance At The Java Performance Toolbox
A Glance At The Java Performance Toolbox
 
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptxGenerative AI - Gitex v1Generative AI - Gitex v1.pptx
Generative AI - Gitex v1Generative AI - Gitex v1.pptx
 
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
The Future Roadmap for the Composable Data Stack - Wes McKinney - Data Counci...
 
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical InfrastructureVarsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
Varsha Sewlal- Cyber Attacks on Critical Critical Infrastructure
 
Landscape Catalogue 2024 Australia-1.pdf
Landscape Catalogue 2024 Australia-1.pdfLandscape Catalogue 2024 Australia-1.pdf
Landscape Catalogue 2024 Australia-1.pdf
 
Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024Top 10 Hubspot Development Companies in 2024
Top 10 Hubspot Development Companies in 2024
 
Scale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL RouterScale your database traffic with Read & Write split using MySQL Router
Scale your database traffic with Read & Write split using MySQL Router
 
Decarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a realityDecarbonising Buildings: Making a net-zero built environment a reality
Decarbonising Buildings: Making a net-zero built environment a reality
 
UiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to HeroUiPath Community: Communication Mining from Zero to Hero
UiPath Community: Communication Mining from Zero to Hero
 
Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)Design pattern talk by Kaya Weers - 2024 (v2)
Design pattern talk by Kaya Weers - 2024 (v2)
 
Microservices, Docker deploy and Microservices source code in C#
Microservices, Docker deploy and Microservices source code in C#Microservices, Docker deploy and Microservices source code in C#
Microservices, Docker deploy and Microservices source code in C#
 
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
Unleashing Real-time Insights with ClickHouse_ Navigating the Landscape in 20...
 

Maximiliano's Gearing Up With Google Glass Development