Tom Jenkinson

Results 110 comments of Tom Jenkinson

Our instances are always getting some traffic so not sure on that sorry

I’ve managed to reliably trigger the leak by repeatedly reloading all remote schemas from the console. Every time I do it memory goes up slightly

@tirumaraiselvan this is after logging in with the admin secret

hey @tirumaraiselvan unfortunately we are not able to do that due to the nature of what it contains. Noticed we also have some webhooks set up on event triggers. Not...

Is this good to go? Also hit the same thing today with d1 :)

Trying to get an understanding of how the string encoding works but I think a ``` /[\uD800-\uDBFF\uDC00-\uDFFF]/ ``` check should catch high/low surrogate pair code points, which are what we'd...

Wondering if there is a spec somewhere that says how to handle unicode characters actually. I.e. that says `/👍/u` _should_ be translated to `/\u{1f44d}/u`. It does seem to be what...

I think a fix for this could be changing the generated code to be ``` [/^[^*?+\[()\\|]/u, function() { return 'CHAR' }], ``` instead of ``` [/^[^*?+\[()\\|]/, function() { return 'CHAR'...

Hey @vermati what tool are you using? The pattern is valid on https://regex101.com/r/5NTzk7/1 if you change the flavour to ECMAScript

Hi @PooriaFarhad VTT's are not currently supported but sprite sheets are. To use your sprite sheet you would do this: ``` javascript var numThumbs = 20; var thumbWidth = 120;...