SlideShare une entreprise Scribd logo
1  sur  112
Télécharger pour lire hors ligne
Designing
great APIs Learning from
Jonathan Ive,
Orwell, and
the Kano Model
by Jon Dahl
misc at Brightcove
API
API
API is an interface
Two users
What does this user want?
What does this user want?
API Design
George Orwell
Dieter Rams
Kano Model
George Orwell Writing
Dieter Rams Industrial Design
Kano Model Product
Five guiding principles
Specific examples
Discuss
George
Orwell
POST /things
USA Patriot Act
Expanded
Surveillance Act
Propaganda
While freely conceding that the Soviet
regime exhibits certain features which
the humanitarian may be inclined to
deplore, we must, I think, agree that a
certain curtailment of the right to political
opposition is an unavoidable
concomitant of transitional periods, and
that the rigors which the Russian people
have been called upon to undergo have
been amply justified in the sphere of
concrete achievement.
I am not, indeed, sure whether it is not
true to say that the Milton who once
seemed not unlike a seventeenth-century
Shelley had not become, out of an
experience ever more bitter in each year,
more alien to the founder of that Jesuit
sect which nothing could induce him to
tolerate.
Harold Laski, Essay in Freedom of Expression
I am not, indeed, sure whether it is not
true to say that the Milton who once
seemed not unlike a seventeenth-century
Shelley had not become, out of an
experience ever more bitter in each year,
more alien to the founder of that Jesuit
sect which nothing could induce him to
tolerate.
I am not, indeed, sure whether it is not
true to say that the Milton who once
seemed not unlike a seventeenth-century
Shelley had not become, out of an
experience ever more bitter in each year,
more alien to the founder of that Jesuit
sect which nothing could induce him to
tolerate.
1. Never use a metaphor, simile,
or other figure of speech which
you are used to seeing in print.
2. Never use a long word where a
short one will do.
3. If it is possible to cut a word
out, always cut it out.
4. Never use the passive where
you can use the active.
5. Never use a foreign phrase, a
scientific word, or a jargon word if
you can think of an everyday
English equivalent.
6. Break any of these rules sooner
than say anything outright
barbarous.
Five guiding principles
1. minimalism
Five guiding principles
1. minimalism
2. get out of the way
REST
Consistency
401 Unauthorized
403 Forbidden
Dieter Rams
Jonathan
Ive
Objectified (2009)
Five guiding principles
1. minimalism
2. get out of the way
3. design for extremes
Dim strPname As String
Dim dblPrice As Double
POST /api/jobs HTTP/1.1
Accept: application/json
Content-Type: application/json
{
"api_key" : "does not exist",
"color" : "green"
}
HTTP/1.1 500 Internal Server Error
HTTP/1.1 401 Unauthorized
HTTP/1.1 401 Unauthorized
{
"errors": [
"api_key not found"
]
}
HTTP/1.1 401 Unauthorized
{
"errors": [
"api_key not found.",
"api_key may not include spaces."
]
}
HTTP/1.1 401 Unauthorized
{
"errors": [
"api_key not found. Please log in to https://
example.com/account/api to retrieve your API
key.",
"api_key may not include spaces."
]
}
POST /api/user HTTP/1.1
Accept: application/json
Content-Type: application/json
{
"api_key" : "A23B92F281CC"
"strength" : 18
}
HTTP/1.1 400 Bad Request
HTTP/1.1 400 Bad Request
{
"errors": [
"JSON is not valid. Syntax error,
unexpected TSTRING, expecting '}'
at line 2"
]
}
HTTP/1.1 200 OK
HTTP/1.1 503 Service Unavailable
HTTP/1.1 408 Request Timeout
https://api.example.com/v1
913ebf20417e434390d56ccd81e54d1c
Five guiding principles
1. minimalism
2. get out of the way
3. design for extremes
4. be predictable
How do you
charge money
with Stripe?
What is the URL?
What are the params?
curl https://api.stripe.com/v1/charges 
-u my_api_key: 
-d amount=20 
-d currency=usd 
-d customer=12093155
Kano
Model
Noriaki
Kano
Noriaki
Kano
Basic needs
(must have)
Performance needs
(one-dimensional)
Indifferent
(don’t care)
Delighters
(attractive, exciting)
Support
Focus on
delight and
performance
Five guiding principles
1. minimalism
2. get out of the way
3. design for extremes
4. be predictable
Five guiding principles
1. minimalism
2. get out of the way
3. design for extremes
4. be predictable
5. excite users
What do you think?
Thanks!
by Jon Dahl
misc at Brightcove

Contenu connexe

En vedette

Aristotle and the Art of Software Development (Agile 2009)
Aristotle and the Art of Software Development (Agile 2009)Aristotle and the Art of Software Development (Agile 2009)
Aristotle and the Art of Software Development (Agile 2009)Jonathan Dahl
 
Rails and alternative ORMs
Rails and alternative ORMsRails and alternative ORMs
Rails and alternative ORMsJonathan Dahl
 
Aristotle and the Art of Software Development
Aristotle and the Art of Software DevelopmentAristotle and the Art of Software Development
Aristotle and the Art of Software DevelopmentJonathan Dahl
 
Advanced API Design: how an awesome API can help you make friends, get rich, ...
Advanced API Design: how an awesome API can help you make friends, get rich, ...Advanced API Design: how an awesome API can help you make friends, get rich, ...
Advanced API Design: how an awesome API can help you make friends, get rich, ...Jonathan Dahl
 
Programming and Minimalism: Lessons from Orwell and the Clash
Programming and Minimalism: Lessons from Orwell and the ClashProgramming and Minimalism: Lessons from Orwell and the Clash
Programming and Minimalism: Lessons from Orwell and the ClashJonathan Dahl
 
Pandas Updated2
Pandas Updated2Pandas Updated2
Pandas Updated2stopxanh
 

En vedette (6)

Aristotle and the Art of Software Development (Agile 2009)
Aristotle and the Art of Software Development (Agile 2009)Aristotle and the Art of Software Development (Agile 2009)
Aristotle and the Art of Software Development (Agile 2009)
 
Rails and alternative ORMs
Rails and alternative ORMsRails and alternative ORMs
Rails and alternative ORMs
 
Aristotle and the Art of Software Development
Aristotle and the Art of Software DevelopmentAristotle and the Art of Software Development
Aristotle and the Art of Software Development
 
Advanced API Design: how an awesome API can help you make friends, get rich, ...
Advanced API Design: how an awesome API can help you make friends, get rich, ...Advanced API Design: how an awesome API can help you make friends, get rich, ...
Advanced API Design: how an awesome API can help you make friends, get rich, ...
 
Programming and Minimalism: Lessons from Orwell and the Clash
Programming and Minimalism: Lessons from Orwell and the ClashProgramming and Minimalism: Lessons from Orwell and the Clash
Programming and Minimalism: Lessons from Orwell and the Clash
 
Pandas Updated2
Pandas Updated2Pandas Updated2
Pandas Updated2
 

Similaire à Designing Great APIs: Learning from Jony Ive, Orwell, and the Kano Model

ConveyUX Elegant Precision
ConveyUX Elegant PrecisionConveyUX Elegant Precision
ConveyUX Elegant Precisionlaurentgc
 
Ewrt 1 a class 5
Ewrt 1 a class 5Ewrt 1 a class 5
Ewrt 1 a class 5kimpalmore
 
Popular Creative Essay Editor Site For School
Popular Creative Essay Editor Site For SchoolPopular Creative Essay Editor Site For School
Popular Creative Essay Editor Site For SchoolLaura Lewis
 
Homework Should Be Optional Essay Exa
Homework Should Be Optional Essay ExaHomework Should Be Optional Essay Exa
Homework Should Be Optional Essay ExaAlison Carias
 
Essay Examples Life Experience Essay. Online assignment writing service.
Essay Examples Life Experience Essay. Online assignment writing service.Essay Examples Life Experience Essay. Online assignment writing service.
Essay Examples Life Experience Essay. Online assignment writing service.Sarah Pollard
 
Don't be a jerk
Don't be a jerkDon't be a jerk
Don't be a jerkRich Bowen
 
Steps In Research Paper Writing. Steps Of Writing A Research Proposa
Steps In Research Paper Writing. Steps Of Writing A Research ProposaSteps In Research Paper Writing. Steps Of Writing A Research Proposa
Steps In Research Paper Writing. Steps Of Writing A Research ProposaStacy Taylor
 
Sample Research Paper Outline In One Page Sum
Sample Research Paper Outline In One Page SumSample Research Paper Outline In One Page Sum
Sample Research Paper Outline In One Page SumBrenda Potter
 
Response To Literature Essay Example 8Th Grade
Response To Literature Essay Example 8Th GradeResponse To Literature Essay Example 8Th Grade
Response To Literature Essay Example 8Th GradeAndrea Lawson
 
Essay On Cat In English Cat Essay In English - YouTube
Essay On Cat In English Cat Essay In English - YouTubeEssay On Cat In English Cat Essay In English - YouTube
Essay On Cat In English Cat Essay In English - YouTubeCourtney Bennett
 
Writing workshop adcbsc east13
Writing workshop adcbsc east13Writing workshop adcbsc east13
Writing workshop adcbsc east13TechWell
 
Writing Task 2 Ielts Essay Samples No 2 Ielts - Tryskal
Writing Task 2 Ielts Essay Samples No 2 Ielts - TryskalWriting Task 2 Ielts Essay Samples No 2 Ielts - Tryskal
Writing Task 2 Ielts Essay Samples No 2 Ielts - TryskalMichelle Robertson
 
L6Lesson 3, 4, 6, 7, 11 [2]Review code of Lesson 3 - XAML, 4 –.docx
L6Lesson 3, 4, 6, 7, 11 [2]Review code of Lesson 3 - XAML, 4 –.docxL6Lesson 3, 4, 6, 7, 11 [2]Review code of Lesson 3 - XAML, 4 –.docx
L6Lesson 3, 4, 6, 7, 11 [2]Review code of Lesson 3 - XAML, 4 –.docxDIPESH30
 
Artificial_Intelligence_meets_natural_stupidity.pdf
Artificial_Intelligence_meets_natural_stupidity.pdfArtificial_Intelligence_meets_natural_stupidity.pdf
Artificial_Intelligence_meets_natural_stupidity.pdfFatima Javeed
 
Is Writing More Important Than Programming
Is Writing More Important Than ProgrammingIs Writing More Important Than Programming
Is Writing More Important Than Programminglegendsland
 
Build some PR!
Build some PR!Build some PR!
Build some PR!spartasoft
 
How To Learn A Spanish Essay
How To Learn A Spanish EssayHow To Learn A Spanish Essay
How To Learn A Spanish EssayMegan Bryant
 
Invasion of the dynamic language weenies
Invasion of the dynamic language weeniesInvasion of the dynamic language weenies
Invasion of the dynamic language weeniesSrijit Kumar Bhadra
 
Essay Binding London
Essay Binding LondonEssay Binding London
Essay Binding LondonDamaris Tur
 

Similaire à Designing Great APIs: Learning from Jony Ive, Orwell, and the Kano Model (20)

ConveyUX Elegant Precision
ConveyUX Elegant PrecisionConveyUX Elegant Precision
ConveyUX Elegant Precision
 
Ewrt 1 a class 5
Ewrt 1 a class 5Ewrt 1 a class 5
Ewrt 1 a class 5
 
Popular Creative Essay Editor Site For School
Popular Creative Essay Editor Site For SchoolPopular Creative Essay Editor Site For School
Popular Creative Essay Editor Site For School
 
Homework Should Be Optional Essay Exa
Homework Should Be Optional Essay ExaHomework Should Be Optional Essay Exa
Homework Should Be Optional Essay Exa
 
Essay Examples Life Experience Essay. Online assignment writing service.
Essay Examples Life Experience Essay. Online assignment writing service.Essay Examples Life Experience Essay. Online assignment writing service.
Essay Examples Life Experience Essay. Online assignment writing service.
 
Don't be a jerk
Don't be a jerkDon't be a jerk
Don't be a jerk
 
Steps In Research Paper Writing. Steps Of Writing A Research Proposa
Steps In Research Paper Writing. Steps Of Writing A Research ProposaSteps In Research Paper Writing. Steps Of Writing A Research Proposa
Steps In Research Paper Writing. Steps Of Writing A Research Proposa
 
Sample Research Paper Outline In One Page Sum
Sample Research Paper Outline In One Page SumSample Research Paper Outline In One Page Sum
Sample Research Paper Outline In One Page Sum
 
Response To Literature Essay Example 8Th Grade
Response To Literature Essay Example 8Th GradeResponse To Literature Essay Example 8Th Grade
Response To Literature Essay Example 8Th Grade
 
Essay On Cat In English Cat Essay In English - YouTube
Essay On Cat In English Cat Essay In English - YouTubeEssay On Cat In English Cat Essay In English - YouTube
Essay On Cat In English Cat Essay In English - YouTube
 
Writing workshop adcbsc east13
Writing workshop adcbsc east13Writing workshop adcbsc east13
Writing workshop adcbsc east13
 
Writing Task 2 Ielts Essay Samples No 2 Ielts - Tryskal
Writing Task 2 Ielts Essay Samples No 2 Ielts - TryskalWriting Task 2 Ielts Essay Samples No 2 Ielts - Tryskal
Writing Task 2 Ielts Essay Samples No 2 Ielts - Tryskal
 
L6Lesson 3, 4, 6, 7, 11 [2]Review code of Lesson 3 - XAML, 4 –.docx
L6Lesson 3, 4, 6, 7, 11 [2]Review code of Lesson 3 - XAML, 4 –.docxL6Lesson 3, 4, 6, 7, 11 [2]Review code of Lesson 3 - XAML, 4 –.docx
L6Lesson 3, 4, 6, 7, 11 [2]Review code of Lesson 3 - XAML, 4 –.docx
 
Artificial_Intelligence_meets_natural_stupidity.pdf
Artificial_Intelligence_meets_natural_stupidity.pdfArtificial_Intelligence_meets_natural_stupidity.pdf
Artificial_Intelligence_meets_natural_stupidity.pdf
 
Is Writing More Important Than Programming
Is Writing More Important Than ProgrammingIs Writing More Important Than Programming
Is Writing More Important Than Programming
 
Build some PR!
Build some PR!Build some PR!
Build some PR!
 
D5-EWRT 1A
D5-EWRT 1AD5-EWRT 1A
D5-EWRT 1A
 
How To Learn A Spanish Essay
How To Learn A Spanish EssayHow To Learn A Spanish Essay
How To Learn A Spanish Essay
 
Invasion of the dynamic language weenies
Invasion of the dynamic language weeniesInvasion of the dynamic language weenies
Invasion of the dynamic language weenies
 
Essay Binding London
Essay Binding LondonEssay Binding London
Essay Binding London
 

Dernier

Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?XfilesPro
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAndikSusilo4
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphNeo4j
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 

Dernier (20)

Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Pigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food ManufacturingPigging Solutions in Pet Food Manufacturing
Pigging Solutions in Pet Food Manufacturing
 
How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?How to Remove Document Management Hurdles with X-Docs?
How to Remove Document Management Hurdles with X-Docs?
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
Azure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & ApplicationAzure Monitor & Application Insight to monitor Infrastructure & Application
Azure Monitor & Application Insight to monitor Infrastructure & Application
 
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge GraphSIEMENS: RAPUNZEL – A Tale About Knowledge Graph
SIEMENS: RAPUNZEL – A Tale About Knowledge Graph
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 

Designing Great APIs: Learning from Jony Ive, Orwell, and the Kano Model