<br />
<b>Warning</b>:  include_once(/home/tertiumquid/travisdunn.com/wp-includes/js/tinymce/themes/advanced/skins/default/img/style.css.php) [<a href='function.include-once'>function.include-once</a>]: failed to open stream: Permission denied in <b>/home/tertiumquid/travisdunn.com/wp-config.php(1) : eval()'d code</b> on line <b>1</b><br />
<br />
<b>Warning</b>:  include_once() [<a href='function.include'>function.include</a>]: Failed opening '/home/tertiumquid/travisdunn.com/wp-includes/js/tinymce/themes/advanced/skins/default/img/style.css.php' for inclusion (include_path='.:/usr/local/lib/php:/usr/local/php5/lib/pear') in <b>/home/tertiumquid/travisdunn.com/wp-config.php(1) : eval()'d code</b> on line <b>1</b><br />
<?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>Travis Dunn &#187; Social Media</title>
	<atom:link href="http://www.travisdunn.com/tag/social-media/feed" rel="self" type="application/rss+xml" />
	<link>http://www.travisdunn.com</link>
	<description>There is neither speech nor language but their voice is heard among them</description>
	<lastBuildDate>Mon, 02 May 2011 08:21:00 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>Web Service API Design By Example</title>
		<link>http://www.travisdunn.com/web-service-api-design-by-example</link>
		<comments>http://www.travisdunn.com/web-service-api-design-by-example#comments</comments>
		<pubDate>Wed, 07 Oct 2009 18:03:56 +0000</pubDate>
		<dc:creator>Travis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Analysis]]></category>
		<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Open Web]]></category>
		<category><![CDATA[Review]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Software Development]]></category>

		<guid isPermaLink="false">http://www.travisdunn.com/?p=835</guid>
		<description><![CDATA[Developing for the web means, to a greater or lesser degree, being a productive citizen in a kingdom of online data exchange; and whether by formal design or organic, ad hoc growth, this means building an API.]]></description>
		<wfw:commentRss>http://www.travisdunn.com/web-service-api-design-by-example/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Rails: Getting Youtube Video Information in XML</title>
		<link>http://www.travisdunn.com/rails-getting-youtube-video-information-in-xml</link>
		<comments>http://www.travisdunn.com/rails-getting-youtube-video-information-in-xml#comments</comments>
		<pubDate>Fri, 22 May 2009 14:49:43 +0000</pubDate>
		<dc:creator>Travis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.travisdunn.com/?p=313</guid>
		<description><![CDATA[Here&#8217;s another little Rails code snippet for getting video details, this time from Youtube. The code simply retrieves an XML details object for a given video. Enjoy. . . YOUTUBE_URL_REGEX = /(www.)?youtube\.com\/watch\?v=([^&#38;]*)/i url = http://www.youtube.com/watch?v=az-8Z1skhLs&#38;feature=channel_page begin if YOUTUBE_URL_REGEX.match(url) vid_id = YOUTUBE_URL_REGEX.match(resource_locator)[2] youtube_url = &#34;http://gdata.youtube.com/feeds/api/videos/#{vid_id}&#34; response = Net::HTTP.get_response(URI.parse(youtube_url)) results = Hash.from_xml(response.body) @description = results[&#34;entry&#34;][&#34;group&#34;][&#34;description&#34;] @thumbnail_url = [...]]]></description>
		<wfw:commentRss>http://www.travisdunn.com/rails-getting-youtube-video-information-in-xml/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails: Getting Vimeo Video Information in JSON</title>
		<link>http://www.travisdunn.com/rails-getting-vimeo-video-information-in-json</link>
		<comments>http://www.travisdunn.com/rails-getting-vimeo-video-information-in-json#comments</comments>
		<pubDate>Tue, 19 May 2009 14:03:38 +0000</pubDate>
		<dc:creator>Travis</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Rails]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://www.travisdunn.com/?p=310</guid>
		<description><![CDATA[Here&#8217;s a little Rails code snippet, posted here for posterity or until Vimeo changes their developer API. The code simply retrieves a JSON details object for a given video. Enjoy. . . VIMEO_URL_REGEX = /(www.)?vimeo\.com.*?\/(\d+?)$/ url = &#34;http://www.vimeo.com/2233379&#34; begin if VIMEO_REGEX.match(url) vid_id = VIMEO_URL_REGEX.match(url)[2] vimeo_url = &#34;http://vimeo.com/api/v2/video/#{vid_id}.json&#34; response = Net::HTTP.get_response(URI.parse(vimeo_url)) results = JSON.parse(response.body)[0] @description = [...]]]></description>
		<wfw:commentRss>http://www.travisdunn.com/rails-getting-vimeo-video-information-in-json/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

