ponyfoo.com

Lean Development Principles

Fix
A relevant ad will be displayed here soon. These ads help pay for my hosting.
Please consider disabling your ad blocker on Pony Foo. These ads help pay for my hosting.
You can support Pony Foo directly through Patreon or via PayPal.

I just finished reading The Lean Startup, an immersive, ground-breaking take on entrepreneurship and startup management, with views heavily rooted in the Toyota Production System. There are quite a few take-aways for us, the web work-force, to learn.

The Lean Startup introduces us to a series of practices we can follow in order to build products faster, get feedback earlier and more often, and most importantly, develop features customers actually want. In this article, I’ll go over the fundamentals, focusing on how Lean Development affects software development, not just startup management.

lean-startup.jpg
lean-startup.jpg

Here is an infographic with the key take-aways from the Lean Startup model.

I’ve put together a recap of the practices that’ll help transform your development process into a more sincerely results-oriented methodology. These are, in my humble opinion, the most important factors of a Lean Startup, when it comes to software builders.

Prototyping an MVP

Early in, we might want to approach things differently. If we have a product idea, we don’t want to be building a fully-featured product that might fail the moment we start publicizing it. Instead, what we should do, is put together a Minimum Viable Product (MVP for short), that will help us figure whether we are going in the right direction before we get to actually building anything.

An MVP might be as simple as a smoke test, or it might contain just the essential features for us to give the concept a test drive and gather data.

The canonical MVP strategy for a web application is to create a mock website for the product and purchase online advertising to direct traffic to the site. The mock website may consist of a marketing landing page with a link for more information or purchase. The link is not connected to a purchasing system, instead clicks are recorded and measure customer interest.

Split Testing

Every new feature that’s to be introduced into the produce should be pitted against the existing product. We should be gathering metrics about each of the different scenarios. Much like running an experiment, we test to see if the users are more engaged when the new feature is available to them.

Split testing (also known as A/B testing) consists of providing a small portion of your customer-base with a different version of the product, where the only change from the current version of the product is the new feature. The metrics and analytics we pick up from running an experiment should give us enough feedback to make an informed decision about whether we will be including the feature in our final product, or discarding it altogether.

This approach leads to something called validated learning, and that means we make well-informed decisions about whether we’ll include any feature, and we won’t be just going by our gut feel or by what a dictator in our company imposes.

Here is a lengthy, thorough article on the do’s and don’ts of A/B testing, featured on Smashing Magazine.

Not Just Split Testing

Think of split testing as forking. Now that you’ve learned that features should go out on a one-by-one basis, and be tested independently, it makes sense as developers, to keep these features also strictly separated in our repositories. To that end, we should be branching off of the main branch into feature branches, and using one branch per feature. In this way, we can also shorten our cycles by making every feature way easier to plug in and out of our main product.

Once our feature is approved or rejected, we can merge it into the main branch, delete it, or keep working on it, maybe attempting a different take on the same feature.

Cross-functional Teams

Using a validated learning approach based on split testing, it is best to work as cross-functional teams.

This means we should be working with small teams. Ideally, we should be able to compose and decompose these teams as needed when developing new features. Cross-functional teams should include all the required people in order to design, develop, and deploy a feature, complete and with a split test.

Continuous Deployment

Lean development allows us to iterate more quickly on our process, having a continuous deployment process in place will allow us to gather feedback more quickly.

Gathering feedback early is of the utmost importance because we don’t want to be building a product nobody wants or a feature nobody intends to use.

Continuous deployment further enables us to push bug fixes and updates far quicker than what we are used to in more traditional development processes, and with far less friction, too.

Error Correction

The book suggests setting the project up with someone in charge of root cause analysis when things go wrong. This goes a great length to help us get the team involved in delivering a high quality product, and together with the suggestion to rotate the person in charge, can go great lengths in bringing teams closer together, working as a unit.

But don’t take my word for it, read the book instead.

P.S Kanban, on the other hand, should be taken with a pinch of salt.

Liked the article? Subscribe below to get an email when new articles come out! Also, follow @ponyfoo on Twitter and @ponyfoo on Facebook.
One-click unsubscribe, anytime. Learn more.

Comments