vijayer | 1 year ago | on: It's OK to hardcode feature flags
vijayer's comments
vijayer | 1 year ago | on: Thank HN: My bootstrapped startup got acquired today
vijayer | 1 year ago | on: 40+ JackOfManyTrades needs advice for job search
vijayer | 1 year ago | on: Five ways to reduce variance in A/B testing
1. Tight targeting of your users in an AB test. This can be through proper exposure logging, or aiming at users down-funnel if you’re actually running a down-funnel experiment. If your new iOS and Android feature is going to be launched separately, then separate the experiments.
2. Making sure your experiment runs in 7-day increments. Averaging out weekly seasonality can be important in reducing variance but also ensures your results accurately predict the effect of a full rollout.
Everything mentioned in this article, including stratified sampling and CUPED are available, out-of-the-box on Statsig. Disclaimer: I’m the founder, and this response was shared by our DS Lead.
vijayer | 2 years ago | on: Principles for building and scaling feature flag systems
vijayer | 2 years ago | on: Microsoft Small Basic
vijayer | 2 years ago | on: Microsoft Small Basic
vijayer | 2 years ago | on: Microsoft Small Basic
You can see a bunch of decisions influenced by .Net which I was working with back then. I had been meaning to go back and revisit some of those decisions, but haven't had a chance yet. I have changed my stance around scoping and argument passing in functions, for instance.
(What is really neat is that 15 years later, my son is learning coding with Small Basic. And I hired an engineer for my current startup who had started coding with Small Basic as a kid in Brazil.)
vijayer | 3 years ago | on: Ask HN: Who is hiring? (January 2023)
Statsig is a feature management, product experimentation & observability platform.
Hiring Data Engineers and Software Engineers.
https://statsig.com vijaye@
vijayer | 3 years ago | on: Ask HN: Who is hiring? (August 2022)
Fast growing Series B startup, hitting strong traction with customers. Looking for generalists that can go up and down stack, and for Infra engineers that can build scalable systems - we process 7B+ events today, and doubling every few months.
Contact me: [email protected]
vijayer | 4 years ago | on: Tesla Q1 Shipments
Q4 2021: 308,600
As for last year, Q1 2021: 184,800
vijayer | 4 years ago | on: Launch HN: GrowthBook (YC W22) – Open-source feature flagging and A/B testing
vijayer | 4 years ago | on: Show HN: JavaScript IP Country lookup in under 500KiB
vijayer | 5 years ago | on: Show HN: Statsig – feature gates, dynamic config, experiments and more for devs
This is our first preview, and we have Feature Gates, Dynamic Config, and Event Logging, all accessible via our SDKs in JS, Node & Swift. We would love your feedback. Up next, we are building feature-launch based insights and metrics debugging, which we hope to ship in the next few weeks.
One, as others have called out, is the ability to control rollout (and rollback) without needing a deployment. Think mobile apps and the rollout friction. If something goes wrong, you need a way to turn off the offending functionality quickly without having to go through another deployment or a mobile app review.
Second, is to be able to understand the impact of the rollout. Feature flags can easily measure how the rollout of one feature can affect the rest of the system - whether it is usage, crash rates, engagement, or further down the funnel, revenue. It’s a cheat code for quickly turning every rollout into an experiment. And you don’t need a large sample size for catching some of these.
By having this power, you will find yourself doing more of it, which I believe is good.