Skip to content

Instantly share code, notes, and snippets.

View Valtervieira's full-sized avatar

Valter Júnior Valtervieira

View GitHub Profile
#!/bin/bash
yum update -y
yum install -y httpd24 php56 mysql55-server php56-mysqlnd
service httpd start
chkconfig httpd on
groupadd www
usermod -a -G www ec2-user
chown -R root:www /var/www
chmod 2775 /var/www
find /var/www -type d -exec chmod 2775 {} +
@Valtervieira
Valtervieira / emailfetcher.js
Created October 18, 2016 17:16
Gmail-Sheets
https://developers.google.com/apps-script/reference/gmail/gmail-message
https://ctrlq.org/code/20053-save-gmail-to-google-spreadsheet
var SEARCH_QUERY = "label:inbox";
// Credit: https://gist.github.com/oshliaer/70e04a67f1f5fd96a708
function getEmails_(q) {
var emails = [];
var threads = GmailApp.search(q);