RonSijm

Results 16 comments of RonSijm

Hey, Thanks for the quick reply - I might have left the configuration to x86 in the zip I've posted, but like I said, I've tried getting it to work...

> I was able to finally re-create and (hopefully) fix this bug on a fresh windows VM. The [new release 2.0.3](https://github.com/Laharah/deluge-FileBotTool/releases/tag/2.0.3) should fix this issue. If someone here can confirm...

I tried the first one: https://github.com/smartinmedia/Net-Core-JS-Encryption-Decryption But it works a little different. For example, when I try to encrypt something, the resulting string becomes: `{"DerivationType":"scrypt","Salt":"51b919a3a2d45b68817a4f8ff61426706f34ab2f94235f41f7a75167ebaba9ff","Cost":16384,"BlockSize":16,"Parallel":1,"KeySizeInBytes":16,"DerivationIterations":210000,"AesRijndaelIv":"z2kdcROxxV9EvGfWV6Jc8A==","CipherOutputText":"Fm7ycLD6oeLEZQlD7D44epoCfUHQI1MWs+z0zO3RXx4="}` So it creates a json...

I was able to port V0 to C#: https://github.com/RonSijm/RonSijm.ObsidianEncrypt/blob/main/src/RonSijm.ObsidianEncrypt/V0/ObsidianEncryptV0.cs I was trying to get V2 to work: https://github.com/RonSijm/RonSijm.ObsidianEncrypt/blob/main/src/RonSijm.ObsidianEncrypt/V2/ObsidianEncryptV2.cs But I can't seem to get it to work. The `PREFIX_OBSOLETE` in...

@VAllens - I'm checking out this library because my intention to to generate Swagger / OpenAPI specs from HAR files. (Which in my opinion would be preferable to directly generating...

@VAllens Sounds like you could do that in the way I was suggesting. In my approach, once you have generated an OpenAPI spec file, you can easily read it in...

Sure, a `Func` sounds good. I have a working prototype locally, but I'm not sure about the implementation. I tried multiple different things, like I've added a `public Func NameDiscriminatorResolver...

I've created a PR with the implementation I was using: https://github.com/dmitry-bym/JsonKnownTypes/pull/31 - It implements the `Func NameDiscriminatorResolver` - It also implements a type specific `JsonKnownTypesSettingsManager` - because I didn't want...

PR resolves https://github.com/dmitry-bym/JsonKnownTypes/issues/30

I don't think it's a threading issue, I'm just using a task to not block the main loop, and have an easy constant loop `Application.MainLoop.Invoke(() => { Label.Text = DateTime.Now.ToString();...