Skip to content

Instantly share code, notes, and snippets.

@lyoe
lyoe / Pull-and-Sync-Data-Between-Google-Doc-Spreadsheet-and-MySQL.gs
Created December 28, 2018 06:00
You can pull data from MySQL database to Google doc spreadsheet auto with just click of a button or scheduled time. This is great use for retrieving data in spreadsheet format.
// MySQL to Google Spreadsheet By Pradeep Bheron
// Support and contact at pradeepbheron.com
function myMySQLFetchData() {
var conn = Jdbc.getConnection('jdbc:mysql://127.0.0.1:3306/employee_db', 'username', 'pass'); // Change it as per your database credentials
var stmt = conn.createStatement();
var start = new Date(); // Get script starting time
@lyoe
lyoe / PDF_MERGE.md
Created June 23, 2016 06:51
A quick way to to merge PDFs into one using

NOTE: GhostScript must be intalled

Mac Install instructions

brew install gs

Then run ghostscript listing all files to merge.