<?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>Ensellitis.com</title>
	<atom:link href="http://ensellitis.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ensellitis.com</link>
	<description>Coffee.  Tech.  The bizarre.  All nerd stuff.</description>
	<lastBuildDate>Fri, 28 May 2010 20:49:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>CSS Media Queries</title>
		<link>http://ensellitis.com/2010/05/28/css-media-queries/</link>
		<comments>http://ensellitis.com/2010/05/28/css-media-queries/#comments</comments>
		<pubDate>Fri, 28 May 2010 20:47:01 +0000</pubDate>
		<dc:creator>Devin Clark</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://ensellitis.com/?p=125</guid>
		<description><![CDATA[It is possible to load different styles on a page if certain factors exist. Now, I am not going to try to confuse you any more and I am just going to jump into some code. &#60;link src=&#34;some Styles.css&#34; media=&#34;screen&#34; /&#62; The important part of this is the media attribute. I am sure you all [...]]]></description>
			<content:encoded><![CDATA[<p>It is possible to load different styles on a page if certain factors exist. Now, I am not going to try to confuse you any more and I am just going to jump into some code.</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;link src=&quot;some Styles.css&quot; media=&quot;screen&quot; /&gt;</pre></div></div>

<p>The important part of this is the media attribute. I am sure you all use at least screen and print. We can add to those to change the layout of our page for different screen resolutions.</p>
<p>For Example, adding to our previous code:</p>

<div class="wp_syntax"><div class="code"><pre class="html" style="font-family:monospace;">&lt;link src=&quot;someStyles.css&quot; media=&quot;screen&quot; /&gt;
&lt;link src=&quot;someMediaStyles.css&quot; media=&quot;screen and (min-width: 480px)&quot; /&gt;</pre></div></div>

<p>All we added was &#8220;and (min-width: 480px)&#8221; after in our media attribute after screen. What that means is if the width of the browser is at least 480px then the stylesheet someMobileStyles will be loaded.<br />
That was a bad choice on my part to use min-width for iphone styles. There is another media query we can use, device-width, which does what I was trying to accomplish. (While writing the demo I discovered that min-width doesn&#8217;t work on the iPhone, device-width does)</p>
<p>From here on out I am going to reference using the @media declaration within a stylesheet. An example of the @media declaration:</p>

<div class="wp_syntax"><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #a1a100;">@media screen and (device-width: 480px) {</span>
<span style="color: #808080; font-style: italic;">/*css goes in here */</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div>

<p>Pro Tip: I always use @media over the media attribute on the link tag because it saves an http request.</p>
<p>There are several media queries that we can use. The ones I can see myself using are min-width, device-width, orientation.<br />
Most of them allow you to add min- or max- as a prefix for greater or equal to or smaller or equal to.<br />
For a fill list, visit the <a href="http://www.w3.org/TR/css3-mediaqueries/#media1">W3 CSS Media Queries article</a>.</p>
<p>I wrote up a demo that shows a practical application of this technique. It shows 4 different layouts, one for 960px+, one for 600px to 959px, one for 480px to 599px and one for mobile devices with a width of 480px (like the iPhone).</p>
<p><a href="http://ensellitis.com/wp-content/uploads/2010/05/mediaQueriesDemo.html">Demo</a></p>
<h4>Further Reading</h4>
<p><a href="http://www.w3.org/TR/css3-mediaqueries/">http://www.w3.org/TR/css3-mediaqueries/</a><br />
<a href="http://css-tricks.com/resolution-specific-stylesheets/">Chris Coyer&#8217;s Excellent article on CSS Media Queries</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ensellitis.com/2010/05/28/css-media-queries/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>And this is your ISP on drugs&#8230;</title>
		<link>http://ensellitis.com/2010/05/25/and-this-is-your-isp-on-drugs/</link>
		<comments>http://ensellitis.com/2010/05/25/and-this-is-your-isp-on-drugs/#comments</comments>
		<pubDate>Tue, 25 May 2010 02:20:26 +0000</pubDate>
		<dc:creator>Chris Ensell</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Hall of Shame]]></category>
		<category><![CDATA[Rant]]></category>
		<category><![CDATA[Comcast]]></category>
		<category><![CDATA[rant]]></category>

		<guid isPermaLink="false">http://ensellitis.com/?p=122</guid>
		<description><![CDATA[What web developer&#8217;s blog would be complete without a Comcast sucks rant? But, yeah, Comcast sucks.  Not much of a suprise to most people who have them.  I have never liked them, but sometimes, you don&#8217;t have much of an option.  Like me now. Comcast has started idling out our connection.  When I first moved [...]]]></description>
			<content:encoded><![CDATA[<p>What web developer&#8217;s blog would be complete without a Comcast sucks rant?</p>
<p>But, yeah, Comcast sucks.  Not much of a suprise to most people who have them.  I have never liked them, but sometimes, you don&#8217;t have much of an option.  Like me now.</p>
<p>Comcast has started idling out our connection.  When I first moved to Florida in December, I was getting about 12-14Mbps down, and about 10Mbps up.</p>
<p>What am I at now?</p>
<p><img class="aligncenter" src="http://www.speedtest.net/result/825076337.png" alt="" width="300" height="135" /></p>
<p>2.12 Mbps???  I&#8217;m sorry, but I believe we are paying for HIGHSPEED.</p>
<p>Further more&#8230;  Comcast&#8217;s Domain Helper Service.</p>
<blockquote><p>With the Domain Helper service we are testing now, we will instead help direct your Web browser to an easy-to-use page with suggestions and links to get you back on track. We also provide a seamless search experience on this page, which is powered by <a title="Yahoo!" href="http://www.yahoo.com/">Yahoo!</a>, so you can find relevant search information, or simply perform another search.</p></blockquote>
<p>Problem is, IT DOESN&#8217;T WORK.  Today, trying to do some research, several sites would have some pages load just fine, then all of the sudden BAM!</p>
<p>&#8220;Sorry, we can&#8217;t find &#8220;URL&#8221;.  Did you mean &#8220;SAME URL!&#8221;</p>
<p>Normally, I would think that this is just a problem with the server the site is on.  But I doubt Google has that problem.</p>
<p>So, obviously, I am switching.  We will be cancelling them by the weekend and switching to some provider that isn&#8217;t going to slow down my service and use buggy beta services.</p>
<p>Shirt rant, but, I am sure it&#8217;s been read over and over again that their service is a complete joke.</p>
]]></content:encoded>
			<wfw:commentRss>http://ensellitis.com/2010/05/25/and-this-is-your-isp-on-drugs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Wave now open for all</title>
		<link>http://ensellitis.com/2010/05/20/google-wave-now-open-for-all/</link>
		<comments>http://ensellitis.com/2010/05/20/google-wave-now-open-for-all/#comments</comments>
		<pubDate>Thu, 20 May 2010 11:30:53 +0000</pubDate>
		<dc:creator>Chris Ensell</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The Internet]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Social Networking]]></category>

		<guid isPermaLink="false">http://ensellitis.com/?p=95</guid>
		<description><![CDATA[Google has announced that they are finally letting everyone into Wave as part of its experimental Google Labs offerings. For some time it was a semi-secret project that was invite only, much like how gmail started out like. This is still a preview, though.  So they may stop it at anytime, and there may be [...]]]></description>
			<content:encoded><![CDATA[<p>Google has announced that they are finally letting everyone into <a href="http://wave.google.com/">Wave</a> as part of its experimental Google Labs offerings.  For some time it was a semi-secret project that was invite only, much like how gmail started out like.</p>
<p>This is still a preview, though.  So they may stop it at anytime, and there may be several bugs.</p>
<p>What is Wave?  Just think gmail, gtalk, Flickr like photo management and a bunch of social-networking technologies, all rolled up into one big &#8216;ol burrito.  If done just right, this may be the Facebook/Myspace killer (Please god, let it be the Facebook/Myspace killer).</p>
<p>Thus far, I am not impressed.  Looks pretty, but so far, there is very little to keep me occupied.</p>
<p>Anywho, head on over and try it out for yourselves.  If you have a Google account, just log in, if not, get with the program and get one.</p>
]]></content:encoded>
			<wfw:commentRss>http://ensellitis.com/2010/05/20/google-wave-now-open-for-all/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Auto format HEX colors</title>
		<link>http://ensellitis.com/2010/05/20/auto-format-hex-colors/</link>
		<comments>http://ensellitis.com/2010/05/20/auto-format-hex-colors/#comments</comments>
		<pubDate>Thu, 20 May 2010 10:57:46 +0000</pubDate>
		<dc:creator>Chris Ensell</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[HEX]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://ensellitis.com/?p=85</guid>
		<description><![CDATA[Another snippet from my library. This I have actually found useful several times in the past. It looks for HEX color values in a string and colorizes them. function format_hex_color&#40;$t&#41; &#123; $t = preg_replace&#40;&#34;#(\#[0-9A-Fa-f]{6})#si&#34;, &#34;&#60;span style='color:\\1'&#62;\\1&#60;/span&#62;&#34;, $t&#41;; return $t; &#125; Example usage $string = &#34;He wanted it in #ff0000 or #00FFAA.&#34;; $string = format_hex_color&#40;$string&#41;; &#160; [...]]]></description>
			<content:encoded><![CDATA[<p>Another snippet from my library.  This I have actually found useful several times in the past.  It looks for HEX color values in a string and colorizes them.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> format_hex_color<span style="color: #009900;">&#40;</span><span style="color: #000088;">$t</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$t</span> <span style="color: #339933;">=</span> <span style="color: #990000;">preg_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;#(\#[0-9A-Fa-f]{6})#si&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&lt;span style='color:<span style="color: #000099; font-weight: bold;">\\</span>1'&gt;<span style="color: #000099; font-weight: bold;">\\</span>1&lt;/span&gt;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$t</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$t</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Example usage</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$string</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;He wanted it in #ff0000 or #00FFAA.&quot;</span><span style="color: #339933;">;</span>
<span style="color: #000088;">$string</span> <span style="color: #339933;">=</span> format_hex_color<span style="color: #009900;">&#40;</span><span style="color: #000088;">$string</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #b1b100;">echo</span> <span style="color: #000088;">$string</span><span style="color: #339933;">;</span></pre></div></div>

<p>Would output:<br />
He wanted it in <span style="color:#ff0000">#ff0000</span> or <span style="color:#00FFAA">#00FFAA</span></p>
<p>Works with both caps and lowercase.</p>
]]></content:encoded>
			<wfw:commentRss>http://ensellitis.com/2010/05/20/auto-format-hex-colors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP – Shorthand Echo</title>
		<link>http://ensellitis.com/2010/05/19/php-shorthand-echo/</link>
		<comments>http://ensellitis.com/2010/05/19/php-shorthand-echo/#comments</comments>
		<pubDate>Wed, 19 May 2010 15:26:39 +0000</pubDate>
		<dc:creator>Chris Ensell</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[snippet]]></category>

		<guid isPermaLink="false">http://ensellitis.com/?p=55</guid>
		<description><![CDATA[To test out my new syntax highlighting plugin, I&#8217;m going to post a shorthand way of doing an echo in PHP. A typical echo is&#8230; &#60;?php echo $variable; ?&#62; And the shorthand method that I almost always use&#8230; &#60;?=$variable?&#62;]]></description>
			<content:encoded><![CDATA[<p>To test out my new syntax highlighting plugin, I&#8217;m going to post a shorthand way of doing an echo in PHP.</p>
<p>A typical echo is&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$variable</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>And the shorthand method that I almost always use&#8230;</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?=</span><span style="color: #000088;">$variable</span><span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://ensellitis.com/2010/05/19/php-shorthand-echo/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Still working on it&#8230;</title>
		<link>http://ensellitis.com/2010/05/19/still-working-on-it/</link>
		<comments>http://ensellitis.com/2010/05/19/still-working-on-it/#comments</comments>
		<pubDate>Wed, 19 May 2010 12:47:16 +0000</pubDate>
		<dc:creator>Chris Ensell</dc:creator>
				<category><![CDATA[Site Updates]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://ensellitis.com/?p=47</guid>
		<description><![CDATA[There is still a lot of stuff needing updated, fixed, added, and so on&#8230; I have a guest poster or two that are going to help keep the content rolling here soon as well. Stay tuned.]]></description>
			<content:encoded><![CDATA[<p>There is still a lot of stuff needing updated, fixed, added, and so on&#8230;</p>
<p>I have a guest poster or two that are going to help keep the content rolling here soon as well.</p>
<p>Stay tuned.</p>
]]></content:encoded>
			<wfw:commentRss>http://ensellitis.com/2010/05/19/still-working-on-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Biggest theme thief ever?</title>
		<link>http://ensellitis.com/2010/05/19/biggest-theme-thief-ever/</link>
		<comments>http://ensellitis.com/2010/05/19/biggest-theme-thief-ever/#comments</comments>
		<pubDate>Wed, 19 May 2010 11:45:44 +0000</pubDate>
		<dc:creator>Chris Ensell</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Hall of Shame]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Isolated]]></category>
		<category><![CDATA[ripper]]></category>
		<category><![CDATA[thief]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://ensellitis.com/?p=35</guid>
		<description><![CDATA[So, to be lazy, I did a Google search to get a thumbnail of my Isolated theme for when I posted it with this new theme&#8230; I find it&#8230; With an added surprise. I found a website filled with themes, and there are a lot on there where they removed the author&#8217;s link backs and [...]]]></description>
			<content:encoded><![CDATA[<p>So, to be lazy, I did a Google search to get a thumbnail of my Isolated theme for when I posted it with this new theme&#8230;</p>
<p>I find it&#8230;  With an added surprise.  I found a website filled with themes, and there are a lot on there where they removed the author&#8217;s link backs and copyrights and added their very own.   Including my <a href="http://www.wordpressthemes2.com/demo/?theme=Isolated">Isolated theme</a>.  I know this, because I have seen may of the original themes before.</p>
<p>This website, <a href="http://www.wordpressthemes2.com">http://www.wordpressthemes2.com</a> is by far one of the biggest rippers I have ever seen.</p>
<p>I recommend, if you are or know any theme authors, send them to that site and see how many of their themes have been ripped.</p>
<p>And they officially become the first member of my new Hall of Shame.</p>
]]></content:encoded>
			<wfw:commentRss>http://ensellitis.com/2010/05/19/biggest-theme-thief-ever/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Isolated WordPress Theme</title>
		<link>http://ensellitis.com/2010/05/19/isolated-wordpress-theme/</link>
		<comments>http://ensellitis.com/2010/05/19/isolated-wordpress-theme/#comments</comments>
		<pubDate>Wed, 19 May 2010 09:55:15 +0000</pubDate>
		<dc:creator>Chris Ensell</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Isolated]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://ensellitis.com/v2/?p=23</guid>
		<description><![CDATA[Here it is, the Isolated theme.  I have gotten so many emails asking for this back that I had to repost it. It is free to download, but be warned: This was created a few years ago, it is way out of date and will probably need modifications to run. The javascript used to make it [...]]]></description>
			<content:encoded><![CDATA[<p>Here it is, the <a href="http://www.ensellitis.com/wp-content/uploads/2010/02/isolated.zip">Isolated theme</a>.  I have gotten so many emails asking for this back that I had to repost it.</p>
<p>It is free to download, but be warned:</p>
<ol>
<li>This was created a few years ago, it is way out of date and will probably need modifications to run.</li>
<li>The javascript used to make it is probably outdated too.</li>
<li>I will NOT support this theme in any aspect whatsoever.</li>
<li>I have no screenshot here.  Too much work.  If you are here, you probably know what you are looking for anyways.</li>
</ol>
<p>Enjoy.  All I ask is that a link back to me is left in the footer.</p>
]]></content:encoded>
			<wfw:commentRss>http://ensellitis.com/2010/05/19/isolated-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What happened?!</title>
		<link>http://ensellitis.com/2010/05/19/hello-world/</link>
		<comments>http://ensellitis.com/2010/05/19/hello-world/#comments</comments>
		<pubDate>Wed, 19 May 2010 01:10:26 +0000</pubDate>
		<dc:creator>Chris Ensell</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Site Updates]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://ensellitis.com/v2/?p=1</guid>
		<description><![CDATA[What happened?! I&#8217;ll tell you what happened&#8230;  I have drastically changed Ensellitis.com, again. No longer is this just some personal weblog (I hate the sound of blog)&#8230;  Now its back to it&#8217;s original format.  So I am starting from scratch. Also, the old design was ditched to be more user friendly, especially to those with [...]]]></description>
			<content:encoded><![CDATA[<p>What happened?!</p>
<p>I&#8217;ll tell you what happened&#8230;  I have drastically changed Ensellitis.com, again.</p>
<p>No longer is this just some personal weblog (I hate the sound of blog)&#8230;  Now its back to it&#8217;s original format.  So I am starting from scratch.</p>
<p>Also, the old design was ditched to be more user friendly, especially to those with javascript disabled and mobile phone users.</p>
]]></content:encoded>
			<wfw:commentRss>http://ensellitis.com/2010/05/19/hello-world/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

