SlideShare a Scribd company logo
/10@yegor256 1
Fail Fast.

Into User’s Face.
Yegor Bugayenko
/10@yegor256 2
be arrogant
/10@yegor256 3
int len(File f) {
if (f == null) {
return -1;
}
}
int len(File f) {
if (f == null) {
throw new Exception(
“file can’t be NULL”
);
}
}
/10@yegor256 4
try {
stream.read();
} catch (IOException ex) {
ex.printStackTrace();
}
try {
stream.read();
} catch (IOException ex) {
throw new RuntimeException(
“failed to read stream”,
ex
);
}
/10@yegor256 5
void push(int x) {
if (pos < array.length) {
array[pos++] = x;
}
}
void push(int x) {
if (pos >= array.length) {
throw new Exception(
“array is full”
);
}
array[pos++] = x;
}
/10@yegor256 6
@Override
void save() {
// not implemented yet
}
@Override
void save() {
throw new Exception(
“not implemented yet”
);
}
/10@yegor256 7
file.delete();
if (!file.delete()) {
throw new Exception(
“failed to delete file”
);
}
/10@yegor256 8
User find(int id) {
if (/* not found */) {
return null;
}
// continue...
}
User find(int id) {
if (/* not found */) {
throw new Exception(
“user not found”
);
}
// continue...
}
/10@yegor256 9
fix
report
use
deploy
/10@yegor256 10
www.yegor256.com

More Related Content

PDF
Need It Robust? Make It Fragile!
PPTX
Data File Handiling File POINTERS IN C++
DOC
Inheritance
PPTX
working with files
PPTX
ATS Internals
KEY
Ajax - a quick introduction
PDF
When RegEx is not enough
PPTX
Naughty And Nice Bash Features
Need It Robust? Make It Fragile!
Data File Handiling File POINTERS IN C++
Inheritance
working with files
ATS Internals
Ajax - a quick introduction
When RegEx is not enough
Naughty And Nice Bash Features

What's hot (20)

PDF
Clone database using_active_duplicate
PDF
Hands On Spring Data
PPTX
Commit2015 kharchenko - python generators - ext
PPTX
2015 555 kharchenko_ppt
ODP
Matthew Vignau: Memory Management in SharePoint 2007 Development
PPTX
Sensu wrapper-sensu-summit
PDF
JSLab. Домников Виталий. "ES6 генераторы и Koa.js"
PPT
Sample file processing
PDF
What's new in PHP 5.5
PPTX
Introducing PHP Latest Updates
PDF
Making Mongo realtime - oplog tailing in Meteor
PDF
General Functions
PDF
Jakarta Commons - Don't re-invent the wheel
PPT
Java 7 - short intro to NIO.2
PDF
Asynchronen Code testen
PDF
No dark magic - Byte code engineering in the real world
PDF
Program to-copy-contents-of-one-file-to-another
PDF
Sequential Async Call
ODP
Java 7 new features
PPTX
Deep Dumpster Diving
Clone database using_active_duplicate
Hands On Spring Data
Commit2015 kharchenko - python generators - ext
2015 555 kharchenko_ppt
Matthew Vignau: Memory Management in SharePoint 2007 Development
Sensu wrapper-sensu-summit
JSLab. Домников Виталий. "ES6 генераторы и Koa.js"
Sample file processing
What's new in PHP 5.5
Introducing PHP Latest Updates
Making Mongo realtime - oplog tailing in Meteor
General Functions
Jakarta Commons - Don't re-invent the wheel
Java 7 - short intro to NIO.2
Asynchronen Code testen
No dark magic - Byte code engineering in the real world
Program to-copy-contents-of-one-file-to-another
Sequential Async Call
Java 7 new features
Deep Dumpster Diving
Ad

Viewers also liked (19)

PDF
How Do You Know When Your Product is Ready to be Shipped?
PDF
How Much Immutability Is Enough?
PDF
OOP Is Dead? Not Yet!
PDF
Who Manages Who?
PDF
Meetings Or Discipline
PDF
Continuous Integration is Dead
PDF
Practical Example of AOP with AspectJ
PDF
Object Oriented Lies
PDF
How Anemic Objects Kill OOP
PDF
Java vs OOP
PDF
Problems With Chat Bots
PDF
Who Is a Software Architect?
PDF
Built-in Fake Objects
PDF
Management without managers
PDF
How Immutability Helps in OOP
PDF
ORM is a perfect anti-pattern
PDF
ORM is offensive
PDF
RABIES IN TUNISIA:Evolution and result of « National Program of Rabies Control »
PDF
Chat Bot Architecture
How Do You Know When Your Product is Ready to be Shipped?
How Much Immutability Is Enough?
OOP Is Dead? Not Yet!
Who Manages Who?
Meetings Or Discipline
Continuous Integration is Dead
Practical Example of AOP with AspectJ
Object Oriented Lies
How Anemic Objects Kill OOP
Java vs OOP
Problems With Chat Bots
Who Is a Software Architect?
Built-in Fake Objects
Management without managers
How Immutability Helps in OOP
ORM is a perfect anti-pattern
ORM is offensive
RABIES IN TUNISIA:Evolution and result of « National Program of Rabies Control »
Chat Bot Architecture
Ad

Similar to Fail Fast. Into User's Face. (14)

PPTX
A topology of memory leaks on the JVM
PPT
Java 7
PPTX
Java 104
PDF
JavaScript - Like a Box of Chocolates
PDF
5. Ввод-вывод, доступ к файловой системе
PPSX
DIWE - File handling with PHP
PPTX
Exceptions and errors in Java
PDF
File Handling.pdffile handling ppt final
PDF
Impress Your Friends with EcmaScript 2015
PPTX
Ch3(working with file)
PDF
Java 7 Launch Event at LyonJUG, Lyon France. Fork / Join framework and Projec...
PPTX
Migrating to JUnit 5
PDF
스위프트를 여행하는 히치하이커를 위한 스타일 안내
PDF
soft-shake.ch - Java SE 7: The Fork/Join Framework and Project Coin
A topology of memory leaks on the JVM
Java 7
Java 104
JavaScript - Like a Box of Chocolates
5. Ввод-вывод, доступ к файловой системе
DIWE - File handling with PHP
Exceptions and errors in Java
File Handling.pdffile handling ppt final
Impress Your Friends with EcmaScript 2015
Ch3(working with file)
Java 7 Launch Event at LyonJUG, Lyon France. Fork / Join framework and Projec...
Migrating to JUnit 5
스위프트를 여행하는 히치하이커를 위한 스타일 안내
soft-shake.ch - Java SE 7: The Fork/Join Framework and Project Coin

More from Yegor Bugayenko (20)

PDF
Can Distributed Teams Deliver Quality?
PDF
Are You Sure You Are Not a Micromanager?
PDF
On Requirements Management (Demotivate Them Right)
PDF
My Experience of 1000 Interviews
PDF
Are you sure you are not a micromanager?
PDF
Quality Assurance vs. Testing
PDF
Is Java Getting Better?
PDF
Typical Pitfalls in Testing
PDF
Software Testing Pitfalls
PDF
Five Trends We Are Afraid Of
PDF
Experts vs Expertise
PDF
Who Cares About Quality?
PDF
Quantity vs. Quality
PDF
Experts vs Expertise
PDF
Zold: a cryptocurrency without Blockchain
PDF
Life Without Blockchain
PDF
How to Cut Corners and Stay Cool
PDF
Math or Love?
PDF
How much do you cost?
PDF
Java Annotations Are a Bad Idea
Can Distributed Teams Deliver Quality?
Are You Sure You Are Not a Micromanager?
On Requirements Management (Demotivate Them Right)
My Experience of 1000 Interviews
Are you sure you are not a micromanager?
Quality Assurance vs. Testing
Is Java Getting Better?
Typical Pitfalls in Testing
Software Testing Pitfalls
Five Trends We Are Afraid Of
Experts vs Expertise
Who Cares About Quality?
Quantity vs. Quality
Experts vs Expertise
Zold: a cryptocurrency without Blockchain
Life Without Blockchain
How to Cut Corners and Stay Cool
Math or Love?
How much do you cost?
Java Annotations Are a Bad Idea

Recently uploaded (20)

PDF
System and Network Administraation Chapter 3
PPTX
L1 - Introduction to python Backend.pptx
PPTX
CHAPTER 2 - PM Management and IT Context
PDF
Cost to Outsource Software Development in 2025
PPTX
Introduction to Artificial Intelligence
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PPTX
history of c programming in notes for students .pptx
PPTX
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
PDF
Designing Intelligence for the Shop Floor.pdf
PDF
Digital Systems & Binary Numbers (comprehensive )
PPTX
Log360_SIEM_Solutions Overview PPT_Feb 2020.pptx
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PDF
iTop VPN Free 5.6.0.5262 Crack latest version 2025
PDF
How to Choose the Right IT Partner for Your Business in Malaysia
PDF
Understanding Forklifts - TECH EHS Solution
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
System and Network Administraation Chapter 3
L1 - Introduction to python Backend.pptx
CHAPTER 2 - PM Management and IT Context
Cost to Outsource Software Development in 2025
Introduction to Artificial Intelligence
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Adobe Illustrator 28.6 Crack My Vision of Vector Design
history of c programming in notes for students .pptx
Embracing Complexity in Serverless! GOTO Serverless Bengaluru
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
Designing Intelligence for the Shop Floor.pdf
Digital Systems & Binary Numbers (comprehensive )
Log360_SIEM_Solutions Overview PPT_Feb 2020.pptx
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
Odoo Companies in India – Driving Business Transformation.pdf
iTop VPN Free 5.6.0.5262 Crack latest version 2025
How to Choose the Right IT Partner for Your Business in Malaysia
Understanding Forklifts - TECH EHS Solution
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025

Fail Fast. Into User's Face.