<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Pete Schuster</title>
	
	<link>http://peteschuster.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Mon, 20 Feb 2012 14:01:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/PeteSchuster" /><feedburner:info uri="peteschuster" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Keep your &lt;head&gt; clear!</title>
		<link>http://feedproxy.google.com/~r/PeteSchuster/~3/Ov7nCgMasho/</link>
		<comments>http://peteschuster.com/2012/02/keep-your-head-clear/#comments</comments>
		<pubDate>Mon, 20 Feb 2012 14:01:54 +0000</pubDate>
		<dc:creator>Pete Schuster</dc:creator>
				<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Front End Development]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[standards]]></category>

		<guid isPermaLink="false">http://peteschuster.com/?p=3335</guid>
		<description><![CDATA[Every website large or small has a lot of similar parts. Whether its Facebook or your local plumber, all sites...]]></description>
			<content:encoded><![CDATA[<p>Every website large or small has a lot of similar parts. Whether its Facebook or your local plumber, all sites share common tags, hierarchy, and structure in the form of HTML. In general though, one section of HTML has been a place to throw anything and everything. From tracking codes, scripts, meta tags, verification codes, etc the &lt;head&gt; section of your HTML document has been the attic no one really wants to clean up. Below are some tips and guides to make sure your &lt;head&gt; section is clean, efficient, and has everything that it should.</p>
<h2>1. Clean House</h2>
<p>First things first, let&#8217;s clean up! Before we add anything new let&#8217;s make sure that everything that is currently there, needs to be. So any script tags you find, unless otherwise noted should be removed, minified, then gathered in one large document and placed in the footer. Next any linked stylesheets you find should be treated the same way. Gather all the css, dump it into one file, minify and then put back. This step may require some testing to make sure nothing breaks, but minifing and consolodating resources will make your site faster and easier to update/maintain. Read my other page on <a href="http://peteschuster.com/2011/12/tools-to-make-your-site-faster/">page speed tools</a> to learn more about making your site faster.</p>
<h2>2. SEO Tags</h2>
<p>Including a title tag, description meta tag, and a keywords meta tag is your first step to better SEO. These tags are not only part of the algoritum that determinies page rank, but they&#8217;re also the first thing the user sees when they&#8217;re decided to enter to site. Make these tags as relevant to the page they&#8217;re on as possible, and watch your site raise in the rankings on Google, Yahoo and Bing.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">title</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">title</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">meta</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;description&quot;</span> <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">meta</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;keywords&quot;</span> <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span>&gt;</span></pre></td></tr></table></div>

<h2>3. Content Related Tags</h2>
<p>Two tags that have been under utilized over the years, but are extremely important, are canonical link tag and author meta tag. These tags make sure that robots and spiders that crawl your site from Google, Yahoo and Bing aren&#8217;t confused when they reach you content.</p>
<p>As we all know there are several ways to enter a site. In the beginning of a url you might add www or not. At the end you might add a slash, have index.php, or some sort of query trailing behind. It&#8217;s possible that web crawlers could read all of these various ways of getting to your site as separate pages and thus duplicate content. You may even be penalized in your ranking for such an offense. Enter the cananical link tag. This tag should be assicated with only one URL, so no matter how the crawler gets on your site, the content will always be attributed to that URL. Read more about the <a href="http://support.google.com/webmasters/bin/answer.py?hl=en&#038;answer=139394&#038;topic=2371375&#038;ctx=topic" target="_blank">canonical link tag</a>.</p>
<p>Another handy tag to let crawlers know this is your content and no someone elses, is to use the author tag. Using the author tag will ensure that if your site is linked to or quoted anywhere, that you and your site are being attributed the rights to the content.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">link</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;canonical&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">meta</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;author&quot;</span> <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span>&gt;</span></pre></td></tr></table></div>

<h2>4. Getting Social</h2>
<p>Social media has exploded in the past couple of years. Social media compaigns, sharing, liking, etc. have become the norm in the web world. One way to make sure your site looks good when liked on Facebook is to use the Open Graph meta tags. Open graph meta tags are a series of tags, that list the title, description, image, etc. that will appear on your facebook wall when shared or liked. Making sure these tags are present and looking their best is a great way to make your site is eyecatching on the social media giant. Learn more about <a href="http://developers.facebook.com/docs/opengraph/" target="_blank">open graph tags</a> here.</p>
<p>One more tag you might want to consider adding for sharing purposes is the alternate link tag. With the alternate link tag you can add the URL to your blog&#8217;s RSS feed and make it easier for people to subscribe to updates on your site.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">&lt;!--START OPEN GRAPH FOR FACEBOOK--&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">meta</span> property<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;og:title&quot;</span> <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">meta</span> property<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;og:type&quot;</span> <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;website&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">meta</span> property<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;og:url&quot;</span> <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">meta</span> property<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;og:image&quot;</span> <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;images/ui/facebook.jpg&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">meta</span> property<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;og:site_name&quot;</span> <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">meta</span> property<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;og:description&quot;</span> <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span>&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;!--END OPEN GRAPH FOR FACEBOOK--&gt;</span>
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">link</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;alternate&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;blog/feed/&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;application/rss+xml&quot;</span> <span style="color: #000066;">title</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span>&gt;</span></pre></td></tr></table></div>

<h2>5. Bookmark Icons</h2>
<p>The favicon isn&#8217;t the only player in town anymore. From tablet icons for the IPad, and smart phone icons like the iPhone, bookmarking icons are a great finishing touch to your site. These icons appear when booking your site on the browser, and appear on your home screen when bookmarking via a smart phone. This snippet is grabbed right from <a href="http://stuffandnonsense.co.uk/projects/320andup/" target="_blank">320andUp</a> a really great resource for coding a mobile first design.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">&lt;!-- For iPhone 4 --&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">link</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;apple-touch-icon-precomposed&quot;</span> sizes<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;114x114&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;images/ui/apple-touch-icon.png&quot;</span>&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;!-- For iPad 1--&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">link</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;apple-touch-icon-precomposed&quot;</span> sizes<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;72x72&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;images/ui/apple-touch-icon.png&quot;</span>&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;!-- For iPhone 3G, iPod Touch and Android --&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">link</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;apple-touch-icon-precomposed&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;images/ui/apple-touch-icon-precomposed.png&quot;</span>&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;!-- For Nokia --&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">link</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;shortcut icon&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;images/ui/apple-touch-icon.png&quot;</span>&gt;</span>
<span style="color: #808080; font-style: italic;">&lt;!-- For everything else --&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">link</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;shortcut icon&quot;</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;images/ui/favicon.ico&quot;</span>&gt;</span></pre></td></tr></table></div>

<h2>6. Tracking Codes</h2>
<p>Finally add all your tracking codes, from Google, Bing, etc right before the closing &gt;/head&lt; of your page. This makes sure that the tracking code is sending its signals to its homebase properly, doing so will result in more accurate reporting. Learn more about <a href="http://www.google.com/analytics/" target="_blank">Google Analytics</a>.</p>
<p>All or most of these tags or practices aren&#8217;t a requirement for your website. In fact, many things in HTML rarely are. HTML is a flexible language, and its one of the reasons its survived for so long. Regardless of how flexible the language is, there is always best practices and standards. Making sure your HTML is optimized for users and web crawlers is another step forward in making a great site. All of these tags are included in my <a href="http://peteschuster.com/site-skeleton/" target="_blank">Site Skeleton</a>, check it out on <a href="https://github.com/PeteSchuster/Site-Skeleton" target="_blank">GitHub</a>.</p>
<p>So what do you think? Did I miss anything? What tags do you typically add to a web build? Are there some tags I forgot or misused?</p>
<img src="http://feeds.feedburner.com/~r/PeteSchuster/~4/Ov7nCgMasho" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://peteschuster.com/2012/02/keep-your-head-clear/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://peteschuster.com/2012/02/keep-your-head-clear/</feedburner:origLink></item>
		<item>
		<title>Content as a Kingdom</title>
		<link>http://feedproxy.google.com/~r/PeteSchuster/~3/OIaHAEzTYPQ/</link>
		<comments>http://peteschuster.com/2012/02/content-as-a-kingdom/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 18:48:05 +0000</pubDate>
		<dc:creator>Pete Schuster</dc:creator>
				<category><![CDATA[Best Practices]]></category>
		<category><![CDATA[Content Strategy]]></category>
		<category><![CDATA[content first]]></category>
		<category><![CDATA[content is king]]></category>
		<category><![CDATA[mobile first]]></category>
		<category><![CDATA[seo]]></category>

		<guid isPermaLink="false">http://peteschuster.com/?p=3316</guid>
		<description><![CDATA[Lack of a solid Content Strategy is the cause for many issues we face in our industry. Read more to find out how you can utilize your content for the greater good.]]></description>
			<content:encoded><![CDATA[<p>Content isn&#8217;t king&#8230; it&#8217;s the kingdom&#8230; A statement that I&#8217;ve come to learn as more true after listening to <a href="http://twitter.com/#!/halvorson" target="_blank">Kristina Halvorson</a>&#8216;s <a href="http://vimeo.com/36673761" target="_blank">2010 speech</a> for <a href="http://aneventapart.com/" target="_blank">An Event Apart</a>. Not only does content affect your SEO ranking, where we all know the phase &#8220;Content is king&#8221; comes from, but she explains what a critical role content plays in all aspects of the industry. From design and development, to HR and office mechanics, content stands as the pillar all other sects of a web company are built on. In the following few sections, I&#8217;ll explain why.</p>
<blockquote>
<p>From design and development, to HR and office mechanics, content stands as the pillar all other sects of a web company are built on.</p>
</blockquote>
<h2>Content as Design</h2>
<p>For many years content has been something we all fill in later. It&#8217;s usually one of the last step we take when deploying a new site. The design was created using Lorem Ipsum, the front end creates all the different possible content templates, the backend devs code what goes where and what can be editable, then finally, the content is added in a couple of weeks before the site goes live.</p>
<p>We all do it, and for the most part this method works great. The client wanted a website where they could add a bunch of content, have blog posts, a Twitter feed, etc. And of course they&#8217;ve been &#8220;working&#8221; on creating all this content for you so its ready to go once the development is through. But this isn&#8217;t the case, the client hands over a couple sentences of content for each page, even though the design called for at least a few paragraphs. Now the sidebar is longer than the content, on wide screen monitors, the footer isn&#8217;t reaching the bottom of the screen, and inevitably, that one block of content that only appears on that one page that you didn&#8217;t add to the CMS, needs to be edited&#8230;</p>
<p>Now a couple of months go by and the site has launched, and the bugs were fixed. Remember all that rich functionality we added like a blog, Twitter feed, etc? It hasn&#8217;t been updated once since the site has launched. Who is going to add fresh content to the blog? Or interact with people on Twitter? Or keep track of keywords and page entry points and adjust the content to fit?</p>
<p>How did we end up here? When did building websites become building a shell that the client is responsible for filling in? Why wasn&#8217;t all of this taken into account from the beginning?</p>
<h2>Content Strategy</h2>
<p>Enter our hero, Content Strategy. A relatively new field in the web world, Content Strategy&#8217;s goal is to solve the issues above. Content Strategy&#8217;s mission is to make sure the design always fits, that the CMS always works, that the front end is not overloaded, and that the workflow&#8230; well&#8230;works.</p>
<h3>Define Needs</h3>
<p>One of the first and most important steps in content strategy is defining needs. Defining the needs of the customer, user, etc should be at the forefront of every feature. Answering the questions &#8220;Who, What, Where, When, and How?&#8221; should constantly be brought into the conversation to help keep the project on track and on budget.</p>
<p>Okay, so the client wants a blog on their site, great! What is its purpose? What kind of content will be added? Will there be pictures? Will it need categorization? Who is going to update this content? Where on the site will it appear? Do they need a widget of recent posts? Do they want comments? Who will moderate the comments? When and how often do you plan to publish? How will this help the end user? Do your users even read blogs?</p>
<p>All of these questions (and that&#8217;s just scaping the surface) for just adding a blog to a site. If the system is already in WordPress, it would take a couple of hours—but before you blindingly follow through with something, ask yourself these questions and start a conversation with the client. How do they think this will benefit them? Who knows, you might talk them out of a blog, but perhaps talk them into a whole new site&#8230;</p>
<p>Content Strategy is still a very new and &#8220;exciting&#8221; field. It is changing the way we all think about how websites are built. A website with a good content strategy is what separates a good site from a great site.</p>
<img src="http://feeds.feedburner.com/~r/PeteSchuster/~4/OIaHAEzTYPQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://peteschuster.com/2012/02/content-as-a-kingdom/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://peteschuster.com/2012/02/content-as-a-kingdom/</feedburner:origLink></item>
		<item>
		<title>Interacting with the Community</title>
		<link>http://feedproxy.google.com/~r/PeteSchuster/~3/cggWu2LW0Zg/</link>
		<comments>http://peteschuster.com/2012/02/interacting-with-the-community/#comments</comments>
		<pubDate>Sat, 11 Feb 2012 16:49:57 +0000</pubDate>
		<dc:creator>Pete Schuster</dc:creator>
				<category><![CDATA[Community]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[meetups]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://peteschuster.com/?p=3307</guid>
		<description><![CDATA[Do you find it hard to speak to people at social events and meet ups? Who doesn't? Check out this open discussion post on what you could be doing better.]]></description>
			<content:encoded><![CDATA[<p>One thing I&#8217;ve often struggled with is being able to speak to new people. Recently I&#8217;ve been trying to attend more local events like <a href="http://philamade.com/" target="_blank">PhilaMade</a>, <a href="http://philly.buildguild.org/">Build Guild</a>, <a href="http://phillychi.acm.org/" target="_blank">Philly CHI</a>, <a href="http://www.meetup.com/Philadelphia-WordPress-Meetup-Group/" target="_blank">WordPress Meetups</a> and <a href="http://www.panma.org/" target="_blank">PANMA</a>, to name a few. But I often end up crowding around with people I already know and awkwardly looking around the room but avoiding eye contact with everyone. Essentially, my goal in these situations is trying to seem as if I&#8217;m looking for someone to talk to, but successfully engaging with no one.</p>
<p>I found that most people are the same way as me, and I suppose forced social settings aren&#8217;t exactly comfort zones for most. In addition some of these events are held in loud, crowded bars and not the most conversation friendly places. In the age of Internet anonymity, however, there is a strange relationship with people you know really well and people you&#8217;ve actually spoken to. Social networks like Twitter, offer the ability to get to know your fellow developer or programmer without actually having to interact with them. So what happens when you want to?</p>
<p>I&#8217;ve found myself in several situations where I&#8217;m either in the same room, group, or social situation with someone I&#8217;ve been following on Twitter for several months. Now what? Oh hi, I not only know what you had for breakfast, and that you were up late last night drinking, but that project you posted on GitHub the other day was really great, congrats!</p>
<p>This post is more of an open poll or plea if you will. How do you engage your fellow developers/colleagues? What are some good ice breakers? What do you typically talk about? Which events/event types do you typically have the best success with?</p>
<img src="http://feeds.feedburner.com/~r/PeteSchuster/~4/cggWu2LW0Zg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://peteschuster.com/2012/02/interacting-with-the-community/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		<feedburner:origLink>http://peteschuster.com/2012/02/interacting-with-the-community/</feedburner:origLink></item>
		<item>
		<title>Making Documentation Just Got Easier</title>
		<link>http://feedproxy.google.com/~r/PeteSchuster/~3/0XGLqAcWPYk/</link>
		<comments>http://peteschuster.com/2012/02/making-documentation-just-got-easier/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 19:30:37 +0000</pubDate>
		<dc:creator>Pete Schuster</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[documentation]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[help text]]></category>

		<guid isPermaLink="false">http://peteschuster.com/?p=3297</guid>
		<description><![CDATA[Making help documentation is often a pain. Now with the help of Rapid Documentation Prototyping, it just got a lot easier. Quickly develop help documentation from pre-built templates!]]></description>
			<content:encoded><![CDATA[<p>This past week or so I&#8217;ve been working on creating documentation for a custom WordPress installation that I&#8217;ve been building for a client. The theme offers several different post types all with their own unique fields, etc. Because the site was so involved, and offered a lot more than the typically WordPress build, I decided I need to make some documentation for the client and for future administrators of the site. As I began to write this mini help site, I thought to myself&#8230; a lot of these paragraphs and images can be reused for almost any WordPress build&#8230; And hence I present you with a new GitHub repo, <a href="https://github.com/PeteSchuster/Rapid-Documentation-Prototpying" target="_blank">Rapid Documentation Prototyping</a>&#8230; Alright the name could use some work, but you get the idea&#8230;</p>
<p>So the idea behind Rapid Documentation Prototyping is that a lot features from WordPress or any build for that matter, Drupal, Expression Engine, etc, are similar if not identical from build to build. Common tasks like, How to Login? or How to Publish/Edit/Delete content is most likely going to be the same from build to build.</p>
<p>Now I know what you&#8217;re saying&#8230; isn&#8217;t that what the Codex is for or the hundreds if not thousands of blogs, tutorials, etc that are easy to access with a simply Google Search? Yes, and you right, finding out how to do something on a popular piece of software is fairly easy, but that doesn&#8217;t get you off the hook. Sometimes the clients we build projects for, or the employees they hire in order to maintain said sites might be less than tech savy, and navigating the WordPress Codec, or finding an up to date article on Google about how to Set a Featured Image in WordPress might be a monumental task.</p>
<p>With the help of Rapid Documentation Prototyping, however, you&#8217;ll be able to create useful, interactive and personal documentation that can help your client navigate the site you built quickly, easily, and without hazard. Instead of Googleing &#8220;How to login to Drupal,&#8221; your client can now simply click a link the directs them there instantly. By grabbing one of the pre-built templates, you can start writing documentation quicker and with less annoyance.</p>
<p>Currently there is only one template ( WordPress ), and the text is very limited right now. Eventually I&#8217;d like to have support for multiple platforms, popular plugins, etc. If you&#8217;d like to contribute to the project, fork it on <a href="https://github.com/PeteSchuster/Rapid-Documentation-Prototpying" target="_blank">GitHub</a>, <a href="http://peteschuster.com/contact/" target="_blank">send me a message</a> or tweet <a href="https://twitter.com/#!/pete_schuster" target="_blank">@pete_schuster</a>.</p>
<p>So what do you think? Good idea or bad idea? Do you typically write documentation for your clients? Why, why not?</p>
<img src="http://feeds.feedburner.com/~r/PeteSchuster/~4/0XGLqAcWPYk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://peteschuster.com/2012/02/making-documentation-just-got-easier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://peteschuster.com/2012/02/making-documentation-just-got-easier/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.198 seconds. --><!-- Cached page generated by WP-Super-Cache on 2012-02-20 09:22:15 -->

