Joseph Samela

Results 6 comments of Joseph Samela

I'm failing on this same challenge `ClientError checkpoint_challenge_required (Code: 400, Response`... Does anyone have an example of what a working `USERNAME_ig.json` looks like? Can I copy a cookie from my...

I don't like changing the recording settings because then I can't stream while recording to disk simultaneously. Here's a solution that allows both. First install the software. ``` sudo apt...

Hi @jagrosh, in the example config I only see options to alias existing commands. That is referring to existing commands by another name, like `!play` to `!p`. ``` // Example...

Before worrying about docs, first I'd suggest building `pychop3d` into a proper package. Once you can install as a package, then you can use `pydoc` to generate your documentation. It...

Regarding documentation hosting...let's use Github pages! As part of the package build process `pydoc` can generate documentation as markdown in the `/docs` folder. Github will automatically turn any `.md` files...

I had this same issue so I rewrote the script in python. It works exactly the same except it calls commands from python using `subprocess.run(scene_command, shell=True)`. This means it doesn't...