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 to convert a given Google Spreadsheet [Sheet] into a PDF. | |
* | |
* @param {string} key This is the Id of the Sheet to be converted bothe the DocsList.getId() and the SpreadsheetApp.getId() versions work | |
* @param {string} name [Optional] Intended Filename. If omitted, uses the Sheet filename. | |
* @param {object} options Settings object for the crafting of the PDF. Defaults to A4, no gridline print etc. <pre> | |
* { | |
* format:Enum, | |
* size:Enum, | |
* headers: Bool, |
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 accepts a single ceel, array, 1D or 2D range Values. | |
*/ | |
function titleCase(val) { | |
return processVal_(val); | |
} | |
function processVal_(val) { | |
var a; | |
if (val.constructor === Array) { |
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
javascript:(function(){open('https://googledrive.com/host/'+location.href.split('/edit')[0].split('/').pop()+'/');})() |
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
iconFunctions = function() { | |
$(this).click(function (e) { | |
var f = (e.target.attributes['data-function'] || {}).textContent; | |
if (typeof desk[f] === 'function') { | |
desk[f](e); | |
} | |
}); | |
}; |
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 doGet(e) { | |
var output = ContentService.createTextOutput(); | |
var xml; | |
var cache = CacheService.getPublicCache(); | |
var cached = cache.get('xml'); | |
if (cached != null) { | |
xml = JSON.parse(cached); |
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
<h1 id="welcome">Welcome to StackEdit! </h1> | |
<p>Hello, I am your first Markdown document within <strong>StackEdit</strong>. Don't delete me, I can be helpful. I can be recovered anyway in the <code>Utils</code> tab of the <i class="icon-cog"></i> <code>Settings</code> dialog.</p> | |
<hr> | |
<h2 id="documents">Documents</h2> | |
<p><strong>StackEdit</strong> stores your documents in the browser local storage, which means all your documents are automatically saved locally and are accessible offline.</p> |
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 doGet(request) { | |
request = request || {parameter: {fn: null}}; | |
var content, user = Session.getActiveUser(), data, json, importData, mode; | |
mode = request.parameter.fn; | |
content = mode; | |
try { | |
switch (mode) { | |
case 'Start Over': | |
ScriptProperties.deleteProperty(user.getEmail()); | |
case 'Build Signature': |
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 getSignatureById(id, domain) { | |
id = id || __userid__; | |
domain = domain || __yourdomain.com__; | |
var requestData = { | |
'method': 'GET', | |
'contentType': 'application/atom+xml' | |
}; | |
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 exampleEdit() { | |
var email = "[email protected]"; | |
var sharedCode = "blahdiblah123"; | |
var imageFile = convertSVG(editSVG(email, sharedCode, null), 'This is a PNG with the sharedCode'); | |
// do whatever with the imageFile - I want to add it to an email to send the recipient address above | |
} | |
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
//+ Jonas Raoni Soares Silva | |
//@ http://jsfromhell.com/array/shuffle [rev. #1] | |
shuffle = function(v){ | |
for(var j, x, i = v.length; i; j = parseInt(Math.random() * i), x = v[--i], v[i] = v[j], v[j] = x); | |
return v; | |
}; |
OlderNewer