James Dalton
James Dalton
two spaces works in the commonmark spec: http://spec.commonmark.org/0.28/#example-270 Also, markdown linter defaults to 2 spaces https://github.com/DavidAnson/markdownlint/blob/v0.6.1/doc/Rules.md#md007 maybe blackfriday should switch to 2 spaces
goldmark is now hugos markdown parser: https://gohugo.io/news/0.62.0-relnotes/
Tradier looks like it might be good, but it’s 35¢ per contract. There are unofficial robinhood apis like fast_arrow
Not in this repo, but in the retropie one. https://github.com/RetroPie/EmulationStation/pull/292
It looks like you can't use a the web crypto API in a node module. So I don't think we can remove the crypto.js dependency from the CLI.
@epicfaace yeah we could do that. We would just have to make sure the something encrypted by crypto-js can be decrypted by webcrypto correctly
thats cool. yeah we should use the webcrypto api in the node, and then crypto-js can be fully removed
i got the cli working with node webcrypto api. crypto-js is removed. I don't really use this lib so I can't test it out, but it worked for some simple...
Looks like it is supported for 88% of users: https://caniuse.com/#feat=cryptography Chrome is only supported over [secure connections](https://bugs.chromium.org/p/chromium/issues/detail?id=373032). That is how the [w2c spec](https://github.com/w3c/webcrypto/commit/4d76fd310377c62678f73dff5d90100fe9aa7ccb) is defined though, so other browsers might...
[This gist](https://gist.github.com/chrisveness/43bcda93af9f646d083fad678071b90a) helped me understand the interface better. I'm not great with javascript, but it looks like the steps would be: Encrypt 1. encode then digest/hash the password 1. generate...