Todd Blanchard
Todd Blanchard
Check out pull request https://github.com/Chumper/Datatable/pull/264 You can also put that javascript function into your template and then just reference it by name to simplify things.
Super annoying, why was this done?
I don't understand why webpack is involved at all when I'm using asset pipeline
Here's my workaround. ``` @interface SCNNode (Damn) - (void)changeMaterial; @end @implementation SCNNode (Damn) - (void)changeMaterial { NSLog(@"changeMaterial sent to instance of %@",[self class]); } @end ```
Some instance of SCNNode is being sent the message changeMaterial that does not implement changeMaterial. Only the subclass Cube implements changeMaterial but the code sending the message isn't checking that...
That's more of a hit detection problem. If it is calling the category method, than it wasn't a plane or a cube that the hit detection thinks you tapped on....
Also experiencing this on MacOS Mojave (10.14.6). $ rvm get stable --auto-dotfiles Downloading https://get.rvm.io Could not download rvm-installer, please report to https://github.com/rvm/rvm/issues So I'm reporting - still a problem.
curl -v https://get.rvm.io * Rebuilt URL to: https://get.rvm.io/ * Trying 97.107.133.48... * TCP_NODELAY set * Connected to get.rvm.io (97.107.133.48) port 443 (#0) * ALPN, offering h2 * ALPN, offering http/1.1...
Found a workaround on Mojave. ``` brew install curl export PATH="/usr/local/opt/curl/bin:$PATH" ``` This gets a newer curl that does not choke on certificate validation and temporarily makes it the preferred...
I second this. It can be frustratingly hard to tell if I've pulled my fork to make a bug fix or from the main repository. I want to see the...