Skip to main content

63 posts tagged with "how to"

View All Tags

How to Conduct an A/B Test in Elixir

· 8 min read
Chavez Harris
Inspiration does exist, but it must find you writing code.

Instead of relying on assumptions to decide which variation of a piece of software is better, you can let your users guide the decision through a controlled experiment. A/B testing involves splitting your user base into separate groups, where each group experiences a unique variation of a product or feature. By measuring the performance of each variation, you can determine which one works better.

To conduct such a test, you need a tool that helps you split your users into groups and display the appropriate variation for each group. Feature flags are an ideal tool for this. Let's walk through the process of conducting such an experiment in an Elixir app.

How to Conduct an A/B Test in Elixir - Cover Image

Using Feature Flags in Unreal Editor Scripts

· 5 min read
Chavez Harris
Inspiration does exist, but it must find you writing code.

Feature flags have equipped software developers to seamlessly roll out and roll back new features with the click of a button.

Due to their design and architecture, feature flags can be adapted and integrated into many languages and frameworks. They can be used with other technologies to enhance or add decoupled functionalities. Using them when scripting and automating your Unreal Engine editor is no exception to this.

Using feature flags with Unreal Engine python API

How to use ConfigCat with GitOps

· 9 min read
Chavez Harris
Inspiration does exist, but it must find you writing code.

GitOps is a framework that combines the practices of DevOps and Git and applies them to infrastructure management. It is not a tool or platform but a set of standards for managing IT infrastructure using Git. Within this realm, feature flags, like those from ConfigCat, can play a crucial role in streamlining workflows, managing releases, and enabling dynamic configurations.

Let’s dive into how ConfigCat and GitOps work together and why this combination is worth considering for your infrastructure and development processes.

How to use ConfigCat with GitOps cover

Using Feature Flags in an Angular Application

· 6 min read
Roxana Halați
I'm pretty cool, but I cry a lot.

In today's fast-paced digital landscape, users expect seamless, high-quality software experiences without interruptions. As developers, our challenge is introducing new features and updates without causing downtime. The solution? Feature flags. With feature flags, you can safely roll out new features gradually, ensuring your application remains fully operational while the development process continues.

Using feature flags in Angular cover

Unreal Engine Meets ConfigCat - New SDK Released

· 7 min read
Chavez Harris
Inspiration does exist, but it must find you writing code.

Are you a game developer seeking an efficient way to roll out, manage, and control features in your games? Look no further. With ConfigCat's Unreal Engine SDK, you can seamlessly add feature flags directly into your Unreal Engine projects, allowing you to decouple feature releases from deployments. This not only gives you greater flexibility but also helps streamline your feature development process from start to finish. How does it work in practice? Let's dive in.

ConfigCat Unreal Engine SDK cover

How to Use Feature Flags with Kubernetes

· 8 min read
Chavez Harris
Inspiration does exist, but it must find you writing code.

In a previous post, I covered best practices and tips for using ConfigCat feature flags with Docker. While Docker has advantages for easily sharing and deploying containerized applications, it poses challenges when deploying and managing those containers at scale. This is where Kubernetes comes in. Using feature flags, you can control your Kubernetes deployments and services with a simple click without editing your .yaml config files. Let's take a look together!

Feature flags with docker cover