Derek Stavis
Derek Stavis
Just stumbled upon this issue myself. This is generating significant re-renders on my app since I started using Layout Animations in various core components. I am happy to have found...
Very interesting proposal. My use case is that I have an object that represents a device memory. The memory addresses goes from 0 to 0xFFFF (65535), and the values are...
I stumbled upon the same problem and it looks like the culprit is the `!` operator in Apollo's code:
Take this code as an example: ``` python FOO_INTERFACE = 'com.foo.Interface' BAR_INTERFACE = 'com.foo.Bar' class Bar(DBusObject): iface = DBusInterface(BAR_INTERFACE, Method('FooBar') dbusInterfaces = [iface] @dbusMethod(BAR_INTERFACE, 'FooBar') def FooBar(self): print('foobar') class FooInterface(DBusObject):...
The issue is that webpack allows using AMD, which is the first `if` case. You need to disable AMD in webpack: Install imports loader: ``` npm install imports-loader ``` On...
This is as simple as adding ```jsx if (typeof initialState === 'function') { WithStateHandlers.getDerivedStateFromProps = initialState } ``` to `withStateHandlers` HOC. I've copy/pasted the code from `recompose` source code into...
Since this has landed in main I'm going to close this issue. Massive kudos to the Steam Deck team! Please open new issues if you have problems with the CEC...
This is very important for environments like Electron, where you need the running machine's JVM instead of the compiling machine's JVM.
@scorphus do you think this could have anything to do with your recent change modernizing the plugin initialization in `vcs`?
Wow! That's a big one! Thanks @WandersonCF. I'm in the process of reviewing it. The very first point is the commit messages. But I think that as it's a work...