<?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/"
	>

<channel>
	<title>eleven82</title>
	<atom:link href="http://www.eleven82.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.eleven82.com</link>
	<description></description>
	<pubDate>Wed, 23 Dec 2009 15:41:53 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Smashing Book</title>
		<link>http://www.eleven82.com/smashing-book/</link>
		<comments>http://www.eleven82.com/smashing-book/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 15:39:47 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.eleven82.com/?p=56</guid>
		<description><![CDATA[I received my copy of The Smashing Book (from SmashingMagazine.com) last week and haven&#8217;t had a change to post about it until now. I haven&#8217;t gotten all the way through the book but the chapters I have read are written very well. The Smashing Book looks at &#8220;Web design rules of thumb, color theory, usability [...]]]></description>
			<content:encoded><![CDATA[<p>I received my copy of The Smashing Book (from <a href="http://www.smashingmagazine.com/" target="_blank">SmashingMagazine.com</a>) last week and haven&#8217;t had a change to post about it until now. I haven&#8217;t gotten all the way through the book but the chapters I have read are written very well. The Smashing Book looks at &#8220;Web design rules of thumb, color theory, usability guidelines, user interface design, best coding and optimization practices, as well as typography, marketing, branding and exclusive insights from top designers across the globe.&#8221; I&#8217;ve read the first four chapters and skimmed around the optimization chapter so far and my only issue with the book, which isn&#8217;t a huge issue, is that I feel the margins are too close to the spine of the book. But the book is the perfect size to read on the bus or train like I do.</p>
<p>The contents of the book are:</p>
<ul>
<li>The Art and Science of CSS Layouts</li>
<li>User Interface Design in Modern Applications</li>
<li>Web Typography: Rules, Guidelines and Common Mistakes</li>
<li>Usability Principles for Modern Websites</li>
<li>The Guide to Fantastic Color Usage in Web Design and Usability</li>
<li>Performance Optimization for Websites</li>
<li>Design to Sell: Increase Conversion Rates</li>
<li>How to Turn a Site Into a Remarkable Brand</li>
<li>Learning From Experts: Interviews and Insights</li>
<li>The Smashing Story</li>
</ul>
<p>The book is 313 pages, is only $29.90 and can be <a href="http://www.smashingmagazine.com/2009/12/03/smashing-book-its-out-now/?utm_source=Smashing%2BMagazine&amp;utm_medium=badge&amp;utm_content=sm_badges_3.jpg&amp;utm_campaign=Smashing%2BBook%20-%20Smashing%20Magazine%20-%20Badge" target="_blank">previewed and bought here</a>. You can <a href="http://media.smashingmagazine.com/cdn_smash/pdfs/sm-book-chapter1.pdf" target="_blank">download the first chapter</a>, as a pdf, to get a taste of what the book offers.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eleven82.com/smashing-book/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Custom Image Fields</title>
		<link>http://www.eleven82.com/custom-image-fields/</link>
		<comments>http://www.eleven82.com/custom-image-fields/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 19:44:53 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eleven82.com/?p=46</guid>
		<description><![CDATA[I&#8217;ve been reading a lot of blog posts about custom fields for Wordpress and have noticed on every post I have read they tell you how to successfully create custom image fields but they do it, to me, the hard way. I realized this work-around when I was creating GymDJ.com. My method is good for [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been reading a lot of blog posts about custom fields for Wordpress and have noticed on every post I have read they tell you how to successfully create custom image fields but they do it, to me, the hard way. I realized this work-around when I was creating <a title="Gym DJ" href="http://www.gymdj.com" target="_blank">GymDJ.com</a>. My method is good for blogs that will have an consistent image in a regular spot, such as a thumbnail or post header.</p>
<p>Method One is a valid way to produce a custom image field.</p>
<blockquote><p>&lt;img src=&#8221;&lt;?php echo get_post_meta($post-&gt;ID, &#8220;Image&#8221;, true); ?&gt;&#8221; /&gt;</p></blockquote>
<p>Here&#8217;s the problem, on the back end you&#8217;d have to put the full string in the value box, such as http://www.eleven82.com/wp-folder/themes/themes-name/images/image.jpg. That&#8217;s a lot to remember.</p>
<p>My method uses template url.</p>
<blockquote><p>&lt;img src=&#8221;&lt;?php bloginfo(&#8217;template_url&#8217;); ?&gt;/images/&lt;?php echo get_post_meta($post-&gt;ID, &#8220;Image&#8221;, true); ?&gt;&#8221;  /&gt;</p></blockquote>
<p>By adding &lt;?php blgoinfo(&#8217;template_url&#8217;); ?&gt; snippet it inserts the URL of the template directory into the template output. So it adds &#8220;http://www.eleven82.com/wp-folder/themes/themes-name/&#8221; to your output. Typically all images are kept in an images folder but you can add as many folders as you need to reach your file. For example, if you wanted a thumbnail image and it was stored in the images folder then thumbs folder, you would add &#8216;/images/thumbs/&#8217; then the rest of the custom field code. On the back end you would add your file name to the values box (ie. images.jpg). And you&#8217;re done.</p>
<p><strong>Note: </strong>You can also replace template_url with template_directory and it would have the same effect.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eleven82.com/custom-image-fields/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GymDJ.com gets added to the Portfolio</title>
		<link>http://www.eleven82.com/gymdjcom-gets-added-to-the-portfolio/</link>
		<comments>http://www.eleven82.com/gymdjcom-gets-added-to-the-portfolio/#comments</comments>
		<pubDate>Thu, 06 Aug 2009 19:53:37 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eleven82.com/?p=43</guid>
		<description><![CDATA[GymDJ.com launched August 2009 and is a site that combines beats per minute (bpm) with exercises to motivate people to work out longer / better. They promote mainstream music as well as up-and-coming musicians. Eleven82 built GymDJ a custom Wordpress site that includes, flash mp3 player, a single mp3 player, user rating system, and about [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.gymdj.com" target="_blank">GymDJ.com</a> launched August 2009 and is a site that combines beats per minute (bpm) with exercises to motivate people to work out longer / better. They promote mainstream music as well as up-and-coming musicians. Eleven82 built GymDJ a custom Wordpress site that includes, flash mp3 player, a single mp3 player, user rating system, and about 4 user contact forms. Check them out:</p>
<ul>
<li><a href="http://www.gymdj.com" target="_blank">GymDJ.com</a></li>
<li><a href="http://twitter.com/gymdj" target="_blank">Twitter.com/gymdj</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.eleven82.com/gymdjcom-gets-added-to-the-portfolio/feed/</wfw:commentRss>
		</item>
		<item>
		<title>You&#8217;ve signed up with Twitter, Now What?</title>
		<link>http://www.eleven82.com/youve-signed-up-with-twitter-now-what/</link>
		<comments>http://www.eleven82.com/youve-signed-up-with-twitter-now-what/#comments</comments>
		<pubDate>Wed, 29 Apr 2009 01:02:16 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eleven82.com/?p=24</guid>
		<description><![CDATA[So you&#8217;ve signed up with Twitter but don&#8217;t know what to do now. I decided to write this post because I over heard a guy saying the same thing as I passed him on my way to get something to eat for lunch.
Twitter is similar to Myspace or Facebook status update. Twitter, like Facebook, is [...]]]></description>
			<content:encoded><![CDATA[<p>So you&#8217;ve signed up with Twitter but don&#8217;t know what to do now. I decided to write this post because I over heard a guy saying the same thing as I passed him on my way to get something to eat for lunch.</p>
<p>Twitter is similar to Myspace or Facebook status update. Twitter, like Facebook, is a powerful networking site where you get friends, or in this case followers, and write short posts about your day, a job opening, or an extra ticket to a game that you have. Twitter asks the question, what are you doing? You have 140 characters to answer that question. Below is a video explaining Twitter in plain English.</p>
<p style="text-align: center;"><object width="480" height="385" data="http://www.youtube.com/v/ddO9idmax0o&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/ddO9idmax0o&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /></object></p>
<p>Once you sign up with Twitter you start posting about what you are doing. Some important things to know, if you are using it primarily for networking; to direct a tweet to someone use the &#8220;@&#8221; symbol followed by their user name (ie. @<a href="http://twitter.com/letsnotlisten" target="_blank">letsnotlisten</a> + message) this shows up in their &#8220;replies&#8221; tab, to make a word searchable (better for marketing) use &#8220;#word&#8221; (ie. #eleven82) and to send a direct message use the &#8220;D + username + message&#8221; (ie. d <a href="http://twitter.com/letsnotlisten" target="_blank">letsnotlisten</a> message). <a href="http://help.twitter.com/portal" target="_blank">Read all of Twitter&#8217;s support</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eleven82.com/youve-signed-up-with-twitter-now-what/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Punk Goes Pop, vol 2</title>
		<link>http://www.eleven82.com/punk-goes-pop-vol-2/</link>
		<comments>http://www.eleven82.com/punk-goes-pop-vol-2/#comments</comments>
		<pubDate>Wed, 15 Apr 2009 18:33:23 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eleven82.com/?p=21</guid>
		<description><![CDATA[I was listening to iTunes (Distortion Radio) at work the other day and Toxic by A Static Lullaby came on. Awesome song. So I bought it off iTunes and saw it came from the album Punk Goes Pop volume 2. I&#8217;m a huge fan of pop songs transformed by punk and metal bands so I [...]]]></description>
			<content:encoded><![CDATA[<p>I was listening to iTunes (Distortion Radio) at work the other day and Toxic by A Static Lullaby came on. Awesome song. So I bought it off iTunes and saw it came from the album Punk Goes Pop volume 2. I&#8217;m a huge fan of pop songs transformed by punk and metal bands so I was excited to see that another album dropped March 10, 2009. Here the list of songs plus the music video by A Static Lullaby.</p>
<p><object width="560" height="340" data="http://www.youtube.com/v/4xwXOj55nIY&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/4xwXOj55nIY&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /></object></p>
<ol>
<li>What Goes Around&#8230; by Alesana. Justin Timberlake cover.</li>
<li>Apologize by Silverstein. One Republic cover.</li>
<li>&#8230;Baby One More Time by August Burns Red. Britney Spears cover.</li>
<li>When I Grow Up by Mayday Parade. The Pussycat Dolls cover.</li>
<li>Over My Head by A Day to Remember. The Fray cover.</li>
<li>Smooth by Escape the Fate. Santana cover.</li>
<li>Ice Box by There for Tomorrow. Omarion cover.</li>
<li>Flagpole Sitta by Chiodos. Harvey Danger cover.</li>
<li>Beautiful Girls by Bayside. Sean Kingston cover.</li>
<li>See You Again by Breathe Carolina. Miley Cyrus cover.</li>
<li>Distrubia by The Cab. Rihanna cover.</li>
<li>Toxic by A Static Lullaby. Britney Spears cover.</li>
<li>Love Song by Four Year Strong. Sara Bareilles cover.</li>
<li>I Kissed a Girl by Attack Attack. Katy Perry cover.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.eleven82.com/punk-goes-pop-vol-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Did You Know?</title>
		<link>http://www.eleven82.com/did-you-know/</link>
		<comments>http://www.eleven82.com/did-you-know/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 12:27:52 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eleven82.com/?p=15</guid>
		<description><![CDATA[I stumbled across this video from Digg. The majority of it is technology information but it&#8217;s not nerd tech info. Run time is 4:56.

]]></description>
			<content:encoded><![CDATA[<p>I stumbled across this video from <a title="Did You Know from Digg.com" href="http://digg.com/gadgets/Did_You_Know_It_Will_Blow_Your_Mind" target="_blank">Digg</a>. The majority of it is technology information but it&#8217;s not nerd tech info. Run time is 4:56.</p>
<p><object width="480" height="385" data="http://www.youtube.com/v/UIDLIwlzkgY&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" type="application/x-shockwave-flash"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/UIDLIwlzkgY&amp;hl=en&amp;fs=1&amp;color1=0x3a3a3a&amp;color2=0x999999" /><param name="allowfullscreen" value="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.eleven82.com/did-you-know/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Design Complete</title>
		<link>http://www.eleven82.com/design-complete/</link>
		<comments>http://www.eleven82.com/design-complete/#comments</comments>
		<pubDate>Wed, 18 Mar 2009 16:01:27 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eleven82.com/?p=13</guid>
		<description><![CDATA[I&#8217;ve finally finished my new design, with the expection of a few tweaks. There will be more posts coming soon.
]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally finished my new design, with the expection of a few tweaks. There will be more posts coming soon.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eleven82.com/design-complete/feed/</wfw:commentRss>
		</item>
		<item>
		<title>New Design</title>
		<link>http://www.eleven82.com/new-design/</link>
		<comments>http://www.eleven82.com/new-design/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 15:54:57 +0000</pubDate>
		<dc:creator>Jonathan</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://eleven82.com/?p=6</guid>
		<description><![CDATA[I am in the process of updating this site, hang on.
]]></description>
			<content:encoded><![CDATA[<p>I am in the process of updating this site, hang on.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.eleven82.com/new-design/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
