<?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; Uncategorized</title>
	<atom:link href="http://www.copyandwaste.com/category/uncategorized/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>Creating Share Buttons for Twitter, Facebook, and Linkedin using Django Templatetags</title>
		<link>http://www.copyandwaste.com/2011/08/22/creating-share-buttons-for-twitter-facebook-and-linkedin-using-django-templatetags/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=creating-share-buttons-for-twitter-facebook-and-linkedin-using-django-templatetags</link>
		<comments>http://www.copyandwaste.com/2011/08/22/creating-share-buttons-for-twitter-facebook-and-linkedin-using-django-templatetags/#comments</comments>
		<pubDate>Mon, 22 Aug 2011 19:50:17 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=386</guid>
		<description><![CDATA[It&#8217;s easy to copy and paste urls to share links, but its easier to just click on a button to do it. The way I decided to do it was to write a custom django templatetag. The template tag exists in myproject/myapp/templatetags/sharebuttons.py. You can use the pre-built template here Usage in a template: {% load [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s easy to copy and paste urls to share links, but its easier to just click on a button to do it.  The way I decided to do it was to write a custom <a href="https://docs.djangoproject.com/en/1.1/howto/custom-template-tags/">django templatetag</a>.  The template tag exists in  myproject/myapp/templatetags/sharebuttons.py.</p>
<p>You can use the pre-built template <a href="http://hatch.use.io/generate/create-share-buttons-using-django-templatetags/">here</a></p>
<p><b>Usage in a template:</b></p>
<pre>
{% load sharebuttons %}

{% for p in posts %}
   {% sharebutton p "twitter" %}
   {% sharebutton p "facebook" %}
   {% sharebutton p "linkedin" %}
{% endfor %}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2011/08/22/creating-share-buttons-for-twitter-facebook-and-linkedin-using-django-templatetags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery UI Autocomplete 1.8 with Django Views</title>
		<link>http://www.copyandwaste.com/2011/08/03/jquery-ui-autocomplete-1-8-with-django-views/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=jquery-ui-autocomplete-1-8-with-django-views</link>
		<comments>http://www.copyandwaste.com/2011/08/03/jquery-ui-autocomplete-1-8-with-django-views/#comments</comments>
		<pubDate>Wed, 03 Aug 2011 13:52:13 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=331</guid>
		<description><![CDATA[I have a model named &#8220;Show&#8221; and it has a ForeignKey to a model named &#8220;Venue.&#8221; When users add a &#8220;Show&#8221; I wanted an autocomplete(d) field venue. This solution uses: jquery-1.6.1.min.js jquery-ui.min.js models.py class Venue(models.Model): name = models.CharField(max_length=255, blank=False, null=False, help_text="Name of the venue") class Show(models.Model): date = models.DateTimeField(blank=False, null=False) venue = models.ForeignKey(Venue) headliner = [...]]]></description>
			<content:encoded><![CDATA[<p>I have a model named &#8220;Show&#8221; and it has a ForeignKey to a model named &#8220;Venue.&#8221;  When users add a &#8220;Show&#8221; I wanted an <a href="http://jqueryui.com/demos/autocomplete/#remote">autocomplete</a>(d) field venue.</p>
<p>This solution uses:</p>
<ul>
<li>jquery-1.6.1.min.js</li>
<li>jquery-ui.min.js</li>
</ul>
<p><b>models.py</b></p>
<pre class="brush:python">
class Venue(models.Model):
        name = models.CharField(max_length=255, blank=False, null=False, help_text="Name of the venue")

class Show(models.Model):
        date = models.DateTimeField(blank=False, null=False)
        venue = models.ForeignKey(Venue)
        headliner = models.ForeignKey(Artist, related_name="Headliner")
</pre>
<p><b>urls.py</b></p>
<pre class="brush:python">
(r'venue_lookup/$','projname.appname.views.venue_lookup'),
</pre>
<p><b>views.py</b></p>
<pre class="brush:python">
def venue_lookup(request):
   venues = Venue.objects.filter(name__istartswith=request.REQUEST['term'])
   results = []
   for venue in venues:
      venue_dict = {'id':venue.id, 'label':venue.name, 'value':venue.name}
      results.append(venue_dict)
   return HttpResponse(simplejson.dumps(results),mimetype='application/json')
</pre>
<p><strong>Template:</strong></p>
<pre>
&lt;html&gt;
&lt;head&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;/media/jquery-1.6.2.js&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot; src=&quot;/media/jquery-ui.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;
        $( &quot;#id_venue&quot; ).autocomplete({
           source: &quot;/venue_lookup/&quot;,
           selectFirst:true,
           minLength:2
        });

&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;form method=&quot;post&quot; action=&quot;/shows/new&quot;&gt;
        &lt;p&gt;&lt;label for=&quot;id_venue&quot;&gt;Venue&lt;/label&gt;
        &lt;input type=&quot;text&quot; id=&quot;id_venue&quot; name=&quot;venue&quot; /&gt;&lt;/p&gt;
	&lt;input type=&quot;submit&quot; value=&quot;done&quot; /&gt;
&lt;/form&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2011/08/03/jquery-ui-autocomplete-1-8-with-django-views/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>&#8220;Live, Dynamic&#8221; text generation with jQuery using replace()</title>
		<link>http://www.copyandwaste.com/2011/05/23/live-dynamic-text-generation-with-jquery-using-replace/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=live-dynamic-text-generation-with-jquery-using-replace</link>
		<comments>http://www.copyandwaste.com/2011/05/23/live-dynamic-text-generation-with-jquery-using-replace/#comments</comments>
		<pubDate>Mon, 23 May 2011 20:38:12 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=269</guid>
		<description><![CDATA[When you manage a bunch of similar devices, it&#8217;s nice to generate consistent configurations quickly. I built a config file generator last week which you embed the variables in plain text such as &#8220;$hostname.&#8221; Then a web form is generated based off those embedded variables and a find and replace is done on the config [...]]]></description>
			<content:encoded><![CDATA[<p>When you manage a bunch of similar devices, it&#8217;s nice to generate consistent configurations quickly.  I built a config file generator last week which you embed the variables in plain text such as &#8220;$hostname.&#8221;  Then a web form is generated based off those embedded variables and a find and replace is done on the config text.  The app has been up and running for a about a week and has made our deployment of new gear at sites a snap.</p>
<p>I wanted to add some candy to it.  So now what happens is when you enter values into form fields the configuration file is generated in &#8220;real time&#8221; in front of your own two eyeballs.</p>
<p><a title="live_edit_1" rel="lightbox[pics269]" href="http://www.copyandwaste.com/wp-content/uploads/2011/05/live_edit_1.jpg"><img class="attachment wp-att-270 " src="http://www.copyandwaste.com/wp-content/uploads/2011/05/live_edit_1.jpg" alt="live_edit_1" width="640" height="211" /></a></p>
<p><a title="live_edit_2" rel="lightbox[pics269]" href="http://www.copyandwaste.com/wp-content/uploads/2011/05/live_edit_2.jpg"><img class="attachment wp-att-271 " src="http://www.copyandwaste.com/wp-content/uploads/2011/05/live_edit_2.jpg" alt="live_edit_2" width="605" height="224" /></a></p>
<p><a title="live_edit_3" rel="lightbox[pics269]" href="http://www.copyandwaste.com/wp-content/uploads/2011/05/live_edit_3.jpg"><img class="attachment wp-att-272 " src="http://www.copyandwaste.com/wp-content/uploads/2011/05/live_edit_3.jpg" alt="live_edit_3" width="574" height="218" /></a></p>
<h2><a href="http://www.copyandwaste.com/sandbox/live_edit.html">View Demo</a></h2>
]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2011/05/23/live-dynamic-text-generation-with-jquery-using-replace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Powerline Fishing</title>
		<link>http://www.copyandwaste.com/2009/06/18/powerline-fishing/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=powerline-fishing</link>
		<comments>http://www.copyandwaste.com/2009/06/18/powerline-fishing/#comments</comments>
		<pubDate>Fri, 19 Jun 2009 04:28:57 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=131</guid>
		<description><![CDATA[I&#8217;ve been fishing on Chicago&#8217;s lakefront since I was a very young child. There is a certain culture that arises from people that like to fish but don&#8217;t have boats. I never picked up on this culture until I lurked several chicago fishing messageboards. Like any hobby, hobbyists are nerds which can&#8217;t wait to tell [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been fishing on Chicago&#8217;s lakefront since I was a very young child.  There is a certain culture that arises from people that like to fish but don&#8217;t have boats.  I never picked up on this culture until I lurked several chicago fishing messageboards.  Like any hobby, hobbyists are nerds which can&#8217;t wait to tell you about something they built&#8230; and help you along in your own projects.</p>
<p>I&#8217;ve always heard the rumor or urban legend about powerlining rigs.  <em><strong>Powerlining </strong></em>is essentially launching a high test fishing line out with an anchor and several baited hooks.  Pitching a line out with several other smaller lines allows you to achieve distances (and in turn depths) that would be hard to achieve using the traditional rod and reel.</p>
<p style="text-align: center;"><a title="powerline" rel="lightbox[pics131]" href="http://www.copyandwaste.com/wp-content/uploads/2009/06/powerline.gif"><img class="attachment wp-att-132 centered" src="http://www.copyandwaste.com/wp-content/uploads/2009/06/powerline.gif" alt="powerline" width="500" height="322" /></a></p>
<p style="text-align: center;">
<p style="text-align: left;">There are three main ways to pitch this monster line out into the water:</p>
<ol>
<li>Throwing the anchor/weight by hand</li>
<li>Using a water balloon sling shot</li>
<li>Using the pressure of a CO2 tank (think potato gun)</li>
</ol>
<p>Guess which one I&#8217;m interested in&#8230;. you guessed it&#8230; CO2 tank.</p>
<p style="text-align: center;"><a title="there_she_blows" rel="lightbox[pics131]" href="http://www.copyandwaste.com/wp-content/uploads/2009/06/there_she_blows.jpg"><img class="attachment wp-att-133 centered" src="http://www.copyandwaste.com/wp-content/uploads/2009/06/there_she_blows.jpg" alt="there_she_blows" width="500" height="375" /></a></p>
<p>After perusing several messaging boards I&#8217;ve come up with the following bill of materials:</p>
<ol>
<li>CO2 Fire extinguisher</li>
<li>5ft of 1&#8243; pipe</li>
<li>some sort of pipe adapter (I&#8217;ll figure that out once at home depot)</li>
<li>12 oz 1&#8243; x 2.5&#8243; weight</li>
<li>70&#8242; of rubber band/cord</li>
<li>A couple hundred yards of 10-12 lb test</li>
<li>Reel</li>
<li>two large swivels</li>
<li>10 smaller swivels</li>
<li>hooks</li>
<li>beads</li>
</ol>
<p>Then my additonail ideas:</p>
<ol>
<li>Door stopper spring</li>
<li>Dowel rod</li>
<li>Bell</li>
<li>Screweyes</li>
</ol>
<p>The plan I&#8217;m working on&#8230; still need to add snelled hooks.</p>
<p style="text-align: center;"><a title="powerline-rig1" rel="lightbox[pics131]" href="http://www.copyandwaste.com/wp-content/uploads/2009/06/powerline-rig1.jpg"><img class="attachment wp-att-135 centered" src="http://www.copyandwaste.com/wp-content/uploads/2009/06/powerline-rig1.jpg" alt="powerline-rig1" width="500" height="201" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2009/06/18/powerline-fishing/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>10 Gallon Cooler Mash Tun</title>
		<link>http://www.copyandwaste.com/2009/05/03/10-gallon-cooler-mash-tun/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=10-gallon-cooler-mash-tun</link>
		<comments>http://www.copyandwaste.com/2009/05/03/10-gallon-cooler-mash-tun/#comments</comments>
		<pubDate>Sun, 03 May 2009 20:15:30 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Fun]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=110</guid>
		<description><![CDATA[I brewed my first beer solo a couple of weeks ago and it tastes pretty decent! After doing some research I came to the conclusion that I had to go all-grain. First of all it&#8217;s supposed to taste better, second it gives me an excuse to build something. There are many plans on the web [...]]]></description>
			<content:encoded><![CDATA[<p>I brewed my first beer solo a couple of weeks ago and it tastes pretty decent!  After doing some research I came to the conclusion that I had to go all-grain.  First of all it&#8217;s supposed to taste better, second it gives me an excuse to build something.  There are many plans on the web on how to make a cooler mash tun&#8230; and mine isn&#8217;t any different.</p>
<h2>Resources:</h2>
<ul>
<li><a href="http://www.homebrewtalk.com/f51/cheap-easy-10-gallon-rubbermaid-mlt-conversion-23008/">Homebrewtalk Forum</a></li>
</ul>
<p><a title="img_3382" rel="lightbox[pics110]" href="http://www.copyandwaste.com/wp-content/uploads/2009/05/img_3382.jpg"><img class="attachment wp-att-114 alignleft" src="http://www.copyandwaste.com/wp-content/uploads/2009/05/img_3382.thumbnail.jpg" alt="img_3382" width="112" height="200" /></a><br />
<a href="http://www.copyandwaste.com/wp-content/uploads/2009/05/img_3381.jpg" rel="lightbox[pics110]" title="img_3381"><img src="http://www.copyandwaste.com/wp-content/uploads/2009/05/img_3381.thumbnail.jpg" alt="img_3381" width="200" height="112" class="attachment wp-att-113 alignleft" /></a><br />
<a href="http://www.copyandwaste.com/wp-content/uploads/2009/05/img00018.jpg" rel="lightbox[pics110]" title="img00018"><img src="http://www.copyandwaste.com/wp-content/uploads/2009/05/img00018.thumbnail.jpg" alt="img00018" width="200" height="150" class="attachment wp-att-111 alignleft" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2009/05/03/10-gallon-cooler-mash-tun/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AVG: Turn off email signature</title>
		<link>http://www.copyandwaste.com/2009/04/09/avg-turn-off-email-signature/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=avg-turn-off-email-signature</link>
		<comments>http://www.copyandwaste.com/2009/04/09/avg-turn-off-email-signature/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 21:51:59 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=104</guid>
		<description><![CDATA[I&#8217;ve been using AVG on and off for a while now and I hate that pesky email signature they add to scanned emails. Well, I found out how to get rid of that. Double click AVG icon&#62; Tools &#62; Advanced Settings &#62; Email Scanner &#62; un-check certify email]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using AVG on and off for a while now and I hate that pesky email signature they add to scanned emails.  Well, I found out how to get rid of that.</p>
<p>Double click AVG icon&gt; Tools &gt; Advanced Settings &gt; Email Scanner &gt; un-check certify email</p>
<p style="text-align: center;"><a title="avg-email" rel="lightbox[pics104]" href="http://www.copyandwaste.com/wp-content/uploads/2009/04/avg-email.jpg"><img class="attachment wp-att-105 centered" src="http://www.copyandwaste.com/wp-content/uploads/2009/04/avg-email.jpg" alt="avg-email" width="500" height="390" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2009/04/09/avg-turn-off-email-signature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chicago Flag ASCII art Wallpaper</title>
		<link>http://www.copyandwaste.com/2009/04/06/chicago-flag-ascii-art-wallpaper/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=chicago-flag-ascii-art-wallpaper</link>
		<comments>http://www.copyandwaste.com/2009/04/06/chicago-flag-ascii-art-wallpaper/#comments</comments>
		<pubDate>Mon, 06 Apr 2009 06:39:25 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=90</guid>
		<description><![CDATA[I love chicago&#8230; and ascii art&#8230; produced by &#8220;me.&#8221; Screenshot: 1024 x 768 1280 x 800 1280 x 1024 1440 x 900 1600 x 1024 1920 x 1200 1024 x 768 1280 x 800 1280 x 1024 1440 x 900 1600 x 1024 1920 x 1200 1024 x 768 1280 x 800 1280 x 1024 [...]]]></description>
			<content:encoded><![CDATA[<p>I love chicago&#8230; and ascii art&#8230; produced by &#8220;me.&#8221;</p>
<p>Screenshot:<br />
<a title="akonkol-desktop" rel="lightbox[pics90]" href="http://www.copyandwaste.com/wp-content/uploads/2009/04/akonkol-desktop.jpg"><img class="attachment wp-att-103 alignleft" src="http://www.copyandwaste.com/wp-content/uploads/2009/04/akonkol-desktop.jpg" alt="akonkol-desktop" width="500" height="312" /></a></p>
<p><img class="attachment wp-att-94 alignleft" src="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_c_1024_768.thumbnail.jpg" alt="chicago_flag_ascii_art_c_1024_768" width="200" height="150" /></p>
<ul>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_c_1024_768.jpg">1024 x 768</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_c_1280_800.jpg">1280 x 800</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_c_1280_1024.jpg">1280 x 1024</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_c_1440_900.jpg">1440 x 900</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_c_1600_1024.jpg">1600 x 1024</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_c_1920_1200.jpg">1920 x 1200</a></li>
</ul>
<p><img class="attachment wp-att-95 alignleft" src="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_gs_1024_768.thumbnail.jpg" alt="chicago_flag_ascii_art_gs_1024_768" width="200" height="150" /></p>
<ul>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_slant_gs_1024_768.jpg">1024 x 768</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_gs_1280_800.jpg">1280 x 800</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_gs_1280_1024.jpg">1280 x 1024</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_gs_1440_900.jpg">1440 x 900</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_gs_1600_1024.jpg">1600 x 1024</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_gs_1920_1200.jpg">1920 x 1200</a></li>
</ul>
<p><img class="attachment wp-att-96 alignleft" src="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_slant_c_1024_768.thumbnail.jpg" alt="chicago_flag_ascii_art_slant_c_1024_768" width="200" height="150" /></p>
<ul>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_slant_c_1024_768.jpg">1024 x 768</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_slant_c_1280_800.jpg">1280 x 800</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_slant_c_1280_1024.jpg">1280 x 1024</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_slant_c_1440_900.jpg">1440 x 900</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_slant_c_1600_1024.jpg">1600 x 1024</a></li>
<li><a href="http://www.veer.com/download/wallpaper/Tangle1680x1050.jpg"> </a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_slant_c_1920_1200.jpg">1920 x 1200</a></li>
</ul>
<p><img class="attachment wp-att-97 alignleft" src="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_slant_gs_1024_768.thumbnail.jpg" alt="chicago_flag_ascii_art_slant_gs_1024_768" width="200" height="150" /></p>
<ul>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_slant_gs_1024_768.jpg">1024 x 768</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_slant_gs_1280_800.jpg">1280 x 800</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_slant_gs_1280_1024.jpg">1280 x 1024</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_slant_gs_1440_900.jpg">1440 x 900</a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_slant_gs_1600_1024.jpg">1600 x 1024</a></li>
<li><a href="http://www.veer.com/download/wallpaper/Tangle1680x1050.jpg"> </a></li>
<li><a href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chicago_flag_ascii_art_slant_gs_1920_1200.jpg">1920 x 1200</a></li>
</ul>
<p>And an old login banner I saved from a long time ago:</p>
<pre> .(`-       . .                      .,
(    )      ! !                    .(  )
 (   )      ! !       .`^.        (' .  )
  `~`      .!.!.      (   )       (.    )                    ,____,
           |###|       `..)         (.)'                     |l##l|
           |...|                                             |....|
           |...|                          ,.,             !  |....|
           | ,_|,                          '              !  |....|   .  .
           | | .|                                    .   ,^, |... |   !  !
 .mmm.     | |. |   .. ..                            !  ,```,| .. |   !  !
 mnmnm    ,|_| .|   !! !!    |````,                  !  |`''||. ..|   !  !
 |.`.|    |. |. |  .!!.!!.   |....|,                 !  |```|| .  |  .!==!.
 |...|    | .|__|, | :...|   |...,||       /'\   +~~~!; | ..|| .. |  :~/\~:
 |...|    |. |., | |.i..,._._:_,..||      /e p\  +~~~^---+ .||....|  |/``\|
 |...|    | .| _`| | i .|.....@@..|| .....\ d /. |.......|. || .  |  |\  /|
.:...:.```|. /\`\| |.i..|.. .//\\ ||.-i=-=|\./,. |.. ....| .||  . |  | \/ |
:=,,,=:```| /..\`\ | i. |... |  | ||.-i=-=| w |. |.... ..|. ||.. .|  | /\ |
:-...-:```|:|...:`||.i .|. ..|``| ||.-i=-=| w |. |.. ....| .|| .  |..|/  \|..
:=====:```|:|+-+:`|| i..|....[  ] ||.-i=-=| w |. l.......l  || oo |. |    | .
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
`,chicago@dusk.'          v  v     ''''    .. .        ,,.    `''''<a title="chi-flg-ipod-color" rel="lightbox[pics90]" href="http://www.copyandwaste.com/wp-content/uploads/2009/04/chi-flg-ipod-color.jpg"><img class="attachment wp-att-108 alignleft" src="http://www.copyandwaste.com/wp-content/uploads/2009/04/chi-flg-ipod-color.jpg" alt="chi-flg-ipod-color" width="241" height="462" /></a></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2009/04/06/chicago-flag-ascii-art-wallpaper/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Anatomy of a Syslog Packet</title>
		<link>http://www.copyandwaste.com/2009/03/01/anatomy-of-a-syslog-packet/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=anatomy-of-a-syslog-packet</link>
		<comments>http://www.copyandwaste.com/2009/03/01/anatomy-of-a-syslog-packet/#comments</comments>
		<pubDate>Sun, 01 Mar 2009 21:27:37 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=88</guid>
		<description><![CDATA[http://www.copyandwaste.com/wp-content/uploads/2009/03/syslog-udppacket2.jpg Simple java syslog server: http://www.mactech.com/articles/mactech/Vol.12/12.10/JavaNetClasses/index.html]]></description>
			<content:encoded><![CDATA[<p>http://www.copyandwaste.com/wp-content/uploads/2009/03/syslog-udppacket2.jpg</p>
<p>Simple java syslog server: http://www.mactech.com/articles/mactech/Vol.12/12.10/JavaNetClasses/index.html</p>
]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2009/03/01/anatomy-of-a-syslog-packet/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>LLL is a man of many words.</title>
		<link>http://www.copyandwaste.com/2008/12/11/lll-is-a-man-of-many-words/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=lll-is-a-man-of-many-words</link>
		<comments>http://www.copyandwaste.com/2008/12/11/lll-is-a-man-of-many-words/#comments</comments>
		<pubDate>Thu, 11 Dec 2008 15:54:27 +0000</pubDate>
		<dc:creator>Andrew Konkol</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.copyandwaste.com/?p=55</guid>
		<description><![CDATA[&#8220;The real shame of it Andy is that most things in life are as useless as twitter, and most people haven&#8217;t realized it -LLL&#8221; &#8220;We&#8217;re all mushroom men, &#8230; We&#8217;re all in the dark eatin our own shit -LLL&#8221; &#8220;It&#8217;s a sacrifice to Murphy -LLL&#8221; &#8220;Silence is agreement -LLL&#8221;]]></description>
			<content:encoded><![CDATA[<p>&#8220;The real shame of it Andy is that most things in life are as useless as twitter, and most people haven&#8217;t realized it -LLL&#8221;</p>
<p>&#8220;We&#8217;re all mushroom men, &#8230; We&#8217;re all in the dark eatin our own shit -LLL&#8221;</p>
<p>&#8220;It&#8217;s a sacrifice to Murphy -LLL&#8221;</p>
<p>&#8220;Silence is agreement -LLL&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.copyandwaste.com/2008/12/11/lll-is-a-man-of-many-words/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

