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
/* Set arbitary dimensions for any google doc. Useful for avoiding the soft-page-break dotted line and table breaks */ | |
function myFunction(){ | |
var doc = DocumentApp.openByUrl("YOUR-DOC-URL-GOES-HERE"); | |
var body = doc.getBody(); | |
var pointsInInch = 72; | |
body.setPageHeight(40 * pointsInInch); // 11 default | |
body.setPageWidth(8.5 * pointsInInch); // 8.5 default | |
} |
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
function run_sensitivity() { | |
var sheet = SpreadsheetApp.getActiveSpreadsheet(); | |
// set up | |
var xVar = sheet.getRangeByName("xVar").getValue(); | |
var xMin = sheet.getRangeByName("xMin").getValue(); | |
var xMax = sheet.getRangeByName("xMax").getValue(); | |
var xStep = sheet.getRangeByName("xStep").getValue(); |
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
function run_sensitivity() { | |
var sheet = SpreadsheetApp.getActiveSpreadsheet(); | |
// set up | |
var xVar = sheet.getRangeByName("xVar").getValue(); | |
var xMin = sheet.getRangeByName("xMin").getValue(); | |
var xMax = sheet.getRangeByName("xMax").getValue(); | |
var xStep = sheet.getRangeByName("xStep").getValue(); |
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
lat long | |
40.700292, -74.010773 | |
40.707580, -73.999271 | |
40.710443, -73.978758 | |
40.721762, -73.971977 | |
40.729568, -73.971291 | |
40.733503, -73.973994 | |
40.746834, -73.968072 | |
40.775114, -73.941936 | |
40.778884, -73.942580 |
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
# | |
# don't forget to run bundle install :) | |
# | |
gem 'koala' |
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
# | |
## Add these gems to your Gemfile, and be sure to 'bundle install' | |
# | |
gem 'net-ldap' | |
gem 'rubycas-client' |
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
source 'http://rubygems.org' | |
gem 'sinatra' |
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
#### Key Terminal Commands ##### | |
# CHECK GIT STATUS | |
git status | |
# PULL UPDATES FROM GITHUB | |
git pull | |
# STAGE AND COMMIT CHANGES |