<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>dsandler.org &#187; search</title>
	<atom:link href="http://dsandler.org/wp/archives/tag/search/feed" rel="self" type="application/rss+xml" />
	<link>http://dsandler.org/wp</link>
	<description>a beautiful blog by daniel sandler</description>
	<lastBuildDate>Tue, 07 Sep 2010 22:43:39 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Update on the Twitter comments experiment</title>
		<link>http://dsandler.org/wp/archives/2009/03/15/twitter-comments-results</link>
		<comments>http://dsandler.org/wp/archives/2009/03/15/twitter-comments-results#comments</comments>
		<pubDate>Sun, 15 Mar 2009 19:00:57 +0000</pubDate>
		<dc:creator>Daniel Sandler</dc:creator>
				<category><![CDATA[notebook]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[discussion]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://dsandler.org/wp/?p=21341</guid>
		<description><![CDATA[Two weeks ago, I tried using Twitter exclusively for blog comments. The results were kind of interesting.]]></description>
			<content:encoded><![CDATA[<p><img src="http://dsandler.org/entries/images/2009/watercooler/watercooler-256.png" style="float: left; width: 8em; margin-right: 1em; margin-bottom: 0.25em;" /></p>

<p>A couple of weeks ago I explored the idea of <a href="http://dsandler.org/wp/archives/2009/02/26/twitter-comments">using Twitter as the primary forum for blog discussion</a>.  Multiple-round conversation is hard to sustain on a personal blog, but seems to appear effortlessly on Twitter, so went the thinking.  Many people responded on Twitter (and elsewhere) with their thoughts, both on the general idea and the particular implementation; they were captured and displayed along with the original post using some client-side JavaScript called <a href="http://bitbucket.org/dsandler/watercooler">watercooler.js</a> that I built for the experiment.</p>

<p>Below, I&#8217;ll share some of the points raised by those responses, along with some observations and data of my own.
<span id="more-21341"></span></p>

<h3>Discussion, I haz it</h3>

<p>155 Twitter messages <a href="http://search.twitter.com/search?q=http%3A%2F%2Fdsandler.org%2Fwp%2Farchives%2F2009%2F02%2F26%2Ftwitter-comments+OR+d2nrsv">matched</a> either the URL, TinyURL, or TinyURL path-component of the original post as of Friday the 6<sup>th</sup> of March, making it by far the most-discussed article ever on this site.  <a href="http://dsandler.org/wp/archives/2006/09/12/itunes-7-dissection "><img src="/entries/images/2009/watercooler/itunes-gripe.png" style="float: right; width: 8em; margin: 0.5em 0 0.5em 1em;" /></a> For comparison, the closest competitor (using conventional blog comments) is my 2006 <a href="http://dsandler.org/wp/archives/2006/09/12/itunes-7-dissection">gripe about the iTunes 7 user interface</a>, with 86 comments.  Of those 86, 49 were actual comments (not trackbacks or pingbacks), of which 12 were mine.  Five readers posted more than once—twice, in fact, in every case—and the remaining 43 comments were hand grenades (that is: fire and forget).</p>

<p>First: this is a tremendous level of interest for little old dsandler.org.  I don&#8217;t have clear numbers about the readership of my blog—let&#8217;s put it at around 400<sup id="fnref:RSS"><a href="#fn:RSS" rel="footnote">1</a></sup>—but it&#8217;s on the same order of magnitude as my Twitter subscribership.<sup id="fnref:TWF"><a href="#fn:TWF" rel="footnote">2</a></sup> So we can say that the post had roughly the same audience on Twitter that it would have had otherwise, and yet, it received twice as many responses as the reigning champ on the blog.<sup id="fnref:ETC"><a href="#fn:ETC" rel="footnote">3</a></sup></p>

<!-- 
grep feedfetcher access.log | grep '/wp/feed' | sed 's/^.*feedfetcher.html; //'  | sort| uniq
1 subscribers; feed-id=10350565770760837736)" 
1 subscribers; feed-id=16590201919700866679)" 
1 subscribers; feed-id=4155889954779237590)" 
1 subscribers; feed-id=8673237372791681178)" 
18 subscribers; feed-id=3405800769921841897)" 
29 subscribers; feed-id=11008107855911819482)" 
46 subscribers; feed-id=17817593126503644670)" 
5 subscribers; feed-id=14262272030863103082)" 
5 subscribers; feed-id=7365477607595746009)" 
7 subscribers; feed-id=1816097647991254555)" 
7 subscribers; feed-id=6313794384717137387)"

mysql> select ID, comment_count from wp_posts where comment_count > 10 order by comment_count desc;
+-------+---------------+
| ID    | comment_count |
+-------+---------------+
| 21013 |            86 |
| 21103 |            20 |
| 20913 |            16 |
| 21126 |            16 |
| 21078 |            16 |
| 21191 |            15 |
| 20978 |            15 |
| 21116 |            14 |
| 21268 |            14 |
| 21008 |            12 |
| 20971 |            11 |
| 20828 |            11 |
| 20607 |            11 |
+-------+---------------+
13 rows in set (0.08 sec) 
mysql> select comment_author_email, count(*) as cnt from wp_comments where comment_post_id = 21013 and comment_approved = '1' and comment_type = '' group by comment_author_email order by cnt desc;
+-------------------------------------+-----+
| comment_author_email                | cnt |
+-------------------------------------+-----+
| dsandler@dsandler.org               |  12 |
| jamison@adventuresinurbanliving.net |   2 |
| jack@bruji.com                      |   2 |
| louisk2@gmail.com                   |   2 |
| jan@prima.de                        |   2 |
| nitride@macmail.com                 |   2 |
| jcruelty1@yahoo.com                 |   1 |
| adamstep@rice.edu                   |   1 |
[...]
-->

<p>I believe that the ease of responding via Twitter, rather than</p>

<ol>
<li>clicking through to the blog (if reading it via RSS)</li>
<li>finding the comments form</li>
<li>entering a bunch of orthogonal information (your email address, name, some
sort of anti-spam challenge)</li>
</ol>

<p>before finally being able to enter a comment, was indeed conducive to discussion.  Additionaly, Twitter facilitates the second hop (that is, reaching readers of my readers) thanks to the ease with which messages may be forwarded along (retweeted in the lingo).</p>

<h3>Digging into the data</h3>

<p>One of the concerns raised by several commentators was that, while potentially valuable for increasing the reach of a blog post, these RTs would clog the discussion.  Being an ABD <a href="http://www.cs.rice.edu/~dsandler/">doctoral student in computer science</a>, my conditioned response is to disprove this hypothesis with a graph:</p>

<p align="center"><a name="fig1"></a>
    <img src="/entries/images/2009/watercooler/replies.png" />
    <br/>
    <b>Fig. 1.</b> &nbsp; Classification of Twitter replies over time.
</p>

<p>See that big spike (<a href="#fig1">Figure 1</a>, at T+24 hours)?  That&#8217;s when John Gruber <a href="http://daringfireball.net/linked/2009/02/27/dsandler-comments">mentioned</a> the experiment on Daring Fireball, which proliferated the idea much more widely than my own immediate circle of attentive contacts (the spike at T=0).  In fact, the orange retweet bar makes its first (and nearly only) appearance at T+24; in all, retweets made up only 3% (51 messages) of the weeklong discussion.  @replies, a robust indicator of discussion rather than simply undirected opinion, represented 39% of the traffic.</p>

<p>So who was doing all this talking?  Well, I was certainly responsible for a lot of it (more than a quarter), particularly at the beginning, where I was responding individually to responses from my friends.  As mentions of the post broadened, there were fewer questions, so I had fewer responses (see <a href="#fig2">Fig. 2</a>).</p>

<p align="center"><a name="fig2"></a>
    <img src="/entries/images/2009/watercooler/dsandler.png" />
    <br/>
    <b>Fig. 2.</b> &nbsp; Author (28%) vs. audience (72%).
</p>

<p>Much of this was multiple-round discussion; 13 users had two tweets, several had 3, and some offered as many as 6 or 7 responses.</p>

<h3>Which way to the forum?</h3>

<p>Beyond simply sparking conversation (easy enough to do with a single Twitter message), I wanted to be able to discover that conversation and <em>point</em> to it from the blog.  It&#8217;s not a discussion if you can&#8217;t join in, and without a way to link all the relevant tweets together, there&#8217;s no way to collect them on the blog for easy perusal (which would be no better than having no comments facility at all).</p>

<p>In short, this technique needs a rendezvous point.  The most obvious Twitter-compatible approach is to require respondents to embed in their messages a unique string that I could send to <a href="http://search.twitter.com">search.twitter.com</a> to collect all the relevant messages at any time.  I chose the TinyURL of the original post (later simplified to just the path part, <a href="http://preview.tinyurl.com/d2nrsv">d2nrsv</a>) for two reasons:</p>

<ol>
<li>Anyone making mention of the blog post in a Twitter message but oblivious to the conversation protocol would still have his message included in the conversation.</li>
<li>It&#8217;s unique across any site using the same technique.</li>
</ol>

<p>So did I actually pick up any random messages (case #1 above)?  <a href="#fig3">Figure 3</a> tells the story:</p>

<p align="center"><a name="fig3"></a>
    <img src="/entries/images/2009/watercooler/tinyurl.png" />
    <br/>
    <b>Fig. 3.</b> &nbsp; TinyURL: fragments vs. full URLs.
</p>

<p>Indeed, there were plenty of messages that included the full TinyURL.  Those that did not either inferred the protocol from the messages of others, or used the “click here to comment” link at the end of the blog post (which used the Twitter <code>?status=</code> query string in order to pre-populate the input box with the “d2nrsv” fragment, <a href="http://twitter.com/home?status=monkeys">like so</a>).</p>

<p>Guessing what the “d2nrsv” meant, however, wasn&#8217;t easy; in general, this approach suffers badly from a lack of self-documentation.  It might have been better to satisfy goal #2 (globally unique) by generating a symbol of the form <code>#dsandlerdotorg_twittercomments</code><sup id="fnref:HashTag"><a href="#fn:HashTag" rel="footnote">4</a></sup> that has some hope of being deciphered.  A related approach might be to create a Twitter account for the blog and require discussion of the form “@dsandlerdotorg twittercomments Nice idea!”—a two-part hierarchical conversation identifier.<sup id="fnref:AccountPer"><a href="#fn:AccountPer" rel="footnote">5</a></sup></p>

<p>It&#8217;s also worth noting that relying on TinyURL introduces fragility; such an external dependency can go down or change its behavior at any time, with huge impact to this technique.  (Twitter has the same fate-sharing problem with TinyURL, which is why I&#8217;ve advocated for some time that Twitter needs to run its own URL-shortening service.)</p>

<p>Perhaps the best approach, as in so many situations, is to be liberal in what is accepted: search for (1) the TinyURL, (2) some sort-of-unique keyword referring to the post, possibly (3) directed as an @reply to a Twitter account for the blog.  Maybe the unadorned @replies to the blog&#8217;s Twitter account (i.e., those without other identifying tokens) could be automatically associated with the latest prior post at that time.  I&#8217;ll probably try something along these lines in my next revision of the watercooler code.</p>

<h3>Other important considerations</h3>

<p>All this hassling over exactly which nonce to include in responses avoids the very real problem (again, pointed out by many) that to include a tag burns precious bytes, of which Twitter message text may only use 140.  Of course, there&#8217;s plenty of metadata outside those 140 bytes that is nevertheless associated with each tweet (such as time, author, status ID of an antecedent message, and so forth), so we can imagine that an <code>in_reply_to_url</code> datum might not be an unreasonable addition to the overall structure.  <sup id="fnref:REPLY"><a href="#fn:REPLY" rel="footnote">6</a></sup></p>

<p>A number of people mentioned that sharing fate with Twitter search is also potentially problematic.  It might not survive as long as your blog, or its API might change (forcing you to upgrade your blog to recover the comments), or it might start returning inconsistent or undesirable data (for example, <a href="http://twitter.com/AlexSchleber/status/1275367958">truncating result sets during peak load</a>).  More generally, there was a general sense (with which I agree) that while Twitter might be a really interesting way to discuss something, if you want to collect that discussion in one place, you really ought to be copying it there.  This has the unfortunate side-effect of obviating the cleverness of the <a href="http://bitbucket.org/dsandler/watercooler">watercooler.js implementation</a>, which is entirely client-side and therefore puts plenty of load on Twitter but none on the original author&#8217;s blog.  A future implementation should create a permanent local copy of all relevant public tweets, so that they persist as long as the antecedent article does.<sup id="fnref:COPY"><a href="#fn:COPY" rel="footnote">7</a></sup></p>

<h3>Once more unto the data, my friends</h3>

<p>Finally, if you&#8217;d like to see what you can make of all this, I&#8217;ll save you the trouble of fetching the data from the Twitter Search API: <a href="/entries/images/2009/watercooler/all.json">here is JSON</a> for the tweets used to produce the graphs above.  If you see any interesting trends in there that I didn&#8217;t catch, please share it with the class; as before, include in your message the <a href="http://twitter.com/home?status=[re:dc946u]+">TinyURL path, dc946u</a> or full URL.</p>

<div class="footnotes">
<hr />
<ol>

<li id="fn:RSS">
<p>Counting feed subscribers is known to be an inexact science (unless you <a href="http://feedburner.com">outsource</a> all your feeds). Yesterday there were 2940 <!-- 684 + 1899 + 243 + 114 --> individual requests to the various WordPress feed URLs, so assuming the conventional half-hourly refresh rate, that&#8217;s a little over 60 individual fetchers; one of those is Google, which tells me in my logs that I have about 120 subscribers there; similarly, Bloglines adds another 60, Yahoo another 160.  So, all told, I figure I&#8217;ve got around 400 readers out in RSS-land.&#160;<a href="#fnref:RSS" rev="footnote">&#8617;</a></p>
</li>

<li id="fn:TWF">
<p>Currently about <a href="http://twitter.com/dsandler/followers">500 followers</a>, which includes inactive accounts, spammers, and so on.&#160;<a href="#fnref:TWF" rev="footnote">&#8617;</a></p>
</li>

<li id="fn:ETC">
<p>This isn&#8217;t apples-to-apples, of course: there are too many confounding factors here (RSS subscribership increase; selection bias of readers; size of excerpt seen by potential commenters) to consider the 2006 and 2009 posts as control and experiment.  I&#8217;m merely pointing out, qualitatively, that this is the biggest response I&#8217;ve ever seen, by a factor of two.  One environmental similarity between the two posts: they were each Fireballed (<a href="http://daringfireball.net/linked/2006/09/12/sandler">2006</a>, <a href="http://daringfireball.net/linked/2009/02/27/dsandler-comments">2009</a>).&#160;<a href="#fnref:ETC" rev="footnote">&#8617;</a></p>
</li>

<li id="fn:HashTag">
<p>Many suggested creating a unique hashtag, which has the benefit of being presented in many Twitter frontends as a quick search for that term.  I&#8217;m mixed on this approach, mostly because I think hashtags are nerds-only tools that won&#8217;t really take hold as Twitter continues to grow past the early-adopter phase.  <code>#provemewrongfolks</code>&#160;<a href="#fnref:HashTag" rev="footnote">&#8617;</a></p>
</li>

<li id="fn:AccountPer">
<p>Several people even proposed creating a whole new Twitter account for each post, such that <code>@dsandlerdotorg_twittercomments</code> would be both unique (enforced by Twitter) and fully scoped to the post.  This seems like an abuse of Twitter, but a <a href="http://brdfdr.com">more general micropublishing system</a> that allowed third parties to arbitrarily create new endpoints might be able to handle this easily.  Worth coming back to.&#160;<a href="#fnref:AccountPer" rev="footnote">&#8617;</a></p>
</li>

<li id="fn:REPLY">
<p>In fact, some proposed using the existing <code>in_reply_to_status_id</code> field to tie the conversation together, and indeed, this would be done automatically by many clients if I asked people to respond to a single tweet instead of including a token in their message text.  Unfortunately, this wreaks havoc with messages that are in fact more directly tied to some other message—particularly a more recent tweet in the thread.  I think that both pointers, ultimately, are required: one for the <em>conversation</em> to which a message belongs, and one for the <em>messages</em> (not necessarily just one) to which a message is a direct response.&#160;<a href="#fnref:REPLY" rev="footnote">&#8617;</a></p>
</li>

<li id="fn:COPY">
<p>I did this by hand on March 5, copying the generated HTML into the end of my <a href="http://dsandler.org/wp/archives/2009/02/26/twitter-comments">original post</a>, and in so doing I truncated the “official” record of the discussion at that time.&#160;<a href="#fnref:COPY" rev="footnote">&#8617;</a></p>
</li>

</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dsandler.org/wp/archives/2009/03/15/twitter-comments-results/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Experimental: Twitter for comments</title>
		<link>http://dsandler.org/wp/archives/2009/02/26/twitter-comments</link>
		<comments>http://dsandler.org/wp/archives/2009/02/26/twitter-comments#comments</comments>
		<pubDate>Thu, 26 Feb 2009 19:58:39 +0000</pubDate>
		<dc:creator>Daniel Sandler</dc:creator>
				<category><![CDATA[notebook]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[discussion]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://dsandler.org/wp/?p=21304</guid>
		<description><![CDATA[Blog comments don't really encourage robust discussion. (The only people who look *twice* at the comments are the original author and readers with an axe to grind.) But ad hoc multi-party discussion *does* happen on Twitter. I'm experimenting with promoting Twitter to a first-class blog comments system.
]]></description>
			<content:encoded><![CDATA[<h3>Abstract</h3>

<p align="center"><a href="http://twitter.com/dsandler/status/1242411760"><img 
style="max-width: 100%;"
src="http://dsandler.org/entries/images/2009/twitter-comments2.png" border="0" /></a></p>

<p>Blog comments don&#8217;t really encourage robust discussion. (The only people who look <em>twice</em> at the comments are the original author and readers with an axe to grind.) But ad hoc multi-party discussion <em>does</em> happen on Twitter. I&#8217;m experimenting with promoting Twitter to a first-class blog comments system.</p>

<p><span id="more-21304"></span></p>

<h3>No Comment</h3>

<p>I&#8217;m not the first to notice this, but blog comments are awkward. Many excellent blogs have eschewed them for various reasons;
<a href="http://kottke.org">Jason Kottke</a> doesn&#8217;t want the <a href="http://kottke.org/07/04/the-blogger-code">babysitting chore</a> of dealing with a large, vocal community.
<a href="http://al3x.net">Alex Payne</a> doesn&#8217;t think good conversations emerge from blog comments because they encourage &#8220;hit-and-run attacks, unintelligible ramblings, and truckloads of spam.&#8221;
<a href="http://daringfireball.net">John Gruber</a> simply prefers a 
<a href="http://shawnblanc.net/2007/07/why-daring-fireball-is-comment-free/">streamlined reading environment</a>.<sup id="fnref:DF"><a href="#fn:DF" rel="footnote">1</a></sup> 
It&#8217;s not that they&#8217;re uninterested in discussion; rather, they&#8217;d prefer it happen elsewhere:</p>

<ol class="fancy">
<li><span>On your own time and property (viz., on your blog), or</span></li>
<li><span>In some neutral forum (<a href="http://reddit.com">Reddit</a>, <a href="http://twitter.com">Twitter</a>, etc.).</li>
</ol>

<p><strong>Option #1</strong>—the promise of a blogosphere criscrossed with scintillating conversation—is the reason <a href="http://en.wikipedia.org/wiki/Trackback">TrackBack</a> exists: without it, the author and readers alike have no way of knowing where on the web to find the next response. Unfortunately, because it allows untrusted parties to post links and content to your blog automatically, TrackBack is an enormous spam magnet and has therefore fallen into disuse.<sup id="fnref:TB"><a href="#fn:TB" rel="footnote">2</a></sup> A number of ad-hoc techniques replace it, exemplified by the convention of promulgating choice responses (received out-of-band, e.g. by email or IM) by appending them, simply, under the heading UPDATE.</p>

<p>A few conscientious bloggers—even those that, nominally, want you to Get Your Comments Off My Lawn—carefully comb their referrer logs for links to well-considered responses from other bloggers, which they will then compile into a “Responses” post. Twitter hacker Alex Payne, for example, recently <a href="http://al3x.net/2009/02/24/why-no-comments-more-everything-buckets.html">rounded up</a> the rebuttals to his <a href="http://al3x.net/2009/01/31/against-everything-buckets.html">“ranty”</a><sup id="fnref:RANTY"><a href="#fn:RANTY" rel="footnote">3</a></sup> article of a few weeks prior. It is his claim that, because each of those bloggers chose to respond on his own blog—taking full responsibility for his opinions under his own masthead and in front of his own readers, rather than leaving a comment &#8220;off the record&#8221; on a distant site—those perspectives were more thoughtful and more clearly articulated.</p>

<p>This leaves us with <strong>option #2</strong>: Comments in the Neutral Zone. Assuming you have a high-profile discussion-free blog<sup id="fnref:XKCD"><a href="#fn:XKCD" rel="footnote">4</a></sup> and also read Reddit, this works pretty well: your adherents and detractors have a sandbox in which to have it out, and you can <a href="http://www.reddit.com/user/xkcd">drop in occasionally</a> to poke the discussion.
Unfortunately, the stars must align for this technique to result in interesting conversation; the likelihood is that some essential piece of the conversation—either author or readers—is not looking at your shiny new Reddit thread.<sup id="fnref:KK"><a href="#fn:KK" rel="footnote">5</a></sup> In fact, the only thing that ties the group together is the original blog post, which puts us right back where we started: blog discussion, it would seem, must occur—or at least <em>appear</em>—on the blog itself.</p>

<p>But this is still insufficient, because while the ideal discussion group for a given blog is defined as a blog&#8217;s readership, we have only solved the problem in <em>space</em>, not in <em>time</em>. How often do you check the same blog post to see if there are exciting new comments? As a reader, I hardly have the time to leave a single comment, let alone check back to see if there are interesting responses. I find this to be true of readers of <a href="http://dsandler.org">dsandler.org</a> as well: it&#8217;s fruitless for me to respond to your comment with one of my own, because you&#8217;re unlikely ever to visit this post again to read it.</p>

<p>This is what I think of when Alex Payne refers to “hit-and-run attacks”—a natural side-effect of the fact that most readers will look at a blog post (and the current state of the discussion) at most once. The only people who look twice at the same blog entry&#8217;s comments are the author (who has the luxury—or compulsion—to respond to each and every one) and anyone with an <a href="http://xkcd.com/386/">axe to grind</a>. All others, if they comment at all, will leave a single comment and then never return. This is not conducive to discussion.</p>

<h3>And yet, discussion happens</h3>

<p>I&#8217;m increasingly getting feedback about blog posts on Twitter (with good reason: I mention the post on Twitter myself, explicitly inviting a conversation). For example, when I finally deployed the recent redesign of dsandler.org late last year, I <a href="http://twitter.com/dsandler/status/988879483">mentioned it</a> on Twitter (where a few people had already been <a href="http://dsandler.org/wp/archives/2008/10/31/unreadable">offering complaints</a> about my <a href="http://dsandler.org/wp/archives/2008/10/17/this-is-not-my-beautiful-blog">intentionally awful</a> interim design). 
I received a few comments on the <a href="http://dsandler.org/wp/archives/2008/11/03/iteration">blog post</a> itself, but just as many via Twitter, so I decided to (laboriously!) copy some of those messages into the text of the post (see UPDATE).</p>

<p>Wouldn&#8217;t it be nice if such a thing were done automatically? For bloggers whose controversial articles (picking on @al3x again here) spawn a lot of <a href="http://search.twitter.com/search?q=http://tinyurl.com/azn3mo">Twitter discussion</a>, could we actually promote Twitter to a first-class discussion mechanism?</p>

<h3>See below</h3>

<p>Yesterday I threw together some code to go <a href="http://search.twitter.com">search Twitter</a> for any messages including the URL of the current page and display them as if they were comments. I had <a href="http://twitter.com/dsandler/statuses/1242537968">considered</a> creating a unique keyword for each post on the fly (possibly using a hashtag, like &#8220;#dsandler_post_5&#8243;) that would string the conversation together, but the URL seems more natural (because people will put that into responses anyway, and besides, the <a href="http://tinyurl.com">TinyURL</a> version is usually every bit as short as a hashtag).</p>

<p>Blindly including the results of a search on your blog is an easy way to get spammed, of course,<sup id="fnref:SPAM"><a href="#fn:SPAM" rel="footnote">6</a></sup> so we&#8217;ll have to see how this goes. Note, however, that because the tweets are fetched by the client, they never actually appear in the blog when it&#8217;s crawled by search engines, so you can&#8217;t mess with my PageRank (or boost your own) by abusing this system—all you can do is cause grief. (So. Don&#8217;t.)</p>

<p>So, let the experiment begin: follow the link below to pre-populate a Twitter post about this entry (or simply include the URL or TinyURL in your message). Try to include the (Tiny)URL in any tweets that have to do with this post, insofar as that&#8217;s practical.</p>

<p>Oh, and: regular blog comments are turned off.</p>

<hr/>

<h3>Update</h3>

<p><strong>5 March:</strong> I&#8217;m working on a new post to document the results of this little experiment.  For now, I&#8217;m turning off the live Twitter search results and ossifying the state of the conversation as it stands today by including the results statically below.</p>

<div class="comments">
<h3><img src="http://dsandler.org/wp/wp-content/themes/dsandler2/watercooler.png" /> The Twitter watercooler</h3>
<h4>Messages <a
href="http://search.twitter.com/search?q=http%3A%2F%2Fdsandler.org%2Fwp%2Farchives%2F2009%2F02%2F26%2Ftwitter-comments+OR+d2nrsv">referencing</a> this page as of March 5<sup>th</sup> (newest at <a href="#twitter_bottom_cached">bottom</a>):</h4>

<ul id="twitter_comments_cached"><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text"><a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a> &#8211; Experimenting with using Twitter exclusively for blog comments.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1255046456">Thu, 26 Feb 2009 20:01:02 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/54222892/drinky_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/liscio">liscio</a></span> <span class="comment_text"><a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a> Very Interesting™. I also like the idea of limiting blog comments to 140 chars…</span><p class="comment_date">twitter message posted <a href="http://twitter.com/liscio/status/1255077769">Thu, 26 Feb 2009 20:08:51 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/liscio">liscio</a> Yeah, @<a href="http://twitter.com/mdietz">mdietz</a> noted that as well. My take: if you want to write more, tweet a ptr to your post. [re <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a>]</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1255092254">Thu, 26 Feb 2009 20:12:28 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/57436060/DSCN1878_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/mikeash">mikeash</a></span> <span class="comment_text"><a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a> &#8211; I think it&#8217;s a great idea but it has a major failing in that it becomes impossible to post long, thought-out com</span><p class="comment_date">twitter message posted <a href="http://twitter.com/mikeash/status/1255098394">Thu, 26 Feb 2009 20:14:00 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/86893656/Zac_Avatar_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/urbanape">urbanape</a></span> <span class="comment_text"><a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a> &#8211; I have notes from way back when on just such a system. I like the label of Twitter as Neutral Ground. Well done.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/urbanape/status/1255109539">Thu, 26 Feb 2009 20:16:45 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/mikeash">mikeash</a> <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a> Ha, true. But you could certainly link to a thoughtful rebuttal on your own blog (making @<a href="http://twitter.com/al3x">al3x</a> happy)</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1255127824">Thu, 26 Feb 2009 20:21:12 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/boredzo">boredzo</a> Correct! You need something to hook the responses together. What better than the URL? [<a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a>]</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1255130039">Thu, 26 Feb 2009 20:21:42 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/36659622/me_circa_2007_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/adamrice">adamrice</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> suggests twitter for blog comments <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a> . Would need to search *all* URL shorteners, like tr.im, <a href="undefinedbit.lyundefined">bit.ly</a>, etc</span><p class="comment_date">twitter message posted <a href="http://twitter.com/adamrice/status/1255136467">Thu, 26 Feb 2009 20:23:20 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/52192204/me_240x180_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/stadler">stadler</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> I sent you an email with my comments, since they won&#8217;t fit here and I&#8217;m committed to ignoring my blog. [<a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a>]</span><p class="comment_date">twitter message posted <a href="http://twitter.com/stadler/status/1255148741">Thu, 26 Feb 2009 20:26:23 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/63645657/Red_Shirt__Mirrored__normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/brettp">brettp</a></span> <span class="comment_text"><a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a> &#8211; Keeping responses brief is my favorite part of the twittercomment idea.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/brettp/status/1255155178">Thu, 26 Feb 2009 20:27:58 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/stadler">stadler</a> <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a> &#8211; I figure you&#8217;ll either see the conversation on Twitter or the blog. Jump in anywhere.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1255262583">Thu, 26 Feb 2009 20:54:27 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/adamrice">adamrice</a> You&#8217;re right, although since Twitter uses Tiny I figured that would be most canonical. [<a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a>]</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1255264704">Thu, 26 Feb 2009 20:54:57 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/82585424/n751603866_164131_5511_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dangerdave">dangerdave</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> For longer comments, users could link to separate posts and your plugin could expand &#8216;em inline. [<a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a>]</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dangerdave/status/1255347448">Thu, 26 Feb 2009 21:15:25 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/82585424/n751603866_164131_5511_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dangerdave">dangerdave</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> However, the conversation is fractured. The only way to see the whole thing is to visit your blog. [<a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a>]</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dangerdave/status/1255358982">Thu, 26 Feb 2009 21:18:13 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/dangerdave">dangerdave</a> I hadn&#8217;t thought of expanding response URLs inline. However: scraping URLs on the client = awkward. [<a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a>]</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1255362070">Thu, 26 Feb 2009 21:18:59 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/68233582/OK_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/boredzo">boredzo</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> Suppose you allowed the TinyURL ID by itself? #d2nrsv</span><p class="comment_date">twitter message posted <a href="http://twitter.com/boredzo/status/1255364637">Thu, 26 Feb 2009 21:19:37 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/82585424/n751603866_164131_5511_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dangerdave">dangerdave</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> True, quite awkward to do in practice&#8230; #<a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/dangerdave/status/1255374951">Thu, 26 Feb 2009 21:22:04 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/dangerdave">dangerdave</a> If you&#8217;re just picking up the conversation, yes, there has to be a single place to go to catch up. <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1255381270">Thu, 26 Feb 2009 21:23:37 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/boredzo">boredzo</a> I had been hoping to avoid using a (gensym); doubly so to let TinyURL choose it. Yet: that might work. #d2nrsv</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1255401841">Thu, 26 Feb 2009 21:28:44 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/52192204/me_240x180_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/stadler">stadler</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> But to follow I either refresh your blog or track results for the tinyURL on <a href="undefinedsearch.twitter.comundefined">search.twitter.com</a> , right? <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/stadler/status/1255402924">Thu, 26 Feb 2009 21:29:01 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/52192204/me_240x180_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/stadler">stadler</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> &#8230;Both of which duplicate the initial problem (people who don&#8217;t want to revisit pages to converse).  <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/stadler/status/1255409312">Thu, 26 Feb 2009 21:30:34 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/stadler">stadler</a> (1) Twitter search for the conversation (2) visit the blog (3) watch bits of conversation from your Twitter contacts fly by #d2nrsv</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1255415988">Thu, 26 Feb 2009 21:32:09 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/stadler">stadler</a> Ah! But If you&#8217;re on Twitter, you&#8217;ll see my @<a href="http://twitter.com/-replies">-replies</a> and can continue the conversation. No need to revisit the blog. [d2nrsv]</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1255421241">Thu, 26 Feb 2009 21:33:26 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/52192204/me_240x180_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/stadler">stadler</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> (It&#8217;s fascinating watching you tweak that Javascript bit in between replies.) #d2nrsv</span><p class="comment_date">twitter message posted <a href="http://twitter.com/stadler/status/1255427480">Thu, 26 Feb 2009 21:35:01 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/52192204/me_240x180_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/stadler">stadler</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> So a lazy person (orig. problem) will only see conversation btwn himself, you, and any common friends. #d2nrsv</span><p class="comment_date">twitter message posted <a href="http://twitter.com/stadler/status/1255431272">Thu, 26 Feb 2009 21:35:58 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">Note that with my FETHR research project, replies could be addressed to the blog itself, obviating all this [d2nrsv] nonsense.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1255434742">Thu, 26 Feb 2009 21:36:50 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/52192204/me_240x180_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/stadler">stadler</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> I also hope for you that your TinyURL hash never becomes a popular, semantically meaningful sequence. #d2nrsv</span><p class="comment_date">twitter message posted <a href="http://twitter.com/stadler/status/1255439290">Thu, 26 Feb 2009 21:37:59 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">Whoops! Forgot a [d2nrsv] on the last tweet. So that&#8217;s a problem too. :)</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1255468159">Thu, 26 Feb 2009 21:45:11 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">Experimenting with alternative blog-reply tokens. [re: d2nrsv]</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1255474314">Thu, 26 Feb 2009 21:46:42 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">Reversed the order of Twitter comments on <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a> . (Newest-on-top is jarring for discussion.)</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1255491020">Thu, 26 Feb 2009 21:50:49 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">Also realized that if I&#8217;m searching for d2nrsv, I don&#8217;t also need to search for <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a>. Redundancy: eliminated!</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1255494165">Thu, 26 Feb 2009 21:51:36 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/82255081/n658585400_2726456_7496_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/mdietz">mdietz</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> Re:FETHR. If we direct comments to the blog, how do you divide discussion among two posts each with their own reply stream?#d2nrsv</span><p class="comment_date">twitter message posted <a href="http://twitter.com/mdietz/status/1255947695">Thu, 26 Feb 2009 23:52:47 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/71063756/P1133955_Twitter_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/ccheney">ccheney</a></span> <span class="comment_text"><a href="undefineddsandler.orgundefined">dsandler.org</a> &#8211; &#8220;Experimental: Twitter for blog comments&#8221; <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/ccheney/status/1256993033">Fri, 27 Feb 2009 05:26:02 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/86893656/Zac_Avatar_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/urbanape">urbanape</a></span> <span class="comment_text">[re: d2nrsv] Two other things not mentioned in your blog post: you&#8217;ve eliminated anonymous commenters! And cut down on redundant auth creds.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/urbanape/status/1258802960">Fri, 27 Feb 2009 17:09:47 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/gruber">gruber</a> Absolutely right about d2nrsv looking like gibberish. The full TinyURL is more self-explanatory but eats up more chars.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1259485969">Fri, 27 Feb 2009 20:05:42 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/gruber">gruber</a> [re:d2nrsv] I think the right way to go is to allow a reference URL on the side, truly metadata, not counted in the 140.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1259489879">Fri, 27 Feb 2009 20:06:43 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/80088830/fmhgirl-pink_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/irfaan">irfaan</a></span> <span class="comment_text"><a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a> Use twitter in place of comments! Pre-populated twitter message + own comment.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/irfaan/status/1259491856">Fri, 27 Feb 2009 20:07:14 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/80088830/fmhgirl-pink_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/irfaan">irfaan</a></span> <span class="comment_text">[re: d2nrsv] test</span><p class="comment_date">twitter message posted <a href="http://twitter.com/irfaan/status/1259493721">Fri, 27 Feb 2009 20:07:42 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">[re:d2nrsv] Note that there&#8217;s precedent in Twitter for extra-140 metadata: timestamp; author; in_reply_to_status_id; etc.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1259503473">Fri, 27 Feb 2009 20:10:15 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/63138870/DF_Star_Logo_1__normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/daring_fireball">daring_fireball</a></span> <span class="comment_text">Daniel Sandler Experiments With Using Twitter for Weblog Comments <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/daring_fireball/status/1259525825">Fri, 27 Feb 2009 20:16:06 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/urbanape">urbanape</a> has an idea: use existing hidden Twitter metadata (in_reply_to_status_id) to thread a conversation together. [d2nrsv]</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1259542782">Fri, 27 Feb 2009 20:20:21 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/19455682/nate_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/nsteiner">nsteiner</a></span> <span class="comment_text">[re: d2nrsv] comments via twitter is interesting, but produces double context confusion when tweets are imported into fb. Hi dad.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/nsteiner/status/1259561472">Fri, 27 Feb 2009 20:25:12 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/52560869/wsQ_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/jeffehobbs">jeffehobbs</a></span> <span class="comment_text">[re: d2nrsv] testing out Twitter comments as blog comments. We are through the looking glass here people  <a href="http://bit.ly/11wjGR">http://bit.ly/11wjGR</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/jeffehobbs/status/1259569919">Fri, 27 Feb 2009 20:27:27 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72077296/bukitar72dpi_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/KentFackenthall">KentFackenthall</a></span> <span class="comment_text">[re: d2nrsv] A killer idea. Hope you can make it work&#8230;</span><p class="comment_date">twitter message posted <a href="http://twitter.com/KentFackenthall/status/1259574657">Fri, 27 Feb 2009 20:28:39 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/87205511/piccy_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/entelarust">entelarust</a></span> <span class="comment_text">RT @<a href="http://twitter.com/schill">schill</a>: Interesting idea: Using twitter for blog comments. <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/entelarust/status/1259586758">Fri, 27 Feb 2009 20:31:43 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/75968481/Head_09_eyes_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/someToast">someToast</a></span> <span class="comment_text">@<a href="http://twitter.com/d2nrsv">d2nrsv</a> You could @<a href="http://twitter.com/"></a> the code to pick up the comment but prevent Facebook import. Unlikely that those codes would be actual Twitter accounts.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/someToast/status/1259623505">Fri, 27 Feb 2009 20:41:13 +0000</a></p></li><li><span class="comment_author"><img src="http://static.twitter.com/images/default_profile_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/myfeed">myfeed</a></span> <span class="comment_text">DF Daniel Sandler Experiments With Using Twitter for Weblog Comments: 
It’s an interesting idea, but the.. <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/myfeed/status/1259631528">Fri, 27 Feb 2009 20:43:22 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/52359905/twitter_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/gerwitz">gerwitz</a></span> <span class="comment_text">[re: d2nrsv] in_reply_to_status_id is definitely the way to go, you just need to tweet a post to obtain a status ID before opening comments.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/gerwitz/status/1259642816">Fri, 27 Feb 2009 20:46:15 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/57487269/portis_j_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/Snorfalorpagus">Snorfalorpagus</a></span> <span class="comment_text">I really like this idea. <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/Snorfalorpagus/status/1259644310">Fri, 27 Feb 2009 20:46:39 +0000</a></p></li><li><span class="comment_author"><img src="http://static.twitter.com/images/default_profile_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/AdamEngstFeeds">AdamEngstFeeds</a></span> <span class="comment_text">Daring Fireball: Daniel Sandler Experiments With Using Twitter for Weblog Comments: 
It’s .. <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/AdamEngstFeeds/status/1259646264">Fri, 27 Feb 2009 20:47:10 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/55627239/Twitter-icon-for-me_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/nvalvo">nvalvo</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> might have just invented the internet. This is a *fascinating* idea. <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/nvalvo/status/1259674095">Fri, 27 Feb 2009 20:54:15 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/58363916/Clipboard05_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/ReactorBoy">ReactorBoy</a></span> <span class="comment_text">@<a href="http://twitter.com/Scobleizer">Scobleizer</a> Experimental: Twitter for blog comment system &#8211; <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/ReactorBoy/status/1259681104">Fri, 27 Feb 2009 20:56:02 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/35935382/IMG_6215_normal.JPG" class="avatar" style="height: 32px;"> <a href="http://twitter.com/adamengst">adamengst</a></span> <span class="comment_text">Fascinating experiment with using Twitter for blog comments. I don&#8217;t think it will catch on but it&#8217;s good thinking <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/adamengst/status/1259700843">Fri, 27 Feb 2009 21:01:07 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/52023489/gold_avatar_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/milaniliev">milaniliev</a></span> <span class="comment_text">@<a href="http://twitter.com/sdandler">sdandler</a> Will it eventually allow non-tinyurl expansions? d2nrsv</span><p class="comment_date">twitter message posted <a href="http://twitter.com/milaniliev/status/1259702887">Fri, 27 Feb 2009 21:01:36 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/54446830/me_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dummied">dummied</a></span> <span class="comment_text">I was just working on something similar using <a href="undefinedbit.lyundefined">bit.ly</a> for a reworked blog platform <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/dummied/status/1259718104">Fri, 27 Feb 2009 21:05:30 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/86959921/Staff_510_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/TimothyArcher">TimothyArcher</a></span> <span class="comment_text">RT @<a href="http://twitter.com/adamengst">adamengst</a> Fascinating experiment with using Twitter for blog comments. <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/TimothyArcher/status/1259718780">Fri, 27 Feb 2009 21:05:41 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/38059352/gravatar_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/truebluetitan">truebluetitan</a></span> <span class="comment_text">RT @<a href="http://twitter.com/schill">schill</a>: Interesting idea: Using twitter for blog comments. <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/truebluetitan/status/1259719343">Fri, 27 Feb 2009 21:05:50 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/87164091/SNV80285_normal.JPG" class="avatar" style="height: 32px;"> <a href="http://twitter.com/richardlai">richardlai</a></span> <span class="comment_text">RT @<a href="http://twitter.com/adamengst">adamengst</a>: Fascinating experiment with using Twitter for blog comments. I don&#8217;t think it will catch on but&#8230; <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/richardlai/status/1259723668">Fri, 27 Feb 2009 21:06:57 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/milaniliev">milaniliev</a> [re:d2nrsv] Too many URL-shorteners to include them all. I picked Tiny b/c it&#8217;s what Twitter uses. Definitely a limitation.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1259724758">Fri, 27 Feb 2009 21:07:14 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">[re:d2nrsv] Thanks for all the suggestions and feedback, folks. I&#8217;ll continue tweaking (and pondering how this fits into FETHR research).</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1259730332">Fri, 27 Feb 2009 21:08:41 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/79573598/HeadShot_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/shennyg">shennyg</a></span> <span class="comment_text">[re: d2nrsv] the key needs a better way to be create instead of the random tinyURL ending, might as well send the whole link each time</span><p class="comment_date">twitter message posted <a href="http://twitter.com/shennyg/status/1259740827">Fri, 27 Feb 2009 21:11:25 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/65699808/User_4617_thumb_1_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/phogasmic">phogasmic</a></span> <span class="comment_text">[re: d2nrsv] this is a great idea, but what if I want to post something long. I guess I could post in my own blog, if I had one.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/phogasmic/status/1259749394">Fri, 27 Feb 2009 21:13:41 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/68617495/avatar2_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/andykant">andykant</a></span> <span class="comment_text">Cool idea to use Twitter for blog comments, seems like a better solution for actual discussion <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/andykant/status/1259751226">Fri, 27 Feb 2009 21:14:10 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/shennyg">shennyg</a> That works too, but it&#8217;s quite verbose. e.g.: <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1259752107">Fri, 27 Feb 2009 21:14:25 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/87954901/o_superman_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/flatluigi">flatluigi</a></span> <span class="comment_text">Interesting: Using twitter for blog comments. <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/flatluigi/status/1259758153">Fri, 27 Feb 2009 21:15:59 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/65699808/User_4617_thumb_1_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/phogasmic">phogasmic</a></span> <span class="comment_text">[re: d2nrsv]  absolutely brilliant though, I think this can catch on</span><p class="comment_date">twitter message posted <a href="http://twitter.com/phogasmic/status/1259761416">Fri, 27 Feb 2009 21:16:49 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/phogasmic">phogasmic</a> Yes, and you could then point to your longer response via a Twitter post (along with a [re:d2nrsv] token, e.g.).</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1259766497">Fri, 27 Feb 2009 21:18:10 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/chockenberry">chockenberry</a> [re:d2nrsv] Yeah, i_r_t_s_i is more an example of how this could be done than a sound mechanism for doing it.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1259768361">Fri, 27 Feb 2009 21:18:41 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/68617495/avatar2_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/andykant">andykant</a></span> <span class="comment_text">[re:d2nrsv] I would probably inject a seed in my Twitter feed per blog post, using the reply-&gt;status and a spider mechanism to get comments</span><p class="comment_date">twitter message posted <a href="http://twitter.com/andykant/status/1259777394">Fri, 27 Feb 2009 21:21:00 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/82385288/16f453a_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/wpeng">wpeng</a></span> <span class="comment_text">[re: d2nrsv] twittering blog comments  http://is.gd/l8R0 while interesting, the char limit only further promotes &#8220;hit-and-run&#8221; comments</span><p class="comment_date">twitter message posted <a href="http://twitter.com/wpeng/status/1259778913">Fri, 27 Feb 2009 21:21:25 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/82385288/16f453a_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/wpeng">wpeng</a></span> <span class="comment_text">[d2nrsv] twittering blog comments http://is.gd/l8R0 while interesting, the char limit only further promotes &#8220;hit-and-run&#8221; comments</span><p class="comment_date">twitter message posted <a href="http://twitter.com/wpeng/status/1259783882">Fri, 27 Feb 2009 21:22:40 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/31629702/HPIM0002_1_normal.JPG" class="avatar" style="height: 32px;"> <a href="http://twitter.com/pxt">pxt</a></span> <span class="comment_text">[re: d2nrsv] It&#8217;s an interesting idea, can the rest of us grab the code and give it a whirl?</span><p class="comment_date">twitter message posted <a href="http://twitter.com/pxt/status/1259784906">Fri, 27 Feb 2009 21:22:58 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/55627239/Twitter-icon-for-me_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/nvalvo">nvalvo</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> [re: d2nrsv] The next problem is filtering out the tweets who are linking w/o much comment. Is that possible or even desirable?</span><p class="comment_date">twitter message posted <a href="http://twitter.com/nvalvo/status/1259793766">Fri, 27 Feb 2009 21:25:21 +0000</a></p></li><li><span class="comment_author"><img src="http://static.twitter.com/images/default_profile_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/atebits_blog">atebits_blog</a></span> <span class="comment_text">Attempting to set up something similar to <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a> (via @<a href="http://twitter.com/dsandler">dsandler</a>)</span><p class="comment_date">twitter message posted <a href="http://twitter.com/atebits_blog/status/1259794573">Fri, 27 Feb 2009 21:25:34 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/77733284/Ray_Gift_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/raguilera">raguilera</a></span> <span class="comment_text">[re: d2nrsv] Twitter as blog comment mechanism. Very interesting. <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/raguilera/status/1259799341">Fri, 27 Feb 2009 21:26:51 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/pxt">pxt</a> [re:d2nrsv] You can View Source and see how it works right now, but I&#8217;ll be putting it on github or bitbucket next week.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1259800284">Fri, 27 Feb 2009 21:27:06 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/51434640/DSCF0599_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/aurynn">aurynn</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> what&#8217;s [re:d2nrsv] ?</span><p class="comment_date">twitter message posted <a href="http://twitter.com/aurynn/status/1259803639">Fri, 27 Feb 2009 21:27:59 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/aurynn">aurynn</a> see <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1259810920">Fri, 27 Feb 2009 21:29:55 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/58454137/goofy_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/somegeekintn">somegeekintn</a></span> <span class="comment_text">[re: d2nrsv] How about FriendFeed too? I believe it can handle longer comments and aggregate more sources? Haven&#8217;t looked at the API though.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/somegeekintn/status/1259827661">Fri, 27 Feb 2009 21:34:13 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/52023489/gold_avatar_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/milaniliev">milaniliev</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> I was thinking more outrageous, like actually following the URL. (re: <a href="undefinedtinyurl.com/d2nrsv">tinyurl.com/d2nrsv</a> &#8211; because it looks weird, see @<a href="http://twitter.com/aurynn">aurynn</a> :)</span><p class="comment_date">twitter message posted <a href="http://twitter.com/milaniliev/status/1259830239">Fri, 27 Feb 2009 21:34:53 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/58454137/goofy_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/somegeekintn">somegeekintn</a></span> <span class="comment_text">@<a href="http://twitter.com/davedelaney">davedelaney</a> You might find this interesting as well. Matter of fact I know you will: <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/somegeekintn/status/1259857246">Fri, 27 Feb 2009 21:41:55 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/65699808/User_4617_thumb_1_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/phogasmic">phogasmic</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> [re:d2nrsv], the more I think about this, its going to be huge. I know they would love it where I work. please make it easy to add</span><p class="comment_date">twitter message posted <a href="http://twitter.com/phogasmic/status/1259867560">Fri, 27 Feb 2009 21:44:33 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/82585424/n751603866_164131_5511_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dangerdave">dangerdave</a></span> <span class="comment_text">[d2nrsv] waiting for the text &#8220;d2nrsv&#8221; to become one of <a href="undefinedsearch.twitter.comundefined">search.twitter.com</a>&#8217;s hot topics. :-)</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dangerdave/status/1259873665">Fri, 27 Feb 2009 21:46:03 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/65699808/User_4617_thumb_1_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/phogasmic">phogasmic</a></span> <span class="comment_text">[re:d2nrsv]  @<a href="http://twitter.com/gruber">gruber</a> Twitter should work on a way to not include metadeta like hashes etc.. in character counts hope its on their map.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/phogasmic/status/1259891307">Fri, 27 Feb 2009 21:50:35 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/77209909/information_small_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/leftspin">leftspin</a></span> <span class="comment_text"><a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a> look ma no comment!</span><p class="comment_date">twitter message posted <a href="http://twitter.com/leftspin/status/1259893589">Fri, 27 Feb 2009 21:51:10 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/55702942/Photo_5_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/brookr">brookr</a></span> <span class="comment_text">I was JUST designing a system in my head to do the same thing @<a href="http://twitter.com/dsandler">dsandler</a> suggests here: <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/brookr/status/1259894880">Fri, 27 Feb 2009 21:51:29 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/65699808/User_4617_thumb_1_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/phogasmic">phogasmic</a></span> <span class="comment_text">[re: d2nrsv]  @<a href="http://twitter.com/nsteiner">nsteiner</a> you should use the FB Selective Twitter app, that way you can choose which ones update your status.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/phogasmic/status/1259906785">Fri, 27 Feb 2009 21:54:35 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/65699808/User_4617_thumb_1_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/phogasmic">phogasmic</a></span> <span class="comment_text">Retweet @<a href="http://twitter.com/daring_fireball">daring_fireball</a> Daniel Sandler Experiments With Using Twitter for Weblog Comments <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/phogasmic/status/1259917111">Fri, 27 Feb 2009 21:57:18 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/64189086/loadedafro_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/John_Muir">John_Muir</a></span> <span class="comment_text">[re:d2nrsv] Listen to the Chock. New Twitter metadata specifically for this could be a winning idea. Could be a big thing for the service!</span><p class="comment_date">twitter message posted <a href="http://twitter.com/John_Muir/status/1259918314">Fri, 27 Feb 2009 21:57:36 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/85852094/chockflower_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/chockenberry">chockenberry</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> [re:d2nrsv] A better way would be to search for replies to a &#8220;new blog post&#8221; tweet. If only we had this: <a href="http://bit.ly/Vn19Q">http://bit.ly/Vn19Q</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/chockenberry/status/1259922860">Fri, 27 Feb 2009 21:58:48 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/77509851/twitter_icon_normal_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/strngwys">strngwys</a></span> <span class="comment_text">[re: d2nrsv] interesting, will be even more so once it has a call to action to launch or populate twitter apps.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/strngwys/status/1259923217">Fri, 27 Feb 2009 21:58:54 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/65699808/User_4617_thumb_1_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/phogasmic">phogasmic</a></span> <span class="comment_text">[re: d2nrsv] @<a href="http://twitter.com/dsandler">dsandler</a> maybe you shouldn&#8217;t search for the tiny url, you are also picking up RTs, and tweets about your post.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/phogasmic/status/1259931336">Fri, 27 Feb 2009 22:00:55 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/79573598/HeadShot_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/shennyg">shennyg</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> I am saying the tinyurl &gt; random char&#8217;s it will allow people who are interested to see the post easily d2nrsv</span><p class="comment_date">twitter message posted <a href="http://twitter.com/shennyg/status/1260008176">Fri, 27 Feb 2009 22:21:16 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/84687751/daves-eyes-blue_bigger_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/davedelaney">davedelaney</a></span> <span class="comment_text">Why not use @<a href="http://twitter.com/disqus">disqus</a> to manage your blog comments? You can export them to back up, you can&#8217;t do that well with Twitter. #d2nrsv</span><p class="comment_date">twitter message posted <a href="http://twitter.com/davedelaney/status/1260082501">Fri, 27 Feb 2009 22:41:44 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/84687751/daves-eyes-blue_bigger_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/davedelaney">davedelaney</a></span> <span class="comment_text">@<a href="http://twitter.com/somegeekintn">somegeekintn</a> Very interesting, but I think just commenting on Twitter rather than a blog will have negative effects. #d2nrsv</span><p class="comment_date">twitter message posted <a href="http://twitter.com/davedelaney/status/1260084856">Fri, 27 Feb 2009 22:42:24 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/84687751/daves-eyes-blue_bigger_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/davedelaney">davedelaney</a></span> <span class="comment_text">@<a href="http://twitter.com/somegeekintn">somegeekintn</a> You lose credit, Google juice, and a decent ability to back up the comments. #d2nrsv</span><p class="comment_date">twitter message posted <a href="http://twitter.com/davedelaney/status/1260087423">Fri, 27 Feb 2009 22:43:09 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/18573932/shreddd_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/shreddd">shreddd</a></span> <span class="comment_text">[re: d2nrsv] i like this a lot! this could save the intarwubs from the sorry state of comment threads.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/shreddd/status/1260171494">Fri, 27 Feb 2009 23:07:31 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/58454137/goofy_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/somegeekintn">somegeekintn</a></span> <span class="comment_text">@<a href="http://twitter.com/davedelaney">davedelaney</a> I think @<a href="http://twitter.com/dsandler">dsandler</a> addressed some of those concerns in his post. There are problems, but it is an interesting start #d2nrsv</span><p class="comment_date">twitter message posted <a href="http://twitter.com/somegeekintn/status/1260209858">Fri, 27 Feb 2009 23:19:19 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/74639752/zomgme_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/panache">panache</a></span> <span class="comment_text">Twitter as platform for blog comments <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/panache/status/1260268824">Fri, 27 Feb 2009 23:37:51 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/33422412/jackal48_normal.gif" class="avatar" style="height: 32px;"> <a href="http://twitter.com/CarlosPero">CarlosPero</a></span> <span class="comment_text">Interesting post about blog comments from @<a href="http://twitter.com/dsandler">dsandler</a>: <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/CarlosPero/status/1260328857">Fri, 27 Feb 2009 23:57:23 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/33422412/jackal48_normal.gif" class="avatar" style="height: 32px;"> <a href="http://twitter.com/CarlosPero">CarlosPero</a></span> <span class="comment_text">[re: d2nrsv] I&#8217;m also wondering along with @<a href="http://twitter.com/davedelany">davedelany</a> why @<a href="http://twitter.com/disqus">disqus</a> isn&#8217;t good enough for a neutral-ground Javascript implementation.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/CarlosPero/status/1260361090">Sat, 28 Feb 2009 00:07:33 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/63360967/P1060320_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/jamesandrews">jamesandrews</a></span> <span class="comment_text">Twitter comments: a great supplement to regular comments, rather than a pure replacement (cf. trackbacks). <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/jamesandrews/status/1260433461">Sat, 28 Feb 2009 00:32:04 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/84291901/Ryan_avatar_small_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/rprwhite">rprwhite</a></span> <span class="comment_text">[re: d2nrsv] I really like this idea. If reply_to_status_id was used would you still get replies to replies?
If not, stick with [re: #]</span><p class="comment_date">twitter message posted <a href="http://twitter.com/rprwhite/status/1260578089">Sat, 28 Feb 2009 01:23:24 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/36265352/Austin_Icon_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/halostatue">halostatue</a></span> <span class="comment_text">[re: d2nrsv] I think that @<a href="http://twitter.com/dsandler">dsandler</a> is experimenting with something interesting here, but 140b will lead to soundbite comments.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/halostatue/status/1260654662">Sat, 28 Feb 2009 01:51:47 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/36265352/Austin_Icon_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/halostatue">halostatue</a></span> <span class="comment_text">[re: d2nrsv] We decry soundbites in the media, why wouldn&#8217;t we decry them on blog comments?</span><p class="comment_date">twitter message posted <a href="http://twitter.com/halostatue/status/1260656053">Sat, 28 Feb 2009 01:52:20 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/86244768/twitteravatar_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/ivan_filios">ivan_filios</a></span> <span class="comment_text">Experimental: Twitter for comments <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a> via @<a href="http://twitter.com/ShareThis">ShareThis</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/ivan_filios/status/1260709614">Sat, 28 Feb 2009 02:11:54 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/CarlosPero">CarlosPero</a> @<a href="http://twitter.com/davedelany">davedelany</a> [re: d2nrsv] How does @<a href="http://twitter.com/disqus">disqus</a> help the one-visit-only problem (i.e., finding out about responses to your comment)?</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1260844896">Sat, 28 Feb 2009 03:00:23 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/davedelany">davedelany</a> [re: d2nrsv] I agree about the lack of backing-up of comments being a problem. (You could do it server-side and capture them.)</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1260847862">Sat, 28 Feb 2009 03:01:24 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/chockenberry">chockenberry</a> [re: d2nrsv] Summarizing that feature: &#8220;Find all descendants of post X.&#8221; Yeah, that would help.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1260849347">Sat, 28 Feb 2009 03:01:54 +0000</a></p></li><li><span class="comment_author"><img src="http://static.twitter.com/images/default_profile_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/rahmcoff">rahmcoff</a></span> <span class="comment_text"><a href="undefinedtinyurl.com/d2nrsv">tinyurl.com/d2nrsv</a> has too many comments because many people tweet “check this out”. Twitter itself needs to support it for the idea to work</span><p class="comment_date">twitter message posted <a href="http://twitter.com/rahmcoff/status/1260858962">Sat, 28 Feb 2009 03:05:19 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/29960402/90ccw-default_profile_image_normal_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/tompreuss">tompreuss</a></span> <span class="comment_text">[re: d2nrsv] Don&#8217;t forget about <a href="http://dsandler.org/wp/comments/feed">dsandler.org/…</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/tompreuss/status/1260875618">Sat, 28 Feb 2009 03:11:25 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/tompreuss">tompreuss</a> [re: d2nrsv] Do you subscribe to the comments RSS feeds of every blog you comment on?</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1260929167">Sat, 28 Feb 2009 03:31:11 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/rahmcoff">rahmcoff</a> [re: d2nrsv] I had thought it would be cool to grab any random tweet that references the post, hence using the TinyURL fragment.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1260932718">Sat, 28 Feb 2009 03:32:26 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/rahmcoff">rahmcoff</a> [re: d2nrsv] However, you&#8217;re right that the &#8220;check this out&#8221; tweets are noise. Best reason yet to ditch it.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1260936907">Sat, 28 Feb 2009 03:33:59 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/29960402/90ccw-default_profile_image_normal_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/tompreuss">tompreuss</a></span> <span class="comment_text">[re: d2nrsv] Of course not. Just sayin&#8217;, is all. Someone must subscribe to them though, right?  Maybe?  Probably not.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/tompreuss/status/1260949151">Sat, 28 Feb 2009 03:38:29 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">[re: <a href="undefinedtinyurl.com/d2nrsv">tinyurl.com/d2nrsv</a>] OTOH, the TinyURL helps newcomers to the discussion on Twitter orient themselves. Really: need more infrastructure.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1260957147">Sat, 28 Feb 2009 03:41:32 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/82255081/n658585400_2726456_7496_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/mdietz">mdietz</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> [re:d2nrsv]This would be easier if you could create a @<a href="http://twitter.com/d2nrsv">d2nrsv</a> alias that forwards to @<a href="http://twitter.com/dsandler">dsandler</a>. Less check this out noise that way</span><p class="comment_date">twitter message posted <a href="http://twitter.com/mdietz/status/1261058172">Sat, 28 Feb 2009 04:20:43 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/77559119/Happy_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/aditya">aditya</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> How do you take into consideration multiple URLs for the same post due to multiple URL shorteners? [d2nrsv]</span><p class="comment_date">twitter message posted <a href="http://twitter.com/aditya/status/1261265206">Sat, 28 Feb 2009 05:52:36 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/aditya">aditya</a> I don&#8217;t, currently. Leaning toward a different approach now due to problems with tinyurl et al; see thread at <a href="undefinedtinyurl.com/d2nrsv">tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1261281000">Sat, 28 Feb 2009 06:00:22 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/77559119/Happy_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/aditya">aditya</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> A randomly generated short hashtag (like #d2nrsv) might be a good way to go :) Will keep an eye on proceedings.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/aditya/status/1261291695">Sat, 28 Feb 2009 06:05:37 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/65890695/Photo_18_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/SeoxyS">SeoxyS</a></span> <span class="comment_text">This makes sense, and I&#8217;ve myself already been considering it, but it has its fair share of flaws. <a href="undefinedtinyurl.com/d2nrsv">tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/SeoxyS/status/1261364620">Sat, 28 Feb 2009 06:44:51 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/70670479/me_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/bendodson">bendodson</a></span> <span class="comment_text"><a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a> &#8211; Good idea but has been done with TweetBacks (<a href="http://tinyurl.com/8bg9bh">http://tinyurl.com/8bg9bh</a>) should compliment comments, not replace</span><p class="comment_date">twitter message posted <a href="http://twitter.com/bendodson/status/1261772093">Sat, 28 Feb 2009 11:23:48 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/70817398/Picture_5_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/ahigherugliness">ahigherugliness</a></span> <span class="comment_text">not a bad idea, this <a href="undefinedtinyurl.com/d2nrsv">tinyurl.com/d2nrsv</a> but aren&#8217;t Disqus and intense-debate trying to solve the same issues?</span><p class="comment_date">twitter message posted <a href="http://twitter.com/ahigherugliness/status/1261776152">Sat, 28 Feb 2009 11:26:49 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">RT @<a href="http://twitter.com/bendodson">bendodson</a> [d2nrsv] Good idea but has been done with TweetBacks (<a href="http://tinyurl.com/8bg9bh">http://tinyurl.com/8bg9bh</a>) should compliment comments, not replace</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1262115195">Sat, 28 Feb 2009 14:36:26 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">[re:d2nrsv] I hadn&#8217;t seen or heard of TweetBacks before—sounds like they take the &#8220;rendezvous on the URL&#8221; approach as well.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1262117681">Sat, 28 Feb 2009 14:37:29 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">[re:d2nrsv] The flaw, as we have discussed here, is result = &#8220;Hey look at this&#8221; links. Noise, not conversation. Still, prior art (Jan 09).</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1262121549">Sat, 28 Feb 2009 14:39:14 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">&#8220;I joined Twitter just so I could keep up with you.&#8221; —@<a href="http://twitter.com/htowninsomniac">htowninsomniac</a> [As Lars Kasper noted by email, not everyone is on Twitter.] d2nrsv</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1262127868">Sat, 28 Feb 2009 14:42:01 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/61590569/avatar_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/jxpx777">jxpx777</a></span> <span class="comment_text">I think specifying the twitter status id that comments need to reply to will filter out some of the junk. [d2nrsv]</span><p class="comment_date">twitter message posted <a href="http://twitter.com/jxpx777/status/1262205120">Sat, 28 Feb 2009 15:12:30 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/61590569/avatar_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/jxpx777">jxpx777</a></span> <span class="comment_text">Can one set reply_to_status_id to protected updates? Could create a protected account&#8217;s statuses as the starting point. [d2nrsv]</span><p class="comment_date">twitter message posted <a href="http://twitter.com/jxpx777/status/1262212450">Sat, 28 Feb 2009 15:15:21 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/66012580/screenshot_04_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/theblogpreneur">theblogpreneur</a></span> <span class="comment_text">Experimental: Twitter for comments <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/theblogpreneur/status/1262241193">Sat, 28 Feb 2009 15:26:08 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/37522092/353632283_96_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/blogsir">blogsir</a></span> <span class="comment_text">[Popular blogging] Experimental: Twitter for comments <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/blogsir/status/1262310190">Sat, 28 Feb 2009 15:51:21 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/61017022/hattah_normal.gif" class="avatar" style="height: 32px;"> <a href="http://twitter.com/CatoTN">CatoTN</a></span> <span class="comment_text">Integrating Twitter and blogs: a win-win? <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/CatoTN/status/1262504597">Sat, 28 Feb 2009 16:58:57 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/52210231/fbrunel-viaduc-full_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/fbrunel">fbrunel</a></span> <span class="comment_text">@<a href="http://twitter.com/chockenberry">chockenberry</a> @<a href="http://twitter.com/dsandler">dsandler</a> [re:d2nrsv] I agree, Twitter really lacks this Conversation API.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/fbrunel/status/1262524774">Sat, 28 Feb 2009 17:05:22 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/52210231/fbrunel-viaduc-full_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/fbrunel">fbrunel</a></span> <span class="comment_text">Experimental use of Twitter for blog comments &#8211; <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a> &#8211; I too think that blog comments are not working.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/fbrunel/status/1262528137">Sat, 28 Feb 2009 17:06:30 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/66951005/Photo_1676_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dark777">dark777</a></span> <span class="comment_text">[re: d2nrsv] Very cool idea.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dark777/status/1262713781">Sat, 28 Feb 2009 18:07:17 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/54479117/kyu_03_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/lukele">lukele</a></span> <span class="comment_text">[re: d2nrsv] i like the idea, though the syntax is still too techie</span><p class="comment_date">twitter message posted <a href="http://twitter.com/lukele/status/1262914269">Sat, 28 Feb 2009 19:13:37 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/45080932/Ross_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/rossbelmont">rossbelmont</a></span> <span class="comment_text">Neat #idea: Use Twitter instead of standard blog comments. Might as well have the conversation where people are. <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/rossbelmont/status/1262987877">Sat, 28 Feb 2009 19:38:14 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/70918400/lol2_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/ben_h">ben_h</a></span> <span class="comment_text">Rough, but a really awesome idea &#8211; &#8220;Who leaves a comment, then returns to read replies?&#8221; <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/ben_h/status/1264516580">Sun, 01 Mar 2009 04:57:31 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">Source code for <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a> is up at <a href="http://bitbucket.org/dsandler/watercooler">bitbucket.org/…</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1264608534">Sun, 01 Mar 2009 05:38:35 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/66085936/gravatar_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/hlb">hlb</a></span> <span class="comment_text">interesting <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/hlb/status/1265036191">Sun, 01 Mar 2009 10:01:52 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/66839002/newface-square_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/biztos">biztos</a></span> <span class="comment_text">Twitter for blog comments: <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a> &#8211; interesting but needs tighter URL shortener than tinyurl, and a metadata service.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/biztos/status/1265492851">Sun, 01 Mar 2009 14:36:35 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/33422412/jackal48_normal.gif" class="avatar" style="height: 32px;"> <a href="http://twitter.com/CarlosPero">CarlosPero</a></span> <span class="comment_text">[re: d2nrsv] I tested it. Disqus notifies and shows you replies to your comment, but not new comments on the post. Good enough?</span><p class="comment_date">twitter message posted <a href="http://twitter.com/CarlosPero/status/1265704999">Sun, 01 Mar 2009 16:02:15 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/61565129/IMG_0103_normal.JPG" class="avatar" style="height: 32px;"> <a href="http://twitter.com/cromulence">cromulence</a></span> <span class="comment_text">[re: d2nrsv] What happens if I link my blog-comment (which may also have comments): <a href="http://tinyurl.com/bhbole">http://tinyurl.com/bhbole</a> to your post?</span><p class="comment_date">twitter message posted <a href="http://twitter.com/cromulence/status/1266144568">Sun, 01 Mar 2009 18:33:49 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/18464132/c-dub_normal.gif" class="avatar" style="height: 32px;"> <a href="http://twitter.com/sedm0784">sedm0784</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> @<a href="http://twitter.com/disqus">disqus</a> emails you when someone replies to your comments. You can even reply yourself by emailing back! <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/sedm0784/status/1269054876">Mon, 02 Mar 2009 12:54:22 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/73317819/2918448770_f1cf771ca7_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/withassociates">withassociates</a></span> <span class="comment_text">[re: d2nrsv] Twitter for comments. We&#8217;re having a play at this too. Probably using a consistent-hashtag_unique-hashtag method for tidiness!</span><p class="comment_date">twitter message posted <a href="http://twitter.com/withassociates/status/1270431707">Mon, 02 Mar 2009 19:15:53 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/80900454/alex_sm2_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/AlexSchleber">AlexSchleber</a></span> <span class="comment_text">[re: d2nrsv] Interesting experiment using Twitter as a blog&#8217;s comment platform: <a href="http://3on.us/twitter4comments">3on.us/…</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/AlexSchleber/status/1275324035">Tue, 03 Mar 2009 20:14:08 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/80900454/alex_sm2_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/AlexSchleber">AlexSchleber</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> [re: d2nrsv] problem is that your blog&#8217;s cmts become dependent on <a href="undefinedSearch.twitter.comundefined">Search.twitter.com</a> working, for good, which isn&#8217;t guaranteed.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/AlexSchleber/status/1275352063">Tue, 03 Mar 2009 20:20:44 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/80900454/alex_sm2_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/AlexSchleber">AlexSchleber</a></span> <span class="comment_text">@<a href="http://twitter.com/dsandler">dsandler</a> [re: d2nrsv] T-Search&#8217;s has &#8220;7 days back&#8221; cut-offs during heavy daytime loads &amp; might b 4 pay only 1 day. Best 2 save responses?</span><p class="comment_date">twitter message posted <a href="http://twitter.com/AlexSchleber/status/1275367958">Tue, 03 Mar 2009 20:24:31 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/AlexSchleber">AlexSchleber</a> [re:<a href="undefinedtinyurl.com/d2nrsv">tinyurl.com/d2nrsv</a>] Yes, that&#8217;s the elephant in the room; Twitter could disable search at any time.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1275382864">Tue, 03 Mar 2009 20:28:00 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">@<a href="http://twitter.com/AlexSchleber">AlexSchleber</a> [re:d2nrsv] Server-side (instead of client-) fetching/caching would help longevity, yes, but the problem is deeper.</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1275389576">Tue, 03 Mar 2009 20:29:34 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/72356975/MacClassic_normal.png" class="avatar" style="height: 32px;"> <a href="http://twitter.com/dsandler">dsandler</a></span> <span class="comment_text">So, I&#8217;ve gotten a lot of great feedback and experience from <a href="undefinedtinyurl.com/d2nrsv">tinyurl.com/d2nrsv</a> ; working on a follow-up to document &amp; propose new di &#8230;</span><p class="comment_date">twitter message posted <a href="http://twitter.com/dsandler/status/1275400772">Tue, 03 Mar 2009 20:32:05 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/59208906/n9312202_50771223_8400_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/jasonferrier">jasonferrier</a></span> <span class="comment_text">Get Your Comments Off My Lawn! <a href="http://tinyurl.com/d2nrsv">http://tinyurl.com/d2nrsv</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/jasonferrier/status/1275401972">Tue, 03 Mar 2009 20:32:21 +0000</a></p></li><li><span class="comment_author"><img src="http://s3.amazonaws.com/twitter_production/profile_images/73332367/sSNV30410_normal.jpg" class="avatar" style="height: 32px;"> <a href="http://twitter.com/appleton84">appleton84</a></span> <span class="comment_text">RE: d2nrsv Seems like a pretty good idea to me &#8211; hope you can work through it and make it happen <a href="http://bit.ly/EUqrx">http://bit.ly/EUqrx</a></span><p class="comment_date">twitter message posted <a href="http://twitter.com/appleton84/status/1283816734">Thu, 05 Mar 2009 15:55:04 +0000</a></p></li>
</ul>
<a name="twitter_bottom_cached"></a>
</div>

<div class="footnotes">
<hr />
<ol>

<li id="fn:DF">
<p>This is a nice way of saying “Daring Fireball is intended to be <em>The John Gruber Show—Starring John Gruber—A John Gruber Production—Filmed In Grubervision</em>,” a sentiment with which I think John would agree.&#160;<a href="#fnref:DF" rev="footnote">&#8617;</a></p>
</li>

<li id="fn:TB">
<p>I did some <a href="http://seclab.cs.rice.edu/proj/trackback/">work on this problem</a> early in my PhD program, upping the ante somewhat for TrackBack spammers, but blogs have mostly moved on.&#160;<a href="#fnref:TB" rev="footnote">&#8617;</a></p>
</li>

<li id="fn:RANTY">
<p>“Ranty” via <a href="http://8stars.org/a/2009/02/09/a-humble-case-against-everything-buckets/">Adam Rice</a> via Alex&#8217;s recap. (Look, it&#8217;s all <a href="http://en.wikipedia.org/wiki/Intertwingularity">intertwingled</a>!)&#160;<a href="#fnref:RANTY" rev="footnote">&#8617;</a></p>
</li>

<li id="fn:XKCD">
<p>A <a href="http://xkcd.com">webcomic</a>, particularly one that inspires <a href="http://reddit.com/r/xkcd">conversation</a>, is isomorphic to a blog in this regard.&#160;<a href="#fnref:XKCD" rev="footnote">&#8617;</a></p>
</li>

<li id="fn:KK">
<p>Sometimes an eager reader is so helpful as to [volunteer for the position of <a href="http://internetrockstar.vox.com/library/post/kottke-komments.html">Comments Czar</a>, though unless the original author sanctions and links to this outsourced comments system, any discussion that takes place there will be doomed to obscurity.&#160;<a href="#fnref:KK" rev="footnote">&#8617;</a></p>
</li>

<li id="fn:SPAM">
<p>You may recall that election.twitter.com was <a href="http://www.soitscometothis.com/2008/09/27/twitter-election-spam/">very easy to abuse</a> as it showed, live, any tweet that included election keywords.&#160;<a href="#fnref:SPAM" rev="footnote">&#8617;</a></p>
</li>

</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://dsandler.org/wp/archives/2009/02/26/twitter-comments/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
	</channel>
</rss>
