Skip to main content

46 posts tagged with "feature-flags"

View All Tags

· 9 min read
Chavez Harris

Machine learning models are the core building blocks of artificial intelligence. As of this writing, a popular AI chatbot circulating in the media and tech industry is ChatGPT. It uses several large generative language models under the hood and can perform tasks that some might describe as super-human.

This advancement in AI showcases the potential of machine learning models and their transformative impact. With the number of machine learning libraries available on the internet, you can even develop your custom models. What's even better is that you can decouple the features of your model and control how they behave using feature flags.

Using feature flags with machine learning models

· 8 min read
David Herbert

The conversation about ethics in technology has become increasingly vital as software continues to advance and intertwines deeply with our daily lives. Among the various pivotal tools at a developer's disposal, feature flags stand out due to their profound impact on user experience and business outcomes. They allow for the selective enabling and disabling of features without deploying new code, fundamentally transforming how features are rolled out, tested, and managed. This flexibility is revolutionary, facilitating dynamic changes to the software environment that can be tailored to diverse user groups and providing a robust platform for experimentation.

illustration of developer implementing feature flags

· 7 min read
Tochukwu Gabriel Donatus

In today's fast-paced digital landscape, delivering a seamless and adaptive user experience is paramount for any software application. Apart from functionality, users expect a responsive and evolving interface that caters to their ever-changing needs. With feature flags, this becomes a reality. Feature flags are not just technical gadgets but are pivotal in crafting a user-centric software environment. By offering the ability to activate or deactivate features without altering the underlying codebase, they empower developers to enhance the user experience dynamically.

Enhancing user experience with feature flags cover image

· 2 min read
Alex G. Mircean

We're proud to finally announce that Config V2 is going live soon! Config V2 is our all new feature management system that comes with great improvements over our last version. It's coming with a bunch of exciting goodies: fresh functionality, a revamped user interface, and increased user-friendliness to make navigating the system a breeze.

· 8 min read
Emil Kovačević

In the ever-evolving landscape of software development, delivering high-quality software that meets user expectations is a formidable challenge. The journey from conceptualizing innovative features to their seamless integration into a live application involves careful consideration, testing, and risk management. One valuable tool that has emerged to address these challenges is the concept of dark launches. This strategic deployment technique allows development teams to introduce and test new software features with precision, unlocking controlled innovation and user-driven improvements. Let's further explore the concept of dark launches and what they offer to development teams.

Dark launches

· 8 min read
David Herbert

It's no secret that a higher user engagement rate translates to increased customer loyalty and, subsequently, a higher ROI. However, keeping users engaged in an increasingly competitive market is akin to striking gold in your software product. The journey towards amplifying user engagement often feels like navigating through a dense, enigmatic forest with no clear path in sight.

Engaging users isn't just about having an aesthetically pleasing interface or a groundbreaking product; it's about continuously optimizing the user experience and adapting to user feedback in real time. So, how do seasoned developers and product managers maneuver through this forest and emerge triumphant? One powerful torchlight in this scenario is the use of feature flags.

illustration of users engaging with features

· 6 min read
Musab Habeeb

DevOps is a software development methodology that integrates and automates the work of software and operations teams, while continuous deployment involves automating the release of software features. Together, they create a culture of collaboration, communication, and feedback. What if you could enhance DevOps with feature flags? Let's dive in and learn how they work, where they fit in the DevOps lifecycle, the benefits they offer, their role in DevOps and Continuous Deployment, and best practices for integrating them into a DevOps environment.

DevOps

· 5 min read
Marko Benjak

With the constant growing digitalization, our lives are continually enhanced by innovative features that simplify daily tasks. Central to this seamless integration of new functionalities is the concept of feature flagging—a powerful tool that allows developers to effortlessly toggle software components on or off.

This flexibility enables modifications without the need to redeploy or risk breaking the entire software infrastructure, offering tailored experiences to specific clients, regions, or user groups. Feature flags extend beyond mere software development, unlocking a plethora of versatile applications across various domains.

However, the utility of feature flags is primarily intended for temporary use and demands a strategic approach for their retirement. Hence, understanding the nuances of feature flag retirement is essential in maintaining an efficient and clean codebase.

Feature Flag Retirement Notes

· 9 min read
Chavez Harris

The primary goal of software developers is to ensure user satisfaction with the features or updates they introduce. However, achieving this goal can be challenging without the right release strategy. The question often asked, then, is, "How can developers be certain that a new update or feature delivers optimal results to end users?"

Two strategies that can be employed to address this concern are staged rollouts and canary releases. These strategies can be implemented using feature flags, and in this article, we explore how ConfigCat, a popular feature flag provider, can be used to perform staged rollouts and canary releases.

Using ConfigCat for Staged Rollouts and Canary Releases cover