Sean Fisher

Results 6 comments of Sean Fisher

Hi my team is also experiencing the same issue when changing passwords. What is the resolution? @sergiopereira could you share how you set the Authority to Basic?

Thanks @sergiopereira. I managed to find [a solution that worked for me buried in the open issues here](https://github.com/Microsoft/Git-Credential-Manager-for-Windows/issues/750#issuecomment-442847230), of which there are several with this same problem (#703 #750 maybe...

@rahulawl Yes, still relevant. See [my comments](https://github.com/alexa/alexa-skills-kit-sdk-for-nodejs/issues/697#issuecomment-1378217839) in #697.

@rahulawl It is still relevant and more needed than ever now that Node.js 18.x is out. From this [AWS blog post](https://aws.amazon.com/blogs/developer/why-and-how-you-should-use-aws-sdk-for-javascript-v3-on-node-js-18/): > In v3, the [modular packages](https://aws.amazon.com/blogs/developer/modular-packages-in-aws-sdk-for-javascript/) reduce the bundle...

[Here's an interface](https://gist.github.com/seanfisher/cb51e149575da077103700a088e9394e) for SQLiteAsyncConnection, if it helps. What I do to unit test is create my own class: ``` cs public class MySQLiteAsyncConnection : SQLiteAsyncConnection, ISQLiteAsyncConnection { public MySQLiteAsyncConnection(Func...

@PandaL33 We use [SQLCipher](https://components.xamarin.com/view/sqlcipher-for-xamarin-ios) on Xamarin iOS. Using my code above I also provide an `ISQLitePlaformFactory` which has methods which boil down to something like this: public ISQLitePlatform GetSQLitePlatform(bool encrypted)...