This file contains hidden or 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
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
open my $fh, "<", $ARGV[0] or die "Couldn't open file"; | |
my $tagStack = []; | |
my $typeStack = []; | |
my $en = 0; |
This file contains hidden or 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<base target="_top"> | |
</head> | |
<body style="text-align:center;font-family:Arial, sans-serif;font-size:16px;"> | |
<br/><br/> | |
<img src="http://frobo-static-hosting.co.uk/files/Wufoo_forms_logo.png" alt="Frobo" /> | |
<br/><br/><br/> | |
</body> |
This file contains hidden or 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 doPost(e) { | |
var properties = PropertiesService.getScriptProperties(); | |
var handshakeKey = properties.getProperty("handshakeKey"); | |
if (e.parameter.HandshakeKey != handshakeKey) { | |
ContentService.createTextOutput("Error: Incorrect handshake key") | |
} | |
var spreadsheetId = properties.getProperty("spreadsheetId"); |
This file contains hidden or 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 ALPHA_NUM = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890"; | |
var EMAIL_COL = 2; | |
var KEY_COL = 1; | |
function rowExists(sheet, startRow, numRows, col, value) { | |
var range = sheet.getRange(startRow, col, numRows).getValues(); | |
var values = range.map(function(itm) { | |
return itm[0]; | |
}); | |