Skip to main content
Chavez Harris
Build. Break. Learn. Repeat.
View all authors

How to Perform an A/B Test in Nuxt.js

· 8 min read
Chavez Harris
Build. Break. Learn. Repeat.

Most software features are designed and tested in-house before making their way into the hands of users. While this is somewhat of a standard approach in feature deployments, it may cause user experience issues. This is because the majority of end users are not tech-savvy and aren't thinking the way engineers do.

Cover photo

Adopting an A/B testing approach prior to making a final feature deployment decision can prevent or lessen the risk of interfering and affecting user experience. Features can be tested and released to a subset of end users initially where the current metrics can be recorded and compared to a previous benchmark. As a result, developers may choose to improve or cancel the feature altogether without the risk of blindly affecting the entire user base.

How to Use Feature Flags in a PHP Application

· 5 min read
Chavez Harris
Build. Break. Learn. Repeat.

It has become very rare to develop software that does not require regular updates and patches. In fact, it's now the norm with the rise of agile software development. As a result, there are so many new updates to manage across our code making feature rollouts tedious and complex. Hence, turning towards a good feature flagging solution always saves the day.

cover

How to Use Feature Flags with Flask

· 6 min read
Chavez Harris
Build. Break. Learn. Repeat.

Feature flags benefit our continuous integration and continuous deployment (CI/CD) workflows. As developers, we can quickly roll out and test new features without re-deploying or changing the application's code. Due to its simplicity, feature flagging can be incorporated into both new and existing applications. Let me walk you through how to use feature flags in a Flask application to help you better understand this concept.

cover

How to Use Feature Flags in Vue.js

· 8 min read
David Herbert
Turning deep tech into stories developers actually want to read.
Chavez Harris
Build. Break. Learn. Repeat.

Feature flags have greatly simplified the process of continuously testing and integrating new features into our applications. They ensure confidence even in production environments, eliminating deployment risks such as downtimes or bugs that could adversely affect the entire user base.

Feature Flags in Vue.js