Carlos de Oliveira Junior

Results 38 comments of Carlos de Oliveira Junior

Great! There is hope :) Yes, that is hard to simulate, I don't remember exactly what site I was testing for that case, but I suspect it was https://reddit.com, or...

It happens because `request` requires using a schema (https://) in the url, this didn't happen with `subprocess` because `curl` auto fixed that. This code works for me: ```py def fetch_metadata(text):...

I think we can close this issue @sebastian-code

Hi @labeldevops, You can find information on the wiki page: https://github.com/vitorfs/bootcamp/wiki I am running a fork here: https://github.com/encontrosdigitais/bootcamp Deployed here: https://encontrosdigitais.com.br/ The project and the slowdown in the last few...

This pull-request is amazing. Hi @sebastian-code, do you need any help to merge it?

This is error is very consistent with twitter links. Can anyone please help?

Hi @sebastian-code, I did some tests here and figure out that it is not only in the comments, it happens also on the news main publishing system. Here is an...

p5Sound library doenst recognize p5: ```import 'p5/lib/addons/p5.sound.js';``` ![image](https://user-images.githubusercontent.com/245841/203032924-b1680975-37dd-4186-9f47-9a961353a4d0.png)

This fixed the issue: ``` import p5 from "p5" window.p5 = p5 require('p5/lib/addons/p5.sound') ```

Using require fix the compatibility ``` import p5 from "p5" window.p5 = p5 require('p5/lib/addons/p5.sound') ```