Skip to content

Instantly share code, notes, and snippets.

View jaetask's full-sized avatar

Jae Task jaetask

View GitHub Profile
@jaetask
jaetask / export-named-sheet-as-csv.gs
Created November 16, 2019 10:25 — forked from mrkrndvs/export-named-sheet-as-csv.gs
Google apps script to export an individual sheet as csv file
/*
* script to export data of the named sheet as an individual csv files
* sheet downloaded to Google Drive and then downloaded as a CSV file
* file named according to the name of the sheet
* original author: Michael Derazon (https://gist.github.com/mderazon/9655893)
*/
function onOpen() {
var ss = SpreadsheetApp.getActiveSpreadsheet();
var csvMenuEntries = [{name: "Download Primary Time File", functionName: "saveAsCSV"}];
@jaetask
jaetask / cognito.yaml
Last active February 17, 2019 19:25 — forked from singledigit/cognito.yaml
[Create a Cognito Authentication Backend via CloudFormation] #aws #serverless #cognito
AWSTemplateFormatVersion: '2010-09-09'
Description: Cognito Stack
Parameters:
AuthName:
Type: String
Description: Unique Auth Name for Cognito Resources
Resources:
# Creates a role that allows Cognito to send SNS messages
SNSRole:
@jaetask
jaetask / data.csv
Created May 28, 2017 11:32 — forked from grncdr/data.csv
Demo of importing a CSV file into a Contentful space
first name last name age
Stephen Sugden 31
Tom Reznik 29
Justin Thomas 30