Mystery Meat 2.0 – Making hidden mobile interactions accessible

Ted Drake
Ted DrakeAccessibility Leader for Intuit at Intuit
Mystery Meat 2.0
Ted Drake, Intuit Accessibility
Poonam Tathavadkar, TurboTax
CSUN 2017
Slides: slideshare.net/7mary4
Mystery Meat 2.0 – Making hidden mobile interactions accessible
Android
Touch and
Hold
Android’s Right Click
• Default:

Touch and hold
• With TalkBack:

Double tap and hold to long press
• Add context-specific menu
Mint
Transactions
Developers
• onLongClick

Called when a view has been clicked
and held.
• Define and Show your menu
• Not for vital interactions. This is a short
cut.
iOS 3D
Touch
3D Touch
• Peek: 

Quick glance at relevant information and
actions
• Pop: 

Open full content previewed in the Peek
• Quick Actions: 

Custom task list from app icon
video of experience
Quick
Actions
Developers
• Use accessibilityHint to suggest what’s
contained within the Peek
• Don’t make peek the only way to perform an
action
• Standard components - Accessible by default
Swipe
Revealed
Actions
It’s
Deductible
Actions
editActionsForRowAtIndexPath
• Defines the actions to display in response to swiping
the specified row.
• Accessible by default
• Define:
• Target Action and Response
• Visible Text
• Background color
func	tableView(_	tableView:	UITableView,	commit	edi8ngStyle:	UITableViewCellEdi8ngStyle,	forRowAt	indexPath:	IndexPath)	
				{	
								//	Don't	remove	this	func8on,	even	though	it's	empty.	It's	required	to	allow	editAc8onsForRowAtIndexPath	to	be	called.	
				}	
					
				func	tableView(_	tableView:	UITableView,	editAc8onsForRowAt	indexPath:	IndexPath)	->	[UITableViewRowAc8on]?	
				{	
								let	moreRowAc8on	=	UITableViewRowAc8on(style:	UITableViewRowAc8onStyle.default,	8tle:	"More",	handler:{ac8on,	indexpath	in	
													
												tableView.setEdi8ng(false,	animated:	true)	
													
												let	dona8on	=	self.dona8ons[indexPath.row]	
												let	cell	=	tableView.cellForRow(at:	indexPath)!	
													
												self.shareAc8on(dona8on	as!	Dona8onEn8ty,	cell:	cell)	
								});	
									
								moreRowAc8on.backgroundColor	=	UXStyle.standardTableRowAc8onColor()	
									
								let	deleteRowAc8on	=	UITableViewRowAc8on(style:	UITableViewRowAc8onStyle.default	/*	Destruc8ve	*/,	8tle:	"Delete",	handler:{ac8on,	indexpath	in	
													
												do	
												{	
																let	previousDona8onCount	=	self.dona8ons.count	
																	
																let	dona8on	=	self.dona8ons[indexPath.row]	
																	
																DataAccessor.sharedInstance.addAuditRecord(ac8on:	"Dona8on	deleted",	details:	(dona8on	as!	Dona8onEn8ty).auditEntryDetails)	
																	
																try	self.deleteDona8on(dona8on)	
		
																self.loadDona8ons()	
																	
																let	newDona8onCount	=	self.dona8ons.count	
																	
																if	newDona8onCount	==	previousDona8onCount	-	1	
																{	
																				self.tableView.deleteRows(at:	[indexPath],	with:	.automa8c)	
																}	
																else	
																{	
																				self.tableView.reloadData()	
																}	
												}	
												catch	let	error	
												{	
																ErrorHandler.handleErrorWithAlert(error	as	NSError,	viewController:	self)	
												}	
								});	
									
								return	[deleteRowAc8on,	moreRowAc8on];	
				}
Swipe Based Navigation
Default
Experience
With
VoiceOver
Mystery Meat 2.0 – Making hidden mobile interactions accessible
Swipe Navigation
• Animated transition between views
• Next and Back flow with every screen
• Eliminates navigation buttons
• No buttons? Accessibility?
• Have I reached the end of the screen?
Detect Accessibility ON
• UIAccessibility kit provides two methods
• UIAccessibilityIsSwitchControlRunning
• UIAccessibilityIsVoiceOverRunning
• True == Show Navigation Buttons
State Change Notification
• User enables VoiceOver while on a screen
• Detect the status change
• UIAccessibilitySwitchControlStatusDidChange
Notification
• UIAccessibilityVoiceOverStatusChanged
• Refresh screen and insert navigation buttons
TurboTax Helper Function
• How can we refactor code to detect any
accessibility related settings and address them
together?
• Helper function to the rescue !
• NSNotificationCenter adds observers to track any
settings that may require us to show buttons.
• This is an OR logic. Example - if voice over OR
switch control status changed, display buttons.
Questions and Answers
1 of 23

Recommended

Accessibility metrics Accessibility Data Metrics and Reporting – Industry Bes... by
Accessibility metrics Accessibility Data Metrics and Reporting – Industry Bes...Accessibility metrics Accessibility Data Metrics and Reporting – Industry Bes...
Accessibility metrics Accessibility Data Metrics and Reporting – Industry Bes...Ted Drake
3.7K views36 slides
Reusable acceptance criteria and test cases for accessibility by
Reusable acceptance criteria and test cases for accessibilityReusable acceptance criteria and test cases for accessibility
Reusable acceptance criteria and test cases for accessibilityIntopia
4.9K views27 slides
Rethinking Accessibility: Role-Based Analysis of WCAG 2.0 - CSUN 2017 by
Rethinking Accessibility: Role-Based Analysis of WCAG 2.0 - CSUN 2017Rethinking Accessibility: Role-Based Analysis of WCAG 2.0 - CSUN 2017
Rethinking Accessibility: Role-Based Analysis of WCAG 2.0 - CSUN 2017Bill Tyler
3K views48 slides
CSUN 2017 Success Criteria: Dependencies and Prioritization by
CSUN 2017 Success Criteria: Dependencies and PrioritizationCSUN 2017 Success Criteria: Dependencies and Prioritization
CSUN 2017 Success Criteria: Dependencies and PrioritizationSean Kelly
1.8K views43 slides
Mind your lang (for role=drinks at CSUN 2017) by
Mind your lang (for role=drinks at CSUN 2017)Mind your lang (for role=drinks at CSUN 2017)
Mind your lang (for role=drinks at CSUN 2017)Adrian Roselli
1.9K views44 slides
Accessibility microinteractions: better user experience, happier developers by
Accessibility microinteractions: better user experience, happier developersAccessibility microinteractions: better user experience, happier developers
Accessibility microinteractions: better user experience, happier developersAidan Tierney
2.3K views53 slides

More Related Content

Viewers also liked

A Multidisciplinary Approach to Universal Design by
A Multidisciplinary Approach to Universal DesignA Multidisciplinary Approach to Universal Design
A Multidisciplinary Approach to Universal DesignAnders Skifte
1.3K views42 slides
CSUN 2017 VPATs For Business or Measure by
CSUN 2017 VPATs For Business or MeasureCSUN 2017 VPATs For Business or Measure
CSUN 2017 VPATs For Business or MeasureTed Gies
1.4K views24 slides
Digital Accessibility Legal Update - CSUNATC 2017 (CSUN) by
Digital Accessibility Legal Update - CSUNATC 2017 (CSUN)Digital Accessibility Legal Update - CSUNATC 2017 (CSUN)
Digital Accessibility Legal Update - CSUNATC 2017 (CSUN)Lainey Feingold
2.4K views35 slides
2017 CSUN The Art of Language in Accessibility by
2017 CSUN The Art of Language in Accessibility2017 CSUN The Art of Language in Accessibility
2017 CSUN The Art of Language in AccessibilityCrystal Baker
649 views46 slides
Cognitive theory of multimedia learning, krista greear, csun 2017 by
Cognitive theory of multimedia learning, krista greear, csun 2017Cognitive theory of multimedia learning, krista greear, csun 2017
Cognitive theory of multimedia learning, krista greear, csun 2017Krista Greear
1.1K views32 slides
Accessibility and Design: Where Productivity and Philosophy Meet by
Accessibility and Design:  Where Productivity and Philosophy MeetAccessibility and Design:  Where Productivity and Philosophy Meet
Accessibility and Design: Where Productivity and Philosophy MeetJoe Lonsky
1.6K views26 slides

Viewers also liked(19)

A Multidisciplinary Approach to Universal Design by Anders Skifte
A Multidisciplinary Approach to Universal DesignA Multidisciplinary Approach to Universal Design
A Multidisciplinary Approach to Universal Design
Anders Skifte1.3K views
CSUN 2017 VPATs For Business or Measure by Ted Gies
CSUN 2017 VPATs For Business or MeasureCSUN 2017 VPATs For Business or Measure
CSUN 2017 VPATs For Business or Measure
Ted Gies1.4K views
Digital Accessibility Legal Update - CSUNATC 2017 (CSUN) by Lainey Feingold
Digital Accessibility Legal Update - CSUNATC 2017 (CSUN)Digital Accessibility Legal Update - CSUNATC 2017 (CSUN)
Digital Accessibility Legal Update - CSUNATC 2017 (CSUN)
Lainey Feingold2.4K views
2017 CSUN The Art of Language in Accessibility by Crystal Baker
2017 CSUN The Art of Language in Accessibility2017 CSUN The Art of Language in Accessibility
2017 CSUN The Art of Language in Accessibility
Crystal Baker649 views
Cognitive theory of multimedia learning, krista greear, csun 2017 by Krista Greear
Cognitive theory of multimedia learning, krista greear, csun 2017Cognitive theory of multimedia learning, krista greear, csun 2017
Cognitive theory of multimedia learning, krista greear, csun 2017
Krista Greear1.1K views
Accessibility and Design: Where Productivity and Philosophy Meet by Joe Lonsky
Accessibility and Design:  Where Productivity and Philosophy MeetAccessibility and Design:  Where Productivity and Philosophy Meet
Accessibility and Design: Where Productivity and Philosophy Meet
Joe Lonsky1.6K views
Android Accessibility - The missing manual by Ted Drake
Android Accessibility - The missing manualAndroid Accessibility - The missing manual
Android Accessibility - The missing manual
Ted Drake14K views
Ubiquitous Transactions - Financial Future and Accessibility by Ted Drake
Ubiquitous Transactions - Financial Future and AccessibilityUbiquitous Transactions - Financial Future and Accessibility
Ubiquitous Transactions - Financial Future and Accessibility
Ted Drake1.9K views
Csun presentation-170302-hykim by hyunyoung kim
Csun presentation-170302-hykimCsun presentation-170302-hykim
Csun presentation-170302-hykim
hyunyoung kim329 views
Early prevention of accessibility issues with mockup & wireframe reviews by Aidan Tierney
Early prevention of accessibility issues with mockup & wireframe reviewsEarly prevention of accessibility issues with mockup & wireframe reviews
Early prevention of accessibility issues with mockup & wireframe reviews
Aidan Tierney4.9K views
Accessibility Support Baseline: Balancing User Needs Against Test Effort by Aidan Tierney
Accessibility Support Baseline: Balancing User Needs Against Test EffortAccessibility Support Baseline: Balancing User Needs Against Test Effort
Accessibility Support Baseline: Balancing User Needs Against Test Effort
Aidan Tierney3.4K views
Dynamic and accessible web content with WAI-ARIA by Access iQ
Dynamic and accessible web content with WAI-ARIADynamic and accessible web content with WAI-ARIA
Dynamic and accessible web content with WAI-ARIA
Access iQ2.7K views
Preparing the enterprise for 508 refresh, ibm csun2017 by Michael Gower
Preparing the enterprise for 508 refresh, ibm csun2017Preparing the enterprise for 508 refresh, ibm csun2017
Preparing the enterprise for 508 refresh, ibm csun2017
Michael Gower1K views
CSUN 2017 - ACT Now: Accessibility Conformance Testing for WCAG by Mary Jo Mueller
CSUN 2017 - ACT Now: Accessibility Conformance Testing for WCAGCSUN 2017 - ACT Now: Accessibility Conformance Testing for WCAG
CSUN 2017 - ACT Now: Accessibility Conformance Testing for WCAG
Mary Jo Mueller900 views
Designing with Accessibility in Mind: How IA and Visual Design Decisions Impa... by November Samnee
Designing with Accessibility in Mind: How IA and Visual Design Decisions Impa...Designing with Accessibility in Mind: How IA and Visual Design Decisions Impa...
Designing with Accessibility in Mind: How IA and Visual Design Decisions Impa...
November Samnee596 views
ARIA Techniques for Accessible Web Forms by Aidan Tierney
ARIA Techniques for Accessible Web FormsARIA Techniques for Accessible Web Forms
ARIA Techniques for Accessible Web Forms
Aidan Tierney1.5K views

Similar to Mystery Meat 2.0 – Making hidden mobile interactions accessible

Lecture #3 activities and intents by
Lecture #3  activities and intentsLecture #3  activities and intents
Lecture #3 activities and intentsVitali Pekelis
311 views81 slides
Android App development III by
Android App development IIIAndroid App development III
Android App development IIIThenraja Vettivelraj
893 views37 slides
Mobile Accessibility by
Mobile AccessibilityMobile Accessibility
Mobile AccessibilityTed Drake
1.5K views54 slides
[Android] Widget Event Handling by
[Android] Widget Event Handling[Android] Widget Event Handling
[Android] Widget Event HandlingNikmesoft Ltd
1.7K views19 slides
An update about 3D Touch - What is it and what can we do with it? by
An update  about 3D Touch - What is it and what can we do with it?An update  about 3D Touch - What is it and what can we do with it?
An update about 3D Touch - What is it and what can we do with it?Soda studio
1.3K views75 slides
Design Simple but Powerful application by
Design Simple but Powerful applicationDesign Simple but Powerful application
Design Simple but Powerful applicationJim Liang
10.1K views161 slides

Similar to Mystery Meat 2.0 – Making hidden mobile interactions accessible(20)

Lecture #3 activities and intents by Vitali Pekelis
Lecture #3  activities and intentsLecture #3  activities and intents
Lecture #3 activities and intents
Vitali Pekelis311 views
Mobile Accessibility by Ted Drake
Mobile AccessibilityMobile Accessibility
Mobile Accessibility
Ted Drake1.5K views
[Android] Widget Event Handling by Nikmesoft Ltd
[Android] Widget Event Handling[Android] Widget Event Handling
[Android] Widget Event Handling
Nikmesoft Ltd1.7K views
An update about 3D Touch - What is it and what can we do with it? by Soda studio
An update  about 3D Touch - What is it and what can we do with it?An update  about 3D Touch - What is it and what can we do with it?
An update about 3D Touch - What is it and what can we do with it?
Soda studio1.3K views
Design Simple but Powerful application by Jim Liang
Design Simple but Powerful applicationDesign Simple but Powerful application
Design Simple but Powerful application
Jim Liang10.1K views
Android accessibility till_kitkat_nov2013_andevcon by sonia1sh
Android accessibility till_kitkat_nov2013_andevconAndroid accessibility till_kitkat_nov2013_andevcon
Android accessibility till_kitkat_nov2013_andevcon
sonia1sh1.3K views
Building Large Mobile Apps by Adam Magaña
Building Large Mobile AppsBuilding Large Mobile Apps
Building Large Mobile Apps
Adam Magaña101 views
Open Intents - Android Intents Mechanism and Dependency Management by Friedger Müffke
Open Intents - Android Intents Mechanism and Dependency ManagementOpen Intents - Android Intents Mechanism and Dependency Management
Open Intents - Android Intents Mechanism and Dependency Management
Friedger Müffke2.7K views
Activities, Fragments, and Events by Henry Osborne
Activities, Fragments, and EventsActivities, Fragments, and Events
Activities, Fragments, and Events
Henry Osborne2.3K views
Native Mobile Testing for Newbies by Susan Hewitt
Native Mobile Testing for NewbiesNative Mobile Testing for Newbies
Native Mobile Testing for Newbies
Susan Hewitt131 views
Understanding social media workshop by Richard Stacy
Understanding social media workshopUnderstanding social media workshop
Understanding social media workshop
Richard Stacy785 views
Android UI Design Tips by Luis Abreu
Android UI Design TipsAndroid UI Design Tips
Android UI Design Tips
Luis Abreu9.8K views
A Plethora of Options -- The New World of Data Visualization by Inside Analysis
A Plethora of Options -- The New World of Data VisualizationA Plethora of Options -- The New World of Data Visualization
A Plethora of Options -- The New World of Data Visualization
Inside Analysis2.2K views

More from Ted Drake

Transforming Accessibility one lunch at a tiime - CSUN 2023 by
Transforming Accessibility one lunch at a tiime - CSUN 2023Transforming Accessibility one lunch at a tiime - CSUN 2023
Transforming Accessibility one lunch at a tiime - CSUN 2023Ted Drake
186 views29 slides
Inclusive Design for cognitive disabilities, neurodiversity, and chronic illness by
Inclusive Design for cognitive disabilities, neurodiversity, and chronic illnessInclusive Design for cognitive disabilities, neurodiversity, and chronic illness
Inclusive Design for cognitive disabilities, neurodiversity, and chronic illnessTed Drake
876 views41 slides
Inclusive design for Long Covid by
 Inclusive design for Long Covid  Inclusive design for Long Covid
Inclusive design for Long Covid Ted Drake
65 views23 slides
Covid 19, brain fog, and inclusive design by
Covid 19, brain fog, and inclusive designCovid 19, brain fog, and inclusive design
Covid 19, brain fog, and inclusive designTed Drake
557 views28 slides
Customer obsession and accessibility by
Customer obsession and accessibilityCustomer obsession and accessibility
Customer obsession and accessibilityTed Drake
341 views29 slides
The Saga of Accessible Colors by
The Saga of Accessible ColorsThe Saga of Accessible Colors
The Saga of Accessible ColorsTed Drake
212 views34 slides

More from Ted Drake(20)

Transforming Accessibility one lunch at a tiime - CSUN 2023 by Ted Drake
Transforming Accessibility one lunch at a tiime - CSUN 2023Transforming Accessibility one lunch at a tiime - CSUN 2023
Transforming Accessibility one lunch at a tiime - CSUN 2023
Ted Drake186 views
Inclusive Design for cognitive disabilities, neurodiversity, and chronic illness by Ted Drake
Inclusive Design for cognitive disabilities, neurodiversity, and chronic illnessInclusive Design for cognitive disabilities, neurodiversity, and chronic illness
Inclusive Design for cognitive disabilities, neurodiversity, and chronic illness
Ted Drake876 views
Inclusive design for Long Covid by Ted Drake
 Inclusive design for Long Covid  Inclusive design for Long Covid
Inclusive design for Long Covid
Ted Drake65 views
Covid 19, brain fog, and inclusive design by Ted Drake
Covid 19, brain fog, and inclusive designCovid 19, brain fog, and inclusive design
Covid 19, brain fog, and inclusive design
Ted Drake557 views
Customer obsession and accessibility by Ted Drake
Customer obsession and accessibilityCustomer obsession and accessibility
Customer obsession and accessibility
Ted Drake341 views
The Saga of Accessible Colors by Ted Drake
The Saga of Accessible ColorsThe Saga of Accessible Colors
The Saga of Accessible Colors
Ted Drake212 views
Artificial Intelligence and Accessibility - GAAD 2020 - Hello A11y by Ted Drake
Artificial Intelligence and Accessibility - GAAD 2020 - Hello A11yArtificial Intelligence and Accessibility - GAAD 2020 - Hello A11y
Artificial Intelligence and Accessibility - GAAD 2020 - Hello A11y
Ted Drake222 views
Expand your outreach with an accessibility champions program by Ted Drake
Expand your outreach with an accessibility champions program Expand your outreach with an accessibility champions program
Expand your outreach with an accessibility champions program
Ted Drake841 views
Intuit's Accessibility Champion Program - Coaching and Celebrating by Ted Drake
Intuit's Accessibility Champion Program - Coaching and Celebrating Intuit's Accessibility Champion Program - Coaching and Celebrating
Intuit's Accessibility Champion Program - Coaching and Celebrating
Ted Drake379 views
Accessibility First Innovation by Ted Drake
Accessibility First InnovationAccessibility First Innovation
Accessibility First Innovation
Ted Drake159 views
Inclusive customer interviews make it your friday task by Ted Drake
Inclusive customer interviews  make it your friday taskInclusive customer interviews  make it your friday task
Inclusive customer interviews make it your friday task
Ted Drake590 views
Coaching and Celebrating Accessibility Champions by Ted Drake
Coaching and Celebrating Accessibility ChampionsCoaching and Celebrating Accessibility Champions
Coaching and Celebrating Accessibility Champions
Ted Drake1.4K views
Accessibility statements and resource publishing best practices csun 2019 by Ted Drake
Accessibility statements and resource publishing best practices   csun 2019Accessibility statements and resource publishing best practices   csun 2019
Accessibility statements and resource publishing best practices csun 2019
Ted Drake655 views
Raising Accessibility Awareness at Intuit by Ted Drake
Raising Accessibility Awareness at IntuitRaising Accessibility Awareness at Intuit
Raising Accessibility Awareness at Intuit
Ted Drake339 views
Trickle Down Accessibility by Ted Drake
Trickle Down AccessibilityTrickle Down Accessibility
Trickle Down Accessibility
Ted Drake1.9K views
Trickle-Down Accessibility - CSUN 2018 by Ted Drake
Trickle-Down Accessibility - CSUN 2018Trickle-Down Accessibility - CSUN 2018
Trickle-Down Accessibility - CSUN 2018
Ted Drake596 views
React Native Accessibility - San Diego React and React Native Meetup by Ted Drake
React Native Accessibility - San Diego React and React Native MeetupReact Native Accessibility - San Diego React and React Native Meetup
React Native Accessibility - San Diego React and React Native Meetup
Ted Drake3.3K views
Automated Testing – Web, Mobile, Desktop - Challenges and Successes by Ted Drake
Automated Testing – Web, Mobile, Desktop - Challenges and SuccessesAutomated Testing – Web, Mobile, Desktop - Challenges and Successes
Automated Testing – Web, Mobile, Desktop - Challenges and Successes
Ted Drake3.3K views
Wearable Future for Accessibility by Ted Drake
Wearable Future for AccessibilityWearable Future for Accessibility
Wearable Future for Accessibility
Ted Drake4K views
Wearable-First Design and Accessibility by Ted Drake
Wearable-First Design and AccessibilityWearable-First Design and Accessibility
Wearable-First Design and Accessibility
Ted Drake7.7K views

Recently uploaded

Introduction to Git Source Control by
Introduction to Git Source ControlIntroduction to Git Source Control
Introduction to Git Source ControlJohn Valentino
7 views18 slides
What is API by
What is APIWhat is API
What is APIartembondar5
13 views15 slides
EV Charging App Case by
EV Charging App Case EV Charging App Case
EV Charging App Case iCoderz Solutions
9 views1 slide
Introduction to Gradle by
Introduction to GradleIntroduction to Gradle
Introduction to GradleJohn Valentino
6 views7 slides
Transport Management System - Shipment & Container Tracking by
Transport Management System - Shipment & Container TrackingTransport Management System - Shipment & Container Tracking
Transport Management System - Shipment & Container TrackingFreightoscope
5 views3 slides
Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated... by
Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated...Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated...
Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated...TomHalpin9
6 views29 slides

Recently uploaded(20)

Introduction to Git Source Control by John Valentino
Introduction to Git Source ControlIntroduction to Git Source Control
Introduction to Git Source Control
John Valentino7 views
Transport Management System - Shipment & Container Tracking by Freightoscope
Transport Management System - Shipment & Container TrackingTransport Management System - Shipment & Container Tracking
Transport Management System - Shipment & Container Tracking
Freightoscope 5 views
Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated... by TomHalpin9
Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated...Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated...
Dev-HRE-Ops - Addressing the _Last Mile DevOps Challenge_ in Highly Regulated...
TomHalpin96 views
How Workforce Management Software Empowers SMEs | TraQSuite by TraQSuite
How Workforce Management Software Empowers SMEs | TraQSuiteHow Workforce Management Software Empowers SMEs | TraQSuite
How Workforce Management Software Empowers SMEs | TraQSuite
TraQSuite6 views
ADDO_2022_CICID_Tom_Halpin.pdf by TomHalpin9
ADDO_2022_CICID_Tom_Halpin.pdfADDO_2022_CICID_Tom_Halpin.pdf
ADDO_2022_CICID_Tom_Halpin.pdf
TomHalpin95 views
tecnologia18.docx by nosi6702
tecnologia18.docxtecnologia18.docx
tecnologia18.docx
nosi67025 views
predicting-m3-devopsconMunich-2023.pptx by Tier1 app
predicting-m3-devopsconMunich-2023.pptxpredicting-m3-devopsconMunich-2023.pptx
predicting-m3-devopsconMunich-2023.pptx
Tier1 app8 views
Top-5-production-devconMunich-2023.pptx by Tier1 app
Top-5-production-devconMunich-2023.pptxTop-5-production-devconMunich-2023.pptx
Top-5-production-devconMunich-2023.pptx
Tier1 app9 views
Understanding HTML terminology by artembondar5
Understanding HTML terminologyUnderstanding HTML terminology
Understanding HTML terminology
artembondar57 views
Ports-and-Adapters Architecture for Embedded HMI by Burkhard Stubert
Ports-and-Adapters Architecture for Embedded HMIPorts-and-Adapters Architecture for Embedded HMI
Ports-and-Adapters Architecture for Embedded HMI
Burkhard Stubert33 views
Bootstrapping vs Venture Capital.pptx by Zeljko Svedic
Bootstrapping vs Venture Capital.pptxBootstrapping vs Venture Capital.pptx
Bootstrapping vs Venture Capital.pptx
Zeljko Svedic15 views
How to build dyanmic dashboards and ensure they always work by Wiiisdom
How to build dyanmic dashboards and ensure they always workHow to build dyanmic dashboards and ensure they always work
How to build dyanmic dashboards and ensure they always work
Wiiisdom14 views
Generic or specific? Making sensible software design decisions by Bert Jan Schrijver
Generic or specific? Making sensible software design decisionsGeneric or specific? Making sensible software design decisions
Generic or specific? Making sensible software design decisions
FOSSLight Community Day 2023-11-30 by Shane Coughlan
FOSSLight Community Day 2023-11-30FOSSLight Community Day 2023-11-30
FOSSLight Community Day 2023-11-30
Shane Coughlan7 views
Airline Booking Software by SharmiMehta
Airline Booking SoftwareAirline Booking Software
Airline Booking Software
SharmiMehta9 views
aATP - New Correlation Confirmation Feature.pptx by EsatEsenek1
aATP - New Correlation Confirmation Feature.pptxaATP - New Correlation Confirmation Feature.pptx
aATP - New Correlation Confirmation Feature.pptx
EsatEsenek1205 views
Dapr Unleashed: Accelerating Microservice Development by Miroslav Janeski
Dapr Unleashed: Accelerating Microservice DevelopmentDapr Unleashed: Accelerating Microservice Development
Dapr Unleashed: Accelerating Microservice Development
Miroslav Janeski15 views

Mystery Meat 2.0 – Making hidden mobile interactions accessible