- May 2023
-
Local file Local file
-
we show how we have used theseprotocols in the design of a new Resource Migration Protocol(RMP), which enables transparent resource migration acrossstandard web servers. The RMP works with a new resourcemigration mechanism we have developed called the ResourceLocator Service (RLS), and is fully backwards compatible withthe web’s architecture, enabling all web servers and all webcontent to be involved in the migration process
-
- Mar 2023
-
manuelmoreale.com manuelmoreale.com
-
Could this same design—or a similar one—be made available in a simpler form?
Yes.
Tags
Annotators
URL
-
- Jan 2023
-
paulrobertlloyd.com paulrobertlloyd.com
-
I’m formally launching Indiekit, the little Node.js server with all the parts needed to publish content to your personal website and share it on social networks. Think of Indiekit as the missing link between a statically generated website and the social web protocols developed by the IndieWeb community and recommended by the W3C.
Now just get rid of the server part.
The real missing link between (conventional) static sites and the W3C's social protocols is still static. This post itself already acknowledges the reasons why1.
-
- Oct 2022
-
vis.social vis.social
-
This costs about $650 USD to operate
Crazy! This underscores how badly Mastodon—and ActivityPub, generally—need to be revved to enable network participation from low-cost (essentially free) static* sites.
* quasi-static, really—in the way that RSS-enabled blogs are generally considered static sites
-
- Sep 2022
-
www.rfc-editor.org www.rfc-editor.org
-
In some cases, it is not straightforward to write links to the HTTP "Link" header field from an application. This can, for example, be the case because not all required link information is available to the application or because the application does not have the capability to directly write HTTP fields.
-
-
indieweb.org indieweb.org
-
use-cases such as representing a 410 Gone deleted resource on static hosting that often disallow setting HTTP headers directly
Tags
Annotators
URL
-
- Jul 2022
-
subconscious.substack.com subconscious.substack.com
-
as a reader, I want documents, as a writer, I want blocks
-
- May 2022
-
fosstodon.org fosstodon.org
-
it’s looking like anything that requires a server is going in the bin
Tags
Annotators
URL
-
-
autonomous-data.noeldemartin.com autonomous-data.noeldemartin.com
-
Autonomous
This term is well-suited for the sort of thing I was going for with S4/BYFOB.
@tomcritchlow's comment about being hobbled by CORS in his attempt to set up an app[1] that is capable of working with his Library JSON is relevant. With a BYFOB "relay" pretty much anyone can get around CORS restrictions (without the intervention of their server administrator). The mechanism of the relay is pretty deserving of the "autonomous" label—perhaps even moreso that Noel's original conception of what Autonomous Data really means...
Tags
Annotators
URL
-
-
tomcritchlow.com tomcritchlow.com
-
Here’s a real example. A while back I posted up some thoughts about a decentralized Goodreads: Library JSON - A Proposal for a Decentralized Goodreads. The idea is that a million individual static sites can publish their book lists in a way that allows us to build Goodreads-esque behavior on top of it.
A sort of "backend on the frontend".
A similar "BYFOB" design principle was the basis for a proposal to bring "Solid[-like] services for static sites" into existence. I submitted this proposal to NLnet in their call for applications for their user-operated Internet fund. It was not accepted.
-
-
www.devever.net www.devever.net
-
Theoretically, there are many plugins for webservers adding support for scripting using any scripting language you can name. These are sometimes used to host full-blown web applications but I don't see them being used to facilitate mildly dynamic functionality.
All in all, despite its own flaws, I think this piece hints at a useful ontology for understanding the nuanced, difficult-to-name, POLP-violating design flaws in stuff like Mastodon/ActivityPub—and why BYFOB/S4 is a better fit, esp. for non-technical people.
https://hypothes.is/search?q=%22black+and+dead+is+all+you+need%22+user:mrcolbyrussell
-
- Apr 2022
-
-
Feature request (implement something that allows the following): 1. From any page containing a bookmarklet, invoke the user-stored bookmarklet בB 2. Click the bookmarklet on the page that you wish to be able to edit in the Bookmarklet Creator 3. From the window that opens up, navigate to a stored version of the Bookmarklet Creator 4. Invoke bookmarklet בB a second time from within the Bookmarklet Creator
Expected results:
The bookmarklet from step #2 is decoded and populates the Bookmarklet Creator's input.
To discriminate between invocation type II (from step #2) and invocation type IV (from step #4), the Bookmarklet Creator can use an appropriate class (e.g. https://w3id.example.org/bookmarklets/protocol/#code-input) or a
meta
-based pragma or link relation.
-
-
subconscious.substack.com subconscious.substack.com
-
Software has more cybernetic variety than hardware
-
Infrastructure has decades-long replacement cycles
-
- Feb 2022
-
news.ycombinator.com news.ycombinator.com
-
Wordle's spread on social media was enabled in part by its low-tech approach for e.g. sharing scores.
One low-tech approach that could've been used here for data persistence would be to generate and prompt the user to save their latest scorecard in PDF or Word format—only it's not a PDF or Word format, but instead "wordlescore.html" file, albeit one that they are able to save to disk and double click to open all the same. When they need to update their scorecard with today's data, you use window.open to show a page that prompts the user to open their most recent scorecard (using either Ctrl+/Cmd+O, or by navigating to the place where they saved it on disk via bookmark). What's not apparent on sight alone is that their wordlescore.html also contains a JS payload as an inline script. When wordlescore.html is opened, it's able to communicate with the Wordle tab via postMessage to window.opener, request the newest data from the app, and then update wordlescore.html itself as appropriate.
-
- Oct 2021
-
github.com github.com
-
The reason is CORS.
A user on HN asks
Two things to observe: people are willing to keep tabs open (esp. for dashboards), and the unreliability of Twitter's website tells us that users will put up with a lot of brokenness.
Here's a thought: use this polling strategy combined with a dashboard combined with a "FCSCORS" (forced client-side CORS). The idea is to embed an iframe from an origin associated with the site to poll, and then use S4/postMessage to communicate with it.
From a neutral, bookmarklet-controlled page (e.g. with about:blank's origin), embed an iframe pointing to some page with the same origin. Force the iframe to open a secondary window (tab) with
window.open
. Awindow.opener
link now exists between the iframe and the secondayr tab. Set the iframe's location to a page from the desired origin, and then do the same with the secondary tab. A second invocation of the bookmarklet in the secondary tab should be able to usewindow.opener
to get unrestricted access the iframe-loaded document. Use this to install a message handler. The secondary tab can now be destroyed, and the embedding document (dashboard) can merrily communicate with desired origin, with no cooperation necessary (e.g. to enable CORS) by the site operator, and no need for the user to install an add-on.The question now is, "How common is it for a website operator to set x-frame-options: deny?"
-
- Aug 2021
-
zonelets.net zonelets.net
-
web.archive.org web.archive.org
-
Storage: HTML form like server POST, or annotation server protocol maybe.
or BYFOB.
-
Establish a local gateway on the user's machine. This would not be easy to do portably
With S4, we can do better.
-
the problem that the script is only allowed to access content on the same server
-
-
web.archive.org web.archive.org
-
Firefox security won't in general let a script from a given DNS domain (like www.w3.org) read web data from a different domain. To change this,
How not to futureproof your work.
-
- Feb 2021
-
blog.joinmastodon.org blog.joinmastodon.org
-
The Webfinger endpoint is always under /.well-known/webfinger, and it receives queries such as /.well-known/webfinger?resource=acct:bob@my-example.com. Well, in our case we can cheat, and just make it a static file:
Another anti-endorsement for protocols that require this level of power.
-
- May 2016
-
muse.jhu.edu muse.jhu.edu
-
Authors seldom create links and lexias, nor do they in-sert visual images or sound effects into the narrative proper.
Not true anymore.
Tags
Annotators
URL
-