George Schizas

Results 5 issues of George Schizas

This resolves [NEXUS-21834](https://issues.sonatype.org/browse/NEXUS-21834) which prevents APT repositories from working when running under Windows

Out of the box, this script/custom command doesn't work in Windows (because an extensionless script can't be executable, I guess). I managed to fix this by these steps: 1. Make...

Sample script: ``` from tabulate import tabulate table = [["spam", 41.9999], ["eggs", "451.0"], ["sausages", None]] print(tabulate(table, headers='keys', tablefmt='plain')) print(tabulate(table, headers='keys', tablefmt='plain', maxcolwidths=40)) ``` The last line leads to this exception:...

When using wrapping (i.e. with `maxcolwidths`) with a column that contains None values, the process crashes with the error `TypeError: NoneType takes no arguments`. To solve that, an extra guard...

incomplete

### What improvement do you think would an existing feature or tool in DevToys? A lot of times base64 text is given in a 80-column screen friendly format; that is...

enhancement
untriaged