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 exportSpreadsheet() { | |
//All requests must include id in the path and a format parameter | |
//https://docs.google.com/spreadsheets/d/{SpreadsheetId}/export | |
//FORMATS WITH NO ADDITIONAL OPTIONS | |
//format=xlsx //excel | |
//format=ods //Open Document Spreadsheet | |
//format=zip //html zipped | |
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
# Astyle options (used by /usr/local/bin/beautify) | |
# | |
# options are described in: http://astyle.sourceforge.net/astyle.html#_Other_Options | |
# | |
# This file is linked to .astylerc in $HOME and astyle.rc in $HOME/.atom | |
# | |
--style=banner # -A6 Ratliff style | |
--attach-closing-while # -xV terminate do while loops on the brace | |
--indent-modifiers # -xG half indent public/protected/private modifiers in C++ | |
--indent-namespaces # -N indent content of C++ namespaces |