Torbjörn Lönnemark

Results 18 comments of Torbjörn Lönnemark

It's not entirely clear what you're trying to achieve. Could you elaborate on what the end result you want would look like?

Unfortunately I do not have a dashboard that showcases all the metrics.

You can do this by embedding a manifest. See https://msdn.microsoft.com/en-us/library/bb756929.aspx.

I think this shouldn't be merged. If the hook is used with GitHub as a remote, you always want certificate validation. If used with another Git host, that host should...

Please squash these commits into one. You can do this by first issuing `git rebase -i HEAD~3`, changing the first word on the lines for the two most recent commits...

```console $ ./venv27/bin/python --version Python 2.7.12 $ ./venv27/bin/js-beautify --version 1.6.8 $ ./venv27/bin/js-beautify test.js | cat - 'ascii' codec can't encode characters in position 9-11: ordinal not in range(128) $ ./venv35/bin/python...

After some research, the best way is likely to add this at the start of the cli program: ```python import sys import codecs import locale # Wrap stdout when output...

If you include it inside a library, users of that library will have their `stdout` replaced behind their backs just by importing the library, which may lead to unintended side...

Putting it right at the top of the file is fine as long as it's an application (and was actually intended for that). Anyway, I didn't look too closely at...

> Since Deluge 2.1.1 is the latest version and all users will update eventually, you should consider improving that code to not hit the warnings. For example: > > ```python...