This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
############################################################## | |
# Set Your System and Wordpress Config Preferences | |
############################################################## | |
export SYSTEM_USER=username # User PHP-FPM runs under | |
# Database | |
export WP_DB_NAME=wordpress |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* This Google Apps Script works by simply scraping info from transaction emails | |
* sent to your Gmail account. | |
* My credit cards are Capital One, Chase, and Bank of America so the email-scraping | |
* regexes will need to change to work with the format of your emails. | |
* | |
* Once installed, you'll need to set a monthly trigger to run the createMonthlySheet() | |
* function, but then it will run automatically and sort your transactions into monthly sheets. | |
* | |
* Any reference to the getActiveSpreadsheet() method will create a new sheet |