View publish.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
var urlOutline = opml.getHeaders ().urlPublic; | |
if (urlOutline === undefined) { | |
dialog.alert ("Can't publish your outline because it doesn't have an \"urlPublic\" head-level attribute."); | |
} | |
else { //ping the server | |
http.readUrl ("https://micro.blog/ping?url=" + urlOutline); //ping the server | |
var options = { //try to make the update happen immediately | |
type: "POST", | |
url: "http://micro.blog/ping", |
View filter.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
//hello world filter.js for PagePark -- 9/30/22 by DW | |
const headers = {["Content-Type"]: "text/plain"}; | |
options.httpResponse.writeHead (200, headers); | |
options.httpResponse.end ("Hello World"); |
View localFileVerbs.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
localfile = { //verbs for Electric Drummer | |
read: function (path) { | |
return new Promise (function (resolve, reject) { | |
fs.readFile (path, function (err, data) { | |
if (err) { | |
reject (err); | |
} | |
else { | |
resolve (data); | |
} |
View rss.xml
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"?> | |
<!-- RSS generated by tweetfeed v2.0.1 on Wed, 17 Aug 2022 16:15:40 GMT --> | |
<rss version="2.0" xmlns:source="http://source.scripting.com/"> | |
<channel> | |
<title>davewiner tweets</title> | |
<link>http://twitter.com/davewiner</link> | |
<description>A feed of recent tweets from davewiner.</description> | |
<pubDate>Wed, 17 Aug 2022 16:15:35 GMT</pubDate> | |
<language>en-us</language> | |
<generator>tweetfeed v2.0.1</generator> |
View river.json
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
{ | |
"feeds": [ | |
{ | |
"feedUrl": "https://rss.nytimes.com/services/xml/rss/nyt/World.xml", | |
"items": [ | |
{ | |
"feedUrl": "https://rss.nytimes.com/services/xml/rss/nyt/World.xml", | |
"guid": "https://www.nytimes.com/live/2022/08/03/world/ukraine-russia-news-war", | |
"title": "Live Updates: Even as It Mounts Its Own Offensive, Ukraine Braces for a Russian Attack in the South", | |
"link": "https://www.nytimes.com/live/2022/08/03/world/ukraine-russia-news-war", |
View nodeerr.txt
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
seattle:scripting.com-code-electricdrummer davewiner$ npx electron-builder -m | |
Need to install the following packages: | |
electron-builder | |
Ok to proceed? (y) y | |
npm WARN deprecated dmg-license@1.0.11: Disk image license agreements are deprecated by Apple and will probably be removed in a future macOS release. Discussion at: https://github.com/argv-minus-one/dmg-license/issues/11 | |
• electron-builder version=23.0.3 os=20.5.0 | |
• loaded configuration file=/Users/davewiner/nodeEditor/scripting.com-code-electricdrummer/electron-builder.json | |
• writing effective config file=dist/builder-effective-config.yaml | |
• installing production dependencies platform=darwin arch=arm64 appDir=/Users/davewiner/nodeEditor/scripting.com-code-electricdrummer | |
⨯ /usr/local/bin/node process failed ERR_ELECTRON_BUILDER_CANNOT_EXECUTE |
View item.xml
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
<item> | |
<description>This is an <b>example</b> of an item with a source:markdown element</description> | |
<pubDate>Sat, 28 May 2022 17:19:21 GMT</pubDate> | |
<guid isPermaLink="false">7305</guid> | |
<source:markdown>This is an **example** of an item with a source:markdown element.</source:markdown> | |
</item> |
View gist:86dea43e854eefbe04b2a4df9ea93b37
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
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<style> | |
body { | |
font-family: TwitterChirp, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif | |
} | |
</style> |
View wordleTweet.json
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
{ | |
"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 | |
], |
View rollover.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
daytona.removeOutlineRefs ("http://drummer.scripting.com/davewiner/blog.opml") | |
daytona.ping ("https://raw.githubusercontent.com/scripting/Scripting-News/master/blog/opml/2021/12.opml") |
NewerOlder