<?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>I Smoke Too Much</title>
	<atom:link href="http://ismoketoomuch.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ismoketoomuch.com</link>
	<description>ismoketoomuch</description>
	<pubDate>Tue, 23 Feb 2010 01:43: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>Smoke Ring Collision</title>
		<link>http://ismoketoomuch.com/20100222/smoke-ring-collision/</link>
		<comments>http://ismoketoomuch.com/20100222/smoke-ring-collision/#comments</comments>
		<pubDate>Tue, 23 Feb 2010 01:43:53 +0000</pubDate>
		<dc:creator>Zim</dc:creator>
		
		<category><![CDATA[bullshit]]></category>

		<guid isPermaLink="false">http://ismoketoomuch.com/?p=268</guid>
		<description><![CDATA[

    

	]]></description>
			<content:encoded><![CDATA[<p><img src="/smoke.gif" alt="blue and red smoke rings colliding animated gif" /></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=I%20Smoke%20Too%20Much&amp;siteurl=http%3A%2F%2Fismoketoomuch.com%2F&amp;linkname=Smoke%20Ring%20Collision&amp;linkurl=http%3A%2F%2Fismoketoomuch.com%2F20100222%2Fsmoke-ring-collision%2F" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.addtoany.com');"><img src="http://ismoketoomuch.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ismoketoomuch.com/20100222/smoke-ring-collision/feed/</wfw:commentRss>
		</item>
		<item>
		<title>PHP image thumbnail and crop script</title>
		<link>http://ismoketoomuch.com/20091218/php-image-thumbnail-and-crop-script/</link>
		<comments>http://ismoketoomuch.com/20091218/php-image-thumbnail-and-crop-script/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 19:34:27 +0000</pubDate>
		<dc:creator>Zim</dc:creator>
		
		<category><![CDATA[dev projects]]></category>

		<guid isPermaLink="false">http://ismoketoomuch.com/?p=257</guid>
		<description><![CDATA[I had a project that required images to be automatically cropped and resized to the exact same dimensions regardless of the original file.  Automatically resizing proportionally was easy, automatically cropping to a percentile was easy, but being able to specify the dimensions and have it automatically resize and crop to fit from the center [...]]]></description>
			<content:encoded><![CDATA[<p>I had a project that required images to be automatically cropped and resized to the exact same dimensions regardless of the original file.  Automatically resizing proportionally was easy, automatically cropping to a percentile was easy, but being able to specify the dimensions and have it automatically resize and crop to fit from the center if needed, is a bit complicated!</p>
<p>Here&#8217;s the function.  $srcimg is an image reference, not an actual file.</p>
<div style="padding: 5px; border: solid 1px #ccc; background: #eee;">
<code><br />
function Thumbnail($srcimg,$tn_w,$tn_h) {<br />
$src_w = imagesx($srcimg);<br />
$src_h = imagesy($srcimg);<br />
$src_ratio = $src_w/$src_h;<br />
if ($tn_w/$tn_h &gt; $src_ratio) {<br />
$new_h = $tn_w/$src_ratio;<br />
$new_w = $tn_w;<br />
} else {<br />
$new_w = $tn_h*$src_ratio;<br />
$new_h = $tn_h;<br />
}<br />
$x_mid = $new_w/2;<br />
$y_mid = $new_h/2;<br />
$newpic = imagecreatetruecolor(round($new_w), round($new_h));<br />
imagecopyresampled($newpic, $srcimg, 0, 0, 0, 0, $new_w, $new_h, $src_w, $src_h);<br />
$final = imagecreatetruecolor($tn_w, $tn_h);<br />
imagecopyresampled($final, $newpic, 0, 0, ($x_mid-($tn_w/2)), ($y_mid-($tn_h/2)), $tn_w, $tn_h, $tn_w, $tn_h);<br />
imagedestroy($newpic);<br />
imagedestroy($srcimg);<br />
return $final;<br />
}<br />
</code>
</div>
<p>Tall images will be cropped from the center so the bottom and top are cut off.  Wide images will be cropped from the center so the sides are cut off.  Proportional images will remain uncropped and only resized to the dimensions you pass to this function.  Here&#8217;s what it might look like in action.</p>
<p>The form:</p>
<div style="padding: 5px; border: solid 1px #ccc; background: #eee;">
<code><br />
&lt;form enctype="multipart/form-data" method="post"&gt;<br />
&lt;input name="pic" type="file" /&gt;<br />
&lt;input type="submit" value="Crop and resize" /&gt;<br />
&lt;/form&gt;<br />
</code>
</div>
<p>The processing:</p>
<div style="padding: 5px; border: solid 1px #ccc; background: #eee;">
<code><br />
$img = imagecreatefromjpeg($_FILES['pic']['tmp_name']); //assuming it&#8217;s a jpeg<br />
$width = 410;<br />
$height = 396;<br />
$path = &#8216;/this/is/where/my/file/goes/&#8217;.$_FILES['pic']['name'];<br />
$newimg = Thumbnail($img,$width,$height);<br />
Imagejpeg($newimg,$path,80) //again, assuming jpeg, 80% quality<br />
</code>
</div>
<p>The new thumbnailed image will be placed in /this/is/where/my/file/goes with the same name as the original file.  Hooray!</p>
<p>Initial image:<br />
<img src="http://ismoketoomuch.com/wp-content/uploads/2009/12/70-the-most-awesome-picture-ever-taken.jpg" alt="70-the-most-awesome-picture-ever-taken" title="70-the-most-awesome-picture-ever-taken" width="500" height="344" class="aligncenter size-full wp-image-258" /></p>
<p>Cropped/resized:<br />
<img src="http://ismoketoomuch.com/wp-content/uploads/2009/12/38-19-0-big.jpg" alt="38-19-0-big" title="38-19-0-big" width="410" height="396" class="aligncenter size-full wp-image-259" /></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=I%20Smoke%20Too%20Much&amp;siteurl=http%3A%2F%2Fismoketoomuch.com%2F&amp;linkname=PHP%20image%20thumbnail%20and%20crop%20script&amp;linkurl=http%3A%2F%2Fismoketoomuch.com%2F20091218%2Fphp-image-thumbnail-and-crop-script%2F" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.addtoany.com');"><img src="http://ismoketoomuch.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ismoketoomuch.com/20091218/php-image-thumbnail-and-crop-script/feed/</wfw:commentRss>
		</item>
		<item>
		<title>how to draw a deer</title>
		<link>http://ismoketoomuch.com/20090925/how-to-draw-a-deer/</link>
		<comments>http://ismoketoomuch.com/20090925/how-to-draw-a-deer/#comments</comments>
		<pubDate>Fri, 25 Sep 2009 18:03:34 +0000</pubDate>
		<dc:creator>Zim</dc:creator>
		
		<category><![CDATA[art]]></category>

		<category><![CDATA[deer]]></category>

		<category><![CDATA[drawing]]></category>

		<guid isPermaLink="false">http://ismoketoomuch.com/?p=251</guid>
		<description><![CDATA[
Step 1: Sketch a deer
Step 2: Scan your sketch
Step 3: Digitally ink your sketch
Step 4: Color
Step 5: Shading
EASY PEASY!

    

	]]></description>
			<content:encoded><![CDATA[<p><a href="http://ismoketoomuch.com/draw/d/9333-3/deers.png"  rel="lightbox"><img alt="" src="http://ismoketoomuch.com/draw/d/9333-3/deers.png" title="a deer" class="aligncenter" width="630" height="315" /></a></p>
<p>Step 1: Sketch a deer<br />
Step 2: Scan your sketch<br />
Step 3: Digitally ink your sketch<br />
Step 4: Color<br />
Step 5: Shading</p>
<p>EASY PEASY!</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=I%20Smoke%20Too%20Much&amp;siteurl=http%3A%2F%2Fismoketoomuch.com%2F&amp;linkname=how%20to%20draw%20a%20deer&amp;linkurl=http%3A%2F%2Fismoketoomuch.com%2F20090925%2Fhow-to-draw-a-deer%2F" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.addtoany.com');"><img src="http://ismoketoomuch.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ismoketoomuch.com/20090925/how-to-draw-a-deer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I am a terrible designer</title>
		<link>http://ismoketoomuch.com/20090825/i-am-a-terrible-designer/</link>
		<comments>http://ismoketoomuch.com/20090825/i-am-a-terrible-designer/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 18:10:50 +0000</pubDate>
		<dc:creator>Zim</dc:creator>
		
		<category><![CDATA[bullshit]]></category>

		<guid isPermaLink="false">http://ismoketoomuch.com/?p=248</guid>
		<description><![CDATA[I do not know how to make things pretty.  I&#8217;m really good at making them functional, though. Also: I suck at blogging.

    

	]]></description>
			<content:encoded><![CDATA[<p>I do not know how to make things pretty.  I&#8217;m really good at making them functional, though. Also: I suck at blogging.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=I%20Smoke%20Too%20Much&amp;siteurl=http%3A%2F%2Fismoketoomuch.com%2F&amp;linkname=I%20am%20a%20terrible%20designer&amp;linkurl=http%3A%2F%2Fismoketoomuch.com%2F20090825%2Fi-am-a-terrible-designer%2F" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.addtoany.com');"><img src="http://ismoketoomuch.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ismoketoomuch.com/20090825/i-am-a-terrible-designer/feed/</wfw:commentRss>
		</item>
		<item>
		<title>what&#8217;s happening</title>
		<link>http://ismoketoomuch.com/20090601/whats-happening/</link>
		<comments>http://ismoketoomuch.com/20090601/whats-happening/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 00:34:55 +0000</pubDate>
		<dc:creator>Zim</dc:creator>
		
		<category><![CDATA[art]]></category>

		<guid isPermaLink="false">http://ismoketoomuch.com/?p=235</guid>
		<description><![CDATA[It&#8217;s been a while.
I had to format my desktop &#38; decided to give TinyXP a whirl.  I am impressed.  Threw in another GB of RAM as well.  Just got back from a weeklong vacation back home in New Mexico, too.
Not much to say, so here&#8217;s some photoshops and a panorama of the [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s been a while.</p>
<p>I had to format my desktop &amp; decided to give TinyXP a whirl.  I am impressed.  Threw in another GB of RAM as well.  Just got back from a weeklong vacation back home in New Mexico, too.</p>
<p>Not much to say, so here&#8217;s some photoshops and a panorama of the lake (I love the lake).  Click for bigger.</p>
<p><a rel="lightbox" href="http://ismoketoomuch.com/wp-content/uploads/2009/06/amber-blow.jpg" ><img class="size-thumbnail wp-image-236" title="bubbles" src="http://ismoketoomuch.com/wp-content/uploads/2009/06/amber-blow-150x112.jpg" alt="bubbles" width="200" height="140" /></a> <a rel="lightbox" href="http://ismoketoomuch.com/wp-content/uploads/2009/06/dylan-bubbles.jpg" ><img class="size-thumbnail wp-image-237" title="bubbles" src="http://ismoketoomuch.com/wp-content/uploads/2009/06/dylan-bubbles-150x112.jpg" alt="more bubbles" width="200" height="140" /></a> <a rel="lightbox" href="http://ismoketoomuch.com/wp-content/uploads/2009/06/truck.jpg" ><img class="size-thumbnail wp-image-238" title="truck" src="http://ismoketoomuch.com/wp-content/uploads/2009/06/truck-150x112.jpg" alt="truck" width="200" height="140" /></a></p>
<p><a rel="lightbox" href="http://ismoketoomuch.com/wp-content/uploads/2009/06/lakepan.jpg" ><img class="size-medium wp-image-239" title="lakepan" src="http://ismoketoomuch.com/wp-content/uploads/2009/06/lakepan-300x18.jpg" alt="lake panorama" width="600" height="36" /></a></p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=I%20Smoke%20Too%20Much&amp;siteurl=http%3A%2F%2Fismoketoomuch.com%2F&amp;linkname=what%26%238217%3Bs%20happening&amp;linkurl=http%3A%2F%2Fismoketoomuch.com%2F20090601%2Fwhats-happening%2F" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.addtoany.com');"><img src="http://ismoketoomuch.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ismoketoomuch.com/20090601/whats-happening/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Tweetmeme retweet this post plugin</title>
		<link>http://ismoketoomuch.com/20090409/tweetmeme-retweet-this-post-plugin/</link>
		<comments>http://ismoketoomuch.com/20090409/tweetmeme-retweet-this-post-plugin/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 02:48:37 +0000</pubDate>
		<dc:creator>Zim</dc:creator>
		
		<category><![CDATA[dev projects]]></category>

		<category><![CDATA[dev]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[twitter]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://ismoketoomuch.com/?p=231</guid>
		<description><![CDATA[My buddy from Top SEO Consultants asked me to whip up a wordpress plugin to throw tweetmeme&#8217;s &#8220;retweet this&#8221; button into posts with options to position the button.
It&#8217;s in Dev Projects.  
I just noticed that spell-check is flagging the terms &#8220;SEO&#8221;, &#8220;WordPress&#8221;, and &#8220;plugin&#8221;.  You&#8217;d think they&#8217;d be commonplace enough by now that [...]]]></description>
			<content:encoded><![CDATA[<p>My buddy from <a href="http://www.neo1seo.com" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.neo1seo.com');">Top SEO Consultants</a> asked me to whip up a wordpress plugin to throw tweetmeme&#8217;s &#8220;retweet this&#8221; button into posts with options to position the button.</p>
<p>It&#8217;s in <a href="http://ismoketoomuch.com/dev/" >Dev Projects</a>.  </p>
<p>I just noticed that spell-check is flagging the terms &#8220;SEO&#8221;, &#8220;WordPress&#8221;, and &#8220;plugin&#8221;.  You&#8217;d think they&#8217;d be commonplace enough by now that they&#8217;d be included in those dictionaries by default.</p>
<p>Anyway, the plugin is here: <a href="http://ismoketoomuch.com/projects/wp-tweetmeme.zip" onclick="javascript:pageTracker._trackPageview('/downloads/projects/wp-tweetmeme.zip');">Tweetmeme Retweet Button</a>.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=I%20Smoke%20Too%20Much&amp;siteurl=http%3A%2F%2Fismoketoomuch.com%2F&amp;linkname=Tweetmeme%20retweet%20this%20post%20plugin&amp;linkurl=http%3A%2F%2Fismoketoomuch.com%2F20090409%2Ftweetmeme-retweet-this-post-plugin%2F" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.addtoany.com');"><img src="http://ismoketoomuch.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ismoketoomuch.com/20090409/tweetmeme-retweet-this-post-plugin/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Image Upload and Tweet - for twitter users</title>
		<link>http://ismoketoomuch.com/20090329/image-upload-and-tweet-for-twitter-users/</link>
		<comments>http://ismoketoomuch.com/20090329/image-upload-and-tweet-for-twitter-users/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 00:22:50 +0000</pubDate>
		<dc:creator>Zim</dc:creator>
		
		<category><![CDATA[dev projects]]></category>

		<category><![CDATA[dev]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://ismoketoomuch.com/?p=211</guid>
		<description><![CDATA[Want to share images on twitter with your own host?  There&#8217;s already a lot of services out there for hosting your images, and there are some services that will automatically send a tweet for your uploaded image via twitter as well.  But I have my own domain, my own hosting, and I&#8217;d like [...]]]></description>
			<content:encoded><![CDATA[<p>Want to share images on twitter with your own host?  There&#8217;s already a lot of services out there for hosting your images, and there are some services that will automatically send a tweet for your uploaded image via twitter as well.  But I have my own domain, my own hosting, and I&#8217;d like to keep my images here.</p>
<p>Today was a very lazy sunday, but I managed to get a little something accomplished.  Check out the <a href="http://www.ismoketoomuch.com/dev" >Development Projects</a> section and download my single-file script that lets you upload an image and automatically send a tweet to it, or just <a href="http://www.ismoketoomuch.com/projects/twitter_upload_and_tweet.zip" onclick="javascript:pageTracker._trackPageview('/downloads/projects/twitter_upload_and_tweet.zip');">Download Here</a>.  It&#8217;s very basic, and now that I think about it, really open to abuse, because anyone with a valid twitter username and password can use it.  I guess if anyone actually uses it, or I get bored enough again, I&#8217;ll add some more features like URL-shortening services or more security.  Right now, the length of your message is limited by the length of your domain name and the directory the script resides in.</p>
<p>You can see (and use, I&#8217;ll leave it up until it starts getting abused) a live demo here: <a href="http://ismoketoomuch.com/twit/" >Image Upload and Tweet</a>.  Let me know if you find any bugs, please!</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=I%20Smoke%20Too%20Much&amp;siteurl=http%3A%2F%2Fismoketoomuch.com%2F&amp;linkname=Image%20Upload%20and%20Tweet%20-%20for%20twitter%20users&amp;linkurl=http%3A%2F%2Fismoketoomuch.com%2F20090329%2Fimage-upload-and-tweet-for-twitter-users%2F" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.addtoany.com');"><img src="http://ismoketoomuch.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ismoketoomuch.com/20090329/image-upload-and-tweet-for-twitter-users/feed/</wfw:commentRss>
		</item>
		<item>
		<title>u will get hunted</title>
		<link>http://ismoketoomuch.com/20090325/u-will-get-hunted/</link>
		<comments>http://ismoketoomuch.com/20090325/u-will-get-hunted/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 01:05:31 +0000</pubDate>
		<dc:creator>Zim</dc:creator>
		
		<category><![CDATA[bullshit]]></category>

		<guid isPermaLink="false">http://ismoketoomuch.com/?p=194</guid>
		<description><![CDATA[This is what happens when you give 8 year olds cell phones.

FWD: Fwd: FW: FW: This &#8220;rorbot&#8221; went and hunted me if u dont send this to ten people in ten secous u will get hunted  he will hunt u and if u dont ow u better whach out.
I guess what I should say [...]]]></description>
			<content:encoded><![CDATA[<p>This is what happens when you give 8 year olds cell phones.</p>
<p><object width="480" height="360" data="http://ismoketoomuch.com/wp-content/uploads/2009/03/rorbot.swf" type="application/x-shockwave-flash"><param name="name" value="rorbot" /><param name="bgcolor" value="#ffffff" /><param name="align" value="middle" /><param name="src" value="http://ismoketoomuch.com/wp-content/uploads/2009/03/rorbot.swf" /><param name="quality" value="high" /></object></p>
<p>FWD: Fwd: FW: FW: This &#8220;rorbot&#8221; went and hunted me if u dont send this to ten people in ten secous u will get hunted  he will hunt u and if u dont ow u better whach out.</p>
<p><img title="rorbot" src="http://ismoketoomuch.com/wp-content/uploads/2009/03/rorbot.jpg" alt="rorbot" width="96" height="72" align="left" style="margin-right: 10px;" />I guess what I should say is:  This is what happens when you give 8 year olds cell phones, and they end up getting forwarded to nerds with adobe flash installed and too much free time on their hands.</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=I%20Smoke%20Too%20Much&amp;siteurl=http%3A%2F%2Fismoketoomuch.com%2F&amp;linkname=u%20will%20get%20hunted&amp;linkurl=http%3A%2F%2Fismoketoomuch.com%2F20090325%2Fu-will-get-hunted%2F" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.addtoany.com');"><img src="http://ismoketoomuch.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ismoketoomuch.com/20090325/u-will-get-hunted/feed/</wfw:commentRss>
		</item>
		<item>
		<title>The Real Reason for Firesafe Cigarettes</title>
		<link>http://ismoketoomuch.com/20090324/the-real-reason-for-firesafe-cigarettes/</link>
		<comments>http://ismoketoomuch.com/20090324/the-real-reason-for-firesafe-cigarettes/#comments</comments>
		<pubDate>Wed, 25 Mar 2009 00:22:08 +0000</pubDate>
		<dc:creator>Zim</dc:creator>
		
		<category><![CDATA[comics]]></category>

		<category><![CDATA[cartoons]]></category>

		<category><![CDATA[cigarettes]]></category>

		<category><![CDATA[webcomics]]></category>

		<guid isPermaLink="false">http://ismoketoomuch.com/?p=181</guid>
		<description><![CDATA[
Anybody else living in states where these fire safety cigarettes have become mandatory knows what I&#8217;m talking about.  Is it all in my head, or do they taste different too?

    

	]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-180" title="firesafe-cigarettes-made-me-quit" src="http://ismoketoomuch.com/wp-content/uploads/2009/03/firesafe-cigarettes-made-me-quit.png" alt="firesafe-cigarettes-made-me-quit" width="561" height="869" /></p>
<p>Anybody else living in states where these fire safety cigarettes have become mandatory knows what I&#8217;m talking about.  Is it all in my head, or do they taste different too?</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=I%20Smoke%20Too%20Much&amp;siteurl=http%3A%2F%2Fismoketoomuch.com%2F&amp;linkname=The%20Real%20Reason%20for%20Firesafe%20Cigarettes&amp;linkurl=http%3A%2F%2Fismoketoomuch.com%2F20090324%2Fthe-real-reason-for-firesafe-cigarettes%2F" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.addtoany.com');"><img src="http://ismoketoomuch.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ismoketoomuch.com/20090324/the-real-reason-for-firesafe-cigarettes/feed/</wfw:commentRss>
		</item>
		<item>
		<title>DIY: building a home bar</title>
		<link>http://ismoketoomuch.com/20090322/diy-building-a-home-bar/</link>
		<comments>http://ismoketoomuch.com/20090322/diy-building-a-home-bar/#comments</comments>
		<pubDate>Sun, 22 Mar 2009 23:14:18 +0000</pubDate>
		<dc:creator>Zim</dc:creator>
		
		<category><![CDATA[art]]></category>

		<category><![CDATA[comics]]></category>

		<category><![CDATA[laziness]]></category>

		<category><![CDATA[webcomics]]></category>

		<guid isPermaLink="false">http://ismoketoomuch.com/?p=167</guid>
		<description><![CDATA[
Laziness will be the death of me.  Or not.  Maybe I can pull off being too lazy to die?

    

	]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://ismoketoomuch.com/wp-content/uploads/2009/03/homebar.png" ><img class="size-full wp-image-168 aligncenter" title="homebar" src="http://ismoketoomuch.com/wp-content/uploads/2009/03/homebar.png" alt="building a home bar" width="478" height="585" /></a></p>
<p>Laziness will be the death of me.  Or not.  Maybe I can pull off being too lazy to die?</p>
<p class="addtoany_share_save_container">
    <a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=I%20Smoke%20Too%20Much&amp;siteurl=http%3A%2F%2Fismoketoomuch.com%2F&amp;linkname=DIY%3A%20building%20a%20home%20bar&amp;linkurl=http%3A%2F%2Fismoketoomuch.com%2F20090322%2Fdiy-building-a-home-bar%2F" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.addtoany.com');"><img src="http://ismoketoomuch.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Save/Bookmark"/></a>

	</p>]]></content:encoded>
			<wfw:commentRss>http://ismoketoomuch.com/20090322/diy-building-a-home-bar/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
