Flavien Volken

Results 29 issues of Flavien Volken

Sometimes you want to add a property to whatever model but you want to keep all the logic (typedef and resolver) in a folder appart. This can be done using...

Enhancement :new:
Community :family_man_girl:
Discussion :speech_balloon:

```html ``` Renders ![image](https://user-images.githubusercontent.com/944605/51181173-b9223d00-18ca-11e9-9540-78cd10f4c63c.png) while inverting those lines ```html ``` gives: ![image](https://user-images.githubusercontent.com/944605/51181199-cccda380-18ca-11e9-8354-388c02f0e177.png) despite the cache to be disabled, the first object will be reused by the second one [SVGs.zip](https://github.com/arkon/ng-inline-svg/files/2759651/SVGs.zip)

In "Audio Midi Setup", if I either uncheck the "Session 1" or disconnect ![image](https://cloud.githubusercontent.com/assets/944605/14572801/02672a1a-0362-11e6-9830-93ede351cf61.png) The simulator will crash ![image](https://cloud.githubusercontent.com/assets/944605/14572841/3d0009b2-0362-11e6-957b-d2c7068ed436.png) Did anyone found a solution to this ?

https://github.com/petegoodliffe/PGMidi/blob/master/Sources/PGMidi/PGMidi.mm#L437 The assignment is useless, I suspect it should be ``` objective-c self.virtualDestinationEnabled = NO; ``` [edit] well actually I would even move this statement to the next line, or...

My linter [raises this error](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/no-var-requires.md) suggestion: instead of : ``` export = PGPubsub; /** @typedef {(payload: any) => void} PGPubsubCallback */ declare class PGPubsub extends NodeJS.EventEmitter { ``` use ```...

Hi, I've seen you are setting a variable directly in the [target object](https://github.com/darrylhodgins/typescript-memoize/blob/master/src/memoize-decorator.ts#L22): I can suggest 2 alternative to prevent having possible collisions with another namespace (its very unlikely but...

According to this spec: https://github.com/graphql/graphql-spec/pull/373 it is possible for interface to implement other interface. However, when I try to do so, no schema seems to be generated. ```{"errors":[{"message":"GraphQL middleware options...

Hi, I'm having some issues which seems to be related to the react caching [codesandbox](https://k8t79v.csb.app/) I created 2 components, on the left and on the right, respectively: - Stripes which...

Hello, I suggest adding some example on how to use shaderMaterial declaratively. I found only 3 occurrences within the whole repo of shaderMaterial. Actually, the hard part is how to...

Hello, I'm wondering if you would consider typing the added fields in TS, I just made an experiment here below as an example: In this way, we can write the...