<?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>Hello, I am Sean Murphy &#187; tinyurl</title>
	<atom:link href="http://iamseanmurphy.com/tag/tinyurl/feed/" rel="self" type="application/rss+xml" />
	<link>http://iamseanmurphy.com</link>
	<description>Thoughts, news, code by Sean Murphy</description>
	<lastBuildDate>Thu, 26 Jan 2012 02:37:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>LongURL Integration For Your Website</title>
		<link>http://iamseanmurphy.com/2008/10/10/longurl-integration-for-your-website/</link>
		<comments>http://iamseanmurphy.com/2008/10/10/longurl-integration-for-your-website/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 05:26:42 +0000</pubDate>
		<dc:creator>Sean Murphy</dc:creator>
				<category><![CDATA[Work]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[integration]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[longurl]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[tinyurl]]></category>

		<guid isPermaLink="false">http://iamseanmurphy.com/2008/10/10/longurl-integration-for-your-website/</guid>
		<description><![CDATA[I wasn&#8217;t sure it could be done, but I&#8217;ve done it. I&#8217;m happy to say that I&#8217;ve made it even easier to use the LongURL web service, specifically on your own site. Today I wrote a jQuery plugin that allows you to add LongURL support to a website in like, I don&#8217;t know, 30 seconds?! [...]]]></description>
			<content:encoded><![CDATA[<p>I wasn&#8217;t sure it could be done, but I&#8217;ve done it. I&#8217;m happy to say that I&#8217;ve made it <em>even easier</em> to use the LongURL web service, specifically on your own site. Today I wrote a jQuery plugin that allows you to add LongURL support to a website in like, I don&#8217;t know, 30 seconds?! It really depends on how fast you are, but the point is that it&#8217;s really easy.</p>
<p>I noticed that Twitter search lets you expand URLs from some of the most popular shortening services (though, if they used LongURL they could support a whole lot more <img src='http://iamseanmurphy.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  ). I liked their UI approach; it&#8217;s clear, simple, and effective. So I pretty much mimicked their UI for my plugin.</p>
<p><span id="more-21"></span><br />
So here it is, you can add support for LongURL to your site in just a few lines of code:</p>
<pre name="code" class="js">&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript" src="http://longurl.org/static/jquery.longurl.js"&gt;&lt;/script&gt;
&lt;script type="text/javascript"&gt;
$(function() {
    $('a').longurl();
});
&lt;/script&gt;</pre>
<p>Yup, that&#8217;s it. Also, if you don&#8217;t like the Ajax working indicator that I chose, you can use your own like so:</p>
<pre name="code" class="js">$(function() {
    $('a').longurl({working_image: 'http://example.com/images/ajaxy_animation.gif'});
});</pre>
<p>So, that&#8217;s how you use the plugin. You can see a <a href="http://longurl.org/static/jquery_demo.html">demo</a> of it in action, and <a href="http://plugins.jquery.com/project/longurl">download it</a> from the jQuery site. Hope you find it useful.</p>
]]></content:encoded>
			<wfw:commentRss>http://iamseanmurphy.com/2008/10/10/longurl-integration-for-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LongURL&#8212;Restoring Order to the Universe</title>
		<link>http://iamseanmurphy.com/2008/08/28/longurlrestoring-order-to-the-universe/</link>
		<comments>http://iamseanmurphy.com/2008/08/28/longurlrestoring-order-to-the-universe/#comments</comments>
		<pubDate>Fri, 29 Aug 2008 02:41:22 +0000</pubDate>
		<dc:creator>Sean Murphy</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Work]]></category>
		<category><![CDATA[longurl]]></category>
		<category><![CDATA[short urls]]></category>
		<category><![CDATA[tinyurl]]></category>
		<category><![CDATA[ubiquity]]></category>

		<guid isPermaLink="false">http://iamseanmurphy.com/2008/08/28/longurlrestoring-order-to-the-universe/</guid>
		<description><![CDATA[It&#8217;s been two weeks since I conceptualized LongURL, and a productive two weeks at that! Last Monday I officially launched the service (which provides a handy REST API) with support for a dozen or so shortening services like TinyURL.com. Once I stepped away from the problem for a little while I realized there was a [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been two weeks since I conceptualized <a href="http://longurl.org" title="The Universal Way to Expand Shortened URLs">LongURL</a>, and a productive two weeks at that! Last Monday I officially launched the service (which provides a handy REST API) with support for a dozen or so shortening services like TinyURL.com. Once I stepped away from the problem for a little while I realized there was a better way to go about solving it. Thankfully the way I designed the service didn&#8217;t make it very difficult to swap out that bit of business logic, so this week I rolled-out an update that adds support for <strong>all</strong> shortening services.</p>
<p>After getting feedback from some helpful beta testers (thanks <a href="http://marjoleinkatsma.com/personal/cv.html">Marjolein</a> and <a href="http://forteller.net">Børge</a>!) and making a few tweaks I was happy yesterday to release the LongURL Mobile Expander <a href="http://userscripts.org/scripts/show/32115">Greasemokey script</a> and <a href="https://addons.mozilla.org/en-US/firefox/addon/8636">Firefox extension</a> which use the LongURL API to expand shortened URLs on <strong>any</strong> web page. I haven&#8217;t had much feedback from others yet, but for me personally, the extension tremendously improves my user experience. Sorry guys, no more rickrolling <em>me</em>!</p>
<p><span id="more-19"></span><br />
Also, with the release of the incredibly awesome <a href="http://labs.mozilla.com/2008/08/introducing-ubiquity/">Ubiquity</a> extension from Mozilla Labs, I started work on a LongURL command which <strike>I hope to finish/release in the next day or so</strike> I just released. You can subscribe to the command from the <a href="http://longurl.org/tools">LongURL Tools</a> page. Does that sound like something that would be of interest to you? Have any ideas on how you&#8217;d like it to work? If so, leave a comment.</p>
<p>I would like to mention too that this has been the first time I&#8217;ve really used the <a href="http://launchpad.net">launchpad.net</a> platform for managing my project. It&#8217;s been a super experience; I don&#8217;t know why I didn&#8217;t start using it sooner, especially since I&#8217;ve been so <a href="http://elliotmurphy.com">close to it</a>. And bazaar? Well, let me just say that I&#8217;ll no longer be using Subversion as my VCS of choice. Bazaar rocks, and if you haven&#8217;t given it a try, I strongly suggest you do so. You won&#8217;t regret it.</p>
<p>A final note: as you can tell, I don&#8217;t always get around to blogging about cool stuff I&#8217;m working on right away (if at all), so if you&#8217;d like to get updates as soon as possible I suggest following me on Twitter (<a href="http://twitter.com/iamseanmurphy">iamseanmurphy</a>) and/or identi.ca (<a href="http://identi.ca/seanmurphy">seanmurphy</a>). 140 characters just seems so much more digestible to me.</p>
]]></content:encoded>
			<wfw:commentRss>http://iamseanmurphy.com/2008/08/28/longurlrestoring-order-to-the-universe/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

