SlideShare une entreprise Scribd logo
1  sur  83
Télécharger pour lire hors ligne
The Web

Should Just Work

for Everyone
Aaron Gustafson

@AaronGustafson
slideshare.net/AaronGustafson
Microsoft Edge Web Summit

4 April 2016
San Francisco, CA USA
Accessibility
Opportunity
WHO (c. 1980)
“In the context of health experience,

a disability is any restriction or lack of
ability (resulting from an impairment)

to perform an activity in the manner or
within the range considered normal 

for a human being.”
WHO (c. TODAY)
“Disability is not just a health problem.

It is a complex phenomenon, reflecting
the interaction between features of a
person’s body and features of the 

society in which he or she lives.”
Disabilities

are Designed
excluded
included
population
designer
user ability
John Rawls
1921-2002
“special needs”
(we’ve all got ’em)
Photo	Credit:	Dylan Passmore
wheelchairs strollers bicycles skateboards
one arm arm injury new parent
permanent situational
one arm arm injury new parent
permanent situational
26K 13M 8M+ +
21 Million People
Progressive
Enhancement
BEN HOH
“[Progressive enhancement] keeps the
design open to the possibilities of 

sexiness in opportune contexts, 

rather than starting with the ‘whole’
experience that must be compromised.”
This is What
Design is All About
JEFFREY VEEN
“I’ve been amazed at how often those
outside the discipline of design assume
that what designers do is decoration—
likely because so much bad design 

simply is decoration. Good design isn’t.

Good design is problem solving.”
Photo	Credit:	Tom
Accessible
Rich
I nternet

Application
ARIA Landmarks
<header	class="banner"	role="banner"	id="top">

		<h1	class="banner_logo"><a	href="/"	rel="home">

				24	ways	<span>to	impress	your	friends</span></a></h1>	
</header>
<main	role="main">	
		…	
</main>
<nav	class="navigation"	role="navigation"	id="menu">

		<h1	class="hidden">Browse	24	ways</h1>

		<ul	class="nav	nav-topics">	
				<li	class="nav_item"><a	href="/topics/business/"

						data-icon="&#x2655;">Business</a></li>	
				…	
		</ul>

		…	
</nav>
<footer	class="contentinfo"	role="contentinfo">	
		<p	class="contentinfo_copyright">	
				<small>&#169;	2005-2016	24	ways	and	our	authors.

				<a	href="/about/#colophon">Colophon</a></small>	
		</p>	
		<p	class="contentinfo_social">	
				<a	href="http://feeds.feedburner.com/24ways"

						rel="alternate">Grab	our	RSS	feed</a>	
				<a	href="https://twitter.com/24ways"	rel="me">Follow	us

						on	Twitter</a>	
				<a	href="/newsletter">Subscribe	to	our	newsletter</a>	
		</p>	
</footer>
Every Interface

is a Conversation
West	of	House	
You	are	standing	in	an	open	field	west	of	a	white	house,	with	a	
boarded	front	door.	
There	is	a	small	mailbox	here.	
>	open	mailbox
This	is	a	small	room	with	passages	to	the	east	and	south	and	a	
forbidding	hole	leading	west.	Bloodstains	and	deep	scratches	
(perhaps	made	by	an	axe)	mar	the	walls.	
A	nasty-looking	troll,	brandishing	a	bloody	axe,	blocks	all	
passages	out	of	the	room.	
Your	sword	has	begun	to	glow	very	brightly.	
>	kill	troll
This	is	a	small	room	with	passages	to	the	east	and	south	and	a	
forbidding	hole	leading	west.	Bloodstains	and	deep	scratches	
(perhaps	made	by	an	axe)	mar	the	walls.	
A	nasty-looking	troll,	brandishing	a	bloody	axe,	blocks	all	
passages	out	of	the	room.	
Your	sword	has	begun	to	glow	very	brightly.	
>	hit	the	troll	with	the	Elvish	sword
How does this photo make you feel?
Embarrassing
Upsetting
Saddening
Bad Photo
Other
How does this photo make you feel?
Embarrassing
Upsetting
Saddening
Bad Photo
Other it’s embarrassing
Please describe the photo
It’s embarrassing
It’s a bad photo of me
It makes me sad
Talk to your users
like they talk

to one another.
Write for People
๏ Be clear.
๏ Be concise.
๏ Be honest.
๏ Be considerate.
๏ Write how you speak.
๏ Be clear.
๏ Be concise.
๏ Be honest.
๏ Be considerate.
๏ Write how you speak.
Avoid Technical
and Legal Jargon
When Requesting
Feedback, Make 

It Clear That the User
Needs to Respond
<label	for="first_name">What’s	your	first	name?</label>	
<input	name="first_name"	id="first_name">
<label	for="first_name">What’s	your	first	name?</label>	
<input	name="first_name"	id="first_name">
<label	for="first_name">What’s	your	first	name?</label>	
<input	name="first_name"	id="first_name"	
										aria-describedby="first_name-error">	
<em	id="first_name-error">	
		Without	your	first	name,	I	won’t	know	how	to	address	you.	
		Could	you	please	provide	it?	
</em>
<label	for="first_name">What’s	your	first	name?</label>	
<input	name="first_name"	id="first_name"	
										aria-describedby="first_name-error">	
<em	id="first_name-error">	
		Without	your	first	name,	I	won’t	know	how	to	address	you.	
		Could	you	please	provide	it?	
</em>
When Asking a
User to Choose,
Clearly Present

the Options
<input	type="radio"	name="agree"	id="agree_yes"	value="yes">	
<label	for="agree_yes">Yes</label>
<input	type="radio"	name="agree"	id="agree_yes"	value="yes">	
<label	for="agree_yes">Yes</label>
<fieldset>	
		<legend	tabindex="0">Do	you	agree	to	the	terms	of	service	
				for	this	site?</legend>	
		<input	type="radio"	name="agree"	id="agree_yes"	value="yes">	
				<label	for="agree_yes">Yes</label>	
		<input	type="radio"	name="agree"	id="agree_no"	value="no">	
				<label	for="agree_no">No</label>	
</fieldset>
<fieldset>	
		<legend	tabindex="0">Do	you	agree	to	the	terms	of	service	
				for	this	site?</legend>	
		<input	type="radio"	name="agree"	id="agree_yes"	value="yes">	
				<label	for="agree_yes">Yes</label>	
		<input	type="radio"	name="agree"	id="agree_no"	value="no">	
				<label	for="agree_no">No</label>	
</fieldset>
<nav	id="nav"	tabindex="0"	aria-labelledby="nav-title">	
		<h1	id="nav-title"	class="hidden">Here’s	what	you	can

				find	on	this	site:</h1>	
		<ul>	
				<li><a	href="/about/"><b	class="hidden">A	Bit	

						</b>About<b	class="hidden">	Me</b></a></li>	
				<li><a	href="/notebook/"><b	class="hidden">Entries	in	My

						</b>Notebook</a></li>	
				…	
		</ul>	
</nav>
<nav	id="nav"	tabindex="0"	aria-labelledby="nav-title">	
		<h1	id="nav-title"	class="hidden">Here’s	what	you	can

				find	on	this	site:</h1>	
		<ul>	
				<li><a	href="/about/"><b	class="hidden">A	Bit	

						</b>About<b	class="hidden">	Me</b></a></li>	
				<li><a	href="/notebook/"><b	class="hidden">Entries	in	My

						</b>Notebook</a></li>	
				…	
		</ul>	
</nav>
<nav	class="global-navigation"	role="navigation"

					aria-label="main	navigation">	
		…	
</nav>
<nav	class="global-navigation"	role="navigation"

					aria-label="main	navigation">	
		…	
</nav>
Prompts Should
be Short, While
Still Being Clear
ALBERT EINSTEIN
It can scarcely be denied that the

supreme goal of all theory is to make the
irreducible basic elements as simple and
as few as possible without having to
surrender the adequate representation

of a single datum of experience.
ALBERT EINSTEIN

(VIA ROBERT SESSIONS)
Everything should be

as simple as it can be

but not simpler.
THIS IS REAL COPY
Heavy rains throughout most of the State
have given an optimistic outlook for
lessened fire danger for the rest of the
season. However, an abundance of
lightning maintains a certain amount of
hazard in isolated areas that have not
received an excessive amount of rain.
IT COULD BE SO MUCH BETTER
Heavy rains throughout most of the
State have lessened fire danger for the
rest of the season. However, lightning
threatens isolated dry areas.
Ask Only
Necessary
Questions
Phone Number:
Present
Information

in Consumable
Pieces
The	top	seller	in	the	garden	department	is	Repel	Lemon	
Eucalyptus	Natural	Insect	Repellent,	4-Ounce	Pump	Spray	
Would	you	like	to	hear	the	rest?
Demystifying
Accessibility
http://is.gd/msft_inclusive_design
Accessibility is not
About Disabilities
It’s About People
Thank you!
@AaronGustafson
aaron-gustafson.com
slideshare.net/AaronGustafson

Contenu connexe

Similaire à The Web Should Just Work for Everyone

Inclusive tech, (how) is that possible?
Inclusive tech, (how) is that possible?Inclusive tech, (how) is that possible?
Inclusive tech, (how) is that possible?Marion Mulder
 
Example Of A 5 Paragraph Essay. Five paragraph-essay-sample
Example Of A 5 Paragraph Essay. Five paragraph-essay-sampleExample Of A 5 Paragraph Essay. Five paragraph-essay-sample
Example Of A 5 Paragraph Essay. Five paragraph-essay-sampleAmanda Stephens
 
· Practical Op-Amps – Understanding Op Amp Parameters1. Search t.docx
· Practical Op-Amps – Understanding Op Amp Parameters1. Search t.docx· Practical Op-Amps – Understanding Op Amp Parameters1. Search t.docx
· Practical Op-Amps – Understanding Op Amp Parameters1. Search t.docxoswald1horne84988
 
ARC-211:American Diversity and Design:Zhuorong Zhang
ARC-211:American Diversity and Design:Zhuorong ZhangARC-211:American Diversity and Design:Zhuorong Zhang
ARC-211:American Diversity and Design:Zhuorong Zhangzhuorong zhang
 
Designing the Conversation [Accessibility DC 2018]
Designing the Conversation [Accessibility DC 2018]Designing the Conversation [Accessibility DC 2018]
Designing the Conversation [Accessibility DC 2018]Aaron Gustafson
 
Introduction To Disabilities
Introduction To DisabilitiesIntroduction To Disabilities
Introduction To DisabilitiesJo Woolery
 
Information Architecture 101
Information Architecture 101Information Architecture 101
Information Architecture 101Christina Wodtke
 
Retrospecting our Retrospectives
Retrospecting our RetrospectivesRetrospecting our Retrospectives
Retrospecting our RetrospectivesJessica DeVita
 
Film Mask Film Analysis
Film Mask Film AnalysisFilm Mask Film Analysis
Film Mask Film AnalysisErin Rivera
 
5 Deadly Workplace Legal Risks
5 Deadly Workplace Legal Risks5 Deadly Workplace Legal Risks
5 Deadly Workplace Legal Risksperformanceweb
 
Designing the Conversation [Paris Web 2017]
Designing the Conversation [Paris Web 2017]Designing the Conversation [Paris Web 2017]
Designing the Conversation [Paris Web 2017]Aaron Gustafson
 
Personal Essay New York City. Online assignment writing service.
Personal Essay New York City. Online assignment writing service.Personal Essay New York City. Online assignment writing service.
Personal Essay New York City. Online assignment writing service.Tia Williams
 
1.20.12 wy inclusion_awareness_presentation
1.20.12 wy inclusion_awareness_presentation1.20.12 wy inclusion_awareness_presentation
1.20.12 wy inclusion_awareness_presentationroxyrocker
 
Arc211 p3 fangqi yuan
Arc211 p3 fangqi yuanArc211 p3 fangqi yuan
Arc211 p3 fangqi yuan方奇 员
 
Section 10 - Old Age.pdf
Section 10 - Old Age.pdfSection 10 - Old Age.pdf
Section 10 - Old Age.pdfspandane
 

Similaire à The Web Should Just Work for Everyone (16)

Inclusive tech, (how) is that possible?
Inclusive tech, (how) is that possible?Inclusive tech, (how) is that possible?
Inclusive tech, (how) is that possible?
 
Example Of A 5 Paragraph Essay. Five paragraph-essay-sample
Example Of A 5 Paragraph Essay. Five paragraph-essay-sampleExample Of A 5 Paragraph Essay. Five paragraph-essay-sample
Example Of A 5 Paragraph Essay. Five paragraph-essay-sample
 
· Practical Op-Amps – Understanding Op Amp Parameters1. Search t.docx
· Practical Op-Amps – Understanding Op Amp Parameters1. Search t.docx· Practical Op-Amps – Understanding Op Amp Parameters1. Search t.docx
· Practical Op-Amps – Understanding Op Amp Parameters1. Search t.docx
 
ARC-211:American Diversity and Design:Zhuorong Zhang
ARC-211:American Diversity and Design:Zhuorong ZhangARC-211:American Diversity and Design:Zhuorong Zhang
ARC-211:American Diversity and Design:Zhuorong Zhang
 
Designing the Conversation [Accessibility DC 2018]
Designing the Conversation [Accessibility DC 2018]Designing the Conversation [Accessibility DC 2018]
Designing the Conversation [Accessibility DC 2018]
 
Introduction To Disabilities
Introduction To DisabilitiesIntroduction To Disabilities
Introduction To Disabilities
 
Information Architecture 101
Information Architecture 101Information Architecture 101
Information Architecture 101
 
Retrospecting our Retrospectives
Retrospecting our RetrospectivesRetrospecting our Retrospectives
Retrospecting our Retrospectives
 
Designing out evil
Designing out evilDesigning out evil
Designing out evil
 
Film Mask Film Analysis
Film Mask Film AnalysisFilm Mask Film Analysis
Film Mask Film Analysis
 
5 Deadly Workplace Legal Risks
5 Deadly Workplace Legal Risks5 Deadly Workplace Legal Risks
5 Deadly Workplace Legal Risks
 
Designing the Conversation [Paris Web 2017]
Designing the Conversation [Paris Web 2017]Designing the Conversation [Paris Web 2017]
Designing the Conversation [Paris Web 2017]
 
Personal Essay New York City. Online assignment writing service.
Personal Essay New York City. Online assignment writing service.Personal Essay New York City. Online assignment writing service.
Personal Essay New York City. Online assignment writing service.
 
1.20.12 wy inclusion_awareness_presentation
1.20.12 wy inclusion_awareness_presentation1.20.12 wy inclusion_awareness_presentation
1.20.12 wy inclusion_awareness_presentation
 
Arc211 p3 fangqi yuan
Arc211 p3 fangqi yuanArc211 p3 fangqi yuan
Arc211 p3 fangqi yuan
 
Section 10 - Old Age.pdf
Section 10 - Old Age.pdfSection 10 - Old Age.pdf
Section 10 - Old Age.pdf
 

Plus de Aaron Gustafson

Delivering Critical Information and Services [JavaScript & Friends 2021]
Delivering Critical Information and Services [JavaScript & Friends 2021]Delivering Critical Information and Services [JavaScript & Friends 2021]
Delivering Critical Information and Services [JavaScript & Friends 2021]Aaron Gustafson
 
Adapting to Reality [Guest Lecture, March 2021]
Adapting to Reality [Guest Lecture, March 2021]Adapting to Reality [Guest Lecture, March 2021]
Adapting to Reality [Guest Lecture, March 2021]Aaron Gustafson
 
Designing the Conversation [Beyond Tellerrand 2019]
Designing the Conversation [Beyond Tellerrand 2019]Designing the Conversation [Beyond Tellerrand 2019]
Designing the Conversation [Beyond Tellerrand 2019]Aaron Gustafson
 
Getting Started with Progressive Web Apps [Beyond Tellerrand 2019]
Getting Started with Progressive Web Apps [Beyond Tellerrand 2019]Getting Started with Progressive Web Apps [Beyond Tellerrand 2019]
Getting Started with Progressive Web Apps [Beyond Tellerrand 2019]Aaron Gustafson
 
Progressive Web Apps: Where Do I Begin?
Progressive Web Apps: Where Do I Begin?Progressive Web Apps: Where Do I Begin?
Progressive Web Apps: Where Do I Begin?Aaron Gustafson
 
Media in the Age of PWAs [ImageCon 2019]
Media in the Age of PWAs [ImageCon 2019]Media in the Age of PWAs [ImageCon 2019]
Media in the Age of PWAs [ImageCon 2019]Aaron Gustafson
 
Adapting to Reality [Starbucks Lunch & Learn]
Adapting to Reality [Starbucks Lunch & Learn]Adapting to Reality [Starbucks Lunch & Learn]
Adapting to Reality [Starbucks Lunch & Learn]Aaron Gustafson
 
Conversational Semantics for the Web [CascadiaJS 2018]
Conversational Semantics for the Web [CascadiaJS 2018]Conversational Semantics for the Web [CascadiaJS 2018]
Conversational Semantics for the Web [CascadiaJS 2018]Aaron Gustafson
 
Better Performance === Greater Accessibility [Inclusive Design 24 2018]
Better Performance === Greater Accessibility [Inclusive Design 24 2018]Better Performance === Greater Accessibility [Inclusive Design 24 2018]
Better Performance === Greater Accessibility [Inclusive Design 24 2018]Aaron Gustafson
 
PWA: Where Do I Begin? [Microsoft Ignite 2018]
PWA: Where Do I Begin? [Microsoft Ignite 2018]PWA: Where Do I Begin? [Microsoft Ignite 2018]
PWA: Where Do I Begin? [Microsoft Ignite 2018]Aaron Gustafson
 
Designing the Conversation [Concatenate 2018]
Designing the Conversation [Concatenate 2018]Designing the Conversation [Concatenate 2018]
Designing the Conversation [Concatenate 2018]Aaron Gustafson
 
Performance as User Experience [AEADC 2018]
Performance as User Experience [AEADC 2018]Performance as User Experience [AEADC 2018]
Performance as User Experience [AEADC 2018]Aaron Gustafson
 
Performance as User Experience [AEA SEA 2018]
Performance as User Experience [AEA SEA 2018]Performance as User Experience [AEA SEA 2018]
Performance as User Experience [AEA SEA 2018]Aaron Gustafson
 
Performance as User Experience [An Event Apart Denver 2017]
Performance as User Experience [An Event Apart Denver 2017]Performance as User Experience [An Event Apart Denver 2017]
Performance as User Experience [An Event Apart Denver 2017]Aaron Gustafson
 
Advanced Design Methods 1, Day 2
Advanced Design Methods 1, Day 2Advanced Design Methods 1, Day 2
Advanced Design Methods 1, Day 2Aaron Gustafson
 
Advanced Design Methods 1, Day 1
Advanced Design Methods 1, Day 1Advanced Design Methods 1, Day 1
Advanced Design Methods 1, Day 1Aaron Gustafson
 
Exploring Adaptive Interfaces [Generate 2017]
Exploring Adaptive Interfaces [Generate 2017]Exploring Adaptive Interfaces [Generate 2017]
Exploring Adaptive Interfaces [Generate 2017]Aaron Gustafson
 
Progressive Web Apps and the Windows Ecosystem [Build 2017]
Progressive Web Apps and the Windows Ecosystem [Build 2017]Progressive Web Apps and the Windows Ecosystem [Build 2017]
Progressive Web Apps and the Windows Ecosystem [Build 2017]Aaron Gustafson
 
Writing for Engagement [TechReady 22]
Writing for Engagement [TechReady 22]Writing for Engagement [TechReady 22]
Writing for Engagement [TechReady 22]Aaron Gustafson
 
Designing the Conversation [SmashingConf 2016]
Designing the Conversation [SmashingConf 2016]Designing the Conversation [SmashingConf 2016]
Designing the Conversation [SmashingConf 2016]Aaron Gustafson
 

Plus de Aaron Gustafson (20)

Delivering Critical Information and Services [JavaScript & Friends 2021]
Delivering Critical Information and Services [JavaScript & Friends 2021]Delivering Critical Information and Services [JavaScript & Friends 2021]
Delivering Critical Information and Services [JavaScript & Friends 2021]
 
Adapting to Reality [Guest Lecture, March 2021]
Adapting to Reality [Guest Lecture, March 2021]Adapting to Reality [Guest Lecture, March 2021]
Adapting to Reality [Guest Lecture, March 2021]
 
Designing the Conversation [Beyond Tellerrand 2019]
Designing the Conversation [Beyond Tellerrand 2019]Designing the Conversation [Beyond Tellerrand 2019]
Designing the Conversation [Beyond Tellerrand 2019]
 
Getting Started with Progressive Web Apps [Beyond Tellerrand 2019]
Getting Started with Progressive Web Apps [Beyond Tellerrand 2019]Getting Started with Progressive Web Apps [Beyond Tellerrand 2019]
Getting Started with Progressive Web Apps [Beyond Tellerrand 2019]
 
Progressive Web Apps: Where Do I Begin?
Progressive Web Apps: Where Do I Begin?Progressive Web Apps: Where Do I Begin?
Progressive Web Apps: Where Do I Begin?
 
Media in the Age of PWAs [ImageCon 2019]
Media in the Age of PWAs [ImageCon 2019]Media in the Age of PWAs [ImageCon 2019]
Media in the Age of PWAs [ImageCon 2019]
 
Adapting to Reality [Starbucks Lunch & Learn]
Adapting to Reality [Starbucks Lunch & Learn]Adapting to Reality [Starbucks Lunch & Learn]
Adapting to Reality [Starbucks Lunch & Learn]
 
Conversational Semantics for the Web [CascadiaJS 2018]
Conversational Semantics for the Web [CascadiaJS 2018]Conversational Semantics for the Web [CascadiaJS 2018]
Conversational Semantics for the Web [CascadiaJS 2018]
 
Better Performance === Greater Accessibility [Inclusive Design 24 2018]
Better Performance === Greater Accessibility [Inclusive Design 24 2018]Better Performance === Greater Accessibility [Inclusive Design 24 2018]
Better Performance === Greater Accessibility [Inclusive Design 24 2018]
 
PWA: Where Do I Begin? [Microsoft Ignite 2018]
PWA: Where Do I Begin? [Microsoft Ignite 2018]PWA: Where Do I Begin? [Microsoft Ignite 2018]
PWA: Where Do I Begin? [Microsoft Ignite 2018]
 
Designing the Conversation [Concatenate 2018]
Designing the Conversation [Concatenate 2018]Designing the Conversation [Concatenate 2018]
Designing the Conversation [Concatenate 2018]
 
Performance as User Experience [AEADC 2018]
Performance as User Experience [AEADC 2018]Performance as User Experience [AEADC 2018]
Performance as User Experience [AEADC 2018]
 
Performance as User Experience [AEA SEA 2018]
Performance as User Experience [AEA SEA 2018]Performance as User Experience [AEA SEA 2018]
Performance as User Experience [AEA SEA 2018]
 
Performance as User Experience [An Event Apart Denver 2017]
Performance as User Experience [An Event Apart Denver 2017]Performance as User Experience [An Event Apart Denver 2017]
Performance as User Experience [An Event Apart Denver 2017]
 
Advanced Design Methods 1, Day 2
Advanced Design Methods 1, Day 2Advanced Design Methods 1, Day 2
Advanced Design Methods 1, Day 2
 
Advanced Design Methods 1, Day 1
Advanced Design Methods 1, Day 1Advanced Design Methods 1, Day 1
Advanced Design Methods 1, Day 1
 
Exploring Adaptive Interfaces [Generate 2017]
Exploring Adaptive Interfaces [Generate 2017]Exploring Adaptive Interfaces [Generate 2017]
Exploring Adaptive Interfaces [Generate 2017]
 
Progressive Web Apps and the Windows Ecosystem [Build 2017]
Progressive Web Apps and the Windows Ecosystem [Build 2017]Progressive Web Apps and the Windows Ecosystem [Build 2017]
Progressive Web Apps and the Windows Ecosystem [Build 2017]
 
Writing for Engagement [TechReady 22]
Writing for Engagement [TechReady 22]Writing for Engagement [TechReady 22]
Writing for Engagement [TechReady 22]
 
Designing the Conversation [SmashingConf 2016]
Designing the Conversation [SmashingConf 2016]Designing the Conversation [SmashingConf 2016]
Designing the Conversation [SmashingConf 2016]
 

Dernier

[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality AssuranceInflectra
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
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
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch TuesdayIvanti
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersNicole Novielli
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentPim van der Noll
 
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
 
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
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...AliaaTarek5
 
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
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
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
 
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
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfIngrid Airi González
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsNathaniel Shimoni
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 

Dernier (20)

[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance[Webinar] SpiraTest - Setting New Standards in Quality Assurance
[Webinar] SpiraTest - Setting New Standards in Quality Assurance
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
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
 
2024 April Patch Tuesday
2024 April Patch Tuesday2024 April Patch Tuesday
2024 April Patch Tuesday
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
A Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software DevelopersA Journey Into the Emotions of Software Developers
A Journey Into the Emotions of Software Developers
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native developmentEmixa Mendix Meetup 11 April 2024 about Mendix Native development
Emixa Mendix Meetup 11 April 2024 about Mendix Native development
 
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
 
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
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
(How to Program) Paul Deitel, Harvey Deitel-Java How to Program, Early Object...
 
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
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
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
 
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...
 
Generative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdfGenerative Artificial Intelligence: How generative AI works.pdf
Generative Artificial Intelligence: How generative AI works.pdf
 
Time Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directionsTime Series Foundation Models - current state and future directions
Time Series Foundation Models - current state and future directions
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 

The Web Should Just Work for Everyone