Tyler Deitz
Tyler Deitz
react-element-builder
Any updates on this? Would be nice.
> Thanks for this. The change looks reasonable, I will try to verify it soon. Thanks! I tried to get some tests out for this but unfortunately I wasn't able...
Hi Šime! I'll look into the performance difference of using one interval function. Creating one for each wasn't an optimization design decision, it just seemed clearer to me while programming....
I think the memory overhead of dealing with an arbitrary amount of interval'd functions (the current method) may be worse than having one rather large interval function (@simevidas's proposed method)....
> I think this is a hachyderm.io configuration issue. > > When configuring the extension to the values as you’ve shown in the video, I see that the extension correctly...
@azizhk here's another way to infer the type of an array! ```ts export default function combos(inp: T): { [P in keyof T]: T[P] extends (infer ElementType)[] ? ElementType : any;...
this is cool and I'm definitely interested in making the GitHub tags more useful! I'd be more interested in a way to not use GitHub actions for this... like making...
Thanks for bringing this up, that's super interesting. Streetpass uses a mutationobserver to detect dom changes to parse for verification links, and I kind of assumed that mutation observers were...