ribizli
ribizli
Hi, we tried to get an official API token from TIDAL, it seems to be possible anyway. But they don't support username/password login anymore, one need to use oAuth alternatives...
``` javascript worker.expose = methodName => { worker[i] = function() { return worker.call(methodName, [].slice.call(arguments)); }; }; ``` Instead `methodName` parameter should be used: ``` javascript worker.expose = methodName => {...
This is not working because ngInclude reads the 'src' attribute on complie time, but boSrc sets 'src' only during linking (changing priority don't change this either). But anyway ngInclude would...
It's only my opinion, but triggering via setting a variable to true for one CD iteration is dangerous and non ng2 conform. I recommended using a template variable to trigger...
`-----BEGIN PRIVATE KEY-----` and `-----END PRIVATE KEY-----` are `27 + 25 = 52` characters. But the code truncates 57 characters: ``` ts function rsa_import_pem_private_pkcs8(key: string): RSAKeyParams { const trimmedKey =...
Is the event `err` a valid alias for `error`? I don't think so. See `socket.on('err', this._onError.bind(this));` [here](https://github.com/sebastianseilund/node-json-socket/blob/108a9664ec696f83ea2fd36c0bbad852c38e19cb/lib/json-socket.js#L17)
```typescript export interface SelectSignature { (key: keyof T, ...paths: string[]): Observable; (mapFn: (state: T) => R): Observable; } ``` So TypeScript can check for using the correct key at least...
**Is your feature request related to a problem? Please describe.** I needed to export all CapacityCategories into a JSON file, where I required also the `technicalName` field. However this field...