Flavien Volken
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...
```html ``` Renders  while inverting those lines ```html ``` gives:  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  The simulator will crash  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...