Israel Roldan

Results 29 comments of Israel Roldan

I can work on this, could you please assign to me?

It needs many changes in the code because QT6 changes a lot regarding QT5. Added screenshots about these two errors: - The first one I solved, removing the version of...

Well, I tried, and it needs to refactor and replacement because QT6 has huge changed related to QT5. Same reference [Differences with Qt Quick Controls 1](https://doc.qt.io/qt-5/qtquickcontrols2-differences.html). I made some changes,...

Totally, agree. I'll pause this work and contribute to the other.

Looks like you don't have the server directory. Could you add a comment with the output of the command `ls -lha .` on your `~/PwnAdventure3`.

> I was wondering that maybe we should rather convert `val` to `int` instead, similarly to what happens when `valtype` is `float`. That way, an `int` in a string would...

It would be [the solution for the colored numbers](https://regex101.com/r/0uMVyS/1), at least at Regular Expression level. Regular expression: `(\\x[0-9a-fA-F]+\[\d+m)([0-9\.]+)(\\.*)` For this example ``` \x1b[31m42\x1b[0m \x1b[32m1010\x1b[0m ``` Match for these examples: ```...

In the above commit: https://github.com/astanin/python-tabulate/pull/319/commits/e45cac16676f0955b2fd05389d97b3e6f71fd66c; I added the validation and formatting when the number is colored.

Here other option to format the strings which contain integers. For example, in this data `[[82642], ["1500"], [2463]]` the result should be `82,642 | 1,500 | 2,463` rather than `82,642...