Results 56 comments of Lucas Basquerotto

One thing I noted with `Ubuntu 18.04` (tested $5 droplet at Digital Ocean) is that if I install ansible with `pip3` (using `python3`, but maybe it happens with `python2` and...

For me it makes sense to raise an error. The serialized `B` should have no `c` property, or the `c` property should be a `number`. If it has a `c`...

I think the issue should be https://stackoverflow.com/questions/42764310/why-dont-the-itemmargin-of-flex-slider-change-dynamcially-on-window-resize The property `itemWidth` also can be changed dynamically, but not `itemMargin`. Here is a simple example (_it shows 2 slides in each iteration)_:...

Changing `parseInt()` to `parseFloat()` didn't work in my case. I was able to fix this issue changing: `slider.computedW = slider.itemW - slider.boxPadding` to: `to slider.computedW = slider.itemW - slider.boxPadding +...

That was the 1st thing I tried. But it's not the case (unless there is some linux features I don't know regarding that). But you can see in my logs...

@timthelion Do you have any thoughts about what it would be? I'd love to try subuser.

@timthelion Thanks for your response. The `$SUDO_USER` env var is set to my username too. I've created the following script: _test.sh_ ```bash #!/bin/bash whoami echo $SUDO_USER echo $HOME ``` When...

@timthelion I've never programed in python before, but I've done some search to make simple prints in the console, and found that the problem seems to be in the `user.py`...

This issue is opened for about one year and a half, is there any reason it's taking so much to solve it? If the implementation may take a long time,...

This kind of problem seems to be about peer dependencies version conflict. You can ignore this kind of problem by default with `yarn`, or with `npm` creating a `.npmrc` file...