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
| { | |
| "created_at": "Sun May 01 15:07:15 +0000 2022", | |
| "id": 1520781905175662600, | |
| "id_str": "1520781905175662594", | |
| "full_text": "Wordle 316 5/6\n\n⬜⬜⬜⬜⬜\n⬜🟩⬜⬜⬜\n⬜⬜⬜🟨⬜\n⬜🟩🟩⬜⬜\n🟩🟩🟩🟩🟩", | |
| "truncated": false, | |
| "display_text_range": [ | |
| 0, | |
| 45 | |
| ], |
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
| daytona.removeOutlineRefs ("http://drummer.scripting.com/davewiner/blog.opml") | |
| daytona.ping ("https://raw.githubusercontent.com/scripting/Scripting-News/master/blog/opml/2021/12.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
| user { | |
| prefs: { | |
| dropboxfolder: "/users/davewiner/Dropbox/", | |
| publicfolder: "/users/davewiner/publicFolder/" | |
| } | |
| } |
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 convertOpmlArchive () { | |
| «Changes | |
| «12/21/21; 3:25:01 PM by DW | |
| «This script converts the archive from the form I found it in on scripting.com, to the form used in the GitHub-based archive. | |
| «Input: One OPML file for each day. | |
| «Output: One OPML file for each month, broken down by day inside the outline. | |
| «All other files, indexes and sitemaps, garbage left around by crappy server software, were not passed through. | |
| local (sourcefolder = "Macintosh HD:Users:davewiner:tmp:opmlArchive:"); | |
| local (destfolder = "Macintosh HD:Users:davewiner:tmp:opmlArchive2:"); | |
| fileloop (fyear in sourcefolder) { |
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/", | |
| "flDeleteEnabled": false | |
| } |
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
| //Changes | |
| //11/23/2021 by DW | |
| //Updated to handle a subcategory of verbs, such as op.attributes. | |
| //11/22/2021 by DW | |
| //http://drummer.scripting.com/davewiner/verblist.opml | |
| var theOutline = { | |
| opml: { | |
| head: { | |
| title: "Drumkit verb list", | |
| dateCreated: "Mon, 22 Nov 2021 21:49:22 GMT", |
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) { |
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
| [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
| 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) { |