Eliot Lash
Eliot Lash
Hello, I spent a lot of time today trying to track down the cause of an `Mp3InfoEOFError`. I figured this was due to a corrupted audio file, however I was...
#### Nature of issue? - [x] Found a bug - [ ] Existing feature enhancement - [ ] New feature request #### Most appropriate sub-area of p5.js? - [ ]...
The 3 commands do do a recursive clone can be replaced with a one-liner. :)
It would be nice if you could specify the path/name of the `bitrise.yml` you are editing in the same way that `bitrise run` can be given a `--config` flag. I'm...
`updateTimers` currently gets called for all styles even if they aren't in use. We shouldn't waste time computing updates for particles that aren't in use. In addition, it would be...
[React Native has recently added support for percentage widths](https://facebook.github.io/react-native/releases/0.44/docs/layout-props.html#width). Tests now fail props validation if a `react-native-mock` component is passed a percentage width string instead of a number: ``` Error:...
### Steps to reproduce the problem 1. Enable "slow mode" 2. Click to load new items ### Expected behaviour New posts should populate off the top of the scroll view,...
I was able to bind the console toggle command and I can bring up the console in-game. But I can't figure out if it's usable. I expected a virtual keyboard...
I was trying to get the test suite running so I could add test coverage for my new commands. However I got the following failures: ``` was: {} expected: {...
Documentation states that sprite frame numbers should begin at 0, but the code actually skips to frame 1. Fixed this. Also made it use a while(YES) loop which I think...