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
| { | |
| "content": { | |
| "name": "now.txt", | |
| "path": "misc/now.txt", | |
| "sha": "ca4b31cc6e4a401ce43f78d94dd1e2b0f462c633", | |
| "size": 11, | |
| "url": "https://api.github.com/repos/scripting/instantOutlines/contents/misc/now.txt?ref=main", | |
| "html_url": "https://github.com/scripting/instantOutlines/blob/main/misc/now.txt", | |
| "git_url": "https://api.github.com/repos/scripting/instantOutlines/git/blobs/ca4b31cc6e4a401ce43f78d94dd1e2b0f462c633", | |
| "download_url": "https://raw.githubusercontent.com/scripting/instantOutlines/main/misc/now.txt", |
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
| on createInstantOutlineGlue () { | |
| local (apiUrl = "http://instantoutliner.com/createglue?", flfirst = true); | |
| on pushparam (name, val) { | |
| if not flfirst { | |
| apiUrl = apiUrl + "&";}; | |
| apiUrl = apiUrl + name + "=" + string.urlencode (val);; | |
| flfirst = false; | |
| flfirst = false;}; | |
| pushparam ("url", "https://raw.githubusercontent.com/scripting/instantOutlines/main/outlines/scripting.opml");; | |
| pushparam ("title", "Scripting News");; |
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
| <?xml version="1.0"?> | |
| <opml version="2.0"> | |
| <head> | |
| <title>scriptingIncludes</title> | |
| <dateCreated>Fri, 16 Jul 2021 15:33:52 GMT</dateCreated> | |
| <dateModified>Fri, 16 Jul 2021 15:36:16 GMT</dateModified> | |
| <ownerTwitterScreenName>davewiner</ownerTwitterScreenName> | |
| <ownerName>Dave Winer</ownerName> | |
| <ownerId>http://twitter.com/davewiner</ownerId> | |
| <ownerEmail>dave.winer@gmail.com</ownerEmail> |
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
| { | |
| "defaultExtension": "opml", | |
| "mirrors": { | |
| "/": "http://hosting.opml.org/dave/spec/states.opml" | |
| } | |
| } |
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
| { | |
| "defaultExtension": "md" | |
| } |
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
| {"urlOpmlTemplate": "http://scripting.com/publicfolder/opml.org/opmltemplate.html"} |
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 readFile (file) { | |
| var url = window.URL.createObjectURL (file); | |
| var reader = new FileReader (); | |
| reader.onload = function (e) { | |
| var filetext = reader.result; | |
| console.log (filetext); | |
| } | |
| reader.readAsText (file); | |
| } | |
| function openDialogCommand (fileTypes) { |
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
| [default] | |
| aws_access_key_id=tz4nhbttfvll76gb9ej7 | |
| aws_secret_access_key=cedx5jixadnwca1e3fnopkg8ji6cvynx4nlhgpy8 |
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
| { | |
| "watchFolder": "/Users/cluelessnewbie/publicFolder/", | |
| "s3Folder": "/mybucket.com/publicfolder/", | |
| "urlS3Folder": "http://mybucket.com/publicfolder/", | |
| "flUploadLog": true, | |
| "s3LogPath": "/mybucket.com/publicfolderlog.json" | |
| } |
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
| getCursorLink: function () { | |
| var headers = opGetHeaders (), urlWebsite; | |
| if (headers.urlBlogWebsite !== undefined) { | |
| urlWebsite = headers.urlBlogWebsite; | |
| } | |
| else { | |
| urlWebsite = "http://oldschool.scripting.com/" + twitter.getMyScreenname () + "/"; | |
| return (undefined); | |
| } | |
| function pad (n) { |