Jeremy Dorn

Results 99 comments of Jeremy Dorn

Features in GrowthBook can have string or JSON values, so it can function as a Remote Config Service today. Is there something specific that you're looking for that GrowthBook doesn't...

We might do an integration, but it would be a little different than the others. Unlike those other tools, GrowthBook doesn't store any raw event data so it's not a...

I agree, it doesn't make sense to only add rules to enabled environments. The current behavior also causes the app to crash when there's no `dev` environment. I think a...

@judahrand yeah, that's a good point. Basically how the "In-progress" setting works now is it only includes exposure events that happen before `(now - conversionWIndow)`. So if your conversion window...

I'm not able to reproduce this. What version of PHP are you using?

The ability to subscribe to reports has definitely been on my todo list for a while. I don't think I would implement this as a report header though. A fairly...

Make sure there are no blank lines between headers. If there are 2 newline characters in a row, that signifies the end of the header and the start of the...

That's definitely possible, just lacking documentation and examples. You can do everything with the PHP report type. It's not as clean as a simple SQL report, but it's great when...

I'm fine adding a check for `ENT_SUBSTITUTE` support and preferring that over `ENT_IGNORE`. There's already a check at https://github.com/jdorn/sql-formatter/blob/master/lib/SqlFormatter.php#L867 so adding another if condition isn't a big deal.

ok, so to fix this, we would need to switch to htmlspecialchars and add an extra if statement to check for ENT_SUBSTITUTE support? I'm not sure I would do this...