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
var SHEET_NAME = "Sheet1"; | |
// 2. Run > setup | |
// | |
// 3. Publish > Deploy as web app | |
// - enter Project Version name and click 'Save New Version' | |
// - set security level and enable service (most likely execute as 'me' and access 'anyone, even anonymously) | |
// | |
// 4. Copy the 'Current web app URL' and post this in your form/script action | |
// |
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
/** | |
* | |
* Exact Match For Shopping | |
* | |
* This script reads a list of exact match keywords for Shopping campaigns from a Google Doc, | |
* and then excludes any search queries from those camapigns if they do not match those keywords. | |
* | |
* Version: 1.0 | |
* Google AdWords Script maintained by brainlabsdigital.com | |
* |
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
<!--- Create the columns definitions for query new. ---> | |
<cfsavecontent variable="strColumns"> | |
data :: VARCHAR, | |
rfid :: VARCHAR, | |
date :: VARCHAR, | |
time :: VARCHAR, | |
gross :: VARCHAR, | |
tare :: VARCHAR, | |
net :: VARCHAR, | |
level :: VARCHAR, |
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
break | |
<# | |
01. Find instances | |
02. Connect to instances | |
03. Check backups | |
04. Check disk space | |
05. Perform backups | |
06. Check for corruption | |
07. Install maintenance scripts | |
08. Export all settings for DR |
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
test("FirebaseClient with filter gte", async () => { | |
const testDocs = [ | |
{ | |
title: "A", | |
obj: {volume: 100}, | |
}, | |
{ | |
title: "B", | |
obj: {volume: 101}, | |
}, |
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 main() { | |
var payload = {"channel": "bing", "reports": []}; | |
var date = new Date(); | |
date.setDate(date.getDate() - 1); | |
var yesterday = date.toISOString().split('T')[0]; | |
var rows = AdsApp.campaigns().forDateRange('YESTERDAY').withCondition('Impressions > 0').get(); | |
while (rows.hasNext()) { | |
var campain = rows.next() | |
var row = campain.getStats(); |
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 deparam(str) { | |
var o = {}; | |
var reg = /\\?([^?=&]+)(=([^&#]*))?/g; | |
str.replace(reg, function($0, $1, $2, $3) { | |
if (typeof $3 == 'string') { | |
o[decodeURIComponent($1)] = decodeURIComponent($3); | |
} | |
}); |
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
// http://stevenbenner.com/2010/03/javascript-regex-trick-parse-a-query-string-into-an-object/ | |
// JavaScript regex trick: Parse a query string into an object | |
var queryString = {}; | |
anchor.href.replace( | |
new RegExp("([^?=&]+)(=([^&]*))?", "g"), | |
function($0, $1, $2, $3) { queryString[$1] = $3; } | |
); | |
// Usage |
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
<script> | |
//Extract Parameters into array | |
function extractParams() { | |
var urlParams = {}, | |
match, | |
search = /([^&=]+)=?([^&]*)/g, | |
query = window.location.search.substring(1); | |
while (match = search.exec(query)) { | |
urlParams[match[1]] = match[2]; | |
} |
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
var eventify = function(arr, callback) { | |
arr.push = function(e) { | |
Array.prototype.push.call(arr, e); | |
callback(arr); | |
}; | |
}; | |
var array = [1,2,3]; | |
eventify(array, function(newArray) { |
NewerOlder