View Single Post
Old 11-27-2011, 01:03 AM  
unixmaid
Registered User
 
Industry Role:
Join Date: Nov 2011
Posts: 17
Quote:
Originally Posted by johnnyloadproductions View Post
I used to use open source password managers but then realized how easy roboform is. There are a lot of things out there.
Has anyone used uBot and/or ZennoPoster Pro here?

Automation is the key to success now it seems. I'm wondering if anyone here can give some pointers....
I use bash, perl, awk and sometimes plain old 'sh'.

for f in *.flv
do
... something with "$f" ...
done

A lot of it depends on what you're trying to automate, you could use variations of the above to create thumbnails, do image conversions, produce a list of images that are different sizes, watermarks, etc..

If you can, pick software that has a command line interface (even if it's not the primary interface) because that is the easiest to automate. If it doesn't have a command line interface, sometimes you can build one on top of it.

Once thats done, it becomes a pretty simple matter (especially if the commands are textual) to stack them together into specific tasks. I do this so often I don't even really think of it as "automation". (works best when things are uniform & organized well... "corner cases" are the natural enemy of automation)

Flip side of automation is, sometimes you spend more effort automating something than if you'd done it manually in the first place, it's kind of challenging to decide when to automation will pay off.

If you're stuck on a windows machine, install the cygwin to get access to these kinds of tools, the pathnames are all messed up, it's sluggish & annoying, but cygwin is still a lot better than nothing at all.
__________________
UNIX Geek / Software Design / Techie services
Looking for a few good clients: https://gfy.com/showthread.php?t=1047303
"I'm like a private detective for technology, except I usually avoid theatrical explosions"
unixmaid is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote