Ilkka Oksanen
Ilkka Oksanen
Sorry for huge delay. Source element must be a native HTML video element. I think e.g. youtube can use something more exotic.
Somewhat related to previous comment. Would be nice to clarify if it's used as `NODE_COMPILE_CACHE=true` or `NODE_COMPILE_CACHE=` That wasn't 100% clear for me after reading the description even I guess...
Docker/kubernetes is very popular nowadays. Would be great to hear how the updates are supposed to be done.
Most importantly `ini` bump to 2.0.0 includes this change https://github.com/npm/ini/commit/032fbaf5f0b98fce70c8cc380e0d05177a9c9073 Which in my project with ``` nconf.file('defaults', { file: path.join(rootPath, 'server', 'mas.conf.default'), format: nconf.formats.ini }); ``` leads to the same...
I was also surprised to find out that it's not possible to give subject name to use the latest schema under that subject. Also the docs are not that clear...
Same question raised in https://github.com/confluentinc/kafka-rest/issues/424 No real answer there either. The proposed two step workaround adds a lot of overhead. Especially if there's no caching and it's done for every...
I was little surprised that inside my custom validator I can't make async redis call to check if the account name user is proposing is reserved already and call callback()...
There was a solution. I make async validation now separately and set form.fields.account.error if there's an error before re-rendering the form. It'd still be nice to get a validator based...
Found this PR as I have an abuser that uses temp-mail.io domain knmcadibav.com :+1: to approve
yes, would be good to document. I just tried to make something like ``` phone_number = SplitPhoneNumberField( required=True, widget=PhoneNumberPrefixWidget( country_attrs={'class': 'form-control select2'}, number_attrs={'class': 'form-control', 'style': 'width: 600px;'}, ) ) ```...