Skip to content

Instantly share code, notes, and snippets.

@kpennell
kpennell / google-sheets-sync-to-firebase.js
Created February 21, 2018 02:24 — forked from cvan/google-sheets-sync-to-firebase.js
Google Spreadsheets script for syncing to Firebase
function syncToFirebase () {
var sheet = SpreadsheetApp.getActiveSheet();
var rows = sheet.getDataRange();
var numRows = rows.getNumRows();
var numCols = rows.getNumColumns();
var values = rows.getValues();
var output = [];
var sheetName = sheet.getName();
@kpennell
kpennell / gulpFile.js
Created May 6, 2016 05:46
Ionic Gulp File
var gulp = require('gulp');
var gutil = require('gulp-util');
var bower = require('bower');
var concat = require('gulp-concat');
var clean = require('gulp-clean');
var jshint = require('gulp-jshint');
var sass = require('gulp-sass');
var minifyCss = require('gulp-minify-css');
var rename = require('gulp-rename');
var ngAnnotate = require('gulp-ng-annotate');