<?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>Refresh Columbia &#187; Tutorials</title>
	<atom:link href="http://www.refreshcolumbia.org/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.refreshcolumbia.org</link>
	<description>Bringing together the web designers and developers of the Midlands.</description>
	<lastBuildDate>Mon, 19 Dec 2011 20:51:12 +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>Sync WordPress and Facebook Comments</title>
		<link>http://www.refreshcolumbia.org/tutorials/sync-wordpress-and-facebook-comments/</link>
		<comments>http://www.refreshcolumbia.org/tutorials/sync-wordpress-and-facebook-comments/#comments</comments>
		<pubDate>Wed, 11 Aug 2010 20:31:18 +0000</pubDate>
		<dc:creator>Jason Beaird</dc:creator>
				<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.refreshcolumbia.org/?p=547</guid>
		<description><![CDATA[Let&#8217;s face it, nobody comments on blog posts any more. There&#8217;s just too many ways to consume information. With Refresh Columbia in particular, meetup announcements start as blog posts, get automatically syndicated as a MailChimp email campaign, posted as a note on the Facebook fan page wall, read in a bunch of other RSS readers [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s face it, nobody comments on blog posts any more. There&#8217;s just too many ways to consume information. With Refresh Columbia in particular, meetup announcements start as blog posts, get automatically syndicated as a MailChimp email campaign, posted as a note on the Facebook fan page wall, read in a bunch of other RSS readers and announced on Twitter. Many of those steps (Specifically Facebook and Twitter) provide people external channels to communicate about the content here. I was trying to figure out a way to tie some of those conversations together and decided to give the <a href="http://wordpress.org/extend/plugins/wpbook/" target="_blank">WPBook WordPress plugin</a> a try.</p>
<p>According to WPBook, any post made here (assuming *cough* you&#8217;re reading this on the blog) will still appear in Facebook, but (and this is really cool) comments made on Facebook will be syndicated to the blog and vice versa. It doesn&#8217;t completely glue together the fractured world of social media, but it&#8217;s certainly a step in the right direction.</p>
<p>Setup was very straightforward:</p>
<ol>
<li>From the WordPress Plugins Page in Admin, click &#8220;Add New&#8221;</li>
<li>Search for WPBook and click &#8220;Install&#8221;</li>
<li>Click &#8220;WPBook&#8221; in the Settings Sidebar</li>
<li>Click the &#8220;Detailed Instructions&#8221; link near the top of the page</li>
<li>Follow this page word-for-word&#8230;</li>
</ol>
<p>Yea, I know, that was pretty sad for a tutorial. There are a quite a few steps involved with setting up the Facebook application, adding the app to your fan page and configuring WPBook, but the directions are pretty straightforward. You can check out the Refresh Blog&#8217;s evil Facebook twin at <a href="http://apps.facebook.com/refreshcolumbia" target="_blank">http://apps.facebook.com/refreshcolumbia</a>.</p>
<p>I&#8217;m not sure why this post didn&#8217;t get pulled in as a wall post on the <a href="http://facebook.com/refreshcolumbia" target="_blank">Refresh Columbia fan page</a> but as you can see below, comments from the blog and from the post on Facebook show up in both places.</p>
<h2>Great, but what about Twitter?</h2>
<p>I also just added the <a href="http://wordpress.org/extend/plugins/twitoaster/" target="_blank">Twitoaster plugin</a> which promises to pull any tweet that links to this post as a comment as well. Time to tweet it from the Refresh Columbia account to see if it shows up!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.refreshcolumbia.org/tutorials/sync-wordpress-and-facebook-comments/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>CSS Sprites2</title>
		<link>http://www.refreshcolumbia.org/tutorials/css-sprites2/</link>
		<comments>http://www.refreshcolumbia.org/tutorials/css-sprites2/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 17:30:28 +0000</pubDate>
		<dc:creator>Jason Beaird</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Articles]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Sprites]]></category>

		<guid isPermaLink="false">http://www.refreshcolumbia.org/?p=58</guid>
		<description><![CDATA[CSS Sprites have been a staple of modern web development since Dave Shea formally introduced the technique in his A List Apart article from 2004.  The concept is simple: if you want the appearance of a link to change when hovered, you put the normal and hover state in the same background image and offset [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-full wp-image-59" title="CSS Sprites 2" src="http://www.refreshcolumbia.org/wp-content/uploads/2008/08/csssprites2.jpg" alt="" width="200" height="60" />CSS Sprites have been a staple of modern web development since Dave Shea formally introduced the technique in his <a href="http://www.alistapart.com/articles/sprites/" target="_blank">A List Apart article from 2004</a>.  The concept is simple: if you want the appearance of a link to change when hovered, you put the normal and hover state in the same background image and offset the background-position with CSS when the link is hovered.  The benefit was that you no longer had to save the hovered version of the link as a separate image and more importantly, didn&#8217;t have to rely on JavaScript.  &#8230;and nobody ever really missed MM_preloadImages(), MM_swapImage(), and MM_swapImgRestore().</p>
<p>Well, Shea is bringing JavaScript back with an updated version of his technique which is aptly named <a href="http://www.alistapart.com/articles/sprites2/" target="_blank">CSS Sprites 2</a>. The original functionality is maintained for users without JavaScript, but transitional effects are dynamically added to the rollover using jQuery.</p>
<p><a href="http://www.alistapart.com/articles/sprites2/" target="_blank"><strong>A List Apart:</strong> CSS Sprites 2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.refreshcolumbia.org/tutorials/css-sprites2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ID vs. Class</title>
		<link>http://www.refreshcolumbia.org/tutorials/id-vs-class/</link>
		<comments>http://www.refreshcolumbia.org/tutorials/id-vs-class/#comments</comments>
		<pubDate>Wed, 09 Jul 2008 14:39:25 +0000</pubDate>
		<dc:creator>Jason Beaird</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.refreshcolumbia.org/?p=19</guid>
		<description><![CDATA[This is the kind of foundational CSS knowledge that I often assume everyone knows. Even though it&#8217;s a basic topic, Chris Coyier does an excellent job of explaining it in a way that won&#8217;t make you feel like a noob. IDs and Classes the “hooks” we need to build into markup to get our hands [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" title="Hook" src="http://www.refreshcolumbia.org/wp-content/uploads/2008/07/fishhook.jpg" alt="" width="85" height="150" />This is the kind of foundational CSS knowledge that I often assume everyone knows. Even though it&#8217;s a basic topic, Chris Coyier does an excellent job of explaining it in a way that won&#8217;t make you feel like a noob.</p>
<blockquote><p>IDs and Classes the “hooks” we need to build into markup to get our hands on them. CSS obviously needs these so that we may build selectors and do our styling, but other web languages like Javascript depend on them too. But what is the difference between them?</p></blockquote>
<p><a href="http://css-tricks.com/the-difference-between-id-and-class/"><strong>CSS-Tricks:</strong> The Difference Between ID and Class</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.refreshcolumbia.org/tutorials/id-vs-class/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

