<?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>youdidwhatwithtsql.com &#187; TweetShrink</title>
	<atom:link href="http://www.youdidwhatwithtsql.com/tag/tweetshrink/feed" rel="self" type="application/rss+xml" />
	<link>http://www.youdidwhatwithtsql.com</link>
	<description>making DBAs everywhere curse!</description>
	<lastBuildDate>Wed, 01 Sep 2010 17:02:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Shrinking Tweets with Tweet-SQL</title>
		<link>http://www.youdidwhatwithtsql.com/shrinking-tweets-with-tweet-sql/105</link>
		<comments>http://www.youdidwhatwithtsql.com/shrinking-tweets-with-tweet-sql/105#comments</comments>
		<pubDate>Tue, 19 May 2009 20:24:23 +0000</pubDate>
		<dc:creator>Rhys</dc:creator>
				<category><![CDATA[Tweet-SQL]]></category>
		<category><![CDATA[TweetShrink]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[Twitter API]]></category>
		<category><![CDATA[Twitter App]]></category>

		<guid isPermaLink="false">http://www.youdidwhatwithtsql.com/shrinking-tweets-with-tweet-sql/105</guid>
		<description><![CDATA[To get your point across on Twitter you sometimes have to try and shorten your tweets. This can be a pain for anyone over 30 who doesn’t know txtspk. Thankfully some clever chap has come to the rescue with TweetShrink and I’ve integrated it into Tweet-SQL. Here’s how you use it; ?View Code TSQLDECLARE @shrunk [...]<p>Post from: <a href="http://www.youdidwhatwithtsql.com">youdidwhatwithtsql.com</a><br/><br/><a href="http://www.youdidwhatwithtsql.com/shrinking-tweets-with-tweet-sql/105">Shrinking Tweets with Tweet-SQL</a></p>
]]></description>
			<content:encoded><![CDATA[<p>To get your point across on <a href="http://twitter.com" target="_blank">Twitter</a> you sometimes have to try and shorten your tweets. This can be a pain for anyone over 30 who doesn’t know <a href="http://en.wikipedia.org/wiki/SMS_language" target="_blank">txtspk</a>. Thankfully some clever chap has come to the rescue with <a href="http://tweetshrink.com" target="_blank">TweetShrink</a> and I’ve integrated it into <a href="http://tweet-sql.com" target="_blank">Tweet-SQL</a>. Here’s how you use it;</p>

<div class="wp_codebox_msgheader"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p105code2'); return false;">View Code</a> TSQL</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1052"><td class="code" id="p105code2"><pre class="tsql" style="font-family:monospace;"><span style="color: #0000FF;">DECLARE</span> @shrunk <span style="color: #0000FF;">VARCHAR</span><span style="color: #808080;">&#40;</span><span style="color: #000;">140</span><span style="color: #808080;">&#41;</span>,
		@shaved <span style="color: #0000FF;">INT</span>;
&nbsp;
<span style="color: #0000FF;">EXEC</span> dbo.<span style="color: #202020;">tweet_util_tweetShrink</span> <span style="color: #FF0000;">'For some strange reason I have developed a tendency to think every new version of Windows is more of a resource pig.'</span>, @shrunk <span style="color: #0000FF;">OUTPUT</span>, @shaved <span style="color: #0000FF;">OUTPUT</span>;
&nbsp;
<span style="color: #008080;">-- The shortened Tweet</span>
<span style="color: #0000FF;">SELECT</span> @shrunk <span style="color: #0000FF;">AS</span> shrunkTweet;
<span style="color: #008080;">-- How may characters have been shaved off?</span>
<span style="color: #0000FF;">SELECT</span> @shaved <span style="color: #0000FF;">AS</span> shaved;</pre></td></tr></table></div>

<p><a href="http://www.youdidwhatwithtsql.com/wp-content/uploads/2009/05/image3.png"><img title="Using TweetShrink in Tweet-SQL" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="132" alt="Using TweetShrink in Tweet-SQL" src="http://www.youdidwhatwithtsql.com/wp-content/uploads/2009/05/image-thumb3.png" width="644" border="0" /></a> </p>
<p>A future version of <a href="http://www.tweet-sql.com" target="_blank">Tweet-SQL</a> will include this functionality along with a few more cool surprises.</p>
<p><map name='google_ad_map_105_a45beff5d2e172f6'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/105?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_105_a45beff5d2e172f6' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=105&amp;url=http%3A%2F%2Fwww.youdidwhatwithtsql.com%2Fshrinking-tweets-with-tweet-sql%2F105' title="Shrinking Tweets with Tweet SQL" alt=" Shrinking Tweets with Tweet SQL" /></p><p>Post from: <a href="http://www.youdidwhatwithtsql.com">youdidwhatwithtsql.com</a><br/><br/><a href="http://www.youdidwhatwithtsql.com/shrinking-tweets-with-tweet-sql/105">Shrinking Tweets with Tweet-SQL</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.youdidwhatwithtsql.com/shrinking-tweets-with-tweet-sql/105/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
