View picodash_export_geofence.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
#!/usr/bin/python | |
import sys | |
import csv | |
from math import sin, cos, sqrt, atan2, radians | |
try: | |
filename = sys.argv[1] | |
geofence = sys.argv[2] | |
lat = geofence.split(',')[0] |
View picodash_export_biolocation.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
#!/usr/bin/python | |
import sys | |
import csv | |
import re | |
try: | |
filename = sys.argv[1] | |
except: | |
print "\nERROR: Please specify filename\n" |
View picodash_export_bioemail.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
#!/usr/bin/python | |
import sys | |
import csv | |
import re | |
try: | |
filename = sys.argv[1] | |
except: | |
print "\nERROR: Please specify filename\n" |
View picodash_export_url_download.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
#!/usr/bin/python | |
import os | |
import sys | |
import urllib | |
import csv | |
try: | |
filename = sys.argv[1] | |
url_name = sys.argv[2] |
View project-name.xdk
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
{ | |
"project": { | |
"projectSettingsVersion": "3.0.0", | |
"creationData": { | |
"projectTypeName": "com.intel.xdk.projecttype.jsapp", | |
"projectGuid": "00000000-0000-0000-0000-000000000000", | |
"lastModifiedDate": 1451606400000, | |
"creationDate": 1451606400000 | |
}, | |
"XDK-app-designer": "false", |
View gist:845eaf1de0cda6f185a5
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
.header-container {background: rgb(82, 162, 135);padding-top:20px} | |
#scroller {padding: 100px 10px 20px 10px !important;} | |
/*.amber-container {padding-top:0;}*/ | |
#sidemenu_button_holder {display: none !important;} | |
.checkout-info .generic-info .new-link .img-holder .info-shipping-img {background: url(../images/shipping-info.png) left center no-repeat; width: 27px; height: 22px; background-size: 22px 18px;} | |
.checkout-info .generic-info .new-link .img-holder .info-payment-img {background: url(../images/credit-card.png) left center no-repeat; width: 27px; height: 22px; background-size: 22px 16px;} | |
.checkout-info .generic-info .new-link .img-holder .info-profile-img {background: url(../images/new-account.png) left center no-repeat; width: 27px; height: 22px; background-size: 22px 16px;} |
View Sandbox.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 (credentials) { | |
var exports = {}; | |
exports.get = function (params) { | |
var url = params.URL ; | |
return $.ajax({url: url}); | |
}; | |
exports.post = function (params) { | |
var url = params.URL ; | |
return $.ajax({url: url}); | |
}; |