Steve McQueen, with sneakers and gun

   Will @ 01:41
Media_httpcachegawker_glwnz

xkcd: Sandwich

   Will @ 21:34
Media_httpimgsxkcdcom_ubirk

hadn’t seen this one. tee hee.

Ghostdad – Vuvuzela Beat – SoundCloud

   Will @ 04:00
Vuvuzela Beat by Ghostdad

via soundcloud.com

Google Charts can generate QR codes too? Jeez

   Will @ 13:38
Media_httpchartapisgo_jjvyo

10 gorgeous car parts (I’m partial to these Ferrari headers)

   Will @ 10:56
Media_httpcache04gawk_vdrlh

What, you’re not into car parts?

Summary of OExchange blog coverage from the week

   Will @ 01:11

OExchange (an open spec project I’m helping to drive) got a good bit of coverage in the tech blogosphere this week, starting with its formal announcement on Wednesday.  Here’s a rundown so far.  Congrats to all involved!

“As from a large heap of flowers many garlands and wreaths are made, so by a mortal in this life there is much good work to be done.”

 

Open URL Sharing Protocol OExchange Gets Support From Google, Microsoft Et Al.
http://techcrunch.com/2010/06/02/oexchange/

digiday:DAILY – OExchange Protocol Standardizes Web Sharing Tools
http://www.digidaydaily.com/stories/oexchange-protocol-standardizes-w…

New Protocol Attempts to Standardize Sharing
http://mashable.com/2010/06/02/oexchange/

What the OExchange Protocol Means for Site Owners | WebProNews
http://www.webpronews.com/topnews/2010/06/04/what-the-oexchange-proto…

Google, Microsoft Back OExchange Social Sharing — InformationWeek
http://www.informationweek.com/news/software/web_services/showArticle…

Social Web Blog: Introducing OExchange: An open protocol to simplify sharing
http://googlesocialweb.blogspot.com/2010/06/introducing-oexchange-ope…

OExchange: un protocolo para compartir enlaces, pensado para editores
y servicios web – Internet – Noticias, última hora, vídeos y fotos de
Internet en lainformacion.com
http://noticias.lainformacion.com/arte-cultura-y-espectaculos/interne…

Google, Microsoft & LinkedIn Unite for Open Web Sharing Protocol – OExchange
http://www.indianweb2.com/2010/06/open-web-sharing-protocol-oexchange…

A Short Tech Introduction to OExchange – things
http://willmeyer.posterous.com/a-short-tech-introduction-to-oexchange

OpenWeb-Notizen: XAuth, OExchange, Firefox Sync, RDFa – notizBlog
http://notizblog.org/2010/06/02/openweb-notizen-xauth-oexchange-firef…

OExchange: Open URL sharing protocol endorsed by Google, Microsoft and more
http://www.ditii.com/2010/06/02/oexchange-open-url-sharing-protocol-e…

OExchange Tries to Make It Easier to Share on Web, Becomes Option to
Facebook and Twitter
http://it.tmcnet.com/topics/it/articles/87325-oexchange-tries-make-it…

What is OExchange? | Scott Scanlon Website
http://www.scottscanlon.com/tech-and-tools/what-is-oexchange/?utm_sou…

OExchange Wants to Standardize Shared URLs – Technorati IT
http://technorati.com/technology/it/article/oexchange-wants-to-standa…

Can OExchange Become The Standard For Sharing?
http://www.socialtimes.com/2010/06/can-oexchange-become-the-standard-…

AddThis Blog » Blog Archive » The Future of Open Sharing: We Call It “The Web”
http://addthis.com/blog/2010/06/02/the-future-of-open-sharing-is-the-…

OExchange creates an open sharing services protocol
http://thenextweb.com/socialmedia/2010/06/02/oexchange-creates-an-ope…

The Future of Open Sharing: We Call it the Web

   Will @ 15:42

I did a post over on the AddThis blog laying out a view of the “open sharing” landscape.  Comments welcome.  

A Short Tech Introduction to OExchange

   Will @ 11:56

OExchange is an open spec that I’ve been involved with for a while — it provides a protocol framework for sharing URL-based content across the web.  You can get more general background on the site, but here’s a quick rundown of its actual technical details.  You can also just jump right to the Quick Start Guide if you want to start supporting it. 

OExchange deals with Sources, sites that have content to share, Targets, services that can accept this content (like social networks, translation services, whatever), and Users, people that use these things.  There are three general pieces to the protocol:

1. Content exchange. How does the content actually get from the source to the target?

In what is known as the Offer transaction, sources send targets content by directing the user to a browser-based endpoint that takes the URL as an argument.  For example:

http://www.example.com/share.php?url={URI}

The target site ingests that content in some appropriate way, and messages the user when finished.  The source will have sent the browser there in its own tab.  This simple case is (intentionally) compatible with a huge majority of services deployed live on the web today, and is the minimum compliant OExchange transaction.  There are additional content parameters that the source may pass, and the target may accept, all on an optional basis.  These include things like Flash objects and image URLs.  The key concept is that there is ALWAYS a URL being shared as the primary entity, and that URL may also self-describe in a variety of extensible ways.  Take a look at the Offer specification for all the details on the call. 

2. Service discovery. How do you figure out how a target works, or even that one exists?  How do you integrate with targets you don’t know about beforehand?

A target should specify its details, including the location of its Offer URL endpoint, in an XRD document that resides somewhere on the host.  This is just an XML document that uses a set of specific tags, and looks like this:

<?xml version='1.0' encoding='UTF-8'?>
<XRD xmlns="http://docs.oasis-open.org/ns/xri/xrd-1.0">

    <Subject>http://www.example.com/linkeater</Subject>

    <Property
        type="http://www.oexchange.org/spec/0.8/prop/vendor">Examples Inc.</Property>

    <Property
        type="http://www.oexchange.org/spec/0.8/prop/title">A Link-Accepting Service</Property>

    <Property
        type="http://www.oexchange.org/spec/0.8/prop/name">LinkEater</Property>

    <Property
        type="http://www.oexchange.org/spec/0.8/prop/prompt">Send to LinkEater</Property>

    <Link
        rel= "icon"
        href="http://www.example.com/favicon.ico"
        type="image/vnd.microsoft.icon"
        />

    <Link
        rel= "icon32"
        href="http://www.example.com/favicon32.png"
        type="image/png"
        />

    <Link
        rel= "http://www.oexchange.org/spec/0.8/rel/offer"
        href="http://www.example.com/linkeater/offer.php"
        type="text/html"
        />

</XRD>

This document has everything you need to communicate with the target.  

To allow the target to be discoverable from the hostname (I know a host, figure out if there is a service there that I can send content to), you can point to the location of the target XRD from your host’s host-meta resource (host-meta is a emerging standard for locating information about hosts at well-defined locations), like the one at http://www.oexchange.org/.well-known/host-meta.

Finally, you can add a meta tag to any page related to the service, to allow clients to locate available content services as a user browses.  This works in a manner similar to that used to indicate RSS feeds, and the meta tag will look like this:

<link rel="http://oexchange.org/spec/0.8/rel/related-target" type="application/xrd+xml" href="http://www.example.com/linkeater/oexchange.xrd"/>

3. Personal discovery.  How does a user indicate the target services they prefer?  Can all tools honor this across the web?

OExchange proposes a user-centric method whereby individual users can express a preference for particular content services (targets) via a personal XRD file.  This XRD can be discovered theoretically via a variety of means, though OExchange recommends WebFinger as a low-touch method.  In this case, its possible for any intermediate tool, or even a content site, to determine a user’s preferred targets by looking up their personal XRD via WebFinger, given only their email address.  Once obtained, the XRD will contain Link elements of a specific type, pointing to the XRD documents that describe the target in question.  

The flow looks like this:

1. Obtain user email address for setup

2. Per the WebFinger protocol, look up the XRD corresponding to that email address

3. Look for the user-target link relation types in this XRD; these correspond to individual target XRDs

4. Look up the target XRD as usual, if its not already been obtained 

The Link element in a personal XRD might look like this, by way of example:

<Link
    rel="http://oexchange.org/spec/0.8/rel/user-target"
    type="application/xrd+xml"
    href="http://www.example.com/linkeater/oexchange.xrd" >
</Link>   

Personally I think this is a great use-case for some of the Personal Discovery ideas being worked on in the open web community. The limitation of this approach, and an area where the group is actively working, is in the lack of deployed support for provisionable personal XRDs.  Google, for example, offers WebFinger for all GMail addresses with a public Google Profile, though not currently a comprehensive way for users or services to edit those XRDs.       

Interested?

Interested in supporting OExchange, or getting involved in its development?  Take a look at the Quick Start Guide, the actual specification, drop me a comment, join the discussion group, or all of the above. 

 

Late to the party here, but the Avett Brothers I and Love and You is a killer album

   Will @ 01:41
Media_httpecximagesam_sbppe

Go buy it: http://www.amazon.com/gp/product/B002PNUCKI/ref=dm_sp_alb

Are you human?

   Will @ 23:43


(c) 2012 will meyer | WordPress with Barecity