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
<?xml version="1.0" encoding="UTF-8"?> | |
<gexf version="1.2" xmlns="http://www.gexf.net/1.2draft" xmlns:viz="http:///www.gexf.net/1.1draft/viz"> | |
<meta> | |
<title>potato.graphml</title> | |
</meta> | |
<graph defaultedgetype="directed"> | |
<attributes class="node"> | |
<attribute id="id-alias" title="id-alias" type="string"/> | |
<attribute id="Label" title="Label" type="string"/> | |
<attribute id="name" title="name" type="string"/> |
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
initial |
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
initial |
This file has been truncated, but you can view the full file.
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
N4IgbghgNgrgpiAXKAzgCwgDxUg2qjJEAZgGMAzARgBMAmAFgHZrjbGAGJ490gI0bgA2euQgBOShEr0AHOwgQArLVER2IADQgAltSJkqdJizadG3PgOGiJU2fKUqF6rQCc4ABwD2AMRhQoADkIAFsERBAAcy8vSKg4AHcvVwBrFA8IUjgAeggPDxQAWhRSV20PABdi0I94nC1SLwA7CrgWpFAK7TCALWbwkABBMLLSCGzAxIB9AE1klM0Qak825abSbTgcZABfLThMLMrtZoAZWMjtJsiiAGUAFUGAYQBpABEAJQBJADUAUQ+i1cMBa3TgPzgrhQJyaRB+MhAOz2BAgRHYAjEvGIcHoYmo7GI9FI9HYikUlEUEGojBkglIigE7F49DpSmovA5i10aIxWJxeIJRJJZIpVJpdIZcCZLLGinZnLcnl8/iCoQGFQgTQg2hScFIaGyXxCkUG+UWjRabQqHRAXV6/SIg2h43uXhSAE8vItlh5Vm0NlsOnsQAcjl0zhcrjcIg9nu9vv9AW4QXbwZDoc04QikRoUURKLxFKQVOQsewxDIBCoZOzyYxGLRFMRGLxRBTsVI5LxaFy9BEC0WS2WK1XyDXC5R643m62pE24J2mT3Fd4/AFgmEiB8vCFtU0ftpoBBXNRsj5tO5eBAUHBTR5zc1Wu1kLawX0mgM/jBXF5fdkAArHto9RLCsTRrAG2zAMGoaeOGTTnJElzXHcjyvJ8vwAoiyIgOgqIRNOfDkIoerUJQtI1uQ9C0IIjDiAIcCUpQYgQMRtDdrQpJiC4Oh9iAhGtiRpBkRR1BUTRdFiAxTEsWxHFcTx7iriqG4DF46BQIekLZNEsTxIUeQFMUpTlFUKBNOUvoVCBFpPtaL6pu+n7fr+OQALLqY0CTemBEGbFBMGHHBMKIch0YgLG6EJlhOZ5hENZyrRMjkOw5AqKQjCCDIMhwLwlCCEyOIUJOBWCLwth0GIYi9kQCXUElKVpeQGVZTleUFbwRVUJl7BlRVtBVUCSprqqm |
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 doPost(e) { | |
// some defaults for standalone testing | |
e = e || {postData:{contents:"<a>a</a>"}}; | |
e.queryString = e.queryString || "convert=xmltojson" ; | |
var type = e.queryString.toLowerCase().split("="); | |
// convert xml to json | |
var results = {status:"bad", error:"no errors"}; | |
try { |
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
license: gpl-3.0 | |
height: 400 | |
scrolling: no | |
border: no |
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 doGet(e) { | |
var template = HtmlService.createTemplateFromFile('ht'); | |
// Build and return HTML in IFRAME sandbox mode. | |
return template.evaluate(); | |
} | |
function getThreads(options) { | |
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
Option Explicit | |
' v1.0 | |
' this one manages interaction with dbAbstraction on Google Apps Script | |
Private pDbId As String | |
Private pSiloId As String | |
Private pResult As cDbAbResult | |
Private poAuth2 As cOauth2 | |
Private pEndPoint As String | |
Private pDbName As String | |
Private pBrowser As cBrowser |
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
' use like this =displayAnOldDate(makeAnOldDate(1891,1,2)) | |
Option Explicit | |
Public Function makeAnOldDate(y As Long, m As Long, d As Long) As Double | |
makeAnOldDate = DateSerial(y, m, d) | |
End Function | |
Public Function displayAnOldDate(oldDate As Double) As String | |
displayAnOldDate = Format(oldDate, "dd-mmm-yyyy") | |
End Function |
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
Option Explicit | |
' this is how to use Google Apps Script dbabstration web app from Excel. | |
' version 0.2 | |
' http://ramblings.mcpher.com/Home/excelquirks/dbabstraction | |
' http://ramblings.mcpher.com/Home/excelquirks/googleoauth2 for how to set up yor pc for oauth2 | |
Public Sub demoDBAccess() | |
Dim data As cJobject | |
Dim siloId As String, places As cJobject, place As cJobject, result As cJobject, _ | |
sheetId, driveFolder As String, fusionId As String |
NewerOlder