HackerTrans
TopNewTrendsCommentsPastAskShowJobs

bullcitydev

no profile record

Submissions

Building Cross-Platform SDKs: From FFI to WebAssembly

blog.flipt.io
2 points·by bullcitydev·السنة الماضية·0 comments

The CD Pipeline Manifesto

manifesto.getglu.dev
89 points·by bullcitydev·قبل سنتين·47 comments

Show HN: Feature Flags Backed by Git

flipt.io
93 points·by bullcitydev·قبل سنتين·44 comments

[untitled]

1 points·by bullcitydev·قبل سنتين·0 comments

[untitled]

1 points·by bullcitydev·قبل سنتين·0 comments

Feature Flags on the Edge with Turso

flipt.io
3 points·by bullcitydev·قبل 3 سنوات·0 comments

comments

bullcitydev
·قبل سنتين·discuss
Speaking as an open-source feature flag 'vendor' (https://github.com/flipt-io/flipt), the OpenFeature organization has been a joy to work with. They are very welcoming of new contributors (e.g., implementing a provider SDK in a new language).

If you're interested in this space I'd recommend lurking in their CNCF Slack Channel https://cloud-native.slack.com/archives/C0344AANLA1 or joining the bi-weekly community calls https://community.cncf.io/openfeature/.
bullcitydev
·قبل سنتين·discuss
Thank you!! Very much appreciated
bullcitydev
·قبل سنتين·discuss
Thats a cool idea! Feel free to put something in our community on Discourse (https://community.flipt.io/c/flipt-cloud/6) or Discord (https://www.flipt.io/discord) so we can talk through how this could work.

We've been thinking a lot recently about supporting 'edge' k/v stores like vercel/cloudflare and having the client side evaluation SDKs pull from there, which wouldn't require a server at all. This seems very similar just with using GitHub. We could even use GitHub Container Registry as the store as its OCI compliant.

Thank you for using Flipt btw!!
bullcitydev
·قبل سنتين·discuss
Thats great to hear! Would love to learn more about your usecase or what else you'd like it to do.

Feel free to send me an email at mark <at> flipt.io, or drop into our Discord to say hi at https://flipt.io/discord
bullcitydev
·قبل سنتين·discuss
Hey! thanks for the reply. We are loving Kite, great product!

Will send over the project file now, very much appreciated!
bullcitydev
·قبل سنتين·discuss
Approvals are coming next btw. With the ability to lock down envs like production and optionally require all state changes to go through a proposal/approval process
bullcitydev
·قبل سنتين·discuss
I tried to answer your first question below, hope I did!

Re: GitHub outage, each org gets their own instance in our cluster and maintains a checkout of the git state, so you can still write/read from your environments, they just wont be synched to GitHub until they recover.

We're also thinking about adding other 'sinks' like S3/object stores and OCI as backup sinks.
bullcitydev
·قبل سنتين·discuss
This! 100% All the same benefits of config as code, infra as code. And with feature flags if something goes wrong its a simple `git revert` to get back into the previous state.

Another benefit is you can easily replicate the current (or previous) state of production/staging/etc flags locally just by doing a `git clone` and then run our self-hosted version locally. Its a single binary, can be installed with curl or homebrew and can read the flag state from your local filesytem.

This allows you to test your code locally or in CI with the same state in production
bullcitydev
·قبل سنتين·discuss
Yeah the context only supports a map/JSON object of k/v string values for evaluation at the moment.

We could definitely look into supporting other types and making this simpler. The constraints that are matched can be of several types, which we try to parse at evaluation time https://docs.flipt.io/concepts#constraint-types.

Also thank you for the feedback about not being able to change the organization name. Currently we use the 'slug' of the organization (based on the name) when we setup the routes for your environment, so it was just simpler to make it a one time thing.

But I think we could support renaming your org, it would just make the previous URLs invalid, or we could maybe handle redirects on our end too.
bullcitydev
·قبل سنتين·discuss
One thing to note is that we currently only support GitHub organization accounts.

We're working on personal accounts next, but due to GitHub API/apps permissions, we have to request a different set of creds to get that to work.
bullcitydev
·قبل سنتين·discuss
The voice volume seems to get quieter in certain spots, even when its set at a constant level.. I'll reach out to the Kite team
bullcitydev
·قبل سنتين·discuss
yeah sorry, I will fix that! It was bothering me too. I put the music to the lowest setting.. I used https://kite.video/
bullcitydev
·قبل سنتين·discuss
We at https://flipt.io are putting on a buy vs build webinar in a couple of weeks to discuss this very thing as it's a common question that engineering teams seem to have.

If you're interested in attending its taking place on LinkedIn on April 17: https://www.linkedin.com/events/buildvs-buy-pickingafeaturef...
bullcitydev
·قبل سنتين·discuss
We're currently evaluating OPA for adding RBAC to our open-source application [0]. We plan on using the Go API [1] and doing the policy eval directly in our app since our app is also written in Go.

The thinking is we'll have some basic built-in policies (like admins can do X, editors can do Y, etc) but also allow users to configure their own policies if they want by writing rego and loading their policy rules at startup time (via config). We'd document the inputs that we pass to the evaluation call such as request headers, IP, role, etc.

I'm curious if anyone has ever tried something like this or similar?

[0] https://github.com/flipt-io/flipt

[1] https://www.openpolicyagent.org/docs/latest/integration/#int...
bullcitydev
·قبل 3 سنوات·discuss
Hey thanks for giving Flipt a look! I'm the creator of Flipt so would love to chat more about your needs to see how we could make it work for your use case! We're actively looking into providing local caching for all our SDKs btw and would love to learn more about what your requirements are for remote configuration as it's also on our radar! Feel free to send me an email at: mark (at) flipt.io.