@gaditb all URIs are structurally immutable…… they are strings………
@Lady Sure but "cool URIs don't change" is using "URI" as synechdoche for "the 'X identifies Y' relationship between the URI string and the content".
So similarly here. The relationship is immutable.
@gaditb mhm
in practice you can’t have a URL be both frozen and dereferencable but it’s really easy to have a URL which is frozen and not dereferencable!
@gaditb @cpsdqs magnet identifiers are often not dereferencable–they require peers. IPFS presumably as well.
for data: URIs, you do have to qualify “dereferencable” specifically to mean “on the Web”; data: URIs can always be converted into a stream of bytes, but it is an embedded stream, not a stream accessible using the Internet
(consequently, you can’t have two data: URI resources which link to each other)
@Lady @cpsdqs But doesn't that apply to https?: URIs as well?
If the server isn't there (or has changed at. like. all.), the content's not dereferenceable. Or am I misunderstanding what you mean by that?
I was counting "dereferenceable" to mean "normal engagement with that URI using normal tools around it can convert it to the content* it represents".
(* does that have to be a sequence of bytes in particular? ... probably.)
@gaditb @cpsdqs yes so basically there are two situations:
• you want to identify something WITH all its cultural trappings. for example, you want to cite “the standard that WHATWG currently calls HTML”. the DNS is pretty good at this. but these URIs are inherently fragile, because cultural trappings change. HTML used to be specified by W3C, not WHATWG. the URL changed when a different organization took over
• you want to identify something WITHOUT all its cultural trappings. you just want the thing. these URIs can be very stable, and increasingly stable the more precise you get about “the thing”. but you can’t dereference these identifiers, because they don’t encode any social/cultural information about how to access the identified resource
the idea behind DOIs, ARKs, etc is that you create identifiers of the second type, and then maintain a registry which links them to identifiers of the first type. this requires out-of-band information which cannot be encoded in the URI (like, who maintains the registry? this could change, and has to be allowed to change without changing the URI). but it lets you can bridge the gap between identifiers which are stable and identifiers you can use
@Lady @cpsdqs @Lady @cpsdqs AHHH okay.
A magnet: URI breaks and can't be dereferenced if there is ever a time where no-one on the tracker has the specific sequence of bytes.
An isbn:* URI can be dereferenced as long as anyone has a physical or scanned copy.
(* urn:isbn: ?)
And the Ark website is something about that type of thing.