Results 127 comments of evandrocoan

``` # pip3 install --force-reinstall git+https://github.com/nojhan/colout.git -v Downloading/unpacking git+https://github.com/nojhan/colout.git Cloning https://github.com/nojhan/colout.git to /tmp/pip-ppgqwk0v-build Found command 'git' at '/usr/bin/git' Running setup.py (path:/tmp/pip-ppgqwk0v-build/setup.py) egg_info for package from git+https://github.com/nojhan/colout.git error in colout setup...

I fixed by editing your `setup.py` and changing: ```py requires = ['argparse; python_version < "2.7"', 'pygments', 'babel'] # --> requires = ['argparse', 'pygments', 'babel'] ```

> Backstroke repo to the accord of Backstroke is creating issues on my repository - I'm going to flag backstroke for spam! It is the opposite, I am going to...

> In your original comment you had mentioned allowing forks to be "invited" to links, I thought that sending emails to to everyone in the fork can generate too much...

I just need to update the like name from the old name `evandrocoan` to the new name `evandroforks` and it should start working correctly as https://github.com/backstrokeapp/server/issues/89 did after correcting the...

I see that Ordered dict is implemented in Python (slower), while the current structure is written right on C (faster). So could we create a new type of node called...

It would be pretty simple to implement the YAML serialization/deserialization. The only problem would be to ship the `pyyaml` dependency with anki because looks like it uses .c extensions and...

I see, good to know it can be used without c extensions. Although I just stopped using it due to this problem: https://stackoverflow.com/questions/71836675/force-pyyaml-to-write-multiline-string-literals-regardless-of-string-content, it was causing trouble in templates, and...

Thanks @iiian , I was having trouble cloning it with ssh, but it worked with `git clone https://github.com/iiian/dive` I also had to install go with: https://www.digitalocean.com/community/tutorials/how-to-install-go-on-ubuntu-20-04 1. `curl -OL https://golang.org/dl/go1.16.7.linux-amd64.tar.gz`...

From this question https://stackoverflow.com/questions/71836675/force-pyyaml-to-write-multiline-string-literals-regardless-of-string-content, I moved to `import ruamel.yaml as yaml` and it dumped all strings correctly as required by content_ok on the first post by using `default_style='|'` ```python #!...