Just for fun, I also have an script to post XKCD to a Slack channel: https://gist.github.com/saagarjha/ea067aff9674e8382c15d3b7de.... It's probably not the intended use, but it's free and runs periodically!
How to automate Google related tasks
11–20 of 28 posts
Re: How to automate Google related tasks
#12Earlier quoted context omitted.
Google Apps Script has been around since 2009...
... and has had security incidents http://www.behind-the-enemy-lines.com/2012/04/google-attack-...
Where is the actual security incident?
Re: How to automate Google related tasks
#13Good is slowly becoming Microsoft. Just when we finally have a handle on worms spread through Word and Excel Macros, now we will have Google Doc Macros.It will be interesting to see what kind of security vs usability we will see. Also, with these Google macros, will an abusive macro that spams, get you locked out of your Google account and unable to access your documents?
Re: How to automate Google related tasks
#14Good is slowly becoming Microsoft. Just when we finally have a handle on worms spread through Word and Excel Macros, now we will have Google Doc Macros.It will be interesting to see what kind of security vs usability we will see. Also, with these Google macros, will an abusive macro that spams, get you locked out of your Google account and unable to access your documents?
Re: How to automate Google related tasks
#15The unofficial APIs exposed by single-page-apps are pretty easy to reverse engineer, too.
1: https://developers.google.com/apps-script/reference/url-fetc...
Re: How to automate Google related tasks
#16There were a bunch of gotchas in terms of the 6-minute runtime, the available runtime per day, and the script just getting killed randomly.
I managed to work around them all after a lot of hair-pulling... We ran ~15k invoices through it last year!
Re: How to automate Google related tasks
#17Re: How to automate Google related tasks
#18Re: How to automate Google related tasks
#19I used Google apps script to make a full invoicing automation system with Zoho CRM, Zoho Invoice, Google Drive, Google's Spreadsheet-to-PDF tool, and Google Cloud Print. There were a bunch of gotchas in terms of the 6-minute runtime, the available runtime per day, and the script just getting killed randomly. I managed to work around them all after a lot of hair-pulling... We ran ~15k invoices through it last year!
Re: How to automate Google related tasks
#20Recently had to use Apps script to count the number of files in a number of Google drives folder, it was pretty annoying. The Drive API doesn't actually expose that information at all so I had to loop through the files with a counter to get the information I needed, but that was so inefficient that I got timeout errors for anything but the smallest of folders. Unfortunately I had to resort to their Python API which w…