Omid K. Rad
Omid K. Rad
Can `Microsoft.Data.Analysis` namespace be whitelisted, please?
twilio-node constantly gives us `UnhandledPromiseRejectionWarning` that traces down to `q.js`. See the stack trace below: ``` (/app/node_modules/twilio/lib/rest/taskrouter/v1/workspace/task/reservation.js:190:18) at onComplete (/app/node_modules/twilio/lib/rest/taskrouter/v1/workspace/task/reservation.js:110:14) at Promise_then_rejected (/app/node_modules/q/q.js:779:43) at Promise_done_rejected (/app/node_modules/q/q.js:861:26) at Rejected_then [as then]...
I tried the method described [here](https://medium.com/dailyjs/how-to-prevent-your-node-js-process-from-crashing-5d40247b8ab2) to get around the issue, but that didn't fix it! ``` process.on('unhandledRejection', (reason, promise) => { logger.error('Unhandled Promise Rejection at:', reason.stack || reason); });...
That's great. I'm not very familiar with Pond but when I was reviewing it, I liked the project but thought the API needed that kind of improvement. It's great to...
OK, I could do it like this: ``` $("div[data-meter=password]").hasClass("strong") ``` I still think it would be more intuitive if the plug-in directly provided some property to check for the strength....
Piping is the feature that will make this nice log viewer actually usable for me.
I don't think there is an intuitive way to do the main operations. Now that I think more about it I think a PSProvider would be better suited for managing...
That's great to know. Thank you guys.
I'm mostly looking for `Dictionary` which is basically an associative array similar to JavaScript objects where the key is a string and the value can be a primitive or an...
@JanEggers Try this helper method (I'm not sure if it worked!) ```csharp public static object ToDynamicObject(IDictionary source) { dynamic eo = new ExpandoObject(); var eoColl = (IDictionary)eo!; foreach (var kvp...