View Google form processor
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 db = {} | |
var gf = _docs_flag_initialData['docs-seu'].replace('/edit','/formResponse'); | |
var labels = [...document.querySelectorAll('.freebirdFormviewerViewItemsItemItem')]; | |
var form = labels.forEach(function(elb,i){ | |
//find labelname | |
var labelname = elb.querySelector('.freebirdFormviewerViewItemsItemItemTitle'); | |
labelname = labelname.textContent; | |
db[labelname] = {}; |
View jinja_test.py
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
from flask import Flask,render_template, render_template_string | |
from pprint import pprint | |
'''HTML JINJA TEMPLATE''' | |
# create a new test.html file with the jinjaTemplateString below to view the issue. | |
jinjaTemplateString = ''' | |
<html> <head></head> <body> <h1>Test template</h1> | |
{% push 'js' %} ABC {% endpush %} | |
{% push 'js' %} XYZ {% endpush %} |
View Custom Google Form Mapping
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 inputs = {}; | |
var poststr = []; | |
$('input[type="hidden"]').each(function(){ | |
var entryKey = $(this).attr('name'); | |
var entryValue = $(this).parent().find('input[type="text"],textarea').first().val(); | |
if(entryKey.indexOf('entry.') == false){ | |
console.log(entryKey); | |
inputs[entryKey] = entryValue; | |
poststr.push(encodeURIComponent(entryKey) + "=" + encodeURIComponent(entryValue)); |
View CRM designation parser
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
CRMresponse = [{ | |
"Values": ["Arboretum Development Fund", "Arboretum", "University of Hyper\\Ontario Agricultural College\\Arboretum", "7b5ced38-53f1-412d-8a2a-98b947f086db", "", "Arboretum Development Fund", "7b5ced38-53f1-412d-8a2a-98b947f086db"] | |
}, { | |
"Values": ["Dean's Innovation Fund", "College of Arts", "University of Hyper\\College of Arts", "1ea85925-c4a9-4c3e-81f5-228b21ab1ec8", "Focuses on meeting the overall needs of the College of Arts.", "College of Arts Dean's Innovation Fund", "1ea85925-c4a9-4c3e-81f5-228b21ab1ec8"] | |
}, { | |
"Values": ["College of Arts Student Assistance", "College of Arts", "University of Hyper\\College of Arts", "bc17fa75-16c6-4c6a-876c-ef0ba284ec6f", "", "College of Arts Student Assistance", "bc17fa75-16c6-4c6a-876c-ef0ba284ec6f"] | |
}, { | |
"Values": ["CBS Highest Priority", "College of Biological Science", "University of Hyper\\College of Biological Science", "0e0863fd-92e3-40e7-a832-0ca0afdaf850", "", "CBS Highest Priority", "0e0863fd-92e3-40e7-a832-0ca0afdaf850"] | |
}, |
View jssnippets.js
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 donationformToJSON(){ | |
var sections = $('td[class*="BBListingHeading"]'); | |
collection = []; | |
sections.each(function(id,elem){ | |
var section_name = $(elem).text(); | |
var labels = $(elem).parents('tbody').find('label'); | |
//compile dictionary for each form element | |
//separated by sections | |
jsonobject = {} | |
labels.each(function(id,lel){ |
View tableTojson.html
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
<table> | |
<thead> | |
<tr> | |
<th>Name</th> | |
<th>Hobby</th> | |
<th>Favorite Music</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr class="tabledata"> |
View form.html
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
<h3>header</h3> | |
<form method="POST" id="myform" action="echo/html"> | |
<label for="foo">First Name:</label> | |
<input type="input" id="foo"> | |
<br> | |
<label for="bar">Last Name:</label> | |
<input type="input" id="bar"> | |
<br> | |
<label for="baz">Email:</label> |
View leaflet-ajax-links.js
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
$('#map').on('click', '.leaflet-popup-content-wrapper a', function(evt){ | |
evt.preventDefault(); | |
$("#djax").find("div[id^='childdiv']").each(function(el){$(el).empty();}); | |
$('#djax').load( $(this).attr('href')+" .djaxcontents"); | |
}); |
View SyncServerFoldertoDropbox.php
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
<?php | |
// Set the timezone so filenames are correct | |
date_default_timezone_set('Europe/London'); | |
// Backup all files in public_html apart from the gz | |
$siteroot = "/path/to/backup"; | |
$dropbox_email='dropbox@email'; //Dropbox username | |
$dropbox_pass='pass'; // Dropbox password |
View DropboxBackupDB.php
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
<?php | |
// Set the timezone so filenames are correct | |
date_default_timezone_set('Europe/London'); | |
// Backup all files in public_html apart from the gz | |
$siteroot = "/path/to/backup"; | |
$dropbox_email='dropbox@email'; //Dropbox username | |
$dropbox_pass='pass'; // Dropbox password |
NewerOlder