The document discusses the importance of coding standards and unit tests. It notes that coding standards help make code easier to understand, maintain and scale. Unit tests are important to improve software design, make code easier to understand, reduce debugging time and catch errors. The document then provides examples of good coding practices like using meaningful names, small and focused functions, and minimizing comments. It also covers different types of tests like unit, integration and acceptance tests. Finally it gives an overview of JUnit and components like assert methods.
This document summarizes key principles for writing clean code as outlined in the book "Clean Code" by Robert C. Martin. It discusses ideas like writing code that is easy to read and understand through use of meaningful names, small functions that do one thing well, and avoiding duplication. It also covers principles for object-oriented design like encapsulation, organization for change, and separation of concerns. Testing philosophies like test-driven development and ensuring tests are fast, independent, repeatable, self-validating, and timely are also emphasized. The overall message is that writing clean code requires attention to structure, naming, formatting and testing to produce software that is simple, well-organized and a pleasure to maintain.
Presentation I held before my colleagues about the book Clean Code (http://www.amazon.com/Clean-Code-Handbook-Software-Craftsmanship/dp/0132350882).
It contains the highlights of several chapters and hint/guidelines a developer should know.
We want code that is easy to understand, re-usable, and flexible. But we are always up against deadlines, so we rush, and end up with code that is messy, buggy, hard to maintain, and makes us go slower even though we¡¯re trying to go faster.
What is clean code? In this talk I¡¯ll provide some answers to this question, and introduce you to 10 good habits that will help keep your code clean, such as the use of meaningful names for your variables and functions, and following the ¡°Boy Scout Rule¡± (leave the code cleaner than you found it). I will even try to persuade you that using a lot of code comments is a sign that there are problems with your code.
The document discusses clean coding standards and best practices. It recommends following the Boy Scout Rule of leaving the code cleaner than you found it. It discusses using meaningful names for classes, methods, and variables without encodings. Functions should do one thing, use descriptive names, and avoid repeating code. Comments should explain intent, not make up for bad code. Error handling prefers exceptions over return codes. Formatting and style rules should be consistent within a team. Coding standards exist for many languages like Java, PHP, C#, Android and others.
Writing code is easy but writing maintainable code is almost impossible. During this talk I will discuss some of the principles of coding that relates to WordPress but goes beyond that.
How to name things: the hardest problem in programmingPeter Hilton
?
Developers can get better at their craft by learning from the great writers who mastered theirs. Writing software isn¡¯t the same as writing a novel, but there are parallels. Besides, advice from writers is better because writers have been struggling with their craft for many centuries, not just a few decades. It¡¯s better-written as well. This talk shares great writers¡¯ best advice for coders: Stephen King on refactoring, Anne Rice on development hardware, Hemingway on modelling with personas, and Neil Gaiman on everything.
This document discusses guidelines for writing high quality code, including definitions of code quality, examples of good and bad practices for variables and statements, and recommendations on code construction. It focuses on concepts from the book "Code Complete" such as self-documenting code, managing complexity, information hiding, and creating high-level abstractions through classes and routines. The presentation provides many examples and recommendations for writing understandable, maintainable and flexible code.
Naming guidelines for professional programmersPeter Hilton
?
All kinds of programmers acknowledge the difficulty of naming things, but relatively few use explicit naming guidelines. Various authors have published different kinds of identifier naming guidelines, but these guidelines do little to make naming easier, in practice. Meanwhile, professional programmers follow diverse conventions and disagree about key aspects of naming, such as acceptable name lengths.
Although few teams write their own coding standards, let along naming guidelines, many teams use code review and pair programming to maintain code quality. These teams can use third-party naming guidelines to inform these reviews, and improve their coding style.
This presentation introduces a set of naming guidelines that professional programmers can use in their work, consolidated from various sources.
Unit tests are great, they help a developer gain control over his code and catch bugs and regression issues.
Test Driven Development is a methodology that uses unit tests but it's not about writing unit tests - in fact the tests are only a design tool.
TDD is a methodology that solves problems in an iterative way, it's about emergent design that creates a maintainable solution.
In this session I'll talk about common mistakes and misconceptions, how to benefit from TDD and show how to design your code using unit tests.
The code for this talk can be found on GitHub: https://github.com/dhelper/DesignWIthTests
Bad comments are such a big problem, that most discussion on the subject never gets past how not to write bad comments. No wonder so many programmers admit defeat and adopt a policy of writing no comments at all.
This talk goes beyond bad comments to discover different kinds of good comments that are worth having, no matter how beautiful and perfect the code is.
Modern languages¡¯ biggest problem isn¡¯t having enough cool features, it¡¯s unmaintainable code. The core of maintainable code is clean code with good tests, but that by itself is not enough. This talk introduces a range of techniques for writing and improving code for maintainability, including how to get better at naming, explaining code with tests, the few code comments you actually need, README-driven development and how to write Minimum Viable Documentation.
Attendees will see how to combine a number of techniques they have already encountered separately, plus at least one technique they¡¯ve never heard of and can use immediately. Naming and abstraction are too hard to get right every single time, so you need to know when to add small doses of comments and documentation. More importantly, you need to know how to avoid wasting time on bad comments and unnecessary documentation without giving up entirely and not having any at all.
After the excitement of early adoption, and the joy of coding among experts comes the horror of your first maintenance project. As Jean-Paul Sartre said*, ¡®Hell is other people¡¯s code¡¯. Whether you are a new Scala developer or an experienced team lead, your future developer experience and happiness depends on maintainable code.
Do you already know what big ball of mud means?
And code smell?, Is your nose prepared to detect them?
Can you affirm that you are commited with the mantainability?
Do you have architectural sensibility to avoid these kind of situations? Or you are comfortable with the inertia of the day-to-day task of patching the holes. (it doesn't matter if it works..)
While much attention has been focused on high-level software architectural patterns, what is, in effect, the de-facto standard software architecture is seldom discussed.
This talk is intended to identify and summarize the causes that lead to misusing our time on complex maintenance, and give tips and best practices to avoid the big ball of mud and to achieve the best quality products.
The document discusses code smells that indicate issues with software design, including rigidity, fragility, immobility, viscosity, needless complexity, and opacity. It provides examples and questions to help identify when code exhibits these smells and suggests approaches to address them, such as improving reusability, reducing duplication, and employing techniques like peer review and documentation.
You will learn why naming is really difficult if done right, why coding and style guidelines are crucial, code structuring, exception handling and why other elements of coding often define the tipping point between success and failure of projects. Following the principles of software craftsmanship will allow you to end up with better maintainability and extensibility of your software and the success of the project in the end. All 3 Clean Code presentations provide great value by themselves, but taken together are designed to offer a holistic approach to successful software creation.
Why writing Clean Code makes us more efficient Over the lifetime of a product, maintaining the product is actually one - if not the most - expensive area(s) of the overall product costs. Writing clean code can significantly lower these costs. However, writing clean code also makes you more efficient during the initial development time and results in more stable code. You will be presented design patterns and best practices which will make you write better and more easily maintainable code, seeing code in a holistic way. You will learn how to apply them by using an existing implementation as the starting point of the presentation. Finally, patterns & practices benefits are explained.
This presentation is based on C# and Visual Studio 2013. However, the demonstrated patterns and practice can be applied to every other programming language too.
Note: Moving forwards this presentation will be updated with the latest version of the slides for the last event I did the presentation instead of creating new separate slide decks here on ºÝºÝߣShare.
Presentation dates and locations:
2015-06-27 SoCal Code Camp - San Diego, CA
2014-11-14 SoCal Code Camp - Los Angeles, CA
2014-10-18 Desert Code Camp - Chandler, AZ
YAGNI = You Ain¡¯t Gonna Need It
Emerged as one of the key principles of Extreme Programming
and says that you should do the simplest thing that could Possibly work!
The document provides guidance on clean coding practices for writing understandable code. It discusses style guidelines like using consistent coding standards and descriptive naming. It emphasizes that code should be self-documenting through structure rather than comments. It also discusses structural guidelines like keeping classes and functions small and single-purpose, following SOLID principles, using dependency injection for loose coupling, and preferring composition over inheritance. The document stresses that clean code promotes readability and maintainability.
This document discusses the principles of clean code based on Robert C. Martin's book "Clean Code". It covers topics like why clean code is important, guidelines for writing clean code like keeping methods small and using descriptive names, design principles like DRY and YAGNI, and code smells to avoid like long methods and duplicated code. The overall goal is to create code that is easy to read, understand and maintain over time.
The document discusses principles of clean code and code smells. It provides definitions and examples of clean code from various experts, including short functions that do one thing, meaningful names, comments that are useful but not redundant, and following the law of Demeter. The document also discusses writing classes with good organization and a single responsibility.
How I Learned to Stop Worrying and Love Legacy Code.....Mike Harris
?
Legacy Code. I never wrote it; everybody else did!
How many times have you waded through an ageing, decaying, tangled forrest of code and wished it would just die?
How many times have you heard someone say that what really needs to happen is a complete rewrite?
I have heard this many times, and, have uttered that fatal sentence myself.
But shouldn¡¯t we love our legacy code?
Doesn¡¯t it represent our investment and the hard work of ourselves and our predecessors?
Throwing it away is dangerous, because, before we do, we¡¯ll need to work out exactly what it does, and we¡¯ll need to tweeze out that critical business logic nestled in a deeply entangled knot of IF statements. It could take us years to do, and we¡¯ll have to maintain two systems whilst we do it, inevitably adding new features to them both. Yes we get to reimplement using the latest, coolest programming language, instead of an old behemoth, but how long will our new cool language be around, and who will maintain that code, when it itself inevitably turns to legacy?
We can throw our arms in the air, complaining and grumbling about how we didn¡¯t write the code, how we would never have written it the way it is, how those that wrote it were lesser programmers, possibly lesser humans themselves, but the code still remains, staring us in the face and hanging around for longer that we could possibly imagine. We can sort it out, we can improve it, we can make it testable, and we can learn to love our legacy code.
[DevDay2018] Let¡¯s all get along. Clean Code please! - By: Christophe K. Ngo,...DevDay Da Nang
?
People talk about ¡®clean code¡¯ and ¡®best practices¡¯ but what do they really mean? We are going to explore these topics and share with you the fundamentals of clean code and how to be a good teammate and a coder people will respect even after they read your code!
Clean code: understanding Boundaries and Unit Testsradin reth
?
This document discusses principles of clean code and unit testing. It covers boundaries when using third-party code, such as writing learning tests to understand external APIs. Tests should be kept clean like production code so they remain maintainable as the code evolves. Tests that are readable, use the BUILD-OPERATE-CHECK pattern, and have one assertion per test help achieve this. The document also advocates writing tests before production code according to the Three Laws of TDD and principles of FAST tests.
This document provides an overview of 30 tips for optimizing LotusScript development. It begins with introductions and outlines, then groups the tips into three sections: Theory, Practice, and Advanced. The Theory section covers 10 fundamental tips regarding best practices like using Option Declare, version control, application lifecycles, code structure, testing, and error handling. The Practice section presents 10 tips that should be implemented regularly, such as defensive coding, extending arrays, logging, and using NotesDateTime. The Advanced section introduces more complex topics like custom classes and binding. The goal is to help LotusScript developers improve code quality, maintainability, and performance.
This document discusses refactoring and summarizes the key points from Martin Fowler's book Refactoring. It covers what refactoring is, when it should be used by recognizing code smells, and how it should be done through small, incremental changes backed by thorough testing. The benefits of refactoring include improving code quality by reducing bugs and technical debt, while making the code easier to understand and modify. Tools now make refactoring easier by providing code analysis, refactoring suggestions, and quick fixes.
Robert C. Martin is a software engineer since 1970 who has edited and written several books. He co-authored the Agile Manifesto. The book Clean Code discusses principles of clean code such as functions doing one thing, avoiding duplications, and refactoring code in small steps. Tests are important to keep code flexible and readable by being fast, independent, repeatable, self-validating, and timely. Writing clean code is a craft that requires writing dirty code first and then cleaning it.
The View - Lotusscript coding best practicesBill Buchan
?
This document discusses best practices for LotusScript coding. It covers topics like code structure, using short logical functions, defensive programming, variable naming conventions, and ensuring variables only exist as long as needed. The goal is to write code that is maintainable, reusable, and robust. Testing practices like test-driven development and separating development, testing, and production environments are also recommended to improve quality.
This document provides summaries of what several experts consider "clean code". It discusses how clean code is readable, focused on doing one thing well, has minimal dependencies, is well-tested, has meaningful names, and shows that the author cares about quality. Overall, clean code is well-crafted, maintains professional standards, and can be easily understood and maintained by other programmers.
The document discusses essential skills that programmers need versus accidental skills. Essential skills are hard to acquire but long-lasting, including things like managing complexity, writing readable code, and limiting bugs. These skills separate good programmers from bad. Accidental skills like knowledge of a specific programming language are easier to obtain but have shorter usefulness. The document advocates spending time on design, planning, unit testing, discussing solutions with others, and considering alternative solutions rather than just focusing on writing code. Developing essential skills through these practices can help programmers continuously learn and improve over the course of their careers.
Naming guidelines for professional programmersPeter Hilton
?
All kinds of programmers acknowledge the difficulty of naming things, but relatively few use explicit naming guidelines. Various authors have published different kinds of identifier naming guidelines, but these guidelines do little to make naming easier, in practice. Meanwhile, professional programmers follow diverse conventions and disagree about key aspects of naming, such as acceptable name lengths.
Although few teams write their own coding standards, let along naming guidelines, many teams use code review and pair programming to maintain code quality. These teams can use third-party naming guidelines to inform these reviews, and improve their coding style.
This presentation introduces a set of naming guidelines that professional programmers can use in their work, consolidated from various sources.
Unit tests are great, they help a developer gain control over his code and catch bugs and regression issues.
Test Driven Development is a methodology that uses unit tests but it's not about writing unit tests - in fact the tests are only a design tool.
TDD is a methodology that solves problems in an iterative way, it's about emergent design that creates a maintainable solution.
In this session I'll talk about common mistakes and misconceptions, how to benefit from TDD and show how to design your code using unit tests.
The code for this talk can be found on GitHub: https://github.com/dhelper/DesignWIthTests
Bad comments are such a big problem, that most discussion on the subject never gets past how not to write bad comments. No wonder so many programmers admit defeat and adopt a policy of writing no comments at all.
This talk goes beyond bad comments to discover different kinds of good comments that are worth having, no matter how beautiful and perfect the code is.
Modern languages¡¯ biggest problem isn¡¯t having enough cool features, it¡¯s unmaintainable code. The core of maintainable code is clean code with good tests, but that by itself is not enough. This talk introduces a range of techniques for writing and improving code for maintainability, including how to get better at naming, explaining code with tests, the few code comments you actually need, README-driven development and how to write Minimum Viable Documentation.
Attendees will see how to combine a number of techniques they have already encountered separately, plus at least one technique they¡¯ve never heard of and can use immediately. Naming and abstraction are too hard to get right every single time, so you need to know when to add small doses of comments and documentation. More importantly, you need to know how to avoid wasting time on bad comments and unnecessary documentation without giving up entirely and not having any at all.
After the excitement of early adoption, and the joy of coding among experts comes the horror of your first maintenance project. As Jean-Paul Sartre said*, ¡®Hell is other people¡¯s code¡¯. Whether you are a new Scala developer or an experienced team lead, your future developer experience and happiness depends on maintainable code.
Do you already know what big ball of mud means?
And code smell?, Is your nose prepared to detect them?
Can you affirm that you are commited with the mantainability?
Do you have architectural sensibility to avoid these kind of situations? Or you are comfortable with the inertia of the day-to-day task of patching the holes. (it doesn't matter if it works..)
While much attention has been focused on high-level software architectural patterns, what is, in effect, the de-facto standard software architecture is seldom discussed.
This talk is intended to identify and summarize the causes that lead to misusing our time on complex maintenance, and give tips and best practices to avoid the big ball of mud and to achieve the best quality products.
The document discusses code smells that indicate issues with software design, including rigidity, fragility, immobility, viscosity, needless complexity, and opacity. It provides examples and questions to help identify when code exhibits these smells and suggests approaches to address them, such as improving reusability, reducing duplication, and employing techniques like peer review and documentation.
You will learn why naming is really difficult if done right, why coding and style guidelines are crucial, code structuring, exception handling and why other elements of coding often define the tipping point between success and failure of projects. Following the principles of software craftsmanship will allow you to end up with better maintainability and extensibility of your software and the success of the project in the end. All 3 Clean Code presentations provide great value by themselves, but taken together are designed to offer a holistic approach to successful software creation.
Why writing Clean Code makes us more efficient Over the lifetime of a product, maintaining the product is actually one - if not the most - expensive area(s) of the overall product costs. Writing clean code can significantly lower these costs. However, writing clean code also makes you more efficient during the initial development time and results in more stable code. You will be presented design patterns and best practices which will make you write better and more easily maintainable code, seeing code in a holistic way. You will learn how to apply them by using an existing implementation as the starting point of the presentation. Finally, patterns & practices benefits are explained.
This presentation is based on C# and Visual Studio 2013. However, the demonstrated patterns and practice can be applied to every other programming language too.
Note: Moving forwards this presentation will be updated with the latest version of the slides for the last event I did the presentation instead of creating new separate slide decks here on ºÝºÝߣShare.
Presentation dates and locations:
2015-06-27 SoCal Code Camp - San Diego, CA
2014-11-14 SoCal Code Camp - Los Angeles, CA
2014-10-18 Desert Code Camp - Chandler, AZ
YAGNI = You Ain¡¯t Gonna Need It
Emerged as one of the key principles of Extreme Programming
and says that you should do the simplest thing that could Possibly work!
The document provides guidance on clean coding practices for writing understandable code. It discusses style guidelines like using consistent coding standards and descriptive naming. It emphasizes that code should be self-documenting through structure rather than comments. It also discusses structural guidelines like keeping classes and functions small and single-purpose, following SOLID principles, using dependency injection for loose coupling, and preferring composition over inheritance. The document stresses that clean code promotes readability and maintainability.
This document discusses the principles of clean code based on Robert C. Martin's book "Clean Code". It covers topics like why clean code is important, guidelines for writing clean code like keeping methods small and using descriptive names, design principles like DRY and YAGNI, and code smells to avoid like long methods and duplicated code. The overall goal is to create code that is easy to read, understand and maintain over time.
The document discusses principles of clean code and code smells. It provides definitions and examples of clean code from various experts, including short functions that do one thing, meaningful names, comments that are useful but not redundant, and following the law of Demeter. The document also discusses writing classes with good organization and a single responsibility.
How I Learned to Stop Worrying and Love Legacy Code.....Mike Harris
?
Legacy Code. I never wrote it; everybody else did!
How many times have you waded through an ageing, decaying, tangled forrest of code and wished it would just die?
How many times have you heard someone say that what really needs to happen is a complete rewrite?
I have heard this many times, and, have uttered that fatal sentence myself.
But shouldn¡¯t we love our legacy code?
Doesn¡¯t it represent our investment and the hard work of ourselves and our predecessors?
Throwing it away is dangerous, because, before we do, we¡¯ll need to work out exactly what it does, and we¡¯ll need to tweeze out that critical business logic nestled in a deeply entangled knot of IF statements. It could take us years to do, and we¡¯ll have to maintain two systems whilst we do it, inevitably adding new features to them both. Yes we get to reimplement using the latest, coolest programming language, instead of an old behemoth, but how long will our new cool language be around, and who will maintain that code, when it itself inevitably turns to legacy?
We can throw our arms in the air, complaining and grumbling about how we didn¡¯t write the code, how we would never have written it the way it is, how those that wrote it were lesser programmers, possibly lesser humans themselves, but the code still remains, staring us in the face and hanging around for longer that we could possibly imagine. We can sort it out, we can improve it, we can make it testable, and we can learn to love our legacy code.
[DevDay2018] Let¡¯s all get along. Clean Code please! - By: Christophe K. Ngo,...DevDay Da Nang
?
People talk about ¡®clean code¡¯ and ¡®best practices¡¯ but what do they really mean? We are going to explore these topics and share with you the fundamentals of clean code and how to be a good teammate and a coder people will respect even after they read your code!
Clean code: understanding Boundaries and Unit Testsradin reth
?
This document discusses principles of clean code and unit testing. It covers boundaries when using third-party code, such as writing learning tests to understand external APIs. Tests should be kept clean like production code so they remain maintainable as the code evolves. Tests that are readable, use the BUILD-OPERATE-CHECK pattern, and have one assertion per test help achieve this. The document also advocates writing tests before production code according to the Three Laws of TDD and principles of FAST tests.
This document provides an overview of 30 tips for optimizing LotusScript development. It begins with introductions and outlines, then groups the tips into three sections: Theory, Practice, and Advanced. The Theory section covers 10 fundamental tips regarding best practices like using Option Declare, version control, application lifecycles, code structure, testing, and error handling. The Practice section presents 10 tips that should be implemented regularly, such as defensive coding, extending arrays, logging, and using NotesDateTime. The Advanced section introduces more complex topics like custom classes and binding. The goal is to help LotusScript developers improve code quality, maintainability, and performance.
This document discusses refactoring and summarizes the key points from Martin Fowler's book Refactoring. It covers what refactoring is, when it should be used by recognizing code smells, and how it should be done through small, incremental changes backed by thorough testing. The benefits of refactoring include improving code quality by reducing bugs and technical debt, while making the code easier to understand and modify. Tools now make refactoring easier by providing code analysis, refactoring suggestions, and quick fixes.
Robert C. Martin is a software engineer since 1970 who has edited and written several books. He co-authored the Agile Manifesto. The book Clean Code discusses principles of clean code such as functions doing one thing, avoiding duplications, and refactoring code in small steps. Tests are important to keep code flexible and readable by being fast, independent, repeatable, self-validating, and timely. Writing clean code is a craft that requires writing dirty code first and then cleaning it.
The View - Lotusscript coding best practicesBill Buchan
?
This document discusses best practices for LotusScript coding. It covers topics like code structure, using short logical functions, defensive programming, variable naming conventions, and ensuring variables only exist as long as needed. The goal is to write code that is maintainable, reusable, and robust. Testing practices like test-driven development and separating development, testing, and production environments are also recommended to improve quality.
This document provides summaries of what several experts consider "clean code". It discusses how clean code is readable, focused on doing one thing well, has minimal dependencies, is well-tested, has meaningful names, and shows that the author cares about quality. Overall, clean code is well-crafted, maintains professional standards, and can be easily understood and maintained by other programmers.
The document discusses essential skills that programmers need versus accidental skills. Essential skills are hard to acquire but long-lasting, including things like managing complexity, writing readable code, and limiting bugs. These skills separate good programmers from bad. Accidental skills like knowledge of a specific programming language are easier to obtain but have shorter usefulness. The document advocates spending time on design, planning, unit testing, discussing solutions with others, and considering alternative solutions rather than just focusing on writing code. Developing essential skills through these practices can help programmers continuously learn and improve over the course of their careers.
This document outlines traits of a good engineer according to a talk given by N.R. Rajagopal. It discusses seven key traits: 1) Curiosity - having an insatiable desire to understand how things work beyond surface level issues. 2) Finding ways to break things - looking at boundary conditions and edge cases. 3) Ability to get up to speed quickly on new large codebases. 4) Making tradeoffs between competing factors like time, cost and quality. 5) Designing for long-term maintainability rather than short-term goals. 6) Commitment to lifelong learning as technology continually changes. 7) Taking pride in one's work and enjoying challenges.
TDD and Simple Design Workshop - Session 1 - March 2019Paulo Clavijo
?
The document discusses test-driven development (TDD) and simple design. It introduces TDD and some of its core practices, including test-driven development, simple design, refactoring, and pair programming. It provides an agenda for a workshop that will cover these topics over three sessions, including extreme programming (XP), the four elements of simple design, test doubles, outside-in TDD, and SOLID principles. The workshop aims to communicate best practices for using technical practices to succeed with agile development.
This document discusses automated testing and different levels of testing. It explains that automated tests should be written to achieve good design, clarify how a system works, understand the system, and minimize risks. While automated tests require time to write, maintain, and execute, these efforts can be minimized by making tests easy to run and maintain with minimal dependencies. The document also discusses different perspectives on testing, including what developers and customers want. Developers are concerned with complexity and risk, while customers care about functionality and user scenarios. It notes that while unit tests have limitations, acceptance tests are also limited as they are slow, fragile, and not isolated. The "lost layer" of the testing pyramid is also mentioned - the presentation, service, and persistence
In his recent book, Clean Agile, Robert C "Uncle Bob" Martin chooses Extreme Programming (XP) for the basis of his explanation of Agile because "of all the Agile processes, XP is the best defined, the most complete, and the least muddled."
So why is it that in my professional life I only hear us speaking about Agile in terms of Scrum, Sprints, and possibly Kanban? Often I mention XP and people are not sure what I mean. Am I sure myself?
Coined in 1999 by Kent Beck and Ward Cunningham, XP has been with us for twenty years, but may of its practices have been with us for much longer. Many of them will be familar to you, but did you know they came from XP?
This talk aims to take us back to what XP is, how it fits in the Agile world, how it sits alongside other methodologies, and why, like Uncle Bob, I believe it is the best defined methodology, and what we should all be talking about.
The talk is based on a heavily refactored talk that Mike gave previously at Agile on the Beach conference, updated for 2020.
Given at Ox:Agile Meetup on February 11th 2020: https://www.meetup.com/OXAGILE/events/nxrdmrybcdbpb/
Recently I was asked to to a presentation presentation at University of Cape Town entitled QA and SCRUM. This made very little sense to me but it did substantiate my belief that the understanding of agile development is generally very superficial ...
2. A bitter pill
I know one of the company, in the late 80s,
wrote a killer app. It was very popular, and lots of
professionals bought and used it. But then the
release cycles began to stretch. Bugs were not
repaired from one release to the next. Load times
grew and crashes increased. I remember the day I
shut the product down in frustration and never
used it again. The company went out of business
a short time after that.
Continuined¡
Courtesy clean code book
? Robert C martin
3. A bitter pill
Two decades later I met one of the early employees of
that company and asked him
what had happened. The answer confirmed my fears.
They had rushed the product to
market and had made a huge mess in the code. As
they added more and more features, the
code got worse and worse until they simply could not
manage it any longer. It was the bad
code that brought the company down.
Courtesy clean code book
? Robert C martin
4. Why coding standard are important
? Easier to understand which in turn results in a
code, which is easier to develop and maintain.
? Code that is difficult to understand and maintain
runs the risk of being scrapped and rewritten.
? Greater maintainability.
? Greater scalability.
? Greater productivity.
5. Common excuse
Why does this happen to code? Why does good code rot so quickly
into bad code? We
have lots of explanations for it. We complain that the requirements
changed in ways that
original design. We the schedules that were too tight to do things
right.
We blather about stupid managers and intolerant customers and
useless marketing types
and telephone sanitizers. But the fault, is not in our stars, but in
ourselves.
We are unprofessional.
No. The managers and marketers look to us for the information they
need to make
promises and commitments; and even when they don¡¯t look to us,
we should not be shy
about telling them what we think.
Continuined¡
Courtesy clean code book
? Robert C martin
6. True professionals know that the second part of the is
wrong. You will not
make the deadline by making the mess. Indeed, the
mess will slow you down instantly, and
will force you to miss the deadline. The only way to
make the deadline¡ªthe only way to
go fast¡ªis to keep the code as clean as possible at all
times.
Let¡¯s say that you accept
that the only way to go fast is to keep your code clean.
Then you must ask yourself: ¡°How
do I write clean code?¡±
Courtesy clean code book
? Robert C martin
7. Bjarne Stroustrup, inventor of C++
and author of The C++ Programming
Language
I like my code to be elegant and efficient. The
logic should be straightforward to make it hard
for bugs to hide, the dependencies minimal to
ease maintenance, error handling complete
according to an articulated strategy, and performance
close to optimal so as not to tempt
people to make the code messy with unprincipled
optimizations. Clean code does one thing
well.
Reading it should make you smile the way a well-
crafted well-designed
car would. Courtesy clean code book
? Robert C martin
8. Naming Convention
? Never use single letter or abbreviation
¨C Why ? Because your brain needs to compile
those words AND DO MAPPING so your focus is
lost. READIBILITY DECREASES
? Use full English descriptors that accurately
describe the variable/field/class/interface
? For example, use names like firstName,
grandTotal, or CorporateCustomer (camel casing),
? Use mixed case to make names readable.
? Avoid names that are similar or differ only in case
9. Meaning full name
? Choosing good names takes time but saves
more than it takes.
? Everyone who reads your code (including
you) will be happier if you do.
? The name of a variable, function, or class,
should answer all the big questions.
? It should tell you why it exists, what it does,
and how it is used. If a name requires a
comment,then the name does not reveal its
intent.
10. Implication
for (int j=0; j<34; j++) {
s += (t[j]*4)/5;
}
to
int realDaysPerIdealDay = 4;
const int WORK_DAYS_PER_WEEK = 5;
int sum = 0;
for (int j=0; j < NUMBER_OF_TASKS; j++) {
int realTaskDays = taskEstimate[j] * realDaysPerIdealDay;
int realTaskWeeks = (realdays / WORK_DAYS_PER_WEEK);
sum += realTaskWeeks;
}
Not all the times third person will be able to
understand the code if the naming convention
is cryptic.
People may miss understand the code. Which
leads to ¡.
11. Solution
? So go ahead and use computer
science,domain terms, algorithm names,
pattern names, math terms, and so forth.
12. Functions
? The first rule of functions is that they
should be small. The second rule of
functions is that they should be smaller than
that.
? Functions should hardly ever be 20 lines
long.
? It will difficult for BRAIN to map if it
extends the screen size .
13. Function
? Each function should narrate a story.
? FUNCTIONS SHOULD DO ONE THING.
THEY SHOULD DO IT WELL.
? Following this principle will bring different levels of
abstraction.
? Gets of lots of reusability on board.(avoid duplication)
? Testable
14. Functions
? Naming member functions
¨C The first word of the member function should be
a verb.
? Naming Accessor Member Functions
¨C Use prefix ¡°get¡± to the name of the field /
attribute / property.
¨C Use prefix ¡°is¡± to the name of the field /
attribute / property if the field is Boolean
¨C Examples
¨C getFirstName()
¨C isPersistent()
15. Function
? A long descriptive name is better than a
short mysterious name.
? A long descriptive name is better than a
long descriptive comment.
? Use a naming convention that allows
multiple words to be easily read in the
function names, and then make use of
those multiple words to give the function a
name that says what it does.
16. Comments
? The reason is simple. Programmers can¡¯t
realistically maintain them.
? Only when non obvious are coded.
? Only the code can truly tell you what it does. It is
the only source of truly accurate information
? ¡°Don¡¯t comment bad code¡ªrewrite it.¡±
? Nothing can be quite so damaging as an old jargon
comment that propagates lies and misinformation.
? Every time you write a comment, you should feel
the failure of your ability of expression.
17. Comments
// Check to see if the employee is eligible for full
benefits
if ((employee.flags & HOURLY_FLAG) &&
(employee.age > 65))
Or this?
if (employee.isEligibleForFullBenefits())
// format matched kk:mm:ss EEE, MMM dd, yyyy
Pattern timeMatcher = Pattern.compile(
"d*:d*:d* w*, w* d*, d*");
18. comments
? Clarification
? Warning of Consequences
¨C Example @Ignore("Takes too long to run").
¨C //SimpleDateFormat is not thread safe,
¨C //so we need to create each instance
independently.
¨C TODOs are jobs that the programmer thinks
should be done
19. Comments
// Utility method that returns when this.closed is true. Throws an
exception
// if the timeout is reached.
public synchronized void waitForClose(final long timeoutMillis)
throws Exception
{
if(!closed)
{
wait(timeoutMillis);
if(!closed)
throw new Exception("MockResponseSender could not be closed");
}
}
20. Naming
? Constants All in upper case .
¨C MINIMUM_BALANCE
Variable should start with small letter
¨C Single letter are only allowed in loops i.e., i,j.
For Interfaces START WITH I
21. ? Don¡¯t show the intelligence. Most often
intelligent code result in bug and
maintenance issue.
? Write the logic in very straight forward way.
So that it is easy for third person to
understand.
? Writing software is like any other kind of
writing like article.
? You get your thoughts down first, then you
massage it until it reads well.
22. Unit Tests
? Why testing?
¨C Improve software design
¨C Make software easier to understand
¨C Reduce debugging time
¨C Catch integration errors
? In short, to Produce Better Code
? Kent Beck developed the first xUnit automated test tool for
Smalltalk in mid-90¡¯s.
? Junit has become the standard tool for Test-Driven
Development in Java (see Junit.org)
23. Unit Tests
Basics of software testing
There are two basics of software testing: blackbox testing
and whitebox testing.
? Blackbox Testing
Black box testing is a testing technique that ignores the
internal mechanism of the system and focuses on the output
generated against any input and execution of the system. It is
also called functional testing.
? Whitebox?Testing?
White box testing is a testing technique that takes into
account the internal mechanism of a system. It is also called
structural testing and glass box testing.
24. Types of testing
? There are many types of testing like
? Unit Testing
? Integration Testing
? Functional Testing
? System Testing
? Stress Testing
? Performance Testing
? Usability Testing
? Acceptance Testing
? Regression Testing
? Beta Testing??
? Smoke and sanity testing
? Security testing
25. Junit Components
? Override the setUp() method to initialize object(s)
under test.
? Override the tearDown() method to release object(s)
under test
? assertX methods
? assertEquals(expected, actual)
? assertNull(Object?object)
? static void assertTrue(boolean test)
? static void assertFalse(boolean test)
27. Other general info
? About Agile Development.
? About Test Driven development.
? Fit ¨C Testing based on Tables
? Cucumber ¨C Testing based on Modern language
? Selenium ¨C UI Driven testing framework.
? About Usability ¨C book by name¡°Dont make me
think¡±
? JPGL: JPA Hibernate, Design patterns ¨CHead first
design patterns