Insomnia user here too, I’ve found it to be simple,clean and to my taste.
Looks Good To ME! 💯 💯
- 0 Posts
- 2 Comments
Joined 2 years ago
Cake day: June 14th, 2023
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
Feature Flags
is a concept that helps to enable or disable a feature on an app. Example you would want to roll out a new button on app for a certain set of users, A naive and simplified implementation would look like something belowflags = server.getFlags() // Fetch/Compute feature flags if (flags.FeatureA == true) { // show button }