<?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>LVL1</title>
	<atom:link href="http://www.lvl1.org/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lvl1.org</link>
	<description>louisville&#039;s hackerspace</description>
	<lastBuildDate>Tue, 17 Aug 2010 17:16:13 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Fun with the LOLShield</title>
		<link>http://www.lvl1.org/2010/08/17/fun-with-the-lolshield/</link>
		<comments>http://www.lvl1.org/2010/08/17/fun-with-the-lolshield/#comments</comments>
		<pubDate>Tue, 17 Aug 2010 14:41:43 +0000</pubDate>
		<dc:creator>brian</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lvl1.org/?p=198</guid>
		<description><![CDATA[We had a fantastic weekend at LVL1. Not only was LVL1 at an awesome Actors Theater event, we also had some important visitors at the space on Saturday! On Saturday, Mitch Altman (of TV-B-Gone fame) and Jimmy Rodgers (of LOLshield fame) presented a soldering workshop. There must have been 50 people around! Also Matt Mets [...]]]></description>
			<content:encoded><![CDATA[<p>We had a fantastic weekend at LVL1.  Not only was LVL1 at an awesome Actors Theater event, we also had some important visitors at the space on Saturday!  On Saturday, Mitch Altman (of TV-B-Gone fame) and Jimmy Rodgers (of LOLshield fame) presented a soldering workshop.  There must have been 50 people around!  Also Matt Mets and Dale Dougherty were here from Make Magazine.  Big thanks to Mitch, Jimmy, Matt and Dale for being part of the LVL1 experience.  Our doors are always open to you!</p>
<p>During the soldering workshop, I built at <a href="http://jimmieprodgers.com/kits/lolshield/">LOLShield</a>.  Nice kit &#8211; lots of LEDs to solder.  Jimmy was really good at making his LEDs come out in neat little rows &#8211; mine, not so much.  Here is my video</p>
<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/YBIHPN96OOI&#038;hl=en&#038;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/YBIHPN96OOI&#038;hl=en&#038;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
<p>I came upon this <a href="http://www.cibomahto.com/2010/08/programming-the-lol-shield-using-animated-gifs/">post </a>and decided to make an animated LOLShield LVL1 logo.  I had to download python 2.6 and the PIL library and the script ran perfectly.  I created an animated gif using Gimp.  Set up an image to be 9X14 in grayscale.  Then draw your picture (zoomed in) and animate it using multiple layers.  When you save as a gif, Gimp will make the layers into a animated gif.  It is not hard.  Here is my gif&#8230;</p>
<p><a href="http://www.lvl1.org/wp-content/uploads/2010/08/lvl1a.gif"><img src="http://www.lvl1.org/wp-content/uploads/2010/08/lvl1a.gif" alt="" title="lvl1a" width="14" height="9" class="aligncenter size-full wp-image-199" /></a></p>
<p>It is tiny!  Next run the script in the command line and then cut and paste the code.  Here is the Arduino program I am using.</p>
<p><code><br />
/*<br />
 Basic LoL Shield Test</p>
<p> Writen for the LoL Shield, designed by Jimmie Rodgers:</p>
<p>http://jimmieprodgers.com/kits/lolshield/</p>
<p> This needs the Charliplexing library, which you can get at the<br />
 LoL Shield project page: http://code.google.com/p/lolshield/</p>
<p> Created by Jimmie Rodgers on 12/30/2009.<br />
 Adapted from: http://www.arduino.cc/playground/Code/BitMath</p>
<p> History:<br />
  	December 30, 2009 - V1.0 first version written at 26C3/Berlin</p>
<p>  This is free software; you can redistribute it and/or<br />
  modify it under the terms of the GNU Version 3 General Public<br />
  License as published by the Free Software Foundation;<br />
  or (at your option) any later version.</p>
<p>  This library is distributed in the hope that it will be useful,<br />
  but WITHOUT ANY WARRANTY; without even the implied warranty of<br />
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU<br />
  Lesser General Public License for more details.</p>
<p>  You should have received a copy of the GNU Lesser General Public<br />
  License along with this library; if not, write to the Free Software<br />
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA<br />
*/</p>
<p>#include <avr/pgmspace.h>  //AVR library for writing to ROM<br />
#include <Charliplexing.h> //Imports the library, which needs to be<br />
                           //Initialized in setup.</p>
<p>int blinkdelay = 100;      //Sets the time each frame is shown</p>
<p>/*<br />
The BitMap array is what contains the frame data. Each line is one full frame.<br />
Since each number is 16 bits, we can easily fit all 14 LEDs per row into it.<br />
The number is calculated by adding up all the bits, starting with lowest on<br />
the left of each row. 18000 was chosen as the kill number, so make sure that<br />
is at the end of the matrix, or the program will continue to read into memory.</p>
<p>Here PROGMEM is called, which stores the array into ROM, which leaves us<br />
with our RAM. You cannot change the array during run-time, only when you<br />
upload to the Arduino. You will need to pull it out of ROM, which is covered<br />
below. If you want it to stay in RAM, just delete PROGMEM<br />
*/</p>
<p>uint16_t BitMap[][9] PROGMEM = {<br />
 { 16382 , 8193 , 10501 , 11525 , 10581 , 10581 , 11053 , 8193 , 8191 , },<br />
 { 16381 , 8193 , 10501 , 11525 , 10581 , 10581 , 11053 , 8193 , 12287 , },<br />
 { 16379 , 8193 , 10501 , 11525 , 10581 , 10581 , 11053 , 8193 , 14335 , },<br />
 { 16379 , 8193 , 10501 , 11525 , 10581 , 10581 , 11053 , 8193 , 15359 , },<br />
 { 16375 , 8193 , 10501 , 11525 , 10581 , 10581 , 11053 , 8193 , 15359 , },<br />
 { 16367 , 8193 , 10501 , 11525 , 10581 , 10581 , 11053 , 8193 , 15871 , },<br />
 { 16351 , 8193 , 10501 , 11525 , 10581 , 10581 , 11053 , 8193 , 16127 , },<br />
 { 16319 , 8193 , 10501 , 11525 , 10581 , 10581 , 11053 , 8193 , 16255 , },<br />
 { 16255 , 8193 , 10501 , 11525 , 10581 , 10581 , 11053 , 8193 , 16319 , },<br />
 { 16127 , 8193 , 10501 , 11525 , 10581 , 10581 , 11053 , 8193 , 16351 , },<br />
 { 15871 , 8193 , 10501 , 11525 , 10581 , 10581 , 11053 , 8193 , 16367 , },<br />
 { 15359 , 8193 , 10501 , 11525 , 10581 , 10581 , 11053 , 8193 , 16375 , },<br />
 { 14335 , 8193 , 10501 , 11525 , 10581 , 10581 , 11053 , 8193 , 16379 , },<br />
 { 12287 , 8193 , 10501 , 11525 , 10581 , 10581 , 11053 , 8193 , 16381 , },<br />
 { 8191 , 8193 , 10501 , 11525 , 10581 , 10581 , 11053 , 8193 , 16382 , },<br />
 { 16383 , 1 , 10501 , 11525 , 10581 , 10581 , 11053 , 8192 , 16383 , },<br />
 { 16383 , 8193 , 2309 , 11525 , 10581 , 10581 , 11052 , 8193 , 16383 , },<br />
 { 16383 , 8193 , 10501 , 3333 , 10581 , 10580 , 11053 , 8193 , 16383 , },<br />
 { 16383 , 8193 , 10501 , 11525 , 2388 , 10581 , 11053 , 8193 , 16383 , },<br />
 { 16383 , 8193 , 10501 , 11524 , 10581 , 2389 , 11053 , 8193 , 16383 , },<br />
 { 16383 , 8193 , 10500 , 11525 , 10581 , 10581 , 2861 , 8193 , 16383 , },<br />
 { 16383 , 8192 , 10501 , 11525 , 10581 , 10581 , 11053 , 1 , 16383 , },<br />
 {18000}<br />
};</p>
<p>void setup() {<br />
  LedSign::Init();  //Initializes the screen<br />
}<br />
void loop() {<br />
  DisplayBitMap();  //Displays the bitmap</p>
<p>}</p>
<p>void DisplayBitMap()<br />
{<br />
  boolean run=true;    //While this is true, the screen updates<br />
  byte frame = 0;      //Frame counter<br />
  byte line = 0;       //Row counter<br />
  unsigned long data;  //Temporary storage of the row data</p>
<p>  while(run == true) {<br />
    for(line = 0; line < 9; line++) {</p>
<p>      //Here we fetch data from program memory with a pointer.<br />
      data = pgm_read_word_near (&#038;BitMap[frame][line]);</p>
<p>      //Kills the loop if the kill number is found<br />
      if (data==18000){<br />
        frame = 0;<br />
        data = pgm_read_word_near (&#038;BitMap[frame][line]);<br />
        //run=false;<br />
      }</p>
<p>      //This is where the bit-shifting happens to pull out<br />
      //each LED from a row. If the bit is 1, then the LED<br />
      //is turned on, otherwise it is turned off.<br />
      else for (byte led=0; led<14; ++led) {<br />
        if (data &#038; (1<<led)) {<br />
          LedSign::Set(led, line, 1);<br />
        }<br />
        else {<br />
          LedSign::Set(led, line, 0);<br />
        }</p>
<p>      }</p>
<p>    }</p>
<p>    //Delays the next update<br />
    delay(blinkdelay);<br />
    frame++;<br />
  }<br />
}</code></p>
<p>I had to adjust the code to keep it from blinking at the end of the animation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lvl1.org/2010/08/17/fun-with-the-lolshield/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LVL1 Events this Weekend</title>
		<link>http://www.lvl1.org/2010/08/10/lvl1-events-this-weekend/</link>
		<comments>http://www.lvl1.org/2010/08/10/lvl1-events-this-weekend/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 17:37:39 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[events]]></category>
		<category><![CDATA[synth]]></category>
		<category><![CDATA[workshops]]></category>
		<category><![CDATA[actor's theatre of louisville]]></category>
		<category><![CDATA[jimmie rodgers]]></category>
		<category><![CDATA[mitch altman]]></category>

		<guid isPermaLink="false">http://www.lvl1.org/?p=190</guid>
		<description><![CDATA[This weekend is filled with awesome events LVL1 is a part of. Friday is Actor&#8217;s Theatre of Louisville rooftop concert. We are labeled as AWESOMENESS on the flyer. Several members of LVL1 will be showing off projects at the event. There will be bands, art, music and a cash bar on the roof of the [...]]]></description>
			<content:encoded><![CDATA[<p>This weekend is filled with awesome events LVL1 is a part of.</p>
<p>Friday is <a href="http://actorstheatre.org/thelateseating.htm">Actor&#8217;s Theatre of Louisville rooftop concert</a>. We are labeled as AWESOMENESS on the flyer. Several members of LVL1 will be showing off projects at the event. There will be bands, art, music and a cash bar on the roof of the Actor&#8217;s Theatre parking garage.</p>
<p><a href="http://www.lvl1.org/wp-content/uploads/2010/08/LateSeatingRooftopConcert2010.jpg"><img src="http://www.lvl1.org/wp-content/uploads/2010/08/LateSeatingRooftopConcert2010.jpg" alt="" title="LateSeatingRooftopConcert2010" width="250" height="523" class="aligncenter size-full wp-image-191" /></a></p>
<p>Saturday afternoon between 1pm and 5pm we will be hosting Mitch Altman and Jimmie Rodgers for their traveling electronics workshop. Mitch and Jimmie are currently touring Midwest hackerspaces, teaching electronics and soldering to anyone interested *for free*. Mitch is the inventor of the <a href="http://www.tvbgone.com/cfe_tvbg_main.php?PHPSESSID=5425c240366e30dae3a2352cef833be2">TV-B-Gone</a>, <a href="http://www.tripglasses.com/">Trip Glasses</a>, a founder of Noisebridge in San Francisco, widely regarded as a pioneer of Virtual Reality and all around cool guy. Jimmie Rodgers is a full time hacker, maker and circuit bender. He sells kits for <a href="http://jimmieprodgers.com/kits/openheart/">Open Heart v2.0</a>, <a href="http://jimmieprodgers.com/kits/apc/">Atari Punk Console</a> and <a href="http://jimmieprodgers.com/kits/lolshield/">LoL shield</a>. Instruction is free and they are selling kits for attendees to build *at cost of materials* in the $10-$30 range. LVL1 is excited to have them!<br />
<a href="http://www.lvl1.org/wp-content/uploads/2010/08/brain_machine.jpg"><img src="http://www.lvl1.org/wp-content/uploads/2010/08/brain_machine-300x238.jpg" alt="" title="brain_machine" width="300" height="238" class="aligncenter size-medium wp-image-192" /></a><br />
<a href="http://www.lvl1.org/wp-content/uploads/2010/08/jimmie1.jpg"><img src="http://www.lvl1.org/wp-content/uploads/2010/08/jimmie1.jpg" alt="" title="jimmie" width="161" height="240" class="aligncenter size-full wp-image-194" /></a></p>
<p>And this Sunday night at the Rudyard Kipling I will be performing my homemade synthesizers in my band Nzambi.<br />
<a href="http://www.lvl1.org/wp-content/uploads/2010/08/nzambi_show.jpg"><img src="http://www.lvl1.org/wp-content/uploads/2010/08/nzambi_show-194x300.jpg" alt="" title="nzambi_show" width="194" height="300" class="aligncenter size-medium wp-image-195" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lvl1.org/2010/08/10/lvl1-events-this-weekend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>And Yet Another Workshop</title>
		<link>http://www.lvl1.org/2010/08/06/and-yet-another-workshop/</link>
		<comments>http://www.lvl1.org/2010/08/06/and-yet-another-workshop/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 18:56:29 +0000</pubDate>
		<dc:creator>drphonon</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lvl1.org/?p=183</guid>
		<description><![CDATA[Learn to Solder with Mitch Altman and Jimmie Rodgers August 14, 1PM-5PM Mitch Altman, founder of the hackerspace NoiseBridge in San Franciso, and Jimmie Rodgers, creator of the LOL Shield, will be holding a learn to solder class at LVL1! Come by to learn a useful and fun skill. Several kits will be available in [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Learn to Solder with Mitch Altman and Jimmie Rodgers</strong></p>
<p><strong>August 14, 1PM-5PM</strong><br />
Mitch Altman, founder of the hackerspace NoiseBridge in San Franciso, and Jimmie Rodgers, creator of the LOL Shield, will be holding a learn to solder class at LVL1! Come by to learn a useful and fun skill. Several kits will be available in the $15-$30 range for your building pleasure. This class is appropriate for all ages. Bring your kids with you and introduce them to the wonderful world of electronics.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lvl1.org/2010/08/06/and-yet-another-workshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Another Upcoming Workshop</title>
		<link>http://www.lvl1.org/2010/07/24/another-upcoming-workshop/</link>
		<comments>http://www.lvl1.org/2010/07/24/another-upcoming-workshop/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 14:54:18 +0000</pubDate>
		<dc:creator>brad</dc:creator>
				<category><![CDATA[workshops]]></category>

		<guid isPermaLink="false">http://www.lvl1.org/?p=177</guid>
		<description><![CDATA[We&#8217;ve got another workshop planned for August.   On Saturday, the 21st. LVL1 will be hosting the &#8220;Beyond Arduino&#8221; workshops, extending your knowledge of microcontrollers and physical computing. Info and Registration At least some knowledge of Arduino and/or C programming and elementary electronics is highly recommended as a prerequisite for this course.]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve got another workshop planned for August.   On Saturday, the 21st. LVL1 will be hosting the &#8220;Beyond Arduino&#8221; workshops, extending your knowledge of microcontrollers and physical computing.</p>
<p><a href="http://www.lvl1.org/wp-content/uploads/2010/07/blog.png"><img class="aligncenter size-medium wp-image-178" src="http://www.lvl1.org/wp-content/uploads/2010/07/blog-300x184.png" alt="" width="300" height="184" /></a></p>
<p><a title="Info and Registration" href="http://www.eventbrite.com/event/775532639">Info and Registration</a></p>
<p>At least some knowledge of Arduino and/or C programming and elementary electronics is highly recommended as a prerequisite for this course.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lvl1.org/2010/07/24/another-upcoming-workshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In case you missed it</title>
		<link>http://www.lvl1.org/2010/07/19/in-case-you-missed-it/</link>
		<comments>http://www.lvl1.org/2010/07/19/in-case-you-missed-it/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 12:22:04 +0000</pubDate>
		<dc:creator>brian</dc:creator>
				<category><![CDATA[hackerspaces]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[www]]></category>

		<guid isPermaLink="false">http://www.lvl1.org/?p=163</guid>
		<description><![CDATA[LVL1 Made the Sunday paper. Read all about it!]]></description>
			<content:encoded><![CDATA[<p>LVL1 Made the Sunday paper.  <a href="http://www.courier-journal.com/article/20100719/FEATURES/7180301/1010/+Maker+movement++expands+to+Louisville++Area+gadget+builders+open+workshop">Read all about it!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lvl1.org/2010/07/19/in-case-you-missed-it/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2 Upcoming LVL1 Workshops</title>
		<link>http://www.lvl1.org/2010/07/17/2-upcoming-lvl1-workshops/</link>
		<comments>http://www.lvl1.org/2010/07/17/2-upcoming-lvl1-workshops/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 20:45:49 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[workshops]]></category>

		<guid isPermaLink="false">http://www.lvl1.org/?p=159</guid>
		<description><![CDATA[We have two new workshops scheduled for August. Saturday August 7th we&#8217;re doing another soldering your own Freeduino workshop. Info and registration And then&#8230; Saturday August 28th we&#8217;re doing another TV-B-Gone soldering workshop. Info and registration]]></description>
			<content:encoded><![CDATA[<p>We have two new workshops scheduled for August.</p>
<p>Saturday August 7th we&#8217;re doing another soldering your own Freeduino workshop.<br />
<a href="http://www.lvl1.org/wp-content/uploads/2010/07/freeduino_logo.png"><img src="http://www.lvl1.org/wp-content/uploads/2010/07/freeduino_logo-300x264.png" alt="" title="freeduino_logo" width="300" height="264" class="aligncenter size-medium wp-image-160" /></a><br />
<a href="http://www.eventbrite.com/event/767832608">Info and registration</a></p>
<p>And then&#8230;</p>
<p>Saturday August 28th we&#8217;re doing another TV-B-Gone soldering workshop.<br />
<a href="http://www.lvl1.org/wp-content/uploads/2010/07/tv-b-gone_logo.png"><img src="http://www.lvl1.org/wp-content/uploads/2010/07/tv-b-gone_logo-300x243.png" alt="" title="tv-b-gone_logo" width="300" height="243" class="aligncenter size-medium wp-image-161" /></a><br />
<a href="http://www.eventbrite.com/event/767838626">Info and registration</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lvl1.org/2010/07/17/2-upcoming-lvl1-workshops/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Distortion Pedal for Guitar</title>
		<link>http://www.lvl1.org/2010/07/15/distortion-pedal-for-guitar/</link>
		<comments>http://www.lvl1.org/2010/07/15/distortion-pedal-for-guitar/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 17:00:57 +0000</pubDate>
		<dc:creator>strothman</dc:creator>
				<category><![CDATA[diy]]></category>

		<guid isPermaLink="false">http://www.lvl1.org/?p=166</guid>
		<description><![CDATA[I just finished building the &#8220;Brown Sound In A Box 2&#8243; distortion pedal. I&#8217;m not a professional by any means but it was a fun project. YouTube: http://www.youtube.com/watch?v=leIS6up0dtQ [Les Paul Studio / Marshall 2x12 Combo amp]]]></description>
			<content:encoded><![CDATA[<p>I just finished building the &#8220;Brown Sound In A Box 2&#8243; distortion pedal. I&#8217;m not a professional by any means but it was a fun project.</p>
<div id="attachment_167" class="wp-caption alignnone" style="width: 310px"><a href="http://www.lvl1.org/wp-content/uploads/2010/07/BSIAB2top.jpg"><img class="size-medium wp-image-167" src="http://www.lvl1.org/wp-content/uploads/2010/07/BSIAB2top-300x225.jpg" alt="" width="300" height="225" /></a><p class="wp-caption-text">TOP</p></div>
<div id="attachment_168" class="wp-caption alignnone" style="width: 310px"><a href="http://www.lvl1.org/wp-content/uploads/2010/07/BSIAB2inside.jpg"><img class="size-medium wp-image-168" src="http://www.lvl1.org/wp-content/uploads/2010/07/BSIAB2inside-300x225.jpg" alt="" width="300" height="225" /></a><p class="wp-caption-text">GUTS</p></div>
<p><span style="color: #ff0000">YouTube:</span> <a title="BSIAB2" href="http://www.youtube.com/watch?v=leIS6up0dtQ" target="_blank">http://www.youtube.com/watch?v=leIS6up0dtQ</a></p>
<p>[Les Paul Studio / Marshall 2x12 Combo amp]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lvl1.org/2010/07/15/distortion-pedal-for-guitar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PODxt Amp Modeler</title>
		<link>http://www.lvl1.org/2010/07/13/podxt-amp-modeler/</link>
		<comments>http://www.lvl1.org/2010/07/13/podxt-amp-modeler/#comments</comments>
		<pubDate>Tue, 13 Jul 2010 17:13:45 +0000</pubDate>
		<dc:creator>strothman</dc:creator>
				<category><![CDATA[repair]]></category>

		<guid isPermaLink="false">http://www.lvl1.org/?p=170</guid>
		<description><![CDATA[My PODxt kept slipping in and out of tuner mode, making it pretty much useless. Cleaned up some excess flux and now the little jerk is functioning properly. New firmware updates and everything. An Amp modeler that I haven’t used for years, and now I’m using it as often as possible. Thanks Chris for the [...]]]></description>
			<content:encoded><![CDATA[<p>My PODxt kept slipping in and out of tuner mode, making it pretty much useless. Cleaned up some excess flux and now the little jerk is functioning properly. New firmware updates and everything. An Amp modeler that I haven’t used for years, and now I’m using it as often as possible. Thanks Chris for the help.</p>

<a href='http://www.lvl1.org/2010/07/13/podxt-amp-modeler/podxtfirmware/' title='podxtfirmware'><img width="150" height="150" src="http://www.lvl1.org/wp-content/uploads/2010/07/podxtfirmware-150x150.jpg" class="attachment-thumbnail" alt="podxtfirmware" title="podxtfirmware" /></a>
<a href='http://www.lvl1.org/2010/07/13/podxt-amp-modeler/podxtopen/' title='podxtopen'><img width="150" height="150" src="http://www.lvl1.org/wp-content/uploads/2010/07/podxtopen-150x150.jpg" class="attachment-thumbnail" alt="podxtopen" title="podxtopen" /></a>
<a href='http://www.lvl1.org/2010/07/13/podxt-amp-modeler/podxttesting/' title='podxttesting'><img width="150" height="150" src="http://www.lvl1.org/wp-content/uploads/2010/07/podxttesting-150x150.jpg" class="attachment-thumbnail" alt="podxttesting" title="podxttesting" /></a>
<a href='http://www.lvl1.org/2010/07/13/podxt-amp-modeler/podxttesting21/' title='podxttesting21'><img width="150" height="150" src="http://www.lvl1.org/wp-content/uploads/2010/07/podxttesting21-150x150.jpg" class="attachment-thumbnail" alt="podxttesting21" title="podxttesting21" /></a>

]]></content:encoded>
			<wfw:commentRss>http://www.lvl1.org/2010/07/13/podxt-amp-modeler/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Repost: Thanks are in order!</title>
		<link>http://www.lvl1.org/2010/07/07/repost-thanks-are-in-order/</link>
		<comments>http://www.lvl1.org/2010/07/07/repost-thanks-are-in-order/#comments</comments>
		<pubDate>Wed, 07 Jul 2010 20:31:46 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[thank you]]></category>

		<guid isPermaLink="false">http://www.lvl1.org/?p=154</guid>
		<description><![CDATA[By request, this is the thank you email posted to the list: Hello all, Last night&#8217;s Open Haus was such an overwhelming success that I didn&#8217;t have a chance to thank everyone properly. Thank you to Kwau-La-Waul Properties and the Zink family for leasing us such a fantastic space. Steve Jr. did a great job [...]]]></description>
			<content:encoded><![CDATA[<p>By request, this is the thank you email posted to the list:</p>
<p>Hello all,</p>
<p>Last night&#8217;s Open Haus was such an overwhelming success that I didn&#8217;t<br />
have a chance to thank everyone properly.</p>
<p>Thank you to Kwau-La-Waul Properties and the Zink family for leasing<br />
us such a fantastic space. Steve Jr. did a great job doing the build<br />
out for us. They put in the new walls, plumbing, A/C, electric and<br />
replacement doors windows.</p>
<p>Thank you to bluegrass.net for providing the internet connection and IPs gratis.</p>
<p>Thank you to Matt Frassica at the Courier-Journal for coming out to<br />
check out what we&#8217;re doing.</p>
<p>Thank you to the Collexion members who came up to help us celebrate.</p>
<p>Thank you to everyone who brought projects to show off!</p>
<p>Most importantly, thank you to all the founding members who&#8217;ve<br />
contributed their knowledge, time and finances to make LVL1 a reality.<br />
The contributions are too many to mention, so I won&#8217;t even bother. It<br />
takes a leap of faith to try and bootstrap a community like ours<br />
without any guarantee of success. You are heroes, every last one of<br />
you.</p>
<p>9 short months ago, Brian and Mark put out a post to see who else in<br />
Louisville was interested in starting a hackerspace like the other<br />
spaces popping up all over the US. People showed up. And they kept<br />
showing up. We self-organized and came up with a plan to bootstrap<br />
this thing. The plan worked! 9 short months from nothing but an idea<br />
to an awesome real physical space.</p>
<p>The first question I always get when I talk about what LVL1 is<br />
doing&#8230; What exactly is a hackerspace? It&#8217;s a surprisingly difficult<br />
question to answer. I think it has something to do with computers and<br />
electronics&#8230; These spaces are so conceptually new, that there isn&#8217;t<br />
a lot of history to help define them. The best I can think of is to<br />
offer analogies. Musicians need venues to perform at. Basketball<br />
players need courts to play on. Painters need galleries to show off<br />
their work. Skateboarders need skateparks to show off their tricks.<br />
Poets need open mic nights to read their work. etc. etc. Tinkerers,<br />
makers, hackers, programmers and engineers need hackerspaces to work,<br />
learn, share and socialize. Computers and electronics alone touch<br />
almost every facet of our modern lives, so the breadth of possible<br />
projects is incredibly large. And a hackerspace can be much more than<br />
just computers and electronics. I think that was demonstrated by the<br />
wide variety of projects on display last night!</p>
<p>Now that we have our space, let&#8217;s move boldly forward. Our success as<br />
a hackerspace should be measured by the good times we have, the<br />
friends we make and the great projects we create. Remember all the<br />
things that have helped us build a great community and keep doing<br />
them. Go out of your way to be open and welcoming to new members.<br />
Share what you know. If you want something to happen, take the lead to<br />
make it happen. Don&#8217;t be intimidated by what you don&#8217;t know. Figure<br />
out where to start, be prepared to fail, readjust and try again. All<br />
of the democracy and voting in the world is no substitute for a<br />
healthy culture of learning and doing.</p>
<p>Thanks again. I looking foward to this time next year, when we can<br />
look back and again be pleasantly surprised by what has been<br />
accomplished.</p>
<p>I will now officially exercise the sole privilege of my office and<br />
redesignate my LVL1 title from &#8220;Chief Tyrant of the Collective Will&#8221;<br />
to &#8220;Micro Colonel&#8221;.</p>
<p>High 5s all around!</p>
<p>/Chris<br />
Micro Colonel LVL1</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lvl1.org/2010/07/07/repost-thanks-are-in-order/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>That&#8217;ll do vac.. that&#8217;ll do.</title>
		<link>http://www.lvl1.org/2010/07/06/thatll-do-vac-thatll-do/</link>
		<comments>http://www.lvl1.org/2010/07/06/thatll-do-vac-thatll-do/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 20:53:17 +0000</pubDate>
		<dc:creator>Christopher</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cleaning]]></category>
		<category><![CDATA[shoppy]]></category>

		<guid isPermaLink="false">http://www.lvl1.org/?p=147</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.lvl1.org/wp-content/uploads/2010/06/2010-07-06-15.40.59.jpg"><img src="http://www.lvl1.org/wp-content/uploads/2010/06/2010-07-06-15.40.59-225x300.jpg" alt="" title="2010-07-06 15.40.59" width="225" height="300" class="aligncenter size-medium wp-image-153" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lvl1.org/2010/07/06/thatll-do-vac-thatll-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
