<?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>copyandwaste &#187; Nothing</title>
	<atom:link href="http://www.copyandwaste.com/category/nothing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.copyandwaste.com</link>
	<description></description>
	<lastBuildDate>Fri, 06 Jan 2012 21:09:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Tweeting from a Django Application</title>
		<link>http://www.copyandwaste.com/2011/08/17/tweeting-from-a-django-application/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=tweeting-from-a-django-application</link>
		<comments>http://www.copyandwaste.com/2011/08/17/tweeting-from-a-django-application/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 15:53:29 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Nothing]]></category>
		<category><![CDATA[SysAdmin]]></category>
		<category><![CDATA[django]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=383</guid>
		<description><![CDATA[It&#8217;s easy to get your application to start setting twitter status updates in django. Create a twitter account twitter.com Create a twitter &#8220;application&#8217; and get your keys dev.twitter.com/apps Click on &#8220;settings&#8221; and set the access to read and write easy_install python-twitter Use this template Whenever you save a &#8220;Post&#8221; object, the def send_tweet method will [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s easy to get your application to start setting twitter status updates  in django.</p>
<ol>
<li>Create a twitter account <a href="http://www.twitter.com">twitter.com</a></li>
<li>Create a twitter &#8220;application&#8217; and get your keys <a href="https://dev.twitter.com/apps">dev.twitter.com/apps</a></li>
<li>Click on &#8220;settings&#8221; and set the access to read and write</li>
<li>easy_install python-twitter
<li>Use this <a href="http://hatch.use.io/generate/tweeting-from-a-django-application/">template</a></li>
</ol>
<p>Whenever you save a &#8220;Post&#8221; object, the def send_tweet method will attempt to tweet a message containing the name of the object as well as the absolute url.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2011/08/17/tweeting-from-a-django-application/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using Javascript/Jquery Regex with match groups</title>
		<link>http://www.copyandwaste.com/2011/08/09/using-javascriptjquery-regex-with-match-groups/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=using-javascriptjquery-regex-with-match-groups</link>
		<comments>http://www.copyandwaste.com/2011/08/09/using-javascriptjquery-regex-with-match-groups/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 19:40:09 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Nothing]]></category>
		<category><![CDATA[SysAdmin]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=374</guid>
		<description><![CDATA[I&#8217;m building custom syntax/markup for an editor I am building. The particular markup would look something like this: %[--- This is part of the /etc/apache2/sites-available/example.com ---]% And I want to turn it into &#60;div class=&#34;filerule&#34;&#62;This is part of the /etc/apache2/sites-available/example.com&#60;/div&#62; So first I need to match: %[--- This is part of the /etc/apache2/sites-available/example.com ---]% And [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m building custom syntax/markup for an editor I am building.  The particular markup would look something like this:</p>
<pre class="brush:html">
%[--- This is part of the /etc/apache2/sites-available/example.com ---]%
</pre>
<p>And I want to turn it into </p>
<pre>
&lt;div class=&quot;filerule&quot;&gt;This is part of the /etc/apache2/sites-available/example.com&lt;/div&gt;
</pre>
<p>So first I need to match: %[--- This is part of the /etc/apache2/sites-available/example.com ---]%<br />
And then I need to match: This is part of the /etc/apache2/sites-available/example.com</p>
<p>The regex pattern would look like:</p>
<pre>
pattern = new RegExp('\\%\\[---(.+?)---\\]\\%','gi');
</pre>
<p>This entire pattern matches the whole line and the paranthesis define a match &#8220;group.&#8221;  When looking for this pattern you will find two matches one for the line ( %[--- This is part of the /etc/apache2/sites-available/example.com ---]%) and one for the text (This is part of the /etc/apache2/sites-available/example.com).</p>
<p>You reference these matches by $1, &#8230;,$n where n is the number of that group.</p>
<p>The entire line would be $0 where as the text being matched would be $1.</p>
<p><b>Javascript:</b></p>
<pre>
$(document).ready(function() {

        function CreateFileRulers(){
        var raw_text = $("#raw_text").text();
        pattern = new RegExp('\\%\\[---(.+?)---\\]\\%','gi');
        raw_text = raw_text.replace(pattern,"
<div class=\"filerule\">--- $1 ---</div>

");
        $("#raw_text").html(raw_text);
        }
        CreateFileRulers();

});
</pre>
<p><b>html:</b></p>
<pre>
&lt;div id=&quot;raw_text&quot;&gt;
%[--- This is part of the /etc/apache2/sites-available/example.com ---]%
&lt;/div&gt;
</pre>
<p>After document ready the <b>html:</b></p>
<pre>
&lt;div id=&quot;raw_text&quot;&gt;
&lt;div class=&quot;filerule&quot;--- This is part of the /etc/apache2/sites-available/example.com ---&lt;/div&gt;
&lt;/div&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2011/08/09/using-javascriptjquery-regex-with-match-groups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Empty Words Bingo</title>
		<link>http://www.copyandwaste.com/2011/07/19/empty-words-bingo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=empty-words-bingo</link>
		<comments>http://www.copyandwaste.com/2011/07/19/empty-words-bingo/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 14:37:29 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Nothing]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=309</guid>
		<description><![CDATA[A few months ago I created Empty Words so people can track the absurd things they hear in their everyday life.  I&#8217;ve decided to add a new feature inspired by buzzword bingo: &#160; Bingo cards are generated off the phrases entered into the Empty Words website, play with your co-workers!, play with your boss! (well, [...]]]></description>
			<content:encoded><![CDATA[<p>A few <a href="http://www.copyandwaste.com/2011/03/07/empty-words-can-make-you-appear-like-you-are-saying-a-lot-but-im-on-to-you/">months ago</a> I created <a href="http://www.empty-words.com">Empty Words</a> so people can track the absurd things they hear in their everyday life.  I&#8217;ve decided to add a new feature inspired by <a href="http://en.wikipedia.org/wiki/Buzzword_bingo">buzzword bingo</a>:</p>
<p><a href="http://www.empty-words.com/bingo"><img class="alignnone size-medium wp-image-310" title="empty-words-bingo" src="http://www.copyandwaste.com/wp-content/uploads/2011/07/empty-words-bingo-300x283.png" alt="" width="300" height="283" /></a></p>
<p>&nbsp;</p>
<p>Bingo cards are generated off the phrases entered into the <a href="http://www.empty-words.com">Empty Words</a> website, play with your co-workers!, play with your boss! (well, that might not be a good idea).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2011/07/19/empty-words-bingo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful crap and things I can never remember.</title>
		<link>http://www.copyandwaste.com/2011/05/27/useful-crap-and-things-i-can-never-remember/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=useful-crap-and-things-i-can-never-remember</link>
		<comments>http://www.copyandwaste.com/2011/05/27/useful-crap-and-things-i-can-never-remember/#comments</comments>
		<pubDate>Fri, 27 May 2011 17:49:39 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Nothing]]></category>
		<category><![CDATA[SysAdmin]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=283</guid>
		<description><![CDATA[How to get random hex values (color values) in python: rand_color = "#" + str(random.randint(0, 16777215)) Creating a database user and giving them full rights to a database: GRANT ALL PRIVILEGES ON db_name.* TO 'db_user'@'localhost' IDENTIFIED BY 'the_password!' WITH GRANT OPTION;]]></description>
			<content:encoded><![CDATA[<p>How to get random hex values (color values) in python:<br />
<code>rand_color = "#" + str(random.randint(0, 16777215))</code></p>
<p>Creating a database user and giving them full rights to a database:<br />
<code><br />
GRANT ALL PRIVILEGES<br />
       ON db_name.*<br />
       TO 'db_user'@'localhost'<br />
       IDENTIFIED BY 'the_password!'<br />
       WITH GRANT OPTION;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2011/05/27/useful-crap-and-things-i-can-never-remember/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Banners.</title>
		<link>http://www.copyandwaste.com/2011/04/18/banners/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=banners</link>
		<comments>http://www.copyandwaste.com/2011/04/18/banners/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 15:24:22 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Nothing]]></category>
		<category><![CDATA[SysAdmin]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=262</guid>
		<description><![CDATA[I&#8217;ve always put ascii art in the motd of my servers, and I think im going to keep track of them now. ,dPYb, IP'`Yb I8 8I I8 8' ,ggg, ,gggg, I8 dPgg, ,ggggg, i8" "8i dP" "Yb I8dP" "8I dP" "Y8ggg I8, ,8I i8' I8P I8 i8' ,8I `YbadP' ,d8,_ _,d8 I8,,d8, ,d8' 888P"Y888P""Y8888PP88P `Y8P"Y8888P" [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve always put ascii art in the motd of my servers, and I think im going to keep track of them now.</p>
<pre>

                    ,dPYb,
                    IP'`Yb
                    I8  8I
                    I8  8'
  ,ggg,     ,gggg,  I8 dPgg,     ,ggggg,
 i8" "8i   dP"  "Yb I8dP" "8I   dP"  "Y8ggg
 I8, ,8I  i8'       I8P    I8  i8'    ,8I
 `YbadP' ,d8,_    _,d8     I8,,d8,   ,d8'
888P"Y888P""Y8888PP88P     `Y8P"Y8888P"

                                  $$\
                                  \__|
$$\   $$\  $$$$$$$\  $$$$$$\      $$\  $$$$$$\
$$ |  $$ |$$  _____|$$  __$$\     $$ |$$  __$$\
$$ |  $$ |\$$$$$$\  $$$$$$$$ |    $$ |$$ /  $$ |
$$ |  $$ | \____$$\ $$   ____|    $$ |$$ |  $$ |
\$$$$$$  |$$$$$$$  |\$$$$$$$\ $$\ $$ |\$$$$$$  |
 \______/ \_______/  \_______|\__|\__| \______/

 .d888                  888                    888
d88P"                   888                    888
888                     888                    888
888888 .d88b.  888  888 888888 888d888 .d88b.  888888
888   d88""88b `Y8bd8P' 888    888P"  d88""88b 888
888   888  888   X88K   888    888    888  888 888
888   Y88..88P .d8""8b. Y88b.  888    Y88..88P Y88b.
888    "Y88P"  888  888  "Y888 888     "Y88P"   "Y888 
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2011/04/18/banners/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Empty words can make you appear like you are saying a lot.. but I&#8217;m on to you.</title>
		<link>http://www.copyandwaste.com/2011/03/07/empty-words-can-make-you-appear-like-you-are-saying-a-lot-but-im-on-to-you/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=empty-words-can-make-you-appear-like-you-are-saying-a-lot-but-im-on-to-you</link>
		<comments>http://www.copyandwaste.com/2011/03/07/empty-words-can-make-you-appear-like-you-are-saying-a-lot-but-im-on-to-you/#comments</comments>
		<pubDate>Mon, 07 Mar 2011 16:21:24 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Nothing]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=225</guid>
		<description><![CDATA[Empty words, aka buzz words, aka things your boss says, aka things your colleagues say. www.empty-words.com]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve all heard phrases which sound impressive or smart, but when you dissect these words they mean absolutely nothing.   There are an overwhelming amount of &#8220;empty words&#8221; when you work in technology.  Do you need a <a href="http://slashdot.org/story/05/01/16/220223/Scalable-Enterprise-Buzzword-Solutions">&#8220;scalable enterprise solution?&#8221;</a></p>
<p>Instead of ignoring these phrases, I&#8217;ve decided to keep track of phrases/words that mean nothing to me.</p>
<p>Enter <a href="http://www.empty-words.com">www.empty-words.com</a></p>
<p><a href="http://www.empty-words.com"></a><br />
<a title="tew-thumb" rel="lightbox[pics225]" href="http://www.empty-words.com"><img class="attachment wp-att-227 " src="http://www.copyandwaste.com/wp-content/uploads/2011/03/tew-thumb.png" alt="tew-thumb" width="295" height="307" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2011/03/07/empty-words-can-make-you-appear-like-you-are-saying-a-lot-but-im-on-to-you/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Metallica &#8211; Allstate Arena &#8211; Chicago,IL</title>
		<link>http://www.copyandwaste.com/2009/01/27/metallica-allstate-arena-chicagoil/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=metallica-allstate-arena-chicagoil</link>
		<comments>http://www.copyandwaste.com/2009/01/27/metallica-allstate-arena-chicagoil/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 17:07:01 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Nothing]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=74</guid>
		<description><![CDATA[I&#8217;m not used to big arena rock shows, but last night was awesome.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m not used to big arena rock shows, but last night was awesome.</p>

<a href='http://www.copyandwaste.com/2009/01/27/metallica-allstate-arena-chicagoil/metallica-002/' title='metallica-002'><img width="150" height="112" src="http://www.copyandwaste.com/wp-content/uploads/2009/01/metallica-002.jpg" class="attachment-thumbnail" alt="metallica-002" title="metallica-002" /></a>
<a href='http://www.copyandwaste.com/2009/01/27/metallica-allstate-arena-chicagoil/metallica-0021/' title='metallica-0021'><img width="112" height="150" src="http://www.copyandwaste.com/wp-content/uploads/2009/01/metallica-0021.jpg" class="attachment-thumbnail" alt="metallica-0021" title="metallica-0021" /></a>
<a href='http://www.copyandwaste.com/2009/01/27/metallica-allstate-arena-chicagoil/metallica-003/' title='metallica-003'><img width="150" height="112" src="http://www.copyandwaste.com/wp-content/uploads/2009/01/metallica-003.jpg" class="attachment-thumbnail" alt="metallica-003" title="metallica-003" /></a>
<a href='http://www.copyandwaste.com/2009/01/27/metallica-allstate-arena-chicagoil/metallica-004/' title='metallica-004'><img width="112" height="150" src="http://www.copyandwaste.com/wp-content/uploads/2009/01/metallica-004.jpg" class="attachment-thumbnail" alt="metallica-004" title="metallica-004" /></a>
<a href='http://www.copyandwaste.com/2009/01/27/metallica-allstate-arena-chicagoil/metallica-005/' title='metallica-005'><img width="112" height="150" src="http://www.copyandwaste.com/wp-content/uploads/2009/01/metallica-005.jpg" class="attachment-thumbnail" alt="metallica-005" title="metallica-005" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2009/01/27/metallica-allstate-arena-chicagoil/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>An other great utility.</title>
		<link>http://www.copyandwaste.com/2009/01/10/an-other-great-utility/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=an-other-great-utility</link>
		<comments>http://www.copyandwaste.com/2009/01/10/an-other-great-utility/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 20:31:41 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Nothing]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=63</guid>
		<description><![CDATA[I have an xbox360, which I use netflix on. I wanted to stream music from itunes to my xbox&#8230;.. and I found Connect360. It&#8217;s awesome&#8230;game changer]]></description>
			<content:encoded><![CDATA[<p>I have an xbox360, which I use netflix on.  I wanted to stream music from itunes to my xbox&#8230;.. and I found <a href="http://www.nullriver.com/products/connect360">Connect360</a>.  It&#8217;s awesome&#8230;game changer</p>
]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2009/01/10/an-other-great-utility/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Holidays were pretty good to me&#8230;</title>
		<link>http://www.copyandwaste.com/2009/01/04/the-holidays-were-pretty-good-to-me/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-holidays-were-pretty-good-to-me</link>
		<comments>http://www.copyandwaste.com/2009/01/04/the-holidays-were-pretty-good-to-me/#comments</comments>
		<pubDate>Mon, 05 Jan 2009 00:24:32 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Nothing]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=56</guid>
		<description><![CDATA[I got a bunch of cool stuff this year. My favorite is probably the GPS my fiance got me.. I get lost very easily. My expected favorite is the Drobo, my un-expected favorite is my caliper. 2008 was interesting.. Got a job at a media giant, that is somewhat sinking. Got enganged Picked up ruby [...]]]></description>
			<content:encoded><![CDATA[<p>I got a bunch of cool stuff this year.  My favorite is probably the GPS my fiance got me.. I get lost very easily.  My expected favorite is the Drobo, my un-expected favorite is my caliper.  2008 was interesting..</p>
<ul>
<li>Got a job at a media giant, that is somewhat sinking.</li>
<li>Got enganged</li>
<li>Picked up ruby and python (python is winning)</li>
<li>Built a CCNA lab</li>
<li>Got into microprocessors</li>
<li>Started to brew beer</li>
<li>Got more networking experience than ever before</li>
<li>xbox with netflix changed my life.</li>
</ul>
<h2>Best Tech Things of the Year / Found Out About this Year (to me.. in all seriousness)</h2>
<ol>
<li><a href="http://www.adafruit.com/">Adafruit Industries</a> ( actually useful kits)</li>
<li><a href="http://www.ponoko.com">Ponoko</a> ( next best thing to owning a laser cutter)</li>
<li><a href="http://chezphil.org/slugpower/">SlugPower</a> (seriously my favorite hack of the year, it&#8217;s not hard to control a relay over serial.. but the integration and thought is awesome)</li>
<li><a href="http://www.netgate.com/">Netgate</a> (for the diy router/firewall maker)</li>
<li><a href="http://www.drobo.com/">Drobo</a> ( I&#8217;m allowed to say that.. I&#8217;ve built almost a dozen different NAS&#8217;s)</li>
</ol>
<h2>Here&#8217;s some stuff I got:</h2>

<a href='http://www.copyandwaste.com/2009/01/04/the-holidays-were-pretty-good-to-me/img_0063/' title='img_0063'><img width="150" height="150" src="http://www.copyandwaste.com/wp-content/uploads/2009/01/img_0063-150x150.jpg" class="attachment-thumbnail" alt="img_0063" title="img_0063" /></a>
<a href='http://www.copyandwaste.com/2009/01/04/the-holidays-were-pretty-good-to-me/img_0064/' title='img_0064'><img width="150" height="150" src="http://www.copyandwaste.com/wp-content/uploads/2009/01/img_0064-150x150.jpg" class="attachment-thumbnail" alt="img_0064" title="img_0064" /></a>
<a href='http://www.copyandwaste.com/2009/01/04/the-holidays-were-pretty-good-to-me/img_0065/' title='img_0065'><img width="150" height="150" src="http://www.copyandwaste.com/wp-content/uploads/2009/01/img_0065-150x150.jpg" class="attachment-thumbnail" alt="img_0065" title="img_0065" /></a>
<a href='http://www.copyandwaste.com/2009/01/04/the-holidays-were-pretty-good-to-me/img_0067/' title='img_0067'><img width="150" height="150" src="http://www.copyandwaste.com/wp-content/uploads/2009/01/img_0067-150x150.jpg" class="attachment-thumbnail" alt="img_0067" title="img_0067" /></a>
<a href='http://www.copyandwaste.com/2009/01/04/the-holidays-were-pretty-good-to-me/img_0068/' title='img_0068'><img width="150" height="150" src="http://www.copyandwaste.com/wp-content/uploads/2009/01/img_0068-150x150.jpg" class="attachment-thumbnail" alt="img_0068" title="img_0068" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2009/01/04/the-holidays-were-pretty-good-to-me/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pumpkins!</title>
		<link>http://www.copyandwaste.com/2008/10/11/pumpkins/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=pumpkins</link>
		<comments>http://www.copyandwaste.com/2008/10/11/pumpkins/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 22:08:01 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Nothing]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=39</guid>
		<description><![CDATA[It&#8217;s time for the best holiday ever&#8230; haloween! I&#8217;ve seen some pretty sophisticated pumpkins carved out so far this year. I&#8217;ve decided to ditch the freestyle and make a stencil for my pumpkin this year. I found a couple of music related stencils but I didn&#8217;t care for them. Anthrax has a little cartoon character [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s time for the best holiday ever&#8230; haloween!  I&#8217;ve seen some pretty sophisticated pumpkins carved out so far this year.  I&#8217;ve decided to ditch the freestyle and make a stencil for my pumpkin this year.  I found a couple of <a href="http://www.zombiepumpkins.com/patterns-rock.php">music related stencils</a> but I didn&#8217;t care for them.  Anthrax has a little cartoon character that they use all over the place so I decided to use him, and plus it already looks like a jack-o-lantern.</p>
<p>1. Took a picture of the guy off one of my shirts<br />
<a href="http://www.copyandwaste.com/wp-content/uploads/2008/10/img_0039.jpg"><img class="alignnone size-medium wp-image-40" title="img_0039" src="http://www.copyandwaste.com/wp-content/uploads/2008/10/img_0039-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p>2. Did some touch up in photoshop</p>
<p><a href="http://www.copyandwaste.com/wp-content/uploads/2008/10/imthemanstencil.gif"><img class="alignnone size-medium wp-image-41" title="imthemanstencil" src="http://www.copyandwaste.com/wp-content/uploads/2008/10/imthemanstencil-300x290.gif" alt="" width="300" height="290" /></a></p>
<p>3. Layered it with clear packing tape and cut out the stencil</p>
<p><a href="http://www.copyandwaste.com/wp-content/uploads/2008/10/img_0044.jpg"><img class="alignnone size-medium wp-image-42" title="img_0044" src="http://www.copyandwaste.com/wp-content/uploads/2008/10/img_0044-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p>4. Placed the stencil on the pumpkin and outlined the design, then cut it out.</p>
<p><a href="http://www.copyandwaste.com/wp-content/uploads/2008/10/img_0040.jpg"><img class="alignnone size-medium wp-image-43" title="img_0040" src="http://www.copyandwaste.com/wp-content/uploads/2008/10/img_0040-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p>I think next year I&#8217;m going to get an electric pumpkin jigsaw&#8230; because.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2008/10/11/pumpkins/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

