Oleg

Results 8 issues of Oleg

As I see the `insert` function is being used for bulk inserts as well. Therefore this [changes](https://github.com/05bit/peewee-async/pull/97/files#diff-0d5a10a212d3e212e772acf80c3dad61R600) for `peewee>=3` support are breaking the support of list returning for bulk inserts....

From peewee documentation (http://docs.peewee-orm.com/en/latest/peewee/querying.html#using-aggregate-rows): ``` python query = (User .select(User, Tweet) # As in the previous example, we select both tables. .join(Tweet, JOIN.LEFT_OUTER) .order_by(User.username) # We need to specify an...

Since https://github.com/syrusakbary/promise/commit/90093a1ca51fac25e0f92f78fe7f33b697bf1629 the `iscoroutine` from `inspect` is used which is quite different to `asyncio`'s. According to [docs](https://docs.python.org/3/library/inspect.html#inspect.iscoroutine) it recognizes `async def`. But it doesn't return true for `@asyncio.coroutine` functions. For...

#### STR 1. Create and render controlled `NumericInput` component (using `value`/`onChange` and external state for example) 2. Focus on input 3. Clear value completely 4. Click outside input to lose...

As mentioned in [React 15.5 release notes](https://reactjs.org/blog/2017/04/07/react-v15.5.0.html#react), `React.createClass` ([MDEditor.js#L13](https://github.com/JedWatson/react-md-editor/blob/v0.2.2/src/MDEditor.js#L13)) and `React.PropTypes` ([MDEditor.js#L16-L19](https://github.com/JedWatson/react-md-editor/blob/v0.2.2/src/MDEditor.js#L16-L19)) are now deprecated. Are there any plans for making further releases with such replacements to make editor support...

### Description When I convert/load 2 models with different (but identically named) meshes, the second one gets a collision shape from the first one. ![image](https://github.com/Moguri/blend2bam/assets/1101526/9bd648bf-d266-4c9a-b184-5caeb5340860) ### Use case I have...

Hi! I'm experiencing an issue when the following line is falling into continuous loop. ```js adminInterface.setConfigFile(__dirname, 'admin-interface.yaml'); ``` While tracing down the call stack I've found that this happens somewhere...

The updated `ptz_x` is being saved as `ptz-y` on `motor` command `left`/`right`. This should be `ptz-x` and apparently, sometimes can mess up the initial position after reboot.