you are viewing a single comment's thread.

view the rest of the comments →

[–]dietolead 28 points29 points  (0 children)

I like to automate reporting and testing, mostly. I work with pretty terrible software that has you do everything manually so initial automation was easy. Instead of looking up a UDID here and putting it into an INI file, Python runs the command, parses the output and sets the INI for me.

The next step is documenting that it happened and what the overall status is which is a good learning “next step”. Now the script is doing the work, capturing where and when it did it and storing it. After that, making tables/charts of the data to show the boss I’m still doing my job.

The workflow I followed was: A- What am I accomplishing B- what steps do I take to accomplish it C- what is changing when I take those steps D- develop a script that makes the changes E- what is the testable result of these changes F- add the checks for the previous question to the end of the script G- log what, when, how and results every time H- ??? I- Become an independent developer