Sam Armstrong
Sam Armstrong
Just updated the link
Using GSAP until this is fixed for my project btw. This is blocking. Here's a write up on the issue and how [GSAP fixed it](https://css-tricks.com/svg-animation-on-css-transforms/)
Looks like the v0.6.x branch and zip were deleted.
What do you think of doing auto tuning the thresholds to standard deviations throughout the video? Performance might be a bit worse. It tends not to catch pan shots combined...
I'm designing a component for the Portal framework that generates validations with links for partners to use. It would be great if all controls with validations could have a unified...
Just a general comment on the naming of the APIs in this PR. It looks like most of the primitives being implemented here are using `use` rather than `create`. Solid's...
Hmm. I think `useInterpret` -> `createInterpreter` or `startMachine` might be inline with solid conventions. I'm having trouble with `useMachine` because calling `machine.withConfig` clones the machine, which right now is happening...
> I could see `useInterpret` -> `createService`. I don't know about prefixing `start`, `use` is not an anti-pattern with SolidJS as it's the recommended prefix along with `create`. `createService` seems...
> We don't support this at the moment. You can defer your network via awaiting time in `page.route` as a quick and dirty solution: > > ```js > await page.route('**/*',...
I'm running into this as well ``` C# Environment.SetEnvironmentVariable("EDGE_NODE_PARAMS", "--debug-brk"); Task call; var func = Edge.Func(@" debugger; return function(data, callback){ callback(process.cwd()); } "); (call = func("")).Wait(); return (call.Result as IEnumerable);...