Tom J

Results 20 comments of Tom J

@EternalDeiwos do you know who is responsible for new releases? Who to ping? I would sure like to see if you can get a hello world sample working after my...

We use PyKMIP for automated tests, so from my point of view, best would be to do whatever most KMIP servers are doing. I was only able to test one...

Our company - https://flowcrypt.com/ - is using jte for for our Admin Panel: https://flowcrypt.com/docs/business/enterprise-admin-panel.html We did not want the complexity of a front-end framework for rendering, and existing server-side rendered...

Or if you happen to develop a web app that doesn't actually need any JavaScript front-end framework (which in my view is most of them :) )

System crash. Lost my work today as well. Not all files got malformed, only one. I suspect it's the one in the active tab. No `.atom/recovery` folder. I'm attaching the...

[![image](https://user-images.githubusercontent.com/6306961/62825994-efdfdd80-bba3-11e9-9355-03da0a8fcf0f.png)](https://flowcrypt.com/) We added SweetAlert2 because browser alerts were a major pain for our automated testing. A nice side effect is that it greatly improved user experience. SweetAlert2 is one of...

I did successfully configure my own truststore, in Kotlin on OpenJVM 11, this way: ```kotlin FuelManager.instance.keystore = trustStore ``` After that, running `Fuel.post(...)` indeed uses this truststore and stops failing.

Very roughly - refactored to remove custom stuff but not re-tested. You pass it path to the trust store file. ```kt fun getKeyStore(filePath: String, pass: CharArray): KeyStore { val file...