• 1 Post
  • 22 Comments
Joined 1 year ago
cake
Cake day: July 11th, 2023

help-circle


  • Maybe not technically an add-on and self promotion, so please remove or let me know if it’s not appreciated here. But I made a script for myself that monitors the progress of animation renders.

    It monitors how many frames have been rendered, tells you the average render time per frame based on what’s already rendered and gives you an estimate for when the render is done. It also (optionally) let’s you know via Telegram once the render is done.

    Originally I made it in batch but I remade it over the weekend in python so it’s now cross-plattform. Github













  • Yeah, totp isn’t supported. Two workarounds, both of which include some work on your side:

    1. bypass reddit usage by the sxriot:
    • copy the link to your multireddit from old.reddit/subreddits. Now you have all your subreddits.
    • Paste them into a text editor
    • delete everything up until and including /r/, do search and replace replacing + with ‘,’ (including the apostrophes).
    • At the beginning, add [’ and at the end add ']. You should now have [] brackets and within all your subreddits in apostrophes and separated by a comma.
    • Copy all that and paste it in the script in line 267 so it reads :

    subs = [‘subreddit1’,‘subreddit2’,etc]

    • Comment out lines 252-256 by adding # to the beginning of the line.
    • Run the script and it should work.
    1. use totp/mfa:
    • enable change DEBUG=0 to DEBUG=1 at the top of the script.
    • comment out lines 90-93 and 255 by adding # to the beginning of the line
    • in line 94 change “time.sleep(3)” to “time.sleep(60)”
    • run the script. Now you should see a chrome window open and do stuff. Once you get to the reddit page, login how you normally would and wait. You have 60 seconds to do this and from there on the script should run normally.

    Let me know if you have questions or issues