Aiham

Results 17 comments of Aiham

@superKalo In my babel.config.js file I have this: ``` const fs = require('fs'); const path = require('path'); module.exports = function(api) { api.cache(true); const envName = process.env.MY_ENV_NAME || 'local'; const dotEnvPath...

Thanks @lemoun I found `SIFTDetector` is defined in the `xfeatures2d` module: https://github.com/justadudewhohacks/opencv4nodejs/blob/master/cc/xfeatures2d/SIFTDetector.h So I added `xfeatures2d` to my auto build flags when installing (different to the main `features2d` module): ```...

We are using the doc decorator to specify an [operationId](https://swagger.io/docs/specification/paths-and-operations/#operationid) which is consumed by [openapi-generator](https://github.com/OpenAPITools/openapi-generator) for generating client method names, unique to each path not just the route: ```python @blp.doc(operationId="getSomeData")...

Auto generating `operationId` probably goes against the original purpose of the field which was meant for customising the method name that `openapi-generator` is already auto generating. But I wouldn't be...

> Regarding the security schema, my advice would be to modify the decorator you're using to enforce it so that it also documents what it does. => DRYer resources. Yes,...

Sorry @Rleahy22 I'm no longer a maintainer and don't have access.

I haven't worked on opentok in 3 years so can't help much. From what I remember I think you might need to get access to the audio data that's coming...

I just realised the idea above is total overkill. Listen for the `audioLevelUpdated` event on the Subscriber. Focus the subscriber's div which has the highest value. https://tokbox.com/developer/sdks/js/reference/Subscriber.html#events