GoToLoop

Results 54 comments of GoToLoop

Is it fixable? There's also JS module (ESM) files (.mjs) coming up too.

Dunno whether it's more elegant. But here's some alternative styles for the same check: `:-D` ``` js function n(a, b, d) { if (~a.indexOf(b[0][2])) b[0][2] += .1; } ``` ```...

> ... the p5js canvas doesn't render as soon as you call `capturer.start();`. I've found out a workaround when the same happened to me! I had to move `capturer.start();` into...

Property _window_ by default doesn't exist in a Node.js server but only in a browser client environment: https://developer.Mozilla.org/en-US/docs/Web/API/Window/window For client/server compatibility _window_ needs to be replaced by _globalThis_: https://developer.Mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/globalThis Even...

https://github.com/spite/ccapture.js/issues/91#issuecomment-455809578

Does this online example work for you? https://ThimbleProjects.org/gotoloop/509340

> What would be great would be to integrate this to https://editor.p5js.org/. I'd much rather prefer PyP5Js to become the 4th engine mode for https://OpenProcessing.org/sketch/create. ^_^

> I just worry that in public schools like the one I teach CS couldn't afford it financially with small budget... - When I voted for OpenProcessing I confess I...

B/c the property "main" points to the default library within the NPM repo package, I can use this shorter CDN link: https://CDN.JsDelivr.net/npm/p5, in place of https://CDN.JsDelivr.net/npm/p5/lib/p5.min.js. :-)