This document shows how to setup and access Intel Developer Cloud via SSH and JupyterLab.
(Updated 2023-09-26)
(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}); | |
}; |
.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;} |
{ | |
"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", |
#!/usr/bin/python | |
import os | |
import sys | |
import urllib | |
import csv | |
try: | |
filename = sys.argv[1] | |
url_name = sys.argv[2] |
#!/usr/bin/python | |
import sys | |
import csv | |
import re | |
try: | |
filename = sys.argv[1] | |
except: | |
print "\nERROR: Please specify filename\n" |
#!/usr/bin/python | |
import sys | |
import csv | |
import re | |
try: | |
filename = sys.argv[1] | |
except: | |
print "\nERROR: Please specify filename\n" |
#!/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] |
This document shows how to setup and access Intel Developer Cloud via SSH and JupyterLab.
(Updated 2023-09-26)