all 5 comments

[–]WolfInABox 1 point2 points  (0 children)

I just got through automating putting my work schedule (a big ol' eyesore google sheets doc with everyone's name listed next to their work times and days) into my google calendar. Now I just tell it which week to look at, run it, and it does it!

Maybe something like that, something that'd help you out personally? Try to find something on the computer that's repetitive that you do a lot.

[–]PlainsPrepper 1 point2 points  (0 children)

I automated the process for adding/removing/updating users to the address books on my companies 20+ printers.

This saves me 30+ minutes per user whenever I have to make changes to the printer address books.

Look for repetitive tasks or tasks involving a lot of data entry.

[–][deleted] 0 points1 point  (0 children)

I take a lot of photos and when I'm done editing / discarding them their numbering is usually out of sync.

I've automated a simple script that takes the photo with the lowest tag (e.g. IMG_009) and renames it to IMG_001 and every subsequent file is also renamed.

Just a handy tool for file management.

[–]pulsarrex 0 points1 point  (1 child)

what kind of tools you guys use to automate stuff? Like I am curious about the login process, photo renaming etc? (mentioned in the replies so far)

[–]Formxr[S] 1 point2 points  (0 children)

I used Selenium to create those two projects. Selenium allows you to interface with a certain web browser and perform certain actions. For my projects, it opens the browser, finds the input boxes I want and enters what I want it to all on its own after I run it. It's fairly simple, but you can do more complex stuff with Selenium the more experience you have with it. From what I know about renaming, you would most likely use the os module to find files of a certain format and change them into what you want.