notEvil

Results 33 issues of notEvil

Hi, I had an issue with an animation that I wanted to debug, but whatever I tried, I failed to setup the dev environment. What I did: - follow https://github.com/widgetti/ipyvolume#developer-installation...

fixes https://github.com/kritiksoman/GIMP-ML/issues/50 and replaces `Image.get_active_layer`, which was removed, with `Image.list_layers`. I have only tested SuperResolution so far

```javascript var button = ui.addButton('initial', 0, 0, 0.2, 0.1) button.text('text') button.props.background = '#ff00ff00' ``` shows "initial" and not "text".

Hi, `peripheral.requestMtu` doesn't do anything if not connected, see https://github.com/weliem/blessed-android/blob/ee8d966692a233457ed8ac967ba37a5ef9d69630/blessed/src/main/java/com/welie/blessed/BluetoothPeripheral.java#L1541 Therefore, `mtuSize` of `connectDevice` is essentially ignored. This PR fixes this issue and additionally exposes two events: disconnect and MTU...

This ```javascript function t(orientation, weight) { return ui.newView('text').text(orientation + ' ' + weight) } function l1(y, orientation, weight) { var linear_layout = ui.addLinearLayout(0, y, 1, 0.09) if (orientation != 'vertical')...

Just fyi, I ran into https://github.com/mozilla/rhino/issues/1204 Probably takes a release of RhinoJS to land, right?

Hi, whats the stance regarding multithreading? It seems that sometimes callbacks are deliberately pushed to the message queue, like https://github.com/victordiaz/PHONK/blob/6afdc85ccb95629994bea65dd7e788ddf1ccf7eb/PHONK-android/phonk_apprunner/src/main/java/io/phonk/runner/apprunner/api/network/PBluetoothLEClient.java#L190 and other times not, like https://github.com/victordiaz/PHONK/blob/6afdc85ccb95629994bea65dd7e788ddf1ccf7eb/PHONK-android/phonk_apprunner/src/main/java/io/phonk/runner/apprunner/api/network/PHttpServer.java#L165 or any sensor callback....

Hi, I've been using the web editor but find the documentation to be outdated and the lack of autocompletion makes it unnecessarily difficult to get started. So I looked for...

Hi, `PHttpServer` is added to `whatIsRunning` but doesn't have a `__stop` method. `PFtpServer` is not added to `whatIsRunning` in the first place. The server classes are pretty different in this...

Hi, looking at the code there are classes for linear layouts but I didn't get how to actually use them. All examples use `ui.add...` with absolute positioning. Could you provide...