TreNrod

Results 5 comments of TreNrod

Hi, i came across the same requirement. At the moment I only have only a proof of concept. The requirement in my case was. To create a dynamic map/cache during...

It would be great to understand what the difference between those two lines are. Thats the only position ursa is used, from what I see. ``` var key = require('ursa').coercePrivateKey;...

Same here but as a workaround I`m using `"type": "cppvsdbg",` instead of `"type": "lldb"`. https://github.com/vadimcn/vscode-lldb/issues/635#issuecomment-1047011456 does not worked for me.

Tried to clean it up by myself. But stuck in a performance issue deleting resources ```javascript const ressources = await aclhelper.acl.whatResources(accountRoleKey); if (ressources != null && Object.keys(ressources).length > 0) {...

removeResource is also a bottleneck on my side. ```javascript Acl.prototype.removeResource = function(resource, cb){ contract(arguments) .params('string', 'function') .params('string') .end(); var _this = this; return this.backend.getAsync(this.options.buckets.meta, 'roles').then(function(roles){ // having deeb hirarchy roles...