Best Practices for Short-term and Permanent Flags

1,055
LaunchDarkly
Serving over 20 trillion feature flags daily to help software teams build better software, faster. LaunchDarkly helps eliminate risk for developers and operations teams from the software development cycle.

This post is by Dawn Parzych of LaunchDarkly

What are best practices when it comes to feature flags? The answer to that as with most questions is “it depends.”

  • It depends on whether the flag is a short-term or permanent flag.
  • It depends on the purpose of the flag.
  • It depends on your specific business needs. What works for one company may not work for you.

This blog series will dive into best practices for feature flags, starting with best practices pertaining to short-term and permanent flags.

Determine whether you need a short-term or permanent flag

The first recommendation is to determine whether a flag will be a short-term or permanent flag as that will influence future decisions and best practices.

Short-term flags

A short-term flag has a limited lifespan. Remove the flag once it has fulfilled its business purpose. When thinking of feature flags, most people think of short-term flags. Types of short-term flags include:

Release: Slowly exposing a feature to new users—moving from internal users to beta and/or canary users until 100% of users are receiving the feature. When you reach 100% remove the flag (unless it is needed as a circuit-breaker as described below).

A/B testing: Segmenting your population to determine a preference for one option over another. Once testing ends, remove the flag, and 100% of users should receive the preferred variation.

Operational interaction testing: When rolling out a new microservice, infrastructure component, or third-party tag, a flag can be used to determine the impact on systems. If the CPU spikes or there is a memory leak, or unexpected errors occur, disable the new element while further troubleshooting takes place.

Kill switches: A toggle to disable a single feature when things start to go sideways during a release.

After reading those descriptions, you may be thinking that a release flag sounds a lot like an operational interaction testing flag. And they are similar. The primary difference is in who is the controller. An operational interaction flag is controlled by the ops team to protect the systems where the release flag is controlled by the product or business owner to control how user adoption progresses.

Permanent flags

A permanent flag is designed to provide control for an extended time after the release of a given feature. In some cases, the flag will be in existence for the life of a feature. Types of permanent flags include:

Entitlements: Giving users access to certain features based on a subscription level or authentication status.

Circuit breakers/Load shedding: Having the ability to quickly turn a feature off or terminate a connection when problems arise prevents problems from impacting all users. These flags are often activated based on an event. For example, a monitoring tool generates an alert when orders fail to complete. When the alert is triggered, a flag is toggled setting the site to ‘read-only.’

White labeling: Configuring the look and feel of an application for each client for a white-labeled solution.

Accessibility: Allowing users to select which accessibility options and refinements they prefer.

Feature flag best practices for all flags

Whether you have a permanent or short-term flag, consider these best practices.

Make flag planning a part of feature design

Feature flags shouldn’t be an afterthought. If you think about feature flags during the design process, you will be setting yourself up for success. Part of the planning includes whether the flag will be a short-term or permanent flag. This decision will then impact other areas such as a naming convention, configuration settings, review and removal processes, and access control and safety checks. We suggest proper planning up front for all flags.

Standardize naming

You may have a style guide for code with conventions on how to write code for your application that includes things like when and where to use camelCase or the proper use of indentation. These style conventions make it easier to read and understand the code.

Before creating your first flag, come up with a naming convention to be used. Our first recommendation is for verbose flag names, don’t try and be brief. You want people to know what the flag does. Verbose flag names can be helpful for others to understand what the flag is doing.

Things to consider when writing the style guide or naming convention.

  • Be descriptive about the flag’s behavior.
  • Include a prefix with a project name or team name.
  • Indicate whether the flag is temporary or permanent.
  • Include a creation date for the flag. (This will be helpful when cleaning up flags, more on this below).
  • Whether or not to use flag in the name. If using a service like LaunchDarkly using flag in the name is redundant. If using a home-grown solution using flag in the name may help clarify the purpose of the code.

For example, you are creating a flag to progressively roll out and test a new chatbox widget of your UI. This will be a short-term flag. Without a naming convention in place, you may end up with a flag called “brand-new-flag” or “new-UI-widget.”

These names don’t tell us a whole lot about this flag. But with a standard naming convention in place that addresses all of the above, you can create a more descriptive flag name like “aTeam-chatbox-widget-temp-030619.” We know from the name, this is a temporary flag for a chatbox widget created by the “a team” on June 3rd, much better.

Minimize the reach of a flag

The focus of a flag should be small. Having a flag that controls more than one feature action at a time can be confusing and will make troubleshooting issues harder. Think about the smallest unit of logic needed for the most responsive flag. If there are multiple parts to a feature that have to work together, you can create a master flag as a dependency.

For example, say you’re launching a new dashboard in your application. The dashboard has three widgets. You should create a total of four flags: one flag for each widget with a dependency on a fourth flag for the main dashboard. With this scenario, if one widget causes problems the dashboard with two widgets can still be served.

Review use at regular intervals

Whether you are creating a short-term or permanent flag you need to review flag use at regular intervals. The frequency at which you review the flags may vary based on business requirements and the type of flag. To avoid accrual of technical debt, review both permanent and short-term flags at a regular cadence.

For short-term flags, look to see if the flag has rolled out to 100% of users, or if a flag is served to no users. For permanent flags, examine whether the flag is still needed—was a feature once part of a premium bundle and is now available for all users.

We will cover specific criteria related to removing short term flags below.

Best Practices for permanent flags

Establish access control and safety checks

If you have regularly scheduled flag clean-up events, you may worry about the accidental removal of permanent flags. Minimize the risk by implementing access control and safety-checks.

Within LaunchDarkly a flag cannot be deleted without confirmation, but that is a partial solution. There are two additional ways to implement access controls for added peace of mind.

  • Use tags and custom roles to assign permissions to flags within LaunchDarkly quickly.
  • Set role-based access control (RBAC) to specify who can delete flags in a given environment.

Best Practices for Short-term flags

Create a process for removing flags before you create one

Coding a flag is a two-part process. The act of removing a flag should not be a separate process from the act of creating a flag. As mentioned above, you should plan for flags during the feature design process. This includes the removal of short-term flags. An easy way to handle the removal process is to write a pull request to remove the flag at the time you create it. Schedule a Github reminder for after the feature is deployed to review and determine if the PR to remove the flag should be committed.

Conduct regular clean-up and review cycles

Avoiding and eliminating technical debt is necessary. If you don’t pay attention to your flags and conduct regular clean-up and review cycles, you can quickly end up with hundreds or thousands of unused feature flags. Here are some ways to schedule flag clean-up.

  • Schedule time at the end of every sprint to review existing flags.
  • Schedule a clean-up/refactoring sprint at a regular cadence (quarterly, semi-annually, whatever works for your business) to pull out old flags & tags.
  • Make it a competition. Hold a “Capture the Flag” day. The individual or team that removes the most flags wins. (Caution: make sure teams aren’t gaming the system and creating fake flags just to delete them.)

Within LaunchDarkly, we make it easier to identify which flags for removal.

You can:

  • Filter tags by create date to view the oldest flags.
  • View which variations of a flag were recently served. Are 100% of users receiving the same variation?
  • Filter on the last evaluation date of a flag.

Once you have identified a flag for removal, use code references to find all the instances of that flag in your code base.

If not using LaunchDarkly a consistent naming strategy can help you grep the code for instances of flags.

Conclusion

Although I refer to these as best practices, other practices may be better. These are recommendations that we follow and have heard from other customers. Over time these recommendations may change as we learn more. These should be seen as recommendations and suggestions, feel free to modify and alter based on your specific needs. What works well for one company or team may not work well for another team. Future blogs in this series will cover best practices and recommendations around specific use cases. If there is a best practice you would like to share please drop us a line.

Look for more best practices blogs coming soon:

Operational flags best practices

Release management flags best practices

Experimentation flags best practices

Entitlement flags best practices

LaunchDarkly
Serving over 20 trillion feature flags daily to help software teams build better software, faster. LaunchDarkly helps eliminate risk for developers and operations teams from the software development cycle.
Tools mentioned in article
Open jobs at LaunchDarkly
Manager, Solutions Engineering Partne...
- US
<p><strong>About the Job:</strong></p> <p data-renderer-start-pos="1405">LaunchDarkly is looking for our first Manager for the Partner Solutions Engineering team. As a Manager for the Partner Solutions Engineering and Solutions Specialists team, you will serve in a player-coach capacity to manage, mentor, and coach a team of diverse SEs.&nbsp;</p> <p data-renderer-start-pos="1695"><strong data-renderer-mark="true">Solutions Specialists</strong> at LaunchDarkly are subject matter experts in a particular area that LaunchDarkly operates in. Some of these areas of interest include experimentation, DevOps, web &amp; mobile development, and Federal government opportunities. Solutions Specialists are responsible for working with the entire revenue team in supporting our prospects and customers within their given area of expertise.&nbsp;</p> <p data-renderer-start-pos="2104"><strong data-renderer-mark="true">Partner Solutions Engineers </strong>(PSEs) are responsible for presenting LaunchDarkly’s feature management offering to LaunchDarkly partners and system integrators. PSEs work heavily with our partner team in onboarding new partners, SI’s, and alliance partners like AWS, as well as other cloud providers. PSEs are passionate about technology, specifically software development and DevOps and the ecosystems they live in.</p> <p><strong>Responsibilities:&nbsp;</strong></p> <ul class="ak-ul" data-indent-level="1"> <li> <p data-renderer-start-pos="2539">Attract, hire, and retain a team of PSEs and Specialists, including managing high potential individual contributors, ensuring rapid onboarding for new team members, and fostering collaboration with internal teams.&nbsp;</p> </li> <li> <p data-renderer-start-pos="2757">Work cross-functionally with other internal stakeholders such as sales, product, engineering, platform, and marketing to provide customer insight and enable ongoing improvement of products and services.&nbsp;</p> </li> <li> <p data-renderer-start-pos="2964">Work with LaunchDarkly’s most strategic customers to ensure their success.</p> </li> <li> <p data-renderer-start-pos="3042">Advise our customers on software development best practices and how to leverage LaunchDarkly.&nbsp;</p> </li> <li> <p data-renderer-start-pos="3140">Actively commit to helping the solutions engineering team iterate to excellence.&nbsp;</p> </li> <li> <p data-renderer-start-pos="3225">Become a subject matter expert on LaunchDarkly.</p> </li> <li> <p data-renderer-start-pos="3276">Be the voice of the customer by translating, aggregating, and representing customer feedback to the Product and Engineering teams.</p> </li> </ul> <p><strong>About You:</strong></p> <ul class="ak-ul" data-indent-level="1"> <li> <p data-renderer-start-pos="3423">You enjoy being a player-coach and enjoy mentoring and leading others</p> </li> <li> <p data-renderer-start-pos="3496">You are a natural trusted advisor</p> </li> <li> <p data-renderer-start-pos="3533">You have the ability to build relationships internally and externally and have exceptional stakeholder management skills</p> </li> </ul> <h4><strong>About LaunchDarkly:</strong></h4> <h4><span style="font-weight: 400;">LaunchDarkly is a Feature Management Platform that serves trillions of feature flags daily to help software teams build better software, faster. Feature flagging is an industry standard methodology of wrapping a new or risky section of code or infrastructure change with a flag. Each flag can easily be turned off independent of code deployment (aka "dark launching"). LaunchDarkly has SDKs for all major web and mobile platforms. We are building a diverse team so that we can offer robust products and services. Our team culture is dynamic, friendly, and supportive. Our headquarters are in Oakland.</span></h4> <h4><span style="font-weight: 400;">At LaunchDarkly, we believe in the power of teams. We're building a team that is humble, open, collaborative, respectful and kind. We are an equal opportunity employer and value diversity at our company. We do not discriminate on the basis of race, religion, color, national origin, gender, gender identity, sexual orientation, age, marital status, veteran status, or disability status.</span></h4> <h4><span style="font-weight: 400;">Don't let the </span><a href="https://www.theatlantic.com/magazine/archive/2014/05/the-confidence-gap/359815/"><span style="font-weight: 400;">confidence gap</span></a><span style="font-weight: 400;"> get in the way of applying! We'd love to hear from you.</span></h4> <h4><span style="font-weight: 400;">LaunchDarkly is also committed to giving back to our community and is a part of Pledge 1%, an organization that helps companies make this a priority. Through this initiative and its charitable arm, the LaunchDarkly Foundation, the company is committed to such causes as supporting education for the underserved, homelessness relief and moving towards having a net-zero carbon footprint. You can find more about the LaunchDarkly Foundation and the organizations we serve at </span><a href="https://launchdarkly.com/foundation/"><span style="font-weight: 400;">https://launchdarkly.com/foundation/</span></a><span style="font-weight: 400;">. </span></h4> <p><span style="font-weight: 400;">#LI-Remote</span></p>
Corporate Solutions Engineer
- EMEA
<p data-renderer-start-pos="4780">As a Solutions Engineer, you will educate and guide prospects on the proper implementation of LaunchDarkly's SaaS product and Private Instances.You are passionate about trends and technologies involved in modern application development.&nbsp;You will be the technical voice during our sale and ensure our customers are comfortable with the way our systems work. You are passionate about the developer tools space and helping development teams eliminate risk and deliver value.</p> <p data-renderer-start-pos="5256">LaunchDarkly is a rapidly growing software company with a strong mission and vision carried out by a talented and diverse team of employees. Our goal is to help teams build better software, faster.&nbsp;</p> <p data-renderer-start-pos="5456">Software powers the world and LaunchDarkly empowers all teams to deliver and control their software.</p> <h4 id="Responsibilities:" data-renderer-start-pos="5558">Responsibilities:</h4> <ul> <li data-renderer-start-pos="5579">Evangelize and advise customers on the importance and different uses of feature flags and how to administer them</li> <li data-renderer-start-pos="5695">Create solutions to customer's challenges implementing feature flags across large monolith and microservice applications, large organizations, and different technology stacks</li> <li data-renderer-start-pos="5873">Become a domain expert on LaunchDarkly architecture</li> <li data-renderer-start-pos="5928">Demo LaunchDarkly product to technical and business audiences</li> <li data-renderer-start-pos="5993">Become a subject matter expert on LaunchDarkly and communicate our value and features to potential customers</li> <li data-renderer-start-pos="6105">Be the voice of the customer by translating, aggregating, and representing customer feedback to the Product and Engineering teams</li> </ul> <h4 id="Basic-Qualifications:" data-renderer-start-pos="6238">Basic Qualifications:</h4> <ul> <li data-renderer-start-pos="6263">&nbsp;4+ years of experience consulting with enterprise customers and large development teams</li> <li data-renderer-start-pos="6355">You led successful technical proof of concepts&nbsp;</li> <li data-renderer-start-pos="6406">Proven success in building strong customer relationships</li> <li data-renderer-start-pos="6466">Ability to learn and synthesize large amounts of information with little context</li> <li data-renderer-start-pos="6550">Effective communicator with the ability to simplify complex technical concepts</li> <li data-renderer-start-pos="6632">A self‐starter and problem solver, willing to take on hard problems and work independently when necessary.</li> </ul> <h4 id="Preferred-Qualifications:" data-renderer-start-pos="6742">Preferred Qualifications:</h4> <ul> <li data-renderer-start-pos="6771">Experience working with teams that underwent development process transformation</li> <li data-renderer-start-pos="6854">Familiarity with at least one of our supported languages: Java, .NET, GO, JS, Python, PHP, Node, Ruby, Rails, iOS, or Android</li> <li data-renderer-start-pos="6983">Experience with data persistence technologies like Varnish or Redis</li> </ul> <h4><strong>About LaunchDarkly:</strong></h4> <h4><span style="font-weight: 400;">LaunchDarkly is a Feature Management Platform that serves hundreds of billions of feature flags daily to help software teams build better software, faster. Feature flagging is an industry standard methodology of wrapping a new or risky section of code or infrastructure change with a flag. Each flag can easily be turned off independent of code deployment (aka "dark launching"). LaunchDarkly has SDKs for all major web and mobile platforms. We are building a diverse team so that we can offer robust products and services. Our team culture is dynamic, friendly, and supportive. Our headquarters are in Oakland.</span></h4> <h4><span style="font-weight: 400;">At LaunchDarkly, we believe in the power of teams. We're building a team that is humble, open, collaborative, respectful and kind. We are an equal opportunity employer and value diversity at our company. We do not discriminate on the basis of race, religion, color, national origin, gender, gender identity, sexual orientation, age, marital status, veteran status, or disability status.</span></h4> <h4><span style="font-weight: 400;">Don't let the </span><a href="https://www.theatlantic.com/magazine/archive/2014/05/the-confidence-gap/359815/"><span style="font-weight: 400;">confidence gap</span></a><span style="font-weight: 400;"> get in the way of applying! We'd love to hear from you.</span></h4> <h4><span style="font-weight: 400;">LaunchDarkly is also committed to giving back to our community and is a part of Pledge 1%, an organization that helps companies make this a priority. Through this initiative and its charitable arm, the LaunchDarkly Foundation, the company is committed to such causes as supporting education for the underserved, homelessness relief and moving towards having a net-zero carbon footprint. You can find more about the LaunchDarkly Foundation and the organizations we serve at </span><a href="https://launchdarkly.com/foundation/"><span style="font-weight: 400;">https://launchdarkly.com/foundation/</span></a><span style="font-weight: 400;">. </span></h4> <p><span style="font-weight: 400;">#LI-Remote</span></p>
Backend Engineering Internship, Inter...
- US
<p data-renderer-start-pos="1926"><strong>About the Job:&nbsp;</strong></p> <p data-renderer-start-pos="1926">As a Backend Engineering Intern, you will be joining the Internal Tools Applications Development Team during the summer of 2023. You'll participate in new feature development end-to-end, building applications used throughout the organization. We're looking for someone who thrives on solving difficult backend problems, and putting new features in front of users.&nbsp;</p> <h4 id="What-we-use:" data-renderer-start-pos="2293"><strong data-renderer-mark="true">What we use:</strong></h4> <h4 data-renderer-start-pos="2293">Go, Apex, PostgreSQL, MongoDB, TypeScript, React, Redux, AWS, Terraform, Salesforce, Stripe, Netsuite</h4> <h4 id="What-you'll-have-the-opportunity-to-do:" data-renderer-start-pos="2410"><strong data-renderer-mark="true">What you'll have the opportunity to do:&nbsp;</strong></h4> <ul class="ak-ul" data-indent-level="1"> <li> <p data-renderer-start-pos="2454">Work in a production environment alongside other Software Engineers writing code that will go live within LaunchDarkly</p> </li> <li> <p data-renderer-start-pos="2576">Craft solutions to high impact problems at the nexus of engineering, finance, and sales</p> </li> <li> <p data-renderer-start-pos="2667">Write well-tested and well-organized production-quality code, with an emphasis on maintainability</p> </li> <li> <p data-renderer-start-pos="2768">Create user-facing features in our API-driven interface</p> </li> <li> <p data-renderer-start-pos="2827">Identify areas of improvement and advocate for best practices</p> </li> <li> <p data-renderer-start-pos="2892">Actively participate in code reviews</p> </li> </ul> <p data-renderer-start-pos="2932"><strong data-renderer-mark="true">Basic Qualifications:</strong></p> <ul class="ak-ul" data-indent-level="1"> <li> <p data-renderer-start-pos="2957">Majoring in Computer Science/Engineering, or other technical field</p> </li> <li> <p data-renderer-start-pos="3027">Fluency with a server-side web development language (e.g. in Golang, Java / Scala, C++)</p> </li> <li> <p data-renderer-start-pos="3118">Strong computer science fundamentals: data structures, distributed systems, concurrency, and threading</p> </li> <li> <p data-renderer-start-pos="3224">Strong communication and collaboration skills, a positive attitude, and empathy</p> </li> <li> <p data-renderer-start-pos="3307">Self‐starter and problem solver, willing to solve difficult problems and work independently when necessary</p> </li> <li> <p data-renderer-start-pos="3417">You value high code quality, automated testing, and other engineering best practices</p> </li> </ul> <h4><strong>About LaunchDarkly:</strong></h4> <h4><span style="font-weight: 400;">LaunchDarkly is a Feature Management Platform that serves trillions of feature flags daily to help software teams build better software, faster. Feature flagging is an industry standard methodology of wrapping a new or risky section of code or infrastructure change with a flag. Each flag can easily be turned off independent of code deployment (aka "dark launching"). LaunchDarkly has SDKs for all major web and mobile platforms. We are building a diverse team so that we can offer robust products and services. Our team culture is dynamic, friendly, and supportive. Our headquarters are in Oakland.</span></h4> <h4><span style="font-weight: 400;">At LaunchDarkly, we believe in the power of teams. We're building a team that is humble, open, collaborative, respectful and kind. We are an equal opportunity employer and value diversity at our company. We do not discriminate on the basis of race, religion, color, national origin, gender, gender identity, sexual orientation, age, marital status, veteran status, or disability status.</span></h4> <h4><span style="font-weight: 400;">Don't let the </span><a href="https://www.theatlantic.com/magazine/archive/2014/05/the-confidence-gap/359815/"><span style="font-weight: 400;">confidence gap</span></a><span style="font-weight: 400;"> get in the way of applying! We'd love to hear from you.</span></h4> <h4><span style="font-weight: 400;">LaunchDarkly is also committed to giving back to our community and is a part of Pledge 1%, an organization that helps companies make this a priority. Through this initiative and its charitable arm, the LaunchDarkly Foundation, the company is committed to such causes as supporting education for the underserved, homelessness relief and moving towards having a net-zero carbon footprint. You can find more about the LaunchDarkly Foundation and the organizations we serve at </span><a href="https://launchdarkly.com/foundation/"><span style="font-weight: 400;">https://launchdarkly.com/foundation/</span></a><span style="font-weight: 400;">. </span></h4> <p><span style="font-weight: 400;">#LI-Remote</span></p>
Application Security Engineering Intern
- US
<p data-renderer-start-pos="1029"><strong>About the Job:&nbsp;</strong></p> <p data-renderer-start-pos="1029">As an Application Security Intern, you’re part of a security team during the Summer of 2023, dedicated to ensuring the safety of our customers' data. Your role is to reduce security risks in our platform while enabling the rapid delivery of value by improving the efficiency of our security program. We believe in modern approaches to software security - automate as much as possible, build guardrails not gates, and target security information to the people who can act on it.</p> <h4 id="What-you'll-do:" data-renderer-start-pos="1508">What you'll do:</h4> <ul class="ak-ul" data-indent-level="1"> <li> <p data-renderer-start-pos="1527">Build automation on top of our platform of security tools to monitor for vulnerabilities and threats</p> </li> <li> <p data-renderer-start-pos="1631">Work with our bug bounty hackers and penetration testers</p> </li> <li> <p data-renderer-start-pos="1691">Build and operate security features in the LaunchDarkly platform</p> </li> <li> <p data-renderer-start-pos="1759">Create secure libraries and tooling as a foundation for our engineering teams</p> </li> <li> <p data-renderer-start-pos="1840">Research and detect new attack vectors</p> </li> </ul> <p><strong>You should have: </strong></p> <ul class="ak-ul" data-indent-level="1"> <li> <p data-renderer-start-pos="1902">A strong desire to craft secure software</p> </li> <li> <p data-renderer-start-pos="1946">Experience with modern programming languages (e.g. Java, Scala, C#, Ruby, Python, Golang, Node.js, etc.)</p> </li> <li> <p data-renderer-start-pos="2054">Knowledge of HTML and CSS</p> </li> <li> <p data-renderer-start-pos="2083">Strong communication skills, a positive attitude, and empathy</p> </li> <li> <p data-renderer-start-pos="2148">A high bar for quality of code and quality of user experience</p> </li> <li> <p data-renderer-start-pos="2213">Discipline to be a self directed learner</p> </li> <li> <p data-renderer-start-pos="2257">Ability to understand, tackle, and communicate problems from both technical and business perspectives</p> </li> </ul> <h4><strong>About LaunchDarkly:</strong></h4> <h4><span style="font-weight: 400;">LaunchDarkly is a Feature Management Platform that serves trillions of feature flags daily to help software teams build better software, faster. Feature flagging is an industry standard methodology of wrapping a new or risky section of code or infrastructure change with a flag. Each flag can easily be turned off independent of code deployment (aka "dark launching"). LaunchDarkly has SDKs for all major web and mobile platforms. We are building a diverse team so that we can offer robust products and services. Our team culture is dynamic, friendly, and supportive. Our headquarters are in Oakland.</span></h4> <h4><span style="font-weight: 400;">At LaunchDarkly, we believe in the power of teams. We're building a team that is humble, open, collaborative, respectful and kind. We are an equal opportunity employer and value diversity at our company. We do not discriminate on the basis of race, religion, color, national origin, gender, gender identity, sexual orientation, age, marital status, veteran status, or disability status.</span></h4> <h4><span style="font-weight: 400;">Don't let the </span><a href="https://www.theatlantic.com/magazine/archive/2014/05/the-confidence-gap/359815/"><span style="font-weight: 400;">confidence gap</span></a><span style="font-weight: 400;"> get in the way of applying! We'd love to hear from you.</span></h4> <h4><span style="font-weight: 400;">LaunchDarkly is also committed to giving back to our community and is a part of Pledge 1%, an organization that helps companies make this a priority. Through this initiative and its charitable arm, the LaunchDarkly Foundation, the company is committed to such causes as supporting education for the underserved, homelessness relief and moving towards having a net-zero carbon footprint. You can find more about the LaunchDarkly Foundation and the organizations we serve at </span><a href="https://launchdarkly.com/foundation/"><span style="font-weight: 400;">https://launchdarkly.com/foundation/</span></a><span style="font-weight: 400;">. </span></h4> <p><span style="font-weight: 400;">#LI-Remote</span></p>
Verified by
Software Engineer
Computer Science
Physics
Director Marketing
Software Engineer
Engineering Manager
Software Engineer
VP of Product and Engineering
Engineering Lead
Software Engineer
Special Circumstances
Demand Program Manager
You may also like