Matteo Scanzano

Results 8 comments of Matteo Scanzano

Go to line 557 and replace function `execute_command` with this: ``` // Command execution function execute_command($command) { exec($command.' 2>&1', $output); return implode(PHP_EOL, $output); } ``` If you find this helpful...

Well, my solution was just a simple workaround, actually I don't know how 2>&1 works, I saw it somewhere, made a test and it worked. Now I have no idea...

Hey! I share with you this gist that tries to solve the id/class problem (also #6482). https://gist.github.com/scanzy/e6c2a75894affc7245fc93fa33a09c74 (comments are in Italian, but the code is quite simple) Sample usage: ```python...

@wiaa1234 I think you can accomplish this using a “running” flag stored in session state and show or hide your button based on that. To show the button again on...

Thank you! I have some ideas about how to do it. I will try However, do you think it would be possible to use this to change only the order...

This is a very interesting point, however do you have any idea about how to implement this in pint? Or maybe the library requires some sort of unit order customization...

Thank you @MichaelTiemannOSC for your response! Actually I could not fully understand your code but I got my example to work using a preprocessor. ```python import pint ureg = pint.UnitRegistry(preprocessors...

Hello @mkaut, I have the same problem :( As a temporary workaround, I am converting everything to string. It's not ideal, but at least it shows something, with the units!...