<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://i3detroit.com/wi/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://i3detroit.com/wi/api.php?action=feedcontributions&amp;user=Kc8nod&amp;feedformat=atom</id>
		<title>i3Detroit - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://i3detroit.com/wi/api.php?action=feedcontributions&amp;user=Kc8nod&amp;feedformat=atom"/>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Special:Contributions/Kc8nod"/>
		<updated>2013-06-20T02:55:24Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.18.1</generator>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Power_Meter</id>
		<title>Power Meter</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Power_Meter"/>
				<updated>2013-06-01T02:36:52Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Power meter for our building measures the whole building, including B.Nektar. Installation of separate service for the two halves of the building is prohibitively expensive.&lt;br /&gt;
Thus we have installed our own meter at the big disconnect right by the door to B. Nektar, at the southwest corner of the space.&lt;br /&gt;
&lt;br /&gt;
==The Meter==&lt;br /&gt;
&lt;br /&gt;
The [http://www.ekmmetering.com/omnimeter OmniMeter] from [http://www.ekmmetering.com/ EKM Metering]&lt;br /&gt;
&lt;br /&gt;
===RS-485 Interface===&lt;br /&gt;
&lt;br /&gt;
The meter can be read and configured via a RS-485 interface on top of the box.&lt;br /&gt;
The serial protocol is documented here: http://documents.ekmmetering.com/Meter_Communication_Parsing_Submeter_v3.pdf&lt;br /&gt;
&lt;br /&gt;
The port settings are unusual: 9600 baud '''7''' data bits and '''EVEN''' parity.&lt;br /&gt;
&lt;br /&gt;
===RS-485 &amp;lt;-&amp;gt; Ethernet===&lt;br /&gt;
&lt;br /&gt;
The meter's serial port is connected to the network with a Serial to ethernet adapter.&lt;br /&gt;
The manual is here: [[File:RocketPortSoloManual.pdf]]&lt;br /&gt;
&lt;br /&gt;
The IP address is '''10.13.0.20'''. It should also be recorded on the [[Network]] page of this wiki.&lt;br /&gt;
&lt;br /&gt;
There is a web interface for serial port configuration, but please don't monkey with it. &lt;br /&gt;
Changing the IP address is more tricky, see the manual above.&lt;br /&gt;
&lt;br /&gt;
The adapter is software configurable for RS-232, RS-422 and RS-485. But be careful, the pinout is non-standard. Don't assume that you can re-use the cable that is attached to the adapter.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To connect to the meter's serial port, open a TCP socket on port 8000.&lt;br /&gt;
&lt;br /&gt;
==The Serial Protocol==&lt;br /&gt;
&lt;br /&gt;
The serial protocol is documented here: http://documents.ekmmetering.com/Meter_Communication_Parsing_Submeter_v3.pdf&lt;br /&gt;
Further discussion can be found on the EKM forums here: http://forum.ekmmetering.com/viewtopic.php?f=4&amp;amp;t=5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here's an example of how to talk to this thing with ruby:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
class OmniMeter&lt;br /&gt;
&lt;br /&gt;
    attr_reader :raw, :time, :address, :total_kWh, :t1_kWh, :t2_kWh, :t3_kWh,&lt;br /&gt;
                :voltage1, :voltage2, :voltage3,&lt;br /&gt;
                :current1, :current2, :current3,&lt;br /&gt;
                :power1, :power2, :power3, :total_power,&lt;br /&gt;
                :cos1, :cos2, :cos3,&lt;br /&gt;
                :t1_rev_kWh, :t2_rev_kWh, :t3_rev_kWh, :total_rev_kWh,&lt;br /&gt;
                :max_demand, :crc&lt;br /&gt;
&lt;br /&gt;
    def initialize(connection)&lt;br /&gt;
        @connection = connection&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    def update&lt;br /&gt;
        @connection.write &amp;quot;/?000010000863\r\n&amp;quot;&lt;br /&gt;
        @raw = @connection.read(255)&lt;br /&gt;
&lt;br /&gt;
        @crc = @raw[-2..-1].unpack('n').first&lt;br /&gt;
&lt;br /&gt;
        return false unless self.valid?&lt;br /&gt;
&lt;br /&gt;
        @address       = @raw[4..15]&lt;br /&gt;
        @total_kWh     = @raw[16..23].to_f / 10&lt;br /&gt;
        @t1_kWh        = @raw[24..31].to_f / 10&lt;br /&gt;
        @t2_kWh        = @raw[32..39].to_f / 10&lt;br /&gt;
        @t3_kWh        = @raw[40..47].to_f / 10&lt;br /&gt;
        @t4_kWh        = @raw[48..57].to_f / 10&lt;br /&gt;
        @total_rev_kWh = @raw[58..63].to_f / 10&lt;br /&gt;
        @t1_rev_kWh    = @raw[64..71].to_f / 10&lt;br /&gt;
        @t2_rev_kWh    = @raw[72..79].to_f / 10&lt;br /&gt;
        @t3_rev_kWh    = @raw[80..87].to_f / 10&lt;br /&gt;
        @voltage1      = @raw[96..99].to_f / 10&lt;br /&gt;
        @voltage2      = @raw[100..103].to_f / 10&lt;br /&gt;
        @voltage3      = @raw[104..107].to_f / 10&lt;br /&gt;
        @current1      = @raw[108..112].to_f / 10&lt;br /&gt;
        @current2      = @raw[113..117].to_f / 10&lt;br /&gt;
        @current3      = @raw[118..122].to_f / 10&lt;br /&gt;
        @power1        = @raw[123..129].to_f&lt;br /&gt;
        @power2        = @raw[130..136].to_f&lt;br /&gt;
        @power3        = @raw[137..143].to_f&lt;br /&gt;
        @total_power   = @raw[144..150].to_f&lt;br /&gt;
        @cos1          = @raw[151..154]&lt;br /&gt;
        @cos2          = @raw[155..158]&lt;br /&gt;
        @cos3          = @raw[159..162]&lt;br /&gt;
        @max_demand    = @raw[163..170].to_f / 10&lt;br /&gt;
&lt;br /&gt;
        date = @raw[172..177]&lt;br /&gt;
        time = @raw[180..185]&lt;br /&gt;
        @time = Time.strptime(date + time, '%y%m%d%H%M%S')&lt;br /&gt;
&lt;br /&gt;
        true&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    def get_hash&lt;br /&gt;
        hsh = {}&lt;br /&gt;
        [:time, :address, :total_kWh, :t1_kWh, :t2_kWh, :t3_kWh,&lt;br /&gt;
         :voltage1, :voltage2, :voltage3,&lt;br /&gt;
         :current1, :current2, :current3,&lt;br /&gt;
         :power1, :power2, :power3, :total_power,&lt;br /&gt;
         :cos1, :cos2, :cos3,&lt;br /&gt;
         :t1_rev_kWh, :t2_rev_kWh, :t3_rev_kWh, :total_rev_kWh,&lt;br /&gt;
         :max_demand, :crc&lt;br /&gt;
        ].each do |symbol|&lt;br /&gt;
            hsh[symbol] = self.send(symbol)&lt;br /&gt;
        end&lt;br /&gt;
&lt;br /&gt;
        hsh&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    def inspect&lt;br /&gt;
        self.get_hash.inspect&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    def valid?&lt;br /&gt;
        @crc == self.calc_crc16&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    def calc_crc16&lt;br /&gt;
        crc = 0xFFFF&lt;br /&gt;
        @raw[1..-3].each_byte do |b|&lt;br /&gt;
            crc = ((crc &amp;gt;&amp;gt; 8) &amp;amp; 0xff) ^ CRC_LOOKUP[(crc ^ b) &amp;amp; 0xff]&lt;br /&gt;
        end&lt;br /&gt;
&lt;br /&gt;
        swapped = ((crc &amp;lt;&amp;lt; 8) | (crc &amp;gt;&amp;gt; 8)) &amp;amp; 0xFFFF&lt;br /&gt;
        swapped &amp;amp; 0x7F7F&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    private&lt;br /&gt;
&lt;br /&gt;
    CRC_LOOKUP = [&lt;br /&gt;
        0x0000, 0xC0C1, 0xC181, 0x0140, 0xC301, 0x03C0, 0x0280, 0xC241,&lt;br /&gt;
        0xC601, 0x06C0, 0x0780, 0xC741, 0x0500, 0xC5C1, 0xC481, 0x0440,&lt;br /&gt;
        0xCC01, 0x0CC0, 0x0D80, 0xCD41, 0x0F00, 0xCFC1, 0xCE81, 0x0E40,&lt;br /&gt;
        0x0A00, 0xCAC1, 0xCB81, 0x0B40, 0xC901, 0x09C0, 0x0880, 0xC841,&lt;br /&gt;
        0xD801, 0x18C0, 0x1980, 0xD941, 0x1B00, 0xDBC1, 0xDA81, 0x1A40,&lt;br /&gt;
        0x1E00, 0xDEC1, 0xDF81, 0x1F40, 0xDD01, 0x1DC0, 0x1C80, 0xDC41,&lt;br /&gt;
        0x1400, 0xD4C1, 0xD581, 0x1540, 0xD701, 0x17C0, 0x1680, 0xD641,&lt;br /&gt;
        0xD201, 0x12C0, 0x1380, 0xD341, 0x1100, 0xD1C1, 0xD081, 0x1040,&lt;br /&gt;
        0xF001, 0x30C0, 0x3180, 0xF141, 0x3300, 0xF3C1, 0xF281, 0x3240,&lt;br /&gt;
        0x3600, 0xF6C1, 0xF781, 0x3740, 0xF501, 0x35C0, 0x3480, 0xF441,&lt;br /&gt;
        0x3C00, 0xFCC1, 0xFD81, 0x3D40, 0xFF01, 0x3FC0, 0x3E80, 0xFE41,&lt;br /&gt;
        0xFA01, 0x3AC0, 0x3B80, 0xFB41, 0x3900, 0xF9C1, 0xF881, 0x3840,&lt;br /&gt;
        0x2800, 0xE8C1, 0xE981, 0x2940, 0xEB01, 0x2BC0, 0x2A80, 0xEA41,&lt;br /&gt;
        0xEE01, 0x2EC0, 0x2F80, 0xEF41, 0x2D00, 0xEDC1, 0xEC81, 0x2C40,&lt;br /&gt;
        0xE401, 0x24C0, 0x2580, 0xE541, 0x2700, 0xE7C1, 0xE681, 0x2640,&lt;br /&gt;
        0x2200, 0xE2C1, 0xE381, 0x2340, 0xE101, 0x21C0, 0x2080, 0xE041,&lt;br /&gt;
        0xA001, 0x60C0, 0x6180, 0xA141, 0x6300, 0xA3C1, 0xA281, 0x6240,&lt;br /&gt;
        0x6600, 0xA6C1, 0xA781, 0x6740, 0xA501, 0x65C0, 0x6480, 0xA441,&lt;br /&gt;
        0x6C00, 0xACC1, 0xAD81, 0x6D40, 0xAF01, 0x6FC0, 0x6E80, 0xAE41,&lt;br /&gt;
        0xAA01, 0x6AC0, 0x6B80, 0xAB41, 0x6900, 0xA9C1, 0xA881, 0x6840,&lt;br /&gt;
        0x7800, 0xB8C1, 0xB981, 0x7940, 0xBB01, 0x7BC0, 0x7A80, 0xBA41,&lt;br /&gt;
        0xBE01, 0x7EC0, 0x7F80, 0xBF41, 0x7D00, 0xBDC1, 0xBC81, 0x7C40,&lt;br /&gt;
        0xB401, 0x74C0, 0x7580, 0xB541, 0x7700, 0xB7C1, 0xB681, 0x7640,&lt;br /&gt;
        0x7200, 0xB2C1, 0xB381, 0x7340, 0xB101, 0x71C0, 0x7080, 0xB041,&lt;br /&gt;
        0x5000, 0x90C1, 0x9181, 0x5140, 0x9301, 0x53C0, 0x5280, 0x9241,&lt;br /&gt;
        0x9601, 0x56C0, 0x5780, 0x9741, 0x5500, 0x95C1, 0x9481, 0x5440,&lt;br /&gt;
        0x9C01, 0x5CC0, 0x5D80, 0x9D41, 0x5F00, 0x9FC1, 0x9E81, 0x5E40,&lt;br /&gt;
        0x5A00, 0x9AC1, 0x9B81, 0x5B40, 0x9901, 0x59C0, 0x5880, 0x9841,&lt;br /&gt;
        0x8801, 0x48C0, 0x4980, 0x8941, 0x4B00, 0x8BC1, 0x8A81, 0x4A40,&lt;br /&gt;
        0x4E00, 0x8EC1, 0x8F81, 0x4F40, 0x8D01, 0x4DC0, 0x4C80, 0x8C41,&lt;br /&gt;
        0x4400, 0x84C1, 0x8581, 0x4540, 0x8701, 0x47C0, 0x4680, 0x8641,&lt;br /&gt;
        0x8201, 0x42C0, 0x4380, 0x8341, 0x4100, 0x81C1, 0x8081, 0x4040&lt;br /&gt;
    ]&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Logging Script==&lt;br /&gt;
&lt;br /&gt;
The logging script runs on the skynet.i3detroit.local server in the space.&lt;br /&gt;
It can be found at /home/ted/omnimeter/omnimeter_logger.rb and works like so:&lt;br /&gt;
&lt;br /&gt;
# Script reads data from the meter&lt;br /&gt;
# Script parses data and writes a new document to the local CouchDB database at http://localhost:5984/power_meter&lt;br /&gt;
# The local CouchDB continually replicates itself to '''''the cloud''''' at: https://i3detroit.iriscouch.com:6984/power_meter&lt;br /&gt;
# Profit &lt;br /&gt;
&lt;br /&gt;
==The Database==&lt;br /&gt;
&lt;br /&gt;
The CouchDB database is world-readable at: https://i3detroit.iriscouch.com:6984/power_meter&lt;br /&gt;
&lt;br /&gt;
Here are some example queries:&lt;br /&gt;
&lt;br /&gt;
* The most recent meter reading: https://i3detroit.iriscouch.com:6984/power_meter/_design/readings/_view/time_sorted?limit=1&amp;amp;descending=true&lt;br /&gt;
&lt;br /&gt;
* The most recent 10 meter readings: https://i3detroit.iriscouch.com:6984/power_meter/_design/readings/_view/time_sorted?limit=10&amp;amp;descending=true&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Power_Meter</id>
		<title>Power Meter</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Power_Meter"/>
				<updated>2013-05-28T20:55:20Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: add code example&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Power meter for our building measures the whole building, including B.Nektar. Installation of separate service for the two halves of the building is prohibitively expensive.&lt;br /&gt;
Thus we have installed our own meter at the big disconnect right by the door to B. Nektar, at the southwest corner of the space.&lt;br /&gt;
&lt;br /&gt;
==The Meter==&lt;br /&gt;
&lt;br /&gt;
The [http://www.ekmmetering.com/omnimeter OmniMeter] from [http://www.ekmmetering.com/ EKM Metering]&lt;br /&gt;
&lt;br /&gt;
===RS-485 Interface===&lt;br /&gt;
&lt;br /&gt;
The meter can be read and configured via a RS-485 interface on top of the box.&lt;br /&gt;
The serial protocol is documented here: http://documents.ekmmetering.com/Meter_Communication_Parsing_Submeter_v3.pdf&lt;br /&gt;
&lt;br /&gt;
The port settings are unusual: 9600 baud '''7''' data bits and '''EVEN''' parity.&lt;br /&gt;
&lt;br /&gt;
===RS-485 &amp;lt;-&amp;gt; Ethernet===&lt;br /&gt;
&lt;br /&gt;
The meter's serial port is connected to the network with a Serial to ethernet adapter.&lt;br /&gt;
The manual is here: [[File:RocketPortSoloManual.pdf]]&lt;br /&gt;
&lt;br /&gt;
The IP address is '''10.13.0.20'''. It should also be recorded on the [[Network]] page of this wiki.&lt;br /&gt;
&lt;br /&gt;
There is a web interface for serial port configuration, but please don't monkey with it. &lt;br /&gt;
Changing the IP address is more tricky, see the manual above.&lt;br /&gt;
&lt;br /&gt;
The adapter is software configurable for RS-232, RS-422 and RS-485. But be careful, the pinout is non-standard. Don't assume that you can re-use the cable that is attached to the adapter.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
To connect to the meter's serial port, open a TCP socket on port 8000.&lt;br /&gt;
&lt;br /&gt;
==The Protocol==&lt;br /&gt;
&lt;br /&gt;
The serial protocol is documented here: http://documents.ekmmetering.com/Meter_Communication_Parsing_Submeter_v3.pdf&lt;br /&gt;
Further discussion can be found on the EKM forums here: http://forum.ekmmetering.com/viewtopic.php?f=4&amp;amp;t=5&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here's an example of how to talk to this thing with ruby:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
class OmniMeter&lt;br /&gt;
&lt;br /&gt;
    attr_reader :raw, :time, :address, :total_kWh, :t1_kWh, :t2_kWh, :t3_kWh,&lt;br /&gt;
                :voltage1, :voltage2, :voltage3,&lt;br /&gt;
                :current1, :current2, :current3,&lt;br /&gt;
                :power1, :power2, :power3, :total_power,&lt;br /&gt;
                :cos1, :cos2, :cos3,&lt;br /&gt;
                :t1_rev_kWh, :t2_rev_kWh, :t3_rev_kWh, :total_rev_kWh,&lt;br /&gt;
                :max_demand, :crc&lt;br /&gt;
&lt;br /&gt;
    def initialize(connection)&lt;br /&gt;
        @connection = connection&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    def update&lt;br /&gt;
        @connection.write &amp;quot;/?000010000863\r\n&amp;quot;&lt;br /&gt;
        @raw = @connection.read(255)&lt;br /&gt;
&lt;br /&gt;
        @crc = @raw[-2..-1].unpack('n').first&lt;br /&gt;
&lt;br /&gt;
        return false unless self.valid?&lt;br /&gt;
&lt;br /&gt;
        @address       = @raw[4..15]&lt;br /&gt;
        @total_kWh     = @raw[16..23].to_f / 10&lt;br /&gt;
        @t1_kWh        = @raw[24..31].to_f / 10&lt;br /&gt;
        @t2_kWh        = @raw[32..39].to_f / 10&lt;br /&gt;
        @t3_kWh        = @raw[40..47].to_f / 10&lt;br /&gt;
        @t4_kWh        = @raw[48..57].to_f / 10&lt;br /&gt;
        @total_rev_kWh = @raw[58..63].to_f / 10&lt;br /&gt;
        @t1_rev_kWh    = @raw[64..71].to_f / 10&lt;br /&gt;
        @t2_rev_kWh    = @raw[72..79].to_f / 10&lt;br /&gt;
        @t3_rev_kWh    = @raw[80..87].to_f / 10&lt;br /&gt;
        @voltage1      = @raw[96..99].to_f / 10&lt;br /&gt;
        @voltage2      = @raw[100..103].to_f / 10&lt;br /&gt;
        @voltage3      = @raw[104..107].to_f / 10&lt;br /&gt;
        @current1      = @raw[108..112].to_f / 10&lt;br /&gt;
        @current2      = @raw[113..117].to_f / 10&lt;br /&gt;
        @current3      = @raw[118..122].to_f / 10&lt;br /&gt;
        @power1        = @raw[123..129].to_f&lt;br /&gt;
        @power2        = @raw[130..136].to_f&lt;br /&gt;
        @power3        = @raw[137..143].to_f&lt;br /&gt;
        @total_power   = @raw[144..150].to_f&lt;br /&gt;
        @cos1          = @raw[151..154]&lt;br /&gt;
        @cos2          = @raw[155..158]&lt;br /&gt;
        @cos3          = @raw[159..162]&lt;br /&gt;
        @max_demand    = @raw[163..170].to_f / 10&lt;br /&gt;
&lt;br /&gt;
        date = @raw[172..177]&lt;br /&gt;
        time = @raw[180..185]&lt;br /&gt;
        @time = Time.strptime(date + time, '%y%m%d%H%M%S')&lt;br /&gt;
&lt;br /&gt;
        true&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    def get_hash&lt;br /&gt;
        hsh = {}&lt;br /&gt;
        [:time, :address, :total_kWh, :t1_kWh, :t2_kWh, :t3_kWh,&lt;br /&gt;
         :voltage1, :voltage2, :voltage3,&lt;br /&gt;
         :current1, :current2, :current3,&lt;br /&gt;
         :power1, :power2, :power3, :total_power,&lt;br /&gt;
         :cos1, :cos2, :cos3,&lt;br /&gt;
         :t1_rev_kWh, :t2_rev_kWh, :t3_rev_kWh, :total_rev_kWh,&lt;br /&gt;
         :max_demand, :crc&lt;br /&gt;
        ].each do |symbol|&lt;br /&gt;
            hsh[symbol] = self.send(symbol)&lt;br /&gt;
        end&lt;br /&gt;
&lt;br /&gt;
        hsh&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    def inspect&lt;br /&gt;
        self.get_hash.inspect&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    def valid?&lt;br /&gt;
        @crc == self.calc_crc16&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
    def calc_crc16&lt;br /&gt;
        crc = 0xFFFF&lt;br /&gt;
        @raw[1..-3].each_byte do |b|&lt;br /&gt;
            crc = ((crc &amp;gt;&amp;gt; 8) &amp;amp; 0xff) ^ CRC_LOOKUP[(crc ^ b) &amp;amp; 0xff]&lt;br /&gt;
        end&lt;br /&gt;
&lt;br /&gt;
        swapped = ((crc &amp;lt;&amp;lt; 8) | (crc &amp;gt;&amp;gt; 8)) &amp;amp; 0xFFFF&lt;br /&gt;
        swapped &amp;amp; 0x7F7F&lt;br /&gt;
    end&lt;br /&gt;
&lt;br /&gt;
    private&lt;br /&gt;
&lt;br /&gt;
    CRC_LOOKUP = [&lt;br /&gt;
        0x0000, 0xC0C1, 0xC181, 0x0140, 0xC301, 0x03C0, 0x0280, 0xC241,&lt;br /&gt;
        0xC601, 0x06C0, 0x0780, 0xC741, 0x0500, 0xC5C1, 0xC481, 0x0440,&lt;br /&gt;
        0xCC01, 0x0CC0, 0x0D80, 0xCD41, 0x0F00, 0xCFC1, 0xCE81, 0x0E40,&lt;br /&gt;
        0x0A00, 0xCAC1, 0xCB81, 0x0B40, 0xC901, 0x09C0, 0x0880, 0xC841,&lt;br /&gt;
        0xD801, 0x18C0, 0x1980, 0xD941, 0x1B00, 0xDBC1, 0xDA81, 0x1A40,&lt;br /&gt;
        0x1E00, 0xDEC1, 0xDF81, 0x1F40, 0xDD01, 0x1DC0, 0x1C80, 0xDC41,&lt;br /&gt;
        0x1400, 0xD4C1, 0xD581, 0x1540, 0xD701, 0x17C0, 0x1680, 0xD641,&lt;br /&gt;
        0xD201, 0x12C0, 0x1380, 0xD341, 0x1100, 0xD1C1, 0xD081, 0x1040,&lt;br /&gt;
        0xF001, 0x30C0, 0x3180, 0xF141, 0x3300, 0xF3C1, 0xF281, 0x3240,&lt;br /&gt;
        0x3600, 0xF6C1, 0xF781, 0x3740, 0xF501, 0x35C0, 0x3480, 0xF441,&lt;br /&gt;
        0x3C00, 0xFCC1, 0xFD81, 0x3D40, 0xFF01, 0x3FC0, 0x3E80, 0xFE41,&lt;br /&gt;
        0xFA01, 0x3AC0, 0x3B80, 0xFB41, 0x3900, 0xF9C1, 0xF881, 0x3840,&lt;br /&gt;
        0x2800, 0xE8C1, 0xE981, 0x2940, 0xEB01, 0x2BC0, 0x2A80, 0xEA41,&lt;br /&gt;
        0xEE01, 0x2EC0, 0x2F80, 0xEF41, 0x2D00, 0xEDC1, 0xEC81, 0x2C40,&lt;br /&gt;
        0xE401, 0x24C0, 0x2580, 0xE541, 0x2700, 0xE7C1, 0xE681, 0x2640,&lt;br /&gt;
        0x2200, 0xE2C1, 0xE381, 0x2340, 0xE101, 0x21C0, 0x2080, 0xE041,&lt;br /&gt;
        0xA001, 0x60C0, 0x6180, 0xA141, 0x6300, 0xA3C1, 0xA281, 0x6240,&lt;br /&gt;
        0x6600, 0xA6C1, 0xA781, 0x6740, 0xA501, 0x65C0, 0x6480, 0xA441,&lt;br /&gt;
        0x6C00, 0xACC1, 0xAD81, 0x6D40, 0xAF01, 0x6FC0, 0x6E80, 0xAE41,&lt;br /&gt;
        0xAA01, 0x6AC0, 0x6B80, 0xAB41, 0x6900, 0xA9C1, 0xA881, 0x6840,&lt;br /&gt;
        0x7800, 0xB8C1, 0xB981, 0x7940, 0xBB01, 0x7BC0, 0x7A80, 0xBA41,&lt;br /&gt;
        0xBE01, 0x7EC0, 0x7F80, 0xBF41, 0x7D00, 0xBDC1, 0xBC81, 0x7C40,&lt;br /&gt;
        0xB401, 0x74C0, 0x7580, 0xB541, 0x7700, 0xB7C1, 0xB681, 0x7640,&lt;br /&gt;
        0x7200, 0xB2C1, 0xB381, 0x7340, 0xB101, 0x71C0, 0x7080, 0xB041,&lt;br /&gt;
        0x5000, 0x90C1, 0x9181, 0x5140, 0x9301, 0x53C0, 0x5280, 0x9241,&lt;br /&gt;
        0x9601, 0x56C0, 0x5780, 0x9741, 0x5500, 0x95C1, 0x9481, 0x5440,&lt;br /&gt;
        0x9C01, 0x5CC0, 0x5D80, 0x9D41, 0x5F00, 0x9FC1, 0x9E81, 0x5E40,&lt;br /&gt;
        0x5A00, 0x9AC1, 0x9B81, 0x5B40, 0x9901, 0x59C0, 0x5880, 0x9841,&lt;br /&gt;
        0x8801, 0x48C0, 0x4980, 0x8941, 0x4B00, 0x8BC1, 0x8A81, 0x4A40,&lt;br /&gt;
        0x4E00, 0x8EC1, 0x8F81, 0x4F40, 0x8D01, 0x4DC0, 0x4C80, 0x8C41,&lt;br /&gt;
        0x4400, 0x84C1, 0x8581, 0x4540, 0x8701, 0x47C0, 0x4680, 0x8641,&lt;br /&gt;
        0x8201, 0x42C0, 0x4380, 0x8341, 0x4100, 0x81C1, 0x8081, 0x4040&lt;br /&gt;
    ]&lt;br /&gt;
&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=User:Nbezanson</id>
		<title>User:Nbezanson</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=User:Nbezanson"/>
				<updated>2013-05-23T19:50:39Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Static pages sandbox =&lt;br /&gt;
&lt;br /&gt;
{| border=2&lt;br /&gt;
|+ Front page top menu bar&lt;br /&gt;
|- bgcolor=skyblue&lt;br /&gt;
! [[User:Nbezanson/About|About]] !! [[User:Nbezanson/Visit|Visit]] !! [[Communication|Contact]] !! [[User:Nbezanson/Support|Donate/Support]] !! [[User:Nbezanson/Join|Join]] !! [[Main_Page|Wiki]] !! [https://www.google.com/calendar/render?cid=i3detroit%40gmail.com Calendar]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
= Introduction / Bio =&lt;br /&gt;
&lt;br /&gt;
Hi! Name's Nathaniel Bezanson. Sometimes I go by Nate, but that's ambiguous.&lt;br /&gt;
&lt;br /&gt;
Projects:&lt;br /&gt;
* [[Balloon]]&lt;br /&gt;
** [[GPS receiver testing]]&lt;br /&gt;
* [[Spot-welder]] for battery-tab welding&lt;br /&gt;
&lt;br /&gt;
My work schedule is somewhat random. I'll be in town for months, then traveling for weeks or months. So, you might not see me around the space for a while, and then I'll be there every day, and then I'll be scarce again. Some of our other members work for the same company...&lt;br /&gt;
&lt;br /&gt;
Professional background: &lt;br /&gt;
* PDH/SONET transmission and cross-connect: T1, DS3, OCx. (STS-xC)&lt;br /&gt;
* Spent too much time with a T-Berd, not enough with a SunSet.&lt;br /&gt;
* Would be happy to teach you Bell System cable-lacing technique&lt;br /&gt;
* And wire-wrapping, the 25-pair color code, TP76300 workmanship&lt;br /&gt;
* Never terminated or spliced my own fiber, though. Would love to learn.&lt;br /&gt;
* Cellular back-end support: MTSO equipment, BTS equipment&lt;br /&gt;
* Know a little about CDMA, but just on the air and network, not handsets.&lt;br /&gt;
* Point-of-sale hardware, OPOS scanners/scales/printers&lt;br /&gt;
* Barcode scanners are a security problem, ask me why.&lt;br /&gt;
* Starting to learn my way around CANbus, but much is under NDA. :(&lt;br /&gt;
&lt;br /&gt;
Hobby background:&lt;br /&gt;
* Electronics tinkering since I could hold a screwdriver&lt;br /&gt;
* Primary interest these days is barely-eye-safe LED flashlights&lt;br /&gt;
* Know a bit about a lot: Cars, audio, rocketry, batteries.&lt;br /&gt;
* Licensed as a ham, but never get on the air under Part 97.&lt;br /&gt;
* Part-15 though, now that's fun. Ask me about Ricochet.&lt;br /&gt;
* Am apparently a fairly accomplished solderer. Love to teach.&lt;br /&gt;
&lt;br /&gt;
My space-related TODO / project queue:&lt;br /&gt;
* incorporate [[ToDo]] by reference&lt;br /&gt;
* Complete [[OtherEvents]] calendar gathering.&lt;br /&gt;
* Backup keypad and help with software&lt;br /&gt;
* convert [[HOWTO_use_the_Plotter|DesignJet 300]] to color (it's a firmware hack followed by recalibration, just need the right paper for the calibration routine, which may be a BS requirement)&lt;br /&gt;
* install limit switches on [[makerbot]]&lt;br /&gt;
* fix [[makerbot]]'s build platform heater power connector&lt;br /&gt;
* build far-IR flashlight and document on this wiki&lt;br /&gt;
* build XM-L flashlight and document on this wiki&lt;br /&gt;
* mod USB jack into Galaxy Tab and document on iFixit&lt;br /&gt;
* mount rack onto wheels and build network lab&lt;br /&gt;
* erect shelves in E-room&lt;br /&gt;
* reorganize and relabel and redocument E-room parts selection&lt;br /&gt;
* build another fold-down welding shield&lt;br /&gt;
* mount cable-grip on [[TigWelder]] power cord&lt;br /&gt;
* dissect Planar touchscreen PC and figure out USB pinout&lt;br /&gt;
* figure out LaserCut's origin issues, and lead a real class on the [[Laser Cutter]]&lt;br /&gt;
* reaper...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Stuff=&lt;br /&gt;
&lt;br /&gt;
I own the [[Genie]] and the [[Acer 1440G Lathe]]. And lots of stuff in the [[Electronics Room]].&lt;br /&gt;
&lt;br /&gt;
=Roadside toolkit=&lt;br /&gt;
This is my scratchpad for tools and links that should be in the toolkit prepared for the Roadside Skills class.&lt;br /&gt;
* Tire pressure gauge&lt;br /&gt;
* Small compressor&lt;br /&gt;
* Tire patch kit (reamer, inserter, worms, rubber cement)&lt;br /&gt;
* Small locking pliers&lt;br /&gt;
* Needle-nose pliers&lt;br /&gt;
* Headlamp and batteries&lt;br /&gt;
* Gloves&lt;br /&gt;
* Fuse tester or multimeter&lt;br /&gt;
* Spare fuses&lt;br /&gt;
* Jumper cables&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{MeritBadge|NoseBleed}}{{MeritBadge| AllNighter }}{{MeritBadge| BloggittyBlogBlog }}{{MeritBadge| CatHerder }}{{MeritBadge| Event Host }}{{MeritBadge| PowPowPowerWheels }}{{MeritBadge| TourGuide }}{{MeritBadge|CitationNeeded}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 [[Category:Members]]&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=User:Nbezanson</id>
		<title>User:Nbezanson</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=User:Nbezanson"/>
				<updated>2013-05-23T19:46:39Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Static pages sandbox =&lt;br /&gt;
&lt;br /&gt;
{| border=2&lt;br /&gt;
|+ Front page top menu bar&lt;br /&gt;
|- bgcolor=skyblue&lt;br /&gt;
! [[User:Nbezanson/About|About]] !! [[User:Nbezanson/Visit|Visit]] !! [[Communication|Contact]] !! [[User:Nbezanson/Support|Donate/Support]] !! [[User:Nbezanson/Join|Join]] !! [[Main_Page|Wiki]] !! [https://www.google.com/calendar/render?cid=i3detroit%40gmail.com Calendar]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
-----&lt;br /&gt;
&lt;br /&gt;
= Introduction / Bio =&lt;br /&gt;
&lt;br /&gt;
Hi! Name's Nathaniel Bezanson. Sometimes I go by Nate, but that's ambiguous.&lt;br /&gt;
&lt;br /&gt;
Projects:&lt;br /&gt;
* [[Balloon]]&lt;br /&gt;
** [[GPS receiver testing]]&lt;br /&gt;
* [[Spot-welder]] for battery-tab welding&lt;br /&gt;
&lt;br /&gt;
My work schedule is somewhat random. I'll be in town for months, then traveling for weeks or months. So, you might not see me around the space for a while, and then I'll be there every day, and then I'll be scarce again. Some of our other members work for the same company...&lt;br /&gt;
&lt;br /&gt;
Professional background: &lt;br /&gt;
* PDH/SONET transmission and cross-connect: T1, DS3, OCx. (STS-xC)&lt;br /&gt;
* Spent too much time with a T-Berd, not enough with a SunSet.&lt;br /&gt;
* Would be happy to teach you Bell System cable-lacing technique&lt;br /&gt;
* And wire-wrapping, the 25-pair color code, TP76300 workmanship&lt;br /&gt;
* Never terminated or spliced my own fiber, though. Would love to learn.&lt;br /&gt;
* Cellular back-end support: MTSO equipment, BTS equipment&lt;br /&gt;
* Know a little about CDMA, but just on the air and network, not handsets.&lt;br /&gt;
* Point-of-sale hardware, OPOS scanners/scales/printers&lt;br /&gt;
* Barcode scanners are a security problem, ask me why.&lt;br /&gt;
* Starting to learn my way around CANbus, but much is under NDA. :(&lt;br /&gt;
&lt;br /&gt;
Hobby background:&lt;br /&gt;
* Electronics tinkering since I could hold a screwdriver&lt;br /&gt;
* Primary interest these days is barely-eye-safe LED flashlights&lt;br /&gt;
* Know a bit about a lot: Cars, audio, rocketry, batteries.&lt;br /&gt;
* Licensed as a ham, but never get on the air under Part 97.&lt;br /&gt;
* Part-15 though, now that's fun. Ask me about Ricochet.&lt;br /&gt;
* Am apparently a fairly accomplished solderer. Love to teach.&lt;br /&gt;
&lt;br /&gt;
My space-related TODO / project queue:&lt;br /&gt;
* incorporate [[ToDo]] by reference&lt;br /&gt;
* Complete [[OtherEvents]] calendar gathering.&lt;br /&gt;
* Backup keypad and help with software&lt;br /&gt;
* convert [[HOWTO_use_the_Plotter|DesignJet 300]] to color (it's a firmware hack followed by recalibration, just need the right paper for the calibration routine, which may be a BS requirement)&lt;br /&gt;
* install limit switches on [[makerbot]]&lt;br /&gt;
* fix [[makerbot]]'s build platform heater power connector&lt;br /&gt;
* build far-IR flashlight and document on this wiki&lt;br /&gt;
* build XM-L flashlight and document on this wiki&lt;br /&gt;
* mod USB jack into Galaxy Tab and document on iFixit&lt;br /&gt;
* mount rack onto wheels and build network lab&lt;br /&gt;
* erect shelves in E-room&lt;br /&gt;
* reorganize and relabel and redocument E-room parts selection&lt;br /&gt;
* build another fold-down welding shield&lt;br /&gt;
* mount cable-grip on [[TigWelder]] power cord&lt;br /&gt;
* dissect Planar touchscreen PC and figure out USB pinout&lt;br /&gt;
* figure out LaserCut's origin issues, and lead a real class on the [[Laser Cutter]]&lt;br /&gt;
* reaper...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Stuff=&lt;br /&gt;
&lt;br /&gt;
I own the [[Genie]] and the [[Acer 1440G Lathe]]. And lots of stuff in the [[Electronics Room]].&lt;br /&gt;
&lt;br /&gt;
=Roadside toolkit=&lt;br /&gt;
This is my scratchpad for tools and links that should be in the toolkit prepared for the Roadside Skills class.&lt;br /&gt;
* Tire pressure gauge&lt;br /&gt;
* Small compressor&lt;br /&gt;
* Tire patch kit (reamer, inserter, worms, rubber cement)&lt;br /&gt;
* Small locking pliers&lt;br /&gt;
* Needle-nose pliers&lt;br /&gt;
* Headlamp and batteries&lt;br /&gt;
* Gloves&lt;br /&gt;
* Fuse tester or multimeter&lt;br /&gt;
* Spare fuses&lt;br /&gt;
* Jumper cables&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{MeritBadge|NoseBleed}}&lt;br /&gt;
{{MeritBadge| AllNighter }}&lt;br /&gt;
{{MeritBadge| BloggityBlogBlog }}&lt;br /&gt;
{{MeritBadge| CatHerder }}&lt;br /&gt;
{{MeritBadge| Event Host }}&lt;br /&gt;
{{MeritBadge| PowPowPowerwheels }}&lt;br /&gt;
{{MeritBadge| TourGuide }}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 [[Category:Members]]&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=CatHerder</id>
		<title>CatHerder</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=CatHerder"/>
				<updated>2013-05-23T19:42:42Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Created page with &amp;quot;This MeritBadge is earned when you have served as a board member or officer for i3detroit.  {{MeritBadgeDefinition}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This MeritBadge is earned when you have served as a board member or officer for i3detroit.&lt;br /&gt;
&lt;br /&gt;
{{MeritBadgeDefinition}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=VynilRevolution</id>
		<title>VynilRevolution</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=VynilRevolution"/>
				<updated>2013-05-23T19:39:23Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Earn this MeritBadge when you have learned to use the [[Vinyl_Cutter-US_Cutter_Refine_MH-720 | Vinyl Cutter]]&lt;br /&gt;
&lt;br /&gt;
{{MeritBadgeDefinition}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=VynilRevolutionMartyr</id>
		<title>VynilRevolutionMartyr</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=VynilRevolutionMartyr"/>
				<updated>2013-05-23T19:38:55Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Earn this MeritBadge if you have had your vehicle &amp;quot;vandalized&amp;quot; by a &amp;quot;friend&amp;quot; with something hilarious made with the Vinyl Cutter.&lt;br /&gt;
&lt;br /&gt;
{{MeritBadgeDefinition}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=VynilRevolutionMartyr</id>
		<title>VynilRevolutionMartyr</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=VynilRevolutionMartyr"/>
				<updated>2013-05-23T19:38:33Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Created page with &amp;quot;Earn this MeritBadge if you have had your vehicle &amp;quot;vandalized&amp;quot; by a &amp;quot;friend&amp;quot; with something hilarious made with the Vinyl Cutter.  {{MeritBadge}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Earn this MeritBadge if you have had your vehicle &amp;quot;vandalized&amp;quot; by a &amp;quot;friend&amp;quot; with something hilarious made with the Vinyl Cutter.&lt;br /&gt;
&lt;br /&gt;
{{MeritBadge}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=VynilRevolution</id>
		<title>VynilRevolution</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=VynilRevolution"/>
				<updated>2013-05-23T19:36:46Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Created page with &amp;quot;Earn this MeritBadge when you have learned to use the  Vinyl Cutter  {{MeritBadge}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Earn this MeritBadge when you have learned to use the [[Vinyl_Cutter-US_Cutter_Refine_MH-720 | Vinyl Cutter]]&lt;br /&gt;
&lt;br /&gt;
{{MeritBadge}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=TenGotoTen</id>
		<title>TenGotoTen</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=TenGotoTen"/>
				<updated>2013-05-23T19:30:18Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Created page with &amp;quot;Earn this MeritBadge when you write software that is part if the i3detroit infrastructure; website, building automation, twitterbot, etc.  {{MeritBadgeDefinition}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Earn this MeritBadge when you write software that is part if the i3detroit infrastructure; website, building automation, twitterbot, etc.&lt;br /&gt;
&lt;br /&gt;
{{MeritBadgeDefinition}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=AllNighter</id>
		<title>AllNighter</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=AllNighter"/>
				<updated>2013-05-23T19:22:52Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Created page with &amp;quot;Earn this MeritBadge when you are at the space from sunset to sunrise.  {{MeritBadgeDefinition}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Earn this MeritBadge when you are at the space from sunset to sunrise.&lt;br /&gt;
&lt;br /&gt;
{{MeritBadgeDefinition}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=MeetThePress</id>
		<title>MeetThePress</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=MeetThePress"/>
				<updated>2013-05-23T19:20:57Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Created page with &amp;quot;Earn this MeritBadge when you are quoted in the press about i3detroit or a related project.  {{MeritBadgeDefinition}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Earn this MeritBadge when you are quoted in the press about i3detroit or a related project.&lt;br /&gt;
&lt;br /&gt;
{{MeritBadgeDefinition}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=BloggittyBlogBlog</id>
		<title>BloggittyBlogBlog</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=BloggittyBlogBlog"/>
				<updated>2013-05-23T19:17:57Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Created page with &amp;quot;Earn this MeritBadge when you post your first article on the i3detroit blog.  {{MeritBadgeDefinition}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Earn this MeritBadge when you post your first article on the i3detroit blog.&lt;br /&gt;
&lt;br /&gt;
{{MeritBadgeDefinition}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=TourGuide</id>
		<title>TourGuide</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=TourGuide"/>
				<updated>2013-05-23T19:15:58Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Created page with &amp;quot;Earn this MeritBadge when you give a tour of i3detroit to a guest or visitor.  {{MeritBadgeDefinition}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Earn this MeritBadge when you give a tour of i3detroit to a guest or visitor.&lt;br /&gt;
&lt;br /&gt;
{{MeritBadgeDefinition}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=User:JodyBug</id>
		<title>User:JodyBug</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=User:JodyBug"/>
				<updated>2013-05-23T19:13:44Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Members]]&lt;br /&gt;
&lt;br /&gt;
I has a page!&lt;br /&gt;
&lt;br /&gt;
I should put info...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I can teach you:&lt;br /&gt;
TIG Welding&lt;br /&gt;
Juggling (yes, really)&lt;br /&gt;
How to be an I3 Detroit member (mentorship)&lt;br /&gt;
Change your tire&lt;br /&gt;
Project your voice REALLY LOUDLY&lt;br /&gt;
Other things!&lt;br /&gt;
&lt;br /&gt;
Feel free to add stuff to this page!&lt;br /&gt;
&lt;br /&gt;
{{ MeritBadge | Event Host }}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Event_Host</id>
		<title>Event Host</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Event_Host"/>
				<updated>2013-05-23T19:11:57Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Created page with &amp;quot;Earn this MeritBadge by hosting at least one event at i3detroit.  {{MeritBadgeDefinition}}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Earn this MeritBadge by hosting at least one event at i3detroit.&lt;br /&gt;
&lt;br /&gt;
{{MeritBadgeDefinition}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Embroidery_Machine</id>
		<title>Embroidery Machine</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Embroidery_Machine"/>
				<updated>2013-05-23T14:19:49Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Equipment &lt;br /&gt;
&lt;br /&gt;
| Name = BAS-416 Embroidery Machine&lt;br /&gt;
&lt;br /&gt;
| Intro = Some text to describe the equipment goes here.&lt;br /&gt;
* You can use any wiki formatting that you wish:&lt;br /&gt;
* Like a bulleted list&lt;br /&gt;
&lt;br /&gt;
| Owner = Brendan Scott&lt;br /&gt;
&lt;br /&gt;
| StorageLocation = TBD&lt;br /&gt;
&lt;br /&gt;
| MakeModel = BAS-416&lt;br /&gt;
&lt;br /&gt;
| PartNumber = &lt;br /&gt;
&lt;br /&gt;
| Documents = Link(s) to on-line documentation&lt;br /&gt;
&lt;br /&gt;
| LooksLike = [[File:2013-05-22 11.13.59.jpg | thumb]]&lt;br /&gt;
&lt;br /&gt;
| Rules =&lt;br /&gt;
&lt;br /&gt;
Put the rules that govern the use of this tool here.&lt;br /&gt;
* Who is allowed to use it?&lt;br /&gt;
* Is there any traning required before use?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| Instructions =&lt;br /&gt;
&lt;br /&gt;
You can write the instructions here. Or maybe add a link&lt;br /&gt;
to another page or the user's manual.&lt;br /&gt;
&lt;br /&gt;
| OtherReferences =&lt;br /&gt;
&lt;br /&gt;
Add links to any other sources that pertain to this equipment.&lt;br /&gt;
&lt;br /&gt;
| MaintenanceInfo =&lt;br /&gt;
&lt;br /&gt;
Does this thing need it's oil changed every 30 cycles?&lt;br /&gt;
People need to know!&lt;br /&gt;
&lt;br /&gt;
| ToDos = &lt;br /&gt;
&lt;br /&gt;
What problems does this thing have, or are there improvements that would make it better.&lt;br /&gt;
&lt;br /&gt;
| FAQs =&lt;br /&gt;
&lt;br /&gt;
A list of commonly asked questions&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=File:2013-05-22_11.13.59.jpg</id>
		<title>File:2013-05-22 11.13.59.jpg</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=File:2013-05-22_11.13.59.jpg"/>
				<updated>2013-05-23T14:16:43Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Embroidery_Machine</id>
		<title>Embroidery Machine</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Embroidery_Machine"/>
				<updated>2013-05-23T13:48:42Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Created page with &amp;quot;{{Equipment   | Name = BAS-416 Embroidery Machine  | Intro = Some text to describe the equipment goes here. * You can use any wiki formatting that you wish: * Like a bulleted ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Equipment &lt;br /&gt;
&lt;br /&gt;
| Name = BAS-416 Embroidery Machine&lt;br /&gt;
&lt;br /&gt;
| Intro = Some text to describe the equipment goes here.&lt;br /&gt;
* You can use any wiki formatting that you wish:&lt;br /&gt;
* Like a bulleted list&lt;br /&gt;
&lt;br /&gt;
| Owner = Brendon Scott&lt;br /&gt;
&lt;br /&gt;
| StorageLocation = TBD&lt;br /&gt;
&lt;br /&gt;
| MakeModel = BAS-416&lt;br /&gt;
&lt;br /&gt;
| PartNumber = &lt;br /&gt;
&lt;br /&gt;
| Documents = Link(s) to on-line documentation&lt;br /&gt;
&lt;br /&gt;
| LooksLike = Link(s) to picture(s) of it&lt;br /&gt;
&lt;br /&gt;
| Rules =&lt;br /&gt;
&lt;br /&gt;
Put the rules that govern the use of this tool here.&lt;br /&gt;
* Who is allowed to use it?&lt;br /&gt;
* Is there any traning required before use?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| Instructions =&lt;br /&gt;
&lt;br /&gt;
You can write the instructions here. Or maybe add a link&lt;br /&gt;
to another page or the user's manual.&lt;br /&gt;
&lt;br /&gt;
| OtherReferences =&lt;br /&gt;
&lt;br /&gt;
Add links to any other sources that pertain to this equipment.&lt;br /&gt;
&lt;br /&gt;
| MaintenanceInfo =&lt;br /&gt;
&lt;br /&gt;
Does this thing need it's oil changed every 30 cycles?&lt;br /&gt;
People need to know!&lt;br /&gt;
&lt;br /&gt;
| ToDos = &lt;br /&gt;
&lt;br /&gt;
What problems does this thing have, or are there improvements that would make it better.&lt;br /&gt;
&lt;br /&gt;
| FAQs =&lt;br /&gt;
&lt;br /&gt;
A list of commonly asked questions&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Power_Meter</id>
		<title>Power Meter</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Power_Meter"/>
				<updated>2013-05-22T18:15:24Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: /* RS-485  Ethernet */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Power meter for our building measures the whole building, including B.Nektar. Installation of separate service for the two halves of the building is prohibitively expensive.&lt;br /&gt;
Thus we have installed our own meter at the big disconnect right by the door to B. Nektar, at the southwest corner of the space.&lt;br /&gt;
&lt;br /&gt;
==The Meter==&lt;br /&gt;
&lt;br /&gt;
The [http://www.ekmmetering.com/omnimeter OmniMeter] from [http://www.ekmmetering.com/ EKM Metering]&lt;br /&gt;
&lt;br /&gt;
===RS-485 Interface===&lt;br /&gt;
&lt;br /&gt;
The meter can be read and configured via a RS-485 interface on top of the box.&lt;br /&gt;
The serial protocol is documented here: http://documents.ekmmetering.com/Meter_Communication_Parsing_Submeter_v3.pdf&lt;br /&gt;
&lt;br /&gt;
===RS-485 &amp;lt;-&amp;gt; Ethernet===&lt;br /&gt;
&lt;br /&gt;
The meter's serial port is connected to the network with a Serial to ethernet adapter.&lt;br /&gt;
The manual is here: [[File:RocketPortSoloManual.pdf]]&lt;br /&gt;
&lt;br /&gt;
The IP address is '''10.13.0.20'''. It should also be recorded on the [[Network]] page of this wiki.&lt;br /&gt;
&lt;br /&gt;
[http://10.13.0.20/ There is a web interface for serial port configuration on port 80.]&lt;br /&gt;
Changing the IP address is more tricky, see the manual above.&lt;br /&gt;
&lt;br /&gt;
To connect to the meter's serial port, open a TCP socket on port 8000.&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Power_Meter</id>
		<title>Power Meter</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Power_Meter"/>
				<updated>2013-05-22T17:28:27Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: meter installed, still need to install and configure serial-&amp;gt;ethernet&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Power meter for our building measures the whole building, including B.Nektar. Installation of separate service for the two halves of the building is prohibitively expensive.&lt;br /&gt;
Thus we have installed our own meter at the big disconnect right by the door to B. Nektar, at the southwest corner of the space.&lt;br /&gt;
&lt;br /&gt;
==The Meter==&lt;br /&gt;
&lt;br /&gt;
The [http://www.ekmmetering.com/omnimeter OmniMeter] from [http://www.ekmmetering.com/ EKM Metering]&lt;br /&gt;
&lt;br /&gt;
===RS-485 Interface===&lt;br /&gt;
&lt;br /&gt;
The meter can be read and configured via a RS-485 interface on top of the box.&lt;br /&gt;
The serial protocol is documented here: http://documents.ekmmetering.com/Meter_Communication_Parsing_Submeter_v3.pdf&lt;br /&gt;
&lt;br /&gt;
===RS-485 &amp;lt;-&amp;gt; Ethernet===&lt;br /&gt;
&lt;br /&gt;
The meter's serial port is connected to the network with a Serial to ethernet adapter.&lt;br /&gt;
The manual is here: [[File:RocketPortSoloManual.pdf]]&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=File:RocketPortSoloManual.pdf</id>
		<title>File:RocketPortSoloManual.pdf</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=File:RocketPortSoloManual.pdf"/>
				<updated>2013-05-22T17:21:27Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Manual for the discontinued RocketPort Solo serial-&amp;gt;ethernet converter.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Manual for the discontinued RocketPort Solo serial-&amp;gt;ethernet converter.&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Category:Networking</id>
		<title>Category:Networking</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Category:Networking"/>
				<updated>2013-05-20T17:40:57Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: /* IP Addresses in use */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Wireless Network =&lt;br /&gt;
&lt;br /&gt;
The SSID is '''''i3''''' , there is no encryption, this is considered a feature (for the moment). &lt;br /&gt;
&lt;br /&gt;
You may occasionally see an SSID of '''''3302''''' or '''''1216''''', these are the FIRST Robot control WLANs. They are completely isolated networks and are probably not very interesting to you.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= LAN Addresses =&lt;br /&gt;
&lt;br /&gt;
Internally, we are using the 10.13.0.0/16 supernet. It should sidestep most VPN overlap problems, should we establish any connections to other locations.  At present, we are only using one subnet of this:  10.13.0.0/24.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Subnet: 10.13.0.0/24 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Static Hosts ===&lt;br /&gt;
&lt;br /&gt;
If you have something that needs to be attached to the network at i3Detroit, a static IP address can be assigned to it.  This is useful in cases where something like a printer or a tool needs to be on the network with a known address that doesn't change.  &amp;lt;BR&amp;gt;&amp;lt;BR&amp;gt;Most member and guest laptops, however, do not need one of these.&lt;br /&gt;
&amp;lt;BR&amp;gt;&amp;lt;BR&amp;gt;If you have something that needs a fixed address but can't be configured for one (for some reason), something known as a DHCP reservation can be applied.  Please contact [[User:Jcbender|Joe B]] or Nate W to help you out with this.&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
If you can, please try to create a wiki page with information about the thing you just attached to the network, and link to that from the IP address listing here.&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Static hosts use the following settings:'''&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| IP address&lt;br /&gt;
| Take an unused address from the table below.  Document which address you used.  When in doubt, ping first.&lt;br /&gt;
|-&lt;br /&gt;
| Subnet mask&lt;br /&gt;
| 255.255.255.0&lt;br /&gt;
|-&lt;br /&gt;
| Default Gateway&lt;br /&gt;
| 10.13.0.1&lt;br /&gt;
|-&lt;br /&gt;
| DNS Server&lt;br /&gt;
| 10.13.0.1&lt;br /&gt;
|-&lt;br /&gt;
| DNS domain name&lt;br /&gt;
| i3detroit.local&lt;br /&gt;
|-&lt;br /&gt;
| Time / NTP server&lt;br /&gt;
| 10.13.0.1 or 10.13.0.5 (The LAN switch is also an NTP server)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;BR&amp;gt;&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== IP Addresses in use === &lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
! Address &lt;br /&gt;
! Host &lt;br /&gt;
! Description &lt;br /&gt;
! Admin(s)&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.1 &lt;br /&gt;
| pfsense &lt;br /&gt;
| The firewall and dhcp server. Not a toy. ''Nicht für gefingerpöken'' &lt;br /&gt;
| [[User:Jcbender| JCBender]], Brad, [[User:Nate_lapt| NateW]], Ted and others.&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.5&lt;br /&gt;
| [[i3switch01]]&lt;br /&gt;
| This is the Cisco 3750 Ethernet switch that drives i3! Not a toy. ''Nicht für gefingerpöken''&lt;br /&gt;
| [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.6&lt;br /&gt;
| Cisco 1130 AP i3DetroitAP01&lt;br /&gt;
| This is primary access point for i3Detroit. Not a toy. ''Nicht für gefingerpöken''&lt;br /&gt;
| [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.7&lt;br /&gt;
| Cisco 1130 i3DetroitAP02&lt;br /&gt;
| This is the office space access point for i3Detroit. Not a toy. ''Nicht für gefingerpöken''&lt;br /&gt;
| [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.8 &lt;br /&gt;
| Asterisk &lt;br /&gt;
| We make phone calls with this. ''Nicht für gefingerpöken'' &lt;br /&gt;
Going Away&lt;br /&gt;
| [[User:Nate_lapt| Nate]].&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.9 &lt;br /&gt;
| Asterisk VM&lt;br /&gt;
| We make phone calls with this. ''Nicht für gefingerpöken'' &lt;br /&gt;
| [[User:Nate_lapt| Nate]].&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.10&lt;br /&gt;
| [[Wireless LAN Controller]]&lt;br /&gt;
| We do nifty wireless things with this. Not a toy. ''Nicht für gefingerpöken'' &lt;br /&gt;
| [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.11&lt;br /&gt;
| [[Wireless LAN Controller]] IP #2 (required)&lt;br /&gt;
| We do nifty wireless things with this. Not a toy. ''Nicht für gefingerpöken'' &lt;br /&gt;
| [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.13 &lt;br /&gt;
| Camera Server - This can be re-purposed &lt;br /&gt;
| Big brother is watching you. ''Nicht für gefingerpöken'' &lt;br /&gt;
| [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.14&lt;br /&gt;
| Cisco 1130 i3DetroitAP03&lt;br /&gt;
| This is the back-of-shop access point for i3Detroit. Not a toy. ''Nicht für gefingerpöken''&lt;br /&gt;
| [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.15 &lt;br /&gt;
| i3Debian - Skynet&lt;br /&gt;
| &amp;quot;The Debian Box&amp;quot; General-purpose sandbox. Not to be considered reliable or mission-critical&lt;br /&gt;
Going away!! &lt;br /&gt;
| Ted, [[User:Nate_lapt| NateW]], Eric, ToasterDan, Ross&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.16 &lt;br /&gt;
| ESXI&lt;br /&gt;
| VMWare ESXI&lt;br /&gt;
| [[User:Nate_lapt| NateW]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.17 &lt;br /&gt;
| Skynet - VM&lt;br /&gt;
| &amp;quot;The Ubuntu Box&amp;quot; Runs the Twitter internal scripts &lt;br /&gt;
| Ted, [[User:Nate_lapt| NateW]], Matt O&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.20&lt;br /&gt;
| [[Power Meter]]&lt;br /&gt;
| Ethernet&amp;lt;-&amp;gt;RS485 adapter for the power meter&lt;br /&gt;
| Ted&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.30&lt;br /&gt;
| OpenAccess Control 3.0&lt;br /&gt;
| New (still future) [[RFID entry system]]&lt;br /&gt;
| Evan Allen&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.40&lt;br /&gt;
| [[i3Switch02]]&lt;br /&gt;
| i3 Second managed Ethernet switch in rack&lt;br /&gt;
| [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.50 &lt;br /&gt;
| Plotter &lt;br /&gt;
| [[HOWTO use the Plotter|The HP DesignJet 300 ]] &lt;br /&gt;
| Roger, Rocco?&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.51 &lt;br /&gt;
| Laserjet-5si &lt;br /&gt;
| [[HOWTO_use_the_Laserjet_5si|Laserjet 5si]] MX printer in the &amp;quot;print shop&amp;quot; area &lt;br /&gt;
| Rocco&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.53 &lt;br /&gt;
| Color LaserJet 4650n &lt;br /&gt;
| [[HOWTO_use_the_Laserjet_4650n|Color Laserjet 4650]]n printer in the &amp;quot;print shop&amp;quot; area &lt;br /&gt;
| [[User:Surferdudemi| RogerS]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.54&lt;br /&gt;
| Color LaserJet 4650dn &lt;br /&gt;
| [[HOWTO_use_the_Laserjet_4650dn|Color Laserjet 4650]]dn printer in the &amp;quot;print shop&amp;quot; area &lt;br /&gt;
| [[User:Surferdudemi| RogerS]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.62&lt;br /&gt;
| CLP-620ND&lt;br /&gt;
| Big color laser printer&lt;br /&gt;
| Nate B&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.75&lt;br /&gt;
| Project 1&lt;br /&gt;
| A super-secret project&lt;br /&gt;
| [[User:Surferdudemi| RogerS]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.76&lt;br /&gt;
| Project 2&lt;br /&gt;
| Another super-secret project&lt;br /&gt;
| [[User:Surferdudemi| RogerS]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.90 &lt;br /&gt;
| First-Cam &lt;br /&gt;
| The Axis 206 network camera over the FIRST corner. &lt;br /&gt;
| Ted, [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.91&lt;br /&gt;
| Polycom-ATA&lt;br /&gt;
| Cisco ATA-186 VOIP adapter for the Polycom conference phone. ''Nicht f&amp;amp;uuml;r gefingerp&amp;amp;ouml;ken'' &lt;br /&gt;
| [[User:Jcbender| JCBender]], [[User:Nate_lapt| NateW]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.99 &lt;br /&gt;
| printer&lt;br /&gt;
| [[HOWTO_Use_the_Laserjet_6P|Laserjet 6p]] in the rack. &lt;br /&gt;
| NateB&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.100-245&lt;br /&gt;
| DHCP RANGE &lt;br /&gt;
| This is the DHCP range handed out by the firewall. Reservations possible&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= DNS =&lt;br /&gt;
&lt;br /&gt;
The default DNS domain handed out for DHCP clients is i3detroit.local.  If you have statically assigned a IP to something, and you want its hostname to be in DNS as your_hostname.i3detroit.local, we can add it to the local server.  Post a request on the mailing list to have that taken care of.&lt;br /&gt;
&lt;br /&gt;
= FAQ =&lt;br /&gt;
&lt;br /&gt;
Q: Can we open a port in the firewall for my XYZ server? &lt;br /&gt;
&lt;br /&gt;
:A: Probably not. The upstream bandwidth at the space is rather poor. You are welcome to suggest it, but be prepared to meet with significant resistance from your fellow members. Alternately, many of the members have COLO space that they might be willing to share. Make a proposal on the mailing list and turn on the charm.&lt;br /&gt;
&lt;br /&gt;
Q: Let's get some better bandwidth at the space! &lt;br /&gt;
&lt;br /&gt;
:A: We now have 15mbit down, 2 up from WideOpenWest. If [[The Joke That Never Gets Old|that's not enough pipe for you]], we don't know what to say.&lt;br /&gt;
&lt;br /&gt;
Q: whérε dö ì ƒìñd ┼Hε wâΓεz åñd ┼HΣ p┌Ωn? &lt;br /&gt;
&lt;br /&gt;
:A: Kid, you are up past your bedtime.&lt;br /&gt;
&lt;br /&gt;
[[Category:Facility Information]]&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=HOWTO_Get_a_receipt_for_donations</id>
		<title>HOWTO Get a receipt for donations</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=HOWTO_Get_a_receipt_for_donations"/>
				<updated>2013-04-02T23:35:50Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: add category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* Donations to i3 Detroit are tax deductible! Before you can get a receipt, we need to know the value of your donation.&lt;br /&gt;
 &lt;br /&gt;
* Under IRS guidelines, donations fall under two categories: Cash or Property.&lt;br /&gt;
 &lt;br /&gt;
* For determining the value of a donation, cash is pretty easy - it’s just the actual amount of money that you’re donating.&lt;br /&gt;
 &lt;br /&gt;
* If you’re donating property, meet with the Zone Warden of whatever zone the equipment is going to. The Zone Warden will evaluate the donation, figure out if it’s something we actually want in the space, and determine its value. If it’s general equipment that doesn't really fall under any zone, then talk to the Board of Directors, and they can determine the value.&lt;br /&gt;
 &lt;br /&gt;
* Once the value of the donation has been determined, email the Treasurer (treasurer@i3detroit.com) with donor’s name, description of donation, value amount of donation, and the date of the donation. If donor wishes to receive receipt via U.S. Mail, provide mailing address. If donor wishes to receive receipt via email, provide email address. If donor wishes to receive receipt in person at i3 Detroit, no address is needed.&lt;br /&gt;
 &lt;br /&gt;
* The Treasurer will then write a receipt of donation, sign it, and return it to the donor. The receipt of donation is then recorded in the “donation log” maintained by the Treasurer.&lt;br /&gt;
 &lt;br /&gt;
* The Treasurer is the only person authorized to sign receipts for donations, so please don't go around writing up your own receipts. That can lead to problems with the IRS, and nobody wants that.&lt;br /&gt;
&lt;br /&gt;
[[Category:HOWTO]]&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Printerbot</id>
		<title>Printerbot</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Printerbot"/>
				<updated>2013-02-22T00:10:28Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Redirected page to Printrbot&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Printrbot]]&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Printerbot</id>
		<title>Printerbot</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Printerbot"/>
				<updated>2013-02-22T00:07:52Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT Printrbot&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Printerbot</id>
		<title>Printerbot</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Printerbot"/>
				<updated>2013-02-22T00:06:56Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Created page with &amp;quot;#redirect Printrbot&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#redirect Printrbot&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Front_Door_Control_Panel</id>
		<title>Front Door Control Panel</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Front_Door_Control_Panel"/>
				<updated>2013-02-19T15:05:30Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This control panel houses wiring for the various building sensors and whatnot.&lt;br /&gt;
&lt;br /&gt;
In the future it will contain the OpenAccess controller.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|  1 || gnd || gnd || gnd || gnd&lt;br /&gt;
|-&lt;br /&gt;
|  2 || +12v || +12v || +12v || +12v&lt;br /&gt;
|-&lt;br /&gt;
|  3 || gnd || gnd || gnd || gnd&lt;br /&gt;
|-&lt;br /&gt;
|  4 || +12v || +12v || +12v || +12v&lt;br /&gt;
|-&lt;br /&gt;
|  5 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  6 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  7 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  8 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  9 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  10 ||  ||  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|  11 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  12 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  13 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  14 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  15 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  16 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  17 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  18 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  19 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  20 ||  ||  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|  21 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  22 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  23 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  24 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  25 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  26 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  27 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  28 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  29 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  30 ||  ||  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|  31 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  32 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  33 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  34 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  35 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  36 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  37 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  38 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  39 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  40 ||  ||  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|  41 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  42 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  43 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  44 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  45 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  46 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  47 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  48 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  49 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  50 ||  ||  ||  ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Facility Information]]&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Front_Door_Control_Panel</id>
		<title>Front Door Control Panel</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Front_Door_Control_Panel"/>
				<updated>2013-02-19T15:00:31Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Created page with &amp;quot;This control panel houses wiring for the various building sensors and whatnot.  In the future it will contain the OpenAccess controller.   {| class=&amp;quot;wikitable&amp;quot; |- |  1 || gnd ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This control panel houses wiring for the various building sensors and whatnot.&lt;br /&gt;
&lt;br /&gt;
In the future it will contain the OpenAccess controller.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
|  1 || gnd || gnd || gnd || gnd&lt;br /&gt;
|-&lt;br /&gt;
|  2 || +12v || +12v || +12v || +12v&lt;br /&gt;
|-&lt;br /&gt;
|  3 || gnd || gnd || gnd || gnd&lt;br /&gt;
|-&lt;br /&gt;
|  4 || +12v || +12v || +12v || +12v&lt;br /&gt;
|-&lt;br /&gt;
|  5 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  6 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  7 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  8 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  9 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  10 ||  ||  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|  11 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  12 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  13 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  14 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  15 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  16 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  17 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  18 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  19 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  20 ||  ||  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|  21 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  22 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  23 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  24 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  25 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  26 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  27 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  28 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  29 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  30 ||  ||  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|  31 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  32 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  33 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  34 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  35 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  36 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  37 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  38 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  39 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  40 ||  ||  ||  ||&lt;br /&gt;
|-&lt;br /&gt;
|  41 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  42 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  43 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  44 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  45 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  46 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  47 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  48 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  49 ||  || || ||&lt;br /&gt;
|-&lt;br /&gt;
|  50 ||  ||  ||  ||&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=ToDo</id>
		<title>ToDo</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=ToDo"/>
				<updated>2012-11-24T21:14:03Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the Potlock to do list, please pick a task and put your name in the column. (any questions?  contact Dustin White dustinbikes@gmail.com)&lt;br /&gt;
&lt;br /&gt;
Need supplies? Toss 'em on the [[ShoppingList]] and maybe somebody will check that page from their phone next time they're at the store.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;1&amp;quot; cellpadding=&amp;quot;1&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Task &lt;br /&gt;
! Next Action &lt;br /&gt;
! Volunteer? &lt;br /&gt;
! Approx Cost of materials&lt;br /&gt;
|-&lt;br /&gt;
| Clean and sweep under graveyard area&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| Rearrange phone buttons so they're accurately labeled&lt;br /&gt;
| This is a firmware change, I just need to figure out which one it is.&lt;br /&gt;
| Nate W&lt;br /&gt;
| $0&lt;br /&gt;
|-&lt;br /&gt;
| Make &amp;quot;how to transfer calls, etc&amp;quot; cheatsheet for each phone&lt;br /&gt;
| Figure that out!&lt;br /&gt;
| &lt;br /&gt;
| $0&lt;br /&gt;
|-&lt;br /&gt;
|make vinyl &amp;quot;propaganda signs&amp;quot;&lt;br /&gt;
|sayings about keeping the place clean and such&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|make stencil on lasercutter&lt;br /&gt;
|sayings &amp;quot;SWEEP If you can't read this&amp;quot; spraypaint on woodshop floor&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|install seals around garage door&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|mount dust collector switches&lt;br /&gt;
| Second switch needs ran next to the chopsaw!&lt;br /&gt;
| Greg installed magnet on Saw switch may be ok&lt;br /&gt;
| G donated Magnet&lt;br /&gt;
|-&lt;br /&gt;
|sweep and vaccum&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|get audio system up and running&lt;br /&gt;
|run wire from speakers back to backboard &amp;lt;- Whats this mean, who do I ask?&lt;br /&gt;
|&lt;br /&gt;
|terminal strips already in e-room bin&lt;br /&gt;
|-&lt;br /&gt;
|mount and wire security cameras&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|install automatic drain on air compressor&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|organize above window lumber storage areas&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|organize scrap lumber under chop saw&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Chain link fence cage for dust collector&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|add Cowl to furnaces&lt;br /&gt;
|aim into metal shop, aim at west side of shop.&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Forklift repair&lt;br /&gt;
|Repair ignition switch&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Replace twitterbot camera&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|purge graveyard&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|manage scrap metal near welding&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|cyclone fence around kilm&lt;br /&gt;
|&lt;br /&gt;
|Terry W&lt;br /&gt;
|$150&lt;br /&gt;
|-&lt;br /&gt;
|assemble last set of orange shelves&lt;br /&gt;
|the ends arnt the same, either welding together or drilling and bolting&lt;br /&gt;
|Nate W&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|find home for injection molders&lt;br /&gt;
| ?? - current home u no like?&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|find new home for paint&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|cleanup and revamp hardware land&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|fix sandblasters&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|build shelf on sw metal shop wall for storage of materials&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|rubber shroud for dust collector&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|have nick take home lights, juki, and jointer&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|go through wood stock and dispose of unusable&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|build a workbench area for laser cutter&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|build 3 lockable money boxes&lt;br /&gt;
| one done 2 to go&lt;br /&gt;
| Greg Smith&lt;br /&gt;
| 12.82&lt;br /&gt;
|-&lt;br /&gt;
|build tool holder for vinyl area&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|find a solution to have am aux jack at commons table for audio&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|organize cleaning cabinet&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|setup scanner/copier/blog station&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|return little busted ass laser to AHA&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|build cart for large power supplies&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|clean the hell out of craft room&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|move rack into kitchen for extra pop&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|clean kitchen and mop floor&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|buy 3 drawer thingy for kitchen&lt;br /&gt;
|buy untensils and bowls for kitchen from dollar tree&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|hang shop light over table saw&lt;br /&gt;
|buy shop light for two 4ft T8 bulbs &lt;br /&gt;
|&lt;br /&gt;
|$20&lt;br /&gt;
|-&lt;br /&gt;
|mount pegboard box on NW user storage end cap&lt;br /&gt;
|box is clamped in place, needs permanent fastening&lt;br /&gt;
|&lt;br /&gt;
|$0, supplies on hand&lt;br /&gt;
|-&lt;br /&gt;
|Build wood shop machine cart&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Install Casters on Wood Shop router table&lt;br /&gt;
|Admire how nice it is&lt;br /&gt;
|Greg Smith&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Move Drill Press to Wood Shop&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Make &amp;quot;I don't know where this goes&amp;quot; boxes for each main area&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Add dust cover to south side of freestanding member storage&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Move SandBlast Station and supplies to East Wall between Welding Zone and Overhead Door&lt;br /&gt;
|&lt;br /&gt;
|Jim Kemp&lt;br /&gt;
|$0&lt;br /&gt;
|-&lt;br /&gt;
| Bolt the machine shop bench to the North wall &lt;br /&gt;
|&lt;br /&gt;
| Ted&lt;br /&gt;
| $0&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
[[Category:Organization Information]][[Category:Reference Data]]&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Meeting_Minutes_20121120</id>
		<title>Meeting Minutes 20121120</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Meeting_Minutes_20121120"/>
				<updated>2012-11-19T16:13:30Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Created page with &amp;quot;'''i3Detroit Meeting; November 20, 2012'''  '''Chair: '''  ''Start: ''  '''Attendees'''   '''Agenda'''      Category:Meeting Minutes&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''i3Detroit Meeting; November 20, 2012'''&lt;br /&gt;
&lt;br /&gt;
'''Chair: '''&lt;br /&gt;
&lt;br /&gt;
''Start: ''&lt;br /&gt;
&lt;br /&gt;
'''Attendees'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Agenda'''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting Minutes]]&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=RobotKnifeFight</id>
		<title>RobotKnifeFight</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=RobotKnifeFight"/>
				<updated>2012-08-09T22:00:25Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==What is it?==&lt;br /&gt;
&lt;br /&gt;
It's a game where rival programmers compete by writing fiendish strategies for simple robots.&lt;br /&gt;
The bots and the field are open-source and are cheap enough that you could make your own!&lt;br /&gt;
&lt;br /&gt;
==Where can I get the source and design files?==&lt;br /&gt;
&lt;br /&gt;
[http://github.com/kc8nod/RobotKnifeFight http://github.com/kc8nod/RobotKnifeFight]&lt;br /&gt;
&lt;br /&gt;
==Any Pictures?==&lt;br /&gt;
&lt;br /&gt;
There a bit of video here: [http://www.detroitnews.com/article/20120527/OPINION03/205270309 http://www.detroitnews.com/article/20120527/OPINION03/205270309]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here's a picture of a chassis, before the electronics and weapons are added.&lt;br /&gt;
&lt;br /&gt;
[[File:2012-02-02 00-13-18 502.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Projects]][[Category:Member Projects]][[Category:Active Projects]]&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Powerwheels_Racer</id>
		<title>Powerwheels Racer</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Powerwheels_Racer"/>
				<updated>2012-07-17T20:56:13Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:Ppprs_2011.jpg|600px]]&lt;br /&gt;
&lt;br /&gt;
i3detroit venerable black jeep &amp;quot;Triple Threat&amp;quot; will be competing in the [http://powerracingseries.org/  Power Racing Series] at the [http://makerfaire.com/detroit/2012/ 2012 Detroit Maker Faire].&lt;br /&gt;
&lt;br /&gt;
Look for car number 3 to dominate.&lt;br /&gt;
[[Category:Projects]][[Category:Group Projects]][[Category:Completed Projects]]&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=File:Ppprs_2011.jpg</id>
		<title>File:Ppprs 2011.jpg</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=File:Ppprs_2011.jpg"/>
				<updated>2012-07-17T20:48:53Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Karen's glorious come-from-behind finish at the 2011 Detroit Maker Faire Powerwheels race&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Karen's glorious come-from-behind finish at the 2011 Detroit Maker Faire Powerwheels race&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Tent</id>
		<title>Tent</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Tent"/>
				<updated>2012-06-15T13:46:13Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: created&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Equipment &lt;br /&gt;
&lt;br /&gt;
| Name = Tent&lt;br /&gt;
&lt;br /&gt;
| Intro = &lt;br /&gt;
* Easy-up style tent.&lt;br /&gt;
* 10' x 10' &lt;br /&gt;
&lt;br /&gt;
| Owner = donated to i3detroit&lt;br /&gt;
&lt;br /&gt;
| StorageLocation = Tucked in the southeast corner by the rollup door.&lt;br /&gt;
&lt;br /&gt;
| MakeModel = &lt;br /&gt;
&lt;br /&gt;
| PartNumber = &lt;br /&gt;
&lt;br /&gt;
| Documents = &lt;br /&gt;
&lt;br /&gt;
| LooksLike = &lt;br /&gt;
&lt;br /&gt;
| Rules =&lt;br /&gt;
&lt;br /&gt;
* It may be taken off-site. (what else would it be for?)&lt;br /&gt;
* Announce on the mailing list when you plan to take it, and when it will be returned.&lt;br /&gt;
* If conflicts arise, preference should be given to i3 group events and projects.&lt;br /&gt;
&lt;br /&gt;
| Instructions =&lt;br /&gt;
&lt;br /&gt;
Be gentle when erecting or collapsing the tent. It's easy to end up bending some of the thinner aluminum elements. It is *much* easier to do with 4 people.&lt;br /&gt;
&lt;br /&gt;
If the fabric parts are carefully folded, then it's easy to fit them all back in the bag.&lt;br /&gt;
&lt;br /&gt;
If you just wad up the fabric bits and try to brute-force them back in the bag, they'll never fit.&lt;br /&gt;
&lt;br /&gt;
| OtherReferences =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| MaintenanceInfo =&lt;br /&gt;
&lt;br /&gt;
There are 3 sides and a roof. Make sure all of the parts are in the bag when it is returned.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| ToDos = &lt;br /&gt;
&lt;br /&gt;
Some of the bent pieces could be replaced.&lt;br /&gt;
Probably could use a good wash.&lt;br /&gt;
&lt;br /&gt;
| FAQs =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Telescope</id>
		<title>Telescope</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Telescope"/>
				<updated>2012-06-08T20:51:25Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Equipment &lt;br /&gt;
&lt;br /&gt;
| Name = Newtonian Telescope&lt;br /&gt;
&lt;br /&gt;
| Intro = tbd&lt;br /&gt;
&lt;br /&gt;
| Owner = Mario Corsetti&lt;br /&gt;
&lt;br /&gt;
| StorageLocation = Tucked way up on one of the top shelves of the member storage.&lt;br /&gt;
&lt;br /&gt;
| MakeModel = unknown&lt;br /&gt;
&lt;br /&gt;
| PartNumber = unknown&lt;br /&gt;
&lt;br /&gt;
| Documents = unknown&lt;br /&gt;
&lt;br /&gt;
| LooksLike = tbd&lt;br /&gt;
&lt;br /&gt;
| Rules =&lt;br /&gt;
&lt;br /&gt;
Available for members to use.&lt;br /&gt;
&lt;br /&gt;
| Instructions = tbd&lt;br /&gt;
&lt;br /&gt;
| OtherReferences = tbd&lt;br /&gt;
&lt;br /&gt;
| MaintenanceInfo = Do your best to shield it from dust when you put it away.&lt;br /&gt;
&lt;br /&gt;
| ToDos = This telescope is a bit of an orphan right now. Volunteers are sought to properly set up the telescope or even just document it properly.&lt;br /&gt;
&lt;br /&gt;
| FAQs = tbd&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Telescope</id>
		<title>Telescope</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Telescope"/>
				<updated>2012-06-08T20:50:36Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: created&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Equipment &lt;br /&gt;
&lt;br /&gt;
| Name = Newtonian Telescope&lt;br /&gt;
&lt;br /&gt;
| Intro = Some text to describe the equipment goes here.&lt;br /&gt;
* You can use any wiki formatting that you wish:&lt;br /&gt;
* Like a bulleted list&lt;br /&gt;
&lt;br /&gt;
| Owner = Mario Corsetti&lt;br /&gt;
&lt;br /&gt;
| StorageLocation = Tucked way up on one of the top shelves of the member storage.&lt;br /&gt;
&lt;br /&gt;
| MakeModel = unknown&lt;br /&gt;
&lt;br /&gt;
| PartNumber = unknown&lt;br /&gt;
&lt;br /&gt;
| Documents = unknown&lt;br /&gt;
&lt;br /&gt;
| LooksLike = tbd&lt;br /&gt;
&lt;br /&gt;
| Rules =&lt;br /&gt;
&lt;br /&gt;
Available for members to use.&lt;br /&gt;
&lt;br /&gt;
| Instructions = tbd&lt;br /&gt;
&lt;br /&gt;
| OtherReferences = tbd&lt;br /&gt;
&lt;br /&gt;
| MaintenanceInfo = Do your best to shield it from dust when you put it away.&lt;br /&gt;
&lt;br /&gt;
| ToDos = This telescope is a bit of an orphan right now. Volunteers are sought to properly set up the telescope or even just document it properly.&lt;br /&gt;
&lt;br /&gt;
| FAQs = tbd&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=In_the_Media</id>
		<title>In the Media</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=In_the_Media"/>
				<updated>2012-05-29T13:53:25Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: /* 2012 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= 2012 =&lt;br /&gt;
*2012-01-04 - Real Detroit Weekly - http://www.realdetroitweekly.com/detroit/stage-and-canvas/Content?oid=1520279 &amp;quot;A festive gift from Spilt Sugar&amp;quot;&lt;br /&gt;
*2012-02-29 - Real Detroit Weekly - http://www.realdetroitweekly.com/detroit/best-arts/Content?oid=1540461 - Kristine and Cheryl both named Best of Detroit!&lt;br /&gt;
*2012-03-12 - Yahoo News / PRWeb - http://m.yahoo.com/w/news_america/maker-faire-detroit-returns-henry-ford-july-28-100303810.html - &amp;quot;back by popular demand, some Faire favorites, including ... i3 Detroit Hackerspace and Handmade Detroit&amp;quot;&lt;br /&gt;
*2012-04-05 - The Detroit News - http://www.detroitnews.com/article/20120405/ENT01/204050327 &amp;quot;Exhibit a mash-up of DIY aesthetic and unconventional visual artistry&amp;quot;&lt;br /&gt;
*2012-05-27 - The Detroit News - http://www.detroitnews.com/article/20120527/OPINION03/205270309 Video clip of Robot Knife Fight at the Detroit Night Market&lt;br /&gt;
&lt;br /&gt;
= 2011  =&lt;br /&gt;
&lt;br /&gt;
*2011-02-21 - Detroit Moxie - [http://www.detroitmoxie.com/home/2011/2/21/hackerspaces-the-community-centers-of-the-future.html Hackerspaces: The Community Centers of the Future] &lt;br /&gt;
*2011-02-22 - Girls In Tech Detroit - [http://www.girlsintechdet.com/girls-in-tech-detroit-presents-a-special-tweetea-at-i3detroit/ Girls In Tech Detroit Presents a Special Tweetea at i3Detroit] &lt;br /&gt;
*2011-03-13 - The Detroit News - [http://www.detnews.com/article/20110313/METRO/103130307/Detroit-%E2%80%98hacker-space%E2%80%99-an-outlet-for-would-be-inventors Detroit 'hacker space' outlet for would-be inventors] Talks about OCD and i3. &lt;br /&gt;
*2011-04-28 - BoingBoing - http://boingboing.net/2011/04/28/the-chronotune-detro.html &lt;br /&gt;
*2011-04-29 - Hackaday.com - http://hackaday.com/2011/04/29/chonotune-listen-to-radio-by-year-not-by-frequency/ &lt;br /&gt;
*2011-04-29 - Rogue Robotics - http://www.roguerobotics.com/chronotune-listen-to-music-over-the-years-and-into-the-future &lt;br /&gt;
*2011-05-11 - Popular Mechanics - http://www.popularmechanics.com/technology/engineering/gonzo/red-bulls-creation-contest-finalists-video-5724972 &lt;br /&gt;
*2011-05-20 - xconomy.com - http://www.xconomy.com/detroit/2011/05/20/get-your-hack-on-detroit-geeks-make-finals-of-national-hacker-contest-in-new-york/ &lt;br /&gt;
*2011-06-07 - CBS Detroit.com - http://detroit.cbslocal.com/2011/06/06/ferndale-hackerspace-makes-red-bull-creation-finals/ &lt;br /&gt;
*2011-06-08 - MAKE: Live - http://blog.makezine.com/archive/2011/06/make-live-60811-hackerspace-roadshow-video.html &lt;br /&gt;
*2011-06-23 - PR Newswire - http://www.prnewswire.com/news-releases/coming-this-summer-innovation-to-blow-your-mind-124430363.html - RB Creation generic &lt;br /&gt;
*2011-06-29 - WXYZ - http://www.wxyz.com/dpp/news/science_tech/local-inventors-create-time-traveling-radio &lt;br /&gt;
*2011-07-05 - WDET - http://www.wdetfm.org/shows/craig-fahle-show/episode/i3detroit/ part of http://www.wdetfm.org/shows/craig-fahle-show/episode/craig-fahle-show-podcast-7-5-11/ - Nick talks about making science accessible to kids &lt;br /&gt;
*2011-07-12 - PSFK - http://www.psfk.com/2011/07/red-bull-creation-project-roundup-pics.html &lt;br /&gt;
*2011-07-13 - MAKE Blog - http://blog.makezine.com/archive/2011/07/hackerspace-happenings-red-bull-creation-challenge-concludes.html Talks about 1.21G, but features our video! &lt;br /&gt;
*2011-07-14 - PC World - http://www.pcworld.com/article/235402/red_bull_creation_72_hours_to_build_a_crazy_contraption.html &amp;quot;Personally I thought i3Detroit’s build was the most impressive.&amp;quot; &lt;br /&gt;
*2011-07-19 - Marketwire -&amp;amp;nbsp;http://www.marketwire.com/press-release/new-cast-makers-will-converge-on-the-henry-ford-maker-faire-detroit-2011-july-30-31-1539431.htm &lt;br /&gt;
*2011-07-24 - Crain's Detroit -&amp;amp;nbsp;http://www.crainsdetroit.com/article/20110724/FREE/307249986/capitalist-tools-coming-techshop-to-open-diy-fabrication-studio - Nick quoted, i3 mentioned at end and in sidebar. &lt;br /&gt;
*2011-07-28 - Free Press -&amp;amp;nbsp;http://www.freep.com/article/20110728/ENT05/107280305/Maker-Faire-Henry-Ford-celebrates-artists-inventors-do-yourselfers - afterparty mentioned in sidebar &lt;br /&gt;
*2011-07-30 - Free Press - http://www.freep.com/article/20110730/NEWS02/110730020/1001/news &lt;br /&gt;
*2011-??-?? - ElectricScooterParts.com - http://electricscooterparts.com/madewithourparts.html The 2010 Powerwheels car &lt;br /&gt;
*2011-07-30 - Detroit News - http://multimedia.detnews.com/pix/photogalleries/newsgallery/MarkersFaire/index1.html &lt;br /&gt;
*2011-07-31 - MLive -&amp;amp;nbsp;http://www.mlive.com/news/detroit/index.ssf/2011/07/maker_faire_detroit_power_whee.html - &amp;quot;Power Racing Series presented by i3Detroit&amp;quot;&lt;br /&gt;
*2011-08-02 - Press &amp;amp; Guide (Dearborn, Mich. Newspaper) - http://www.pressandguide.com/articles/2011/08/02/news/doc4e38318f7a869362862910.txt - &amp;quot;Maker Faire Recap&amp;quot;&lt;br /&gt;
*2011-08-03 - Novi Patch - http://novi.patch.com/articles/novi-resident-shares-quadcopter-at-maker-faire - &amp;quot;Eric's QuadCopter&amp;quot;&lt;br /&gt;
*2011-08-03 - Dangerous Prototypes - http://dangerousprototypes.com/2011/08/02/maker-faire-detroit-hackerspaces/ - &amp;quot;Detroit Hackerspaces at Maker Faire&amp;quot;&lt;br /&gt;
*2011-08-11 - Sparkfun - http://www.sparkfun.com/news/681 &amp;quot;You guys are a top-notch hacker space!&amp;quot;&lt;br /&gt;
*2011-10-27 - The Detroit Hub - http://blog.thedetroithub.com/2011/10/27/i3-detroit-hack-space-merges-art-and-tech/ - &amp;quot;I3 Detroit hack space merges art and tech&amp;quot; Matt Oehrlein, Nate Bezanson, Nate Warnick quoted&lt;br /&gt;
*2011-12-01 - MAKE Blog - http://youtu.be/xcHMYvuPYGs &amp;quot;Workspace for Michigan Makers: i3 Detroit&amp;quot;&lt;br /&gt;
*2011-12-19 - AIGA Detroit - http://detroit.aiga.org/discussion/2011/12/with_our_grease.cfm - &amp;quot;i3 Detroit: Exploring the balance between technology, art and culture&amp;quot; Matt Oehrlein mentioned&lt;br /&gt;
&lt;br /&gt;
=2010=&lt;br /&gt;
&lt;br /&gt;
* 2010-03-04 - MetroMode - [http://www.metromodemedia.com/devnews/i3detroitroyaloakferndale0153.aspx / i3 Detroit looks for new, bigger space for growth] - wacky &amp;quot;national nonprofit&amp;quot; stuff, writer Jon Zemke&lt;br /&gt;
* 2010-03-09 - BoingBoing - [http://boingboing.net/2010/03/09/stop-robot-piracy-i3.html/ i3 Detroit Hackerspace fundraiser]&lt;br /&gt;
* 2010-03-20 - Absolute Michigan - [http://www.absolutemichigan.com/dig/michigan/maker-faire-detroit-from-motor-city-to-maker-city/ From Motor City to Maker City]&lt;br /&gt;
* 2010-04-01 - MetroMode - [http://www.metromodemedia.com/features/metrodetroithackerspace0168.aspx / Hacking Metro Detroit]&lt;br /&gt;
* 2010-06-28 - MetroMode - [http://www.metromodemedia.com/oaklandcounty/innovationnews/i3detroitferndale0167.aspx / i3 Detroit moves to larger space in Ferndale]&lt;br /&gt;
* 2010-07-01 - Detroit Make it Here - [http://www.detroitmakeithere.com/article/20100701/DM01/100709995&amp;amp;Template/ Faire Market]&lt;br /&gt;
* 2010-07-13 - Click on Detroit - [http://www.clickondetroit.com/family/24246161/detail.html Local Workshop Unveils Duct Tape Statue]&lt;br /&gt;
* 2010-07-16 - The Detroit News - [http://www.detnews.com/article/20100716/ENT01/7160321/1033/ent01/PBS-celebrity--Red-Green--on-tour--to-help-raise-funds/ PBS celebrity 'Red Green' on tour to help raise funds]&lt;br /&gt;
* 2010-07-17 - Make Blog - [http://blog.makezine.com/archive/2010/07/hackers_build_giant_red_green_statu.html/ Hackers build giant Red Green statue, channel Rick Astley]&lt;br /&gt;
* 2010-07-28 - MetroMode - [http://www.metromodemedia.com/features/makerfairedetroit0172.aspx Destination: Do It Yourself] - Nick on Red Green, Matt on growler organ, good piece! writer Amy Kuras&lt;br /&gt;
* 2010-07-29 - XConomy - [http://www.xconomy.com/detroit/2010/07/29/maker-faire-taps-into-detroit%e2%80%99s-sense-of-mission-history-as-city-of-tinkerers-and-yes-entrepreneurs/ Maker Faire taps into Detroit's sense of mission, history as city of tinkerers and, yes, entrepreneurs]&lt;br /&gt;
* 2010-07-29 - Detroit Free Press - [http://www.freep.com/article/20100729/ENT05/7290305 Maker Faire puts the spotlight on creativity]&lt;br /&gt;
* 2010-07-29 - Detroit News - [http://www.detnews.com/article/20100729/ENT05/7290308/Maker-Faire-shows-off-wild-creations Maker Faire shows off wild creations]&lt;br /&gt;
* 2010-07-29 - Chicago Tribune - [http://www.chicagotribune.com/news/chi-ap-mi-makerfairedetroit,0,776373.story 'Maker Faire Detroit' contraptions bonanza sets up] - doesn't mention i3Detroit by name, but talks about &amp;quot;a skeeball machine made from parts including spare lumber and PVC pipe.&amp;quot;&lt;br /&gt;
* 2010-07-30 - Core77 [http://www.core77.com/blog/events/maker_faire_detroit_is_here_17052.asp Maker Faire Detroit is here]&lt;br /&gt;
* 2010-07-30 - Time Magazine's Detroit Blog [http://detroit.blogs.time.com/2010/07/30/unfiltered-nick-britsky-on-must-sees-at-maker-faire/ Unfiltered: Nick Britsky on Must-Sees at Maker Faire]&lt;br /&gt;
* 2010-08-01 - AutoBlog [http://www.autoblog.com/2010/08/01/maker-faire-detroit-2010-power-racing-series-as-grassroots-as/ Maker Faire Detroit 2010 Power Racing Series, as grassroots as it gets [w/Video]]&lt;br /&gt;
* 2010-08-02 - XConomy - [http://www.xconomy.com/detroit/2010/08/02/hackerspaces-at-maker-faire-show-and-tell-how-to-build-a-better-detroit/ Hackerspaces at Maker Faire show and tell how to build a better Detroit]&lt;br /&gt;
* 2010-08-03 - The Detroit Hub - [http://blog.thedetroithub.com/2010/08/03/maker-faire-makes-new-sounds-in-motown/ Maker Faire makes new sounds in Motown]&lt;br /&gt;
* 2010-08-04 - The New York Times - [http://www.nytimes.com/slideshow/2010/08/04/arts/design/04maker-ss-6.html Artists Making it in Detroit] Not mentioned by name, but a photo of Amy on our Power Wheels car&lt;br /&gt;
* 2010-09-16 - Element 14 - [http://www.element-14.com/community/blogs/pdp7/2010/09/16/hackerspaces-join-one-or-start-one Hackerspaces: Join One or Start One!]&lt;br /&gt;
* 2010-12-08 - Metromix - [http://detroit.metromix.com/events/photogallery/detroit-urban-craft-fair/2349675/content Detroit Urban Craft Fair] Just photos. We're 36, 37, and 38. The DUCF cupcake is 66, 67.&lt;br /&gt;
&lt;br /&gt;
=2009=&lt;br /&gt;
&lt;br /&gt;
* 2009-08-30 - Ann Arbor Chronicle - [http://annarborchronicle.com/2009/08/30/ann-arbor-minimaker-faire-draws-1000/ Ann Arbor MiniMaker Faire Draws 1,000+]&lt;br /&gt;
* 2009-09-15 - CoolThings.com - [http://www.coolthings.com/bristlebot-with-controllable-directions-plus-giant-bristlebot/ BristleBot With Controllable Directions, Plus Giant Bristlebot]&lt;br /&gt;
* 2009-09-18 - Metro Detroit Blogs - [http://metro.dh5tv.org/diy-enthusiasts-come-to-royal-oak-with-hacker-space DIY Enthusiasts come to royal oak with hacker space]&lt;br /&gt;
* 2009-09-24 - metromode - [http://www.metromodemedia.com/devnews/i3detroitroyaloak0134.aspx i3 Detroit creative center opens in downtown Royal Oak] - wacky &amp;quot;more like a locker&amp;quot; and &amp;quot;national nonprofit&amp;quot; stuff, writer Jon Zemke&lt;br /&gt;
* 2009-09-27 - Observer &amp;amp; Eccentric - [http://www.hometownlife.com/article/20090927/LIFE/909270322/1113/Fill+your+closet+with+Stiletto+Fetish+footwear IMAGINE INNOVATE INSPIRE]&lt;br /&gt;
* 2009-09-29 - I-Detroit - [http://www.i-detroit.com/i3-detroit-provides-us-with-our-first-hackerspace/ i3 Detroit Provides Us With Our First Hackerspace]&lt;br /&gt;
* 2009-09-30 - Daily Tribune [http://www.dailytribune.com/articles/2009/09/30/news/srv0000006517015.txt Briefs - New co-op hosts open house]&lt;br /&gt;
* 2009-09-30 - Make blog - [http://blog.makezine.com/archive/2009/09/this_week_in_maker_events_1.html This week in Maker events - i3 Detroit Open House and Party]&lt;br /&gt;
* 2009-10-01 - Metro Times - [http://www.mlive.com/entertainment/detroit/index.ssf/2009/10/best_of_metro_times_calendar_3.html Best of Metro Times calendar - Weekend Preview - i3 Detroit Grand Opening party]&lt;br /&gt;
* 2009-10-02 - Web Worker Daily - [http://webworkerdaily.com/2009/10/02/hackerspace-i3-detroit-to-hold-grand-opening-tomorrow/ “Hackerspace” i3 Detroit to Hold Grand Opening Tomorrow]&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=RobotKnifeFight</id>
		<title>RobotKnifeFight</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=RobotKnifeFight"/>
				<updated>2012-04-18T20:14:56Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Created page with &amp;quot;File:2012-02-02 00-13-18 502.jpg Category:Projects&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:2012-02-02 00-13-18 502.jpg]]&lt;br /&gt;
[[Category:Projects]]&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=File:2012-02-02_00-13-18_502.jpg</id>
		<title>File:2012-02-02 00-13-18 502.jpg</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=File:2012-02-02_00-13-18_502.jpg"/>
				<updated>2012-04-18T20:12:18Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: RobotKnifeFight frame version 1.4&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;RobotKnifeFight frame version 1.4&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=User:Kc8nod</id>
		<title>User:Kc8nod</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=User:Kc8nod"/>
				<updated>2012-01-18T23:12:44Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Ted Hansen&lt;br /&gt;
&lt;br /&gt;
http://projecteuler.net/profile/kc8nod.png&lt;br /&gt;
&lt;br /&gt;
{{MeritBadge | WarrantyVoid}} {{MeritBadge | PowPowPowerWheels}} {{MeritBadge | PowPowPowerCrash}} {{MeritBadge | NoseBleed}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Sketchup_to_LaserCut</id>
		<title>Sketchup to LaserCut</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Sketchup_to_LaserCut"/>
				<updated>2012-01-13T17:07:07Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: created&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;# Install the ''DXF or STL export'' plug in for Google Sketchup. You can download it here: http://www.guitar-list.com/download-software/convert-sketchup-skp-files-dxf-or-stl&lt;br /&gt;
# Draw your design in Sketchup.&lt;br /&gt;
# Use the [http://support.google.com/sketchup/bin/answer.py?hl=en&amp;amp;answer=94992 Section Plane Tool] to select which 2D slice you want to export.&lt;br /&gt;
# Select the section plane that you just created, it should be highlighted in blue.&lt;br /&gt;
# In the ''Tools'' menu, choose ''Export to DXF or STL''&lt;br /&gt;
# You should see a dialog box labeled ''Export Units''. Choose ''millimeters''.&lt;br /&gt;
# You should see a dialog box labeled ''Export to DXF options''. Choose ''lines''.&lt;br /&gt;
# Choose a name for your newly created DXF file.&lt;br /&gt;
# Import the DXF file into LaserCut. ''File'' -&amp;gt; ''Import''&lt;br /&gt;
# Enjoy!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:HOWTO]]&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=AB%27s_Laser_Cutter</id>
		<title>AB's Laser Cutter</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=AB%27s_Laser_Cutter"/>
				<updated>2012-01-13T16:50:47Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: Reformatting and link to sketchup howto&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Equipment&lt;br /&gt;
| Name = THE BIG RED LASER CUTTER&lt;br /&gt;
| Owner = 100% AB Garcia&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
| StorageLocation = FabLab&lt;br /&gt;
&lt;br /&gt;
| MakeModel = Jinan XYZ Machinery LLC, model XJ1280&lt;br /&gt;
&lt;br /&gt;
| PartNumber = NEEDS UPDATING&lt;br /&gt;
&lt;br /&gt;
| LooksLike = &lt;br /&gt;
&lt;br /&gt;
| Documents =&lt;br /&gt;
Inside the cutter, a [http://www.leetro.com/english/sale/20.html Leetro MPC6515 control board] coordinates the motors and laser firing. Its [http://www.leetro.com/english/down/MPC6515%20%20Manual.pdf documentation] is freely downloadable.&lt;br /&gt;
&lt;br /&gt;
The software is [http://www.leetro.com/english/sale/35.html LaserCut 5.3] (though Help/About says 5.1), whose [http://www.leetro.com/english/down/LaserCut5.3%20Manual%20V1.6.pdf engrish manual]] is awful.&lt;br /&gt;
&lt;br /&gt;
So much grief has arisen from the awful state of the documentation and software, that an entire [http://www.chineselasersupportforum.com/phpBB3/index.php Chinese laser support forum] has arisen for the hapless owners of these machines help each other.&lt;br /&gt;
&lt;br /&gt;
| Instructions =&lt;br /&gt;
&lt;br /&gt;
#Design your parts.&amp;amp;nbsp; You will need access to vector graphics software to do this. &lt;br /&gt;
#Find an operator.&amp;amp;nbsp; To lower the risk of damaging the laser cutter, you must work with an operator to cut your parts.&amp;amp;nbsp; You can get in touch with the operators by sending an email to the laser cutter operator mailing list (i3detroit-laser@googlegroups.com). &lt;br /&gt;
#Schedule a time to meet at i3 with your operator. &lt;br /&gt;
#Cut your parts. &lt;br /&gt;
#Pay for your time on the cutter ($10 / hour of active cutting time).&lt;br /&gt;
&lt;br /&gt;
| FAQs =&lt;br /&gt;
&lt;br /&gt;
'''How much does it cost to use the laser cutter?'''&lt;br /&gt;
&lt;br /&gt;
$10 per hour of laser cutting time.&amp;amp;nbsp; This does not mean $10 per hour of standing near the machine; rather, $10 per hour of time displayed on the laser cutter's digital read-out.&amp;amp;nbsp; This timer is only active while the laser is cutting and its motors are moving.&amp;amp;nbsp; For many cuts, the laser is only active for a few minutes, meaning to laser-cut a project part you will often pay less than a dollar. &lt;br /&gt;
&lt;br /&gt;
'''Why do I have to pay to use the laser cutter?''' &lt;br /&gt;
&lt;br /&gt;
The laser cutter's consumable parts are generally not expensive, such as the lens and distilled water.&amp;amp;nbsp; The CO2 laser tubes, however, are $900 to $1,000 each.&amp;amp;nbsp; The laser cutter has a built-in timer to track how long the cutter has been in operation.&amp;amp;nbsp; This makes it simple for us to collect a fair amount of money - you pay for what you use - to eventually replace these expensive consumables.&amp;amp;nbsp; In other shops, laser cutter usage time could be five or ten times more expensive. &lt;br /&gt;
&lt;br /&gt;
'''Why do I have to work with an operator to cut parts?''' &lt;br /&gt;
&lt;br /&gt;
The operator has received training with using the chiller, the exhaust system, and what to do in case of an emergency.&amp;amp;nbsp; The purpose of the laser cutter operator is to prevent damage to the machine and to prevent '''you '''from being liable in case anything happens.&amp;amp;nbsp; If you use the laser cutter without an operator, you lose all protection from liability and could be on the hook for thousands of dollars to replace what you break.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| Rules =&lt;br /&gt;
&lt;br /&gt;
* Operation of the laser cutter must be done under the supervision of one of the trained operators.&lt;br /&gt;
&lt;br /&gt;
* Do not cut or etch any of the banned materials listed below.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| OtherReferences =&lt;br /&gt;
&lt;br /&gt;
[[ Sketchup_to_LaserCut ]] - How to import a Google Sketchup design into the LaserCut software. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Operators ==&lt;br /&gt;
{| width=&amp;quot;50%&amp;quot; border=&amp;quot;2&amp;quot; cellpadding=&amp;quot;1&amp;quot; cellspacing=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Operator Name&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Trained By&lt;br /&gt;
|-&lt;br /&gt;
| AB Garcia&lt;br /&gt;
| Owns the laser&lt;br /&gt;
|-&lt;br /&gt;
| Nate Bezanson&lt;br /&gt;
| AB&lt;br /&gt;
|-&lt;br /&gt;
| Dustin White&lt;br /&gt;
| AB&lt;br /&gt;
|-&lt;br /&gt;
| Brian Wennberg&lt;br /&gt;
| AB&lt;br /&gt;
|-&lt;br /&gt;
| Matt Arnold&lt;br /&gt;
| NateB and Dustin&lt;br /&gt;
|-&lt;br /&gt;
| Dave Worsey (pending)&lt;br /&gt;
| NateB and ???&lt;br /&gt;
|-&lt;br /&gt;
| Rocco ?&lt;br /&gt;
| Fill me in!&lt;br /&gt;
|-&lt;br /&gt;
|Brad Dahlhofer&lt;br /&gt;
|Dustin W/Nate B&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
== Materials ==&lt;br /&gt;
The laser cutter can cut or etch a wide variety of materials.&amp;amp;nbsp; However some are not possible to cut with our current set-up, and other materials are dangerous - they release fumes that damage humans or the laser cutter itself. &lt;br /&gt;
&lt;br /&gt;
The laser can only etch some materials; it will not be able to cut through them.&amp;amp;nbsp; See the materials list for more. &lt;br /&gt;
&lt;br /&gt;
The key thing is not to try to cut: &lt;br /&gt;
&lt;br /&gt;
#Any metals &lt;br /&gt;
#Any materials that contain glue (such as plywood) &lt;br /&gt;
#Any plastics or other materials that contain chlorine or vinyl&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Seriously, do not cut any of the banned materials. &lt;br /&gt;
&lt;br /&gt;
*[http://www.buildlog.net/blog/2010/07/laser-cut-vinyl-record-bad-idea/ Cutting vinyl:&amp;amp;nbsp;bad idea!] &lt;br /&gt;
*[http://www.cnczone.com/forums/laser_engraving_cutting_machines/56833-co2_laser_pvc_cutting.html Cutting PVC, Lexan, polycarbonates:&amp;amp;nbsp;bad idea!]&lt;br /&gt;
&lt;br /&gt;
'''You are responsible for knowing exactly what your material is before you try to cut it.''' &lt;br /&gt;
&lt;br /&gt;
'''Do not cut any materials marked as BANNED in the list below.&amp;amp;nbsp; You would be liable for expensive damage to the machine or worse - you may release toxic fumes that could easily harm or kill!&amp;amp;nbsp; '''&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
===Materials List===&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;1&amp;quot; cellpadding=&amp;quot;1&amp;quot; border=&amp;quot;1&amp;quot; align=&amp;quot;center&amp;quot; width=&amp;quot;770&amp;quot; style=&amp;quot;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Material &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Cut? &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Etch? &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Power &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Speed&lt;br /&gt;
|-&lt;br /&gt;
| Acrylic &lt;br /&gt;
| Yes &lt;br /&gt;
| Yes &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Glass &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Coated Metals &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Ceramic &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Cloth&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Delrin &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Leather &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BANNED - Lexan &lt;br /&gt;
| No &lt;br /&gt;
| No &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| BANNED - Human flesh (yes, this has come up) &lt;br /&gt;
| No &lt;br /&gt;
| No &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Marble &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Matte Board &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Melamine &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Model Foam&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Paper&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Plexiglass &lt;br /&gt;
| Yes &lt;br /&gt;
| Yes &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Mylar&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Painted Metals&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BANNED - Particle board&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BANNED - Plywood&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BANNED&amp;amp;nbsp;- Polycarbonate plastics of any kind&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BANNED&amp;amp;nbsp;- PVC of any kind&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Rubber&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Tile&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Wood, veneer&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Wood, natural&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Cutting Parts on the Laser Cutter===&lt;br /&gt;
&lt;br /&gt;
When cutting parts on the laser, you will use the software to set the cutting speed and power.&amp;amp;nbsp; If we have cut the material you are using before, you can refer to the power and speed recommendations in the table above.&amp;amp;nbsp; Otherwise - experiment!&amp;amp;nbsp; Bring some scrap material to do test cuts on until you find a cut you are satisfied with.&amp;amp;nbsp; After that, record your power and speed settings in the table above.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
In general: &lt;br /&gt;
&lt;br /&gt;
*Lower speeds allow for lower cutting power, which saves life on the laser tube. &lt;br /&gt;
*Lower speeds cut a wider &amp;quot;kerf&amp;quot; (thickness of cut)&amp;amp;nbsp;through the material. &lt;br /&gt;
*At higher speeds the cut is faster but requires higher power, which uses up the laser tube faster. &lt;br /&gt;
*High power on wood and paper may cause some discoloration near the cuts (browning color from burned material).&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=OBD_Code_Reader</id>
		<title>OBD Code Reader</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=OBD_Code_Reader"/>
				<updated>2012-01-06T16:06:49Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: created&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Equipment &lt;br /&gt;
| Name = Centech OBDII code reader&lt;br /&gt;
| Intro = Usually, when the &amp;quot;Check Engine&amp;quot; light comes on in my car I fix it by covering it with a piece of electrical tape. But if the tape keeps falling off, you can use the code reader to determine what your car is complaining about.&lt;br /&gt;
| Owner = Ted&lt;br /&gt;
| StorageLocation = There is a white storage bin on the shelf in the tool crib labeled &amp;quot;Automotive Tools&amp;quot;. The code reader should be in there inside its black nylon case along with the cables.&lt;br /&gt;
| MakeModel = Centech Somethingorother. It's the $80 one from Harbor Freight&lt;br /&gt;
| PartNumber = &lt;br /&gt;
| Documents = &lt;br /&gt;
| LooksLike = [[File:Codereader.jpg]]&lt;br /&gt;
| Rules = Should remain at i3 unless you get specific permission from the owner.&lt;br /&gt;
| Instructions =&lt;br /&gt;
| MaintenanceInfo = Change the battery once in a while.&lt;br /&gt;
| FAQs = http://www.obd-codes.com/faq/&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=File:Codereader.jpg</id>
		<title>File:Codereader.jpg</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=File:Codereader.jpg"/>
				<updated>2012-01-06T15:55:46Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Breaker_Panels</id>
		<title>Breaker Panels</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Breaker_Panels"/>
				<updated>2012-01-04T02:14:26Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Office Subpanel on South Wall of Shop Area'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote style=&amp;quot;background-color: lightgrey; border: solid thin grey; float: right; padding: 10px&amp;quot;&amp;gt;{{QRcodeForThisPage}}&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
(Service from 100A breaker above main disconnect, next to water heater)&lt;br /&gt;
&lt;br /&gt;
(Federal Pacific, use NA-NI or NC-NI breakers)&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;1&amp;quot; cellpadding=&amp;quot;1&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Location &lt;br /&gt;
! Second Pole&lt;br /&gt;
! Amperes&lt;br /&gt;
! Description&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| 1a&lt;br /&gt;
| N/A&lt;br /&gt;
| 15&lt;br /&gt;
| Office plugs middle&lt;br /&gt;
| Sheathed cable into joist above office&lt;br /&gt;
|-&lt;br /&gt;
| 1b&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Office plugs east&lt;br /&gt;
| Sheathed cable into joist above office&lt;br /&gt;
|- &lt;br /&gt;
| 2&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Tree House&lt;br /&gt;
| Through pipe in floor&lt;br /&gt;
|- &lt;br /&gt;
| 3&lt;br /&gt;
| N/A&lt;br /&gt;
| 15&lt;br /&gt;
| Office lights and emergency exit&lt;br /&gt;
| Sheathed cable into joist above office&lt;br /&gt;
|-&lt;br /&gt;
| 4&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Tree House&lt;br /&gt;
| Through pipe in floor&lt;br /&gt;
|-&lt;br /&gt;
| 5&lt;br /&gt;
| N/A&lt;br /&gt;
| 15&lt;br /&gt;
| Office lights middle&lt;br /&gt;
| Sheathed cable into joist above office&lt;br /&gt;
|-&lt;br /&gt;
| 6,8&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Bathroom office heat/fan&lt;br /&gt;
| Sheathed cable into joist above office&lt;br /&gt;
|-&lt;br /&gt;
| 7&lt;br /&gt;
| N/A&lt;br /&gt;
| 15&lt;br /&gt;
| Shop lights (mid-east)&lt;br /&gt;
| Leftmost of two switches left of breaker panel, to mid-east junction box&lt;br /&gt;
|-&lt;br /&gt;
| 9&lt;br /&gt;
| N/A&lt;br /&gt;
| 15&lt;br /&gt;
| Shop lights over commons tables (near-east)&lt;br /&gt;
| Lower switch left of breaker panel, to near-east junction box&lt;br /&gt;
|-&lt;br /&gt;
| 10&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Office lights and plugs&lt;br /&gt;
| Lights overhead door emergency exit (into office wall left of breaker panel)&lt;br /&gt;
|-&lt;br /&gt;
| 11&lt;br /&gt;
| N/A&lt;br /&gt;
| 15&lt;br /&gt;
| Shop lights (far-east)&lt;br /&gt;
| Rightmost of two switches left of breaker panel, to mid-east junction box&lt;br /&gt;
|-&lt;br /&gt;
| 12&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Shop plugs east wall&lt;br /&gt;
| Through pipe in floor, power for IT components over front door&lt;br /&gt;
|-&lt;br /&gt;
| 13&lt;br /&gt;
| N/A&lt;br /&gt;
| 15&lt;br /&gt;
| North shop furnaces&lt;br /&gt;
| To near-east junction box&lt;br /&gt;
|-&lt;br /&gt;
| 14, 16&lt;br /&gt;
| 18, 20&lt;br /&gt;
| 40&lt;br /&gt;
| Rooftop AC and heat&lt;br /&gt;
| To east loft, including roof&lt;br /&gt;
|-&lt;br /&gt;
| 15&lt;br /&gt;
| N/A&lt;br /&gt;
| 15&lt;br /&gt;
| Plug for drop cord to commons tables&lt;br /&gt;
| To near-east junction box&lt;br /&gt;
|-&lt;br /&gt;
| 17&lt;br /&gt;
| N/A&lt;br /&gt;
| 15&lt;br /&gt;
| Theater spotlights (south outlet)&lt;br /&gt;
| To near-east junction box&lt;br /&gt;
|-&lt;br /&gt;
| 19&lt;br /&gt;
| N/A&lt;br /&gt;
| 15&lt;br /&gt;
| Not used, wire still in far-east shop-light conduit.&lt;br /&gt;
| To mid-east junction box&lt;br /&gt;
|-&lt;br /&gt;
| 21a&lt;br /&gt;
| N/A&lt;br /&gt;
| 15&lt;br /&gt;
| South-east shop furnace&lt;br /&gt;
| To mid-east junction box&lt;br /&gt;
|-&lt;br /&gt;
| 21b&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Office plugs east&lt;br /&gt;
| To west loft (upper pipe)&lt;br /&gt;
|-&lt;br /&gt;
| 22a&lt;br /&gt;
| N/A&lt;br /&gt;
| 15&lt;br /&gt;
| Outlet left of breaker panel&lt;br /&gt;
| IT server rack power&lt;br /&gt;
|-&lt;br /&gt;
| 22b&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| &lt;br /&gt;
| To east loft, including roof&lt;br /&gt;
|-&lt;br /&gt;
| 23a&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| &lt;br /&gt;
| To west loft (upper pipe)&lt;br /&gt;
|-&lt;br /&gt;
| 23b&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Theater spotlights (north outlet)&lt;br /&gt;
| To near-east junction box&lt;br /&gt;
|-&lt;br /&gt;
| 24&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Office lights and plugs&lt;br /&gt;
| To west loft (lower pipe)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Panel in SW Corner of Shop Area'''&amp;lt;br&amp;gt;&lt;br /&gt;
(Pushmatic Electri-Center)&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;1&amp;quot; cellpadding=&amp;quot;1&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Location &lt;br /&gt;
! Second Pole&lt;br /&gt;
! Amperes&lt;br /&gt;
! Description&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| 1&lt;br /&gt;
| 2&lt;br /&gt;
| 100&lt;br /&gt;
| Main&lt;br /&gt;
| &lt;br /&gt;
|- &lt;br /&gt;
| 3&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Plug next to Utilatub, switch to SW roof vent&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 4&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Shop fans (leave on so pipes don't freeze)&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 5&lt;br /&gt;
| N/A&lt;br /&gt;
| 15&lt;br /&gt;
| Rear shop lights and overhead power cord near utilitub&lt;br /&gt;
| No light switch&lt;br /&gt;
|-&lt;br /&gt;
| 6&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Not used&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 7&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Emergency lights, night lights&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 8&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| West shop lights&lt;br /&gt;
| No light switch&lt;br /&gt;
|-&lt;br /&gt;
| 9&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Plug on shop wall next to broom rack&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 10&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| West shop lights&lt;br /&gt;
| No light switch&lt;br /&gt;
|-&lt;br /&gt;
| 11&lt;br /&gt;
| N/A&lt;br /&gt;
| N/A&lt;br /&gt;
| Spare&lt;br /&gt;
| No breaker installed&lt;br /&gt;
|-&lt;br /&gt;
| 12&lt;br /&gt;
| N/A&lt;br /&gt;
| N/A&lt;br /&gt;
| Spare&lt;br /&gt;
| No breaker installed&lt;br /&gt;
|-&lt;br /&gt;
| 13&lt;br /&gt;
| 14&lt;br /&gt;
| 60&lt;br /&gt;
| Subpanel in rear shop&lt;br /&gt;
| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Subpanel in NW Corner of Shop Area'''&amp;lt;br&amp;gt;&lt;br /&gt;
(Resembles Pushmatic Electri-Center)&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;1&amp;quot; cellpadding=&amp;quot;1&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Location &lt;br /&gt;
! Second Pole&lt;br /&gt;
! Amperes&lt;br /&gt;
! Description&lt;br /&gt;
! Notes&lt;br /&gt;
|-&lt;br /&gt;
| 1&lt;br /&gt;
| N/A&lt;br /&gt;
| N/A&lt;br /&gt;
| Spare&lt;br /&gt;
| No breaker installed&lt;br /&gt;
|-&lt;br /&gt;
| 2&lt;br /&gt;
| N/A&lt;br /&gt;
| N/A&lt;br /&gt;
| Spare&lt;br /&gt;
| No breaker installed&lt;br /&gt;
|- &lt;br /&gt;
| 3&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Plugs on west wall&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 4&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Plugs on north wall&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 5a&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Plugs on north wall, metalshop drop cord&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 5b&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Plugs on east wall&lt;br /&gt;
| Breaker suspected bad, load moved to 7&lt;br /&gt;
|-&lt;br /&gt;
| 6&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Plugs on west wall&lt;br /&gt;
| Six southernmost plugs on west wall&lt;br /&gt;
|-&lt;br /&gt;
| 7&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 8a&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Lights in NE rear&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 8b&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Plugs on NE wall&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 9&lt;br /&gt;
| 10&lt;br /&gt;
| 20&lt;br /&gt;
| Roof exhaust fans&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| 11&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Roof exhaust next to beam&lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| 12&lt;br /&gt;
| N/A&lt;br /&gt;
| 20&lt;br /&gt;
| Plugs north by door NE&lt;br /&gt;
| Outlets under north wall clock&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Vinyl_Cutter-US_Cutter_Refine_MH-720</id>
		<title>Vinyl Cutter-US Cutter Refine MH-720</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Vinyl_Cutter-US_Cutter_Refine_MH-720"/>
				<updated>2011-11-19T18:51:05Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Equipment&lt;br /&gt;
| Name = Purple Black Vinyl Cutter&lt;br /&gt;
| Owner = 100% Nick Briksy&lt;br /&gt;
| Instructions = &lt;br /&gt;
#Design your sticker,sign, or shirt.&amp;amp;nbsp; You will need access to vector graphics software to do this. (Illustrator, Coral Draw, Inkscape,or SK1) &lt;br /&gt;
#Cut your vinyl. &lt;br /&gt;
#Pay for the vinyl you cut ($1 per linear Foot sign vinyl and $2.50 per linear foot for shirt vinyl).&lt;br /&gt;
#Weed and apply transfer paper or apply to shirt with heat press.&amp;lt;br&amp;gt; &lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{| width=&amp;quot;50%&amp;quot; border=&amp;quot;2&amp;quot; cellpadding=&amp;quot;1&amp;quot; cellspacing=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Operator Name &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Skill&lt;br /&gt;
|-&lt;br /&gt;
| Rocco Marras&lt;br /&gt;
| Vinyl Guru&lt;br /&gt;
| Zone Warden &lt;br /&gt;
|-&lt;br /&gt;
| Nate Warnick &lt;br /&gt;
| ok&lt;br /&gt;
|-&lt;br /&gt;
| Dustin White&lt;br /&gt;
| pretty good&lt;br /&gt;
|-&lt;br /&gt;
| Bacon &lt;br /&gt;
| The leader of the Vinyl Revolution&lt;br /&gt;
|-&lt;br /&gt;
| Fireman Dave &lt;br /&gt;
| Master Vinyl Cutter&lt;br /&gt;
|- &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=AB%27s_Laser_Cutter</id>
		<title>AB's Laser Cutter</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=AB%27s_Laser_Cutter"/>
				<updated>2011-11-19T18:45:10Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Equipment&lt;br /&gt;
| Name = THE BIG RED LASER CUTTER&lt;br /&gt;
| Owner = 100% AB Garcia&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
| StorageLocation = FabLab&lt;br /&gt;
&lt;br /&gt;
| MakeModel = NEEDS UPDATING&lt;br /&gt;
&lt;br /&gt;
| PartNumber = NEEDS UPDATING&lt;br /&gt;
&lt;br /&gt;
| LooksLike = &lt;br /&gt;
}}&lt;br /&gt;
===Documentation===&lt;br /&gt;
No link yet  :(&lt;br /&gt;
&lt;br /&gt;
==How to&amp;amp;nbsp;Use the Laser Cutter&amp;lt;br&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
To use the laser cutter: &lt;br /&gt;
&lt;br /&gt;
#Design your parts.&amp;amp;nbsp; You will need access to vector graphics software to do this. &lt;br /&gt;
#Find an operator.&amp;amp;nbsp; To lower the risk of damaging the laser cutter, you must work with an operator to cut your parts.&amp;amp;nbsp; You can get in touch with the operators by sending an email to the laser cutter operator mailing list (i3detroit-laser@googlegroups.com). &lt;br /&gt;
#Schedule a time to meet at i3 with your operator. &lt;br /&gt;
#Cut your parts. &lt;br /&gt;
#Pay for your time on the cutter ($10 / hour of active cutting time).&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
{| width=&amp;quot;50%&amp;quot; border=&amp;quot;2&amp;quot; cellpadding=&amp;quot;1&amp;quot; cellspacing=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Operator Name&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Trained By&lt;br /&gt;
|-&lt;br /&gt;
| AB Garcia&lt;br /&gt;
| Owns the laser&lt;br /&gt;
|-&lt;br /&gt;
| Nate Bezanson&lt;br /&gt;
| AB&lt;br /&gt;
|-&lt;br /&gt;
|Dustin White&lt;br /&gt;
|AB&lt;br /&gt;
|-&lt;br /&gt;
| Brian Wennberg&lt;br /&gt;
| AB&lt;br /&gt;
|-&lt;br /&gt;
| other operator&lt;br /&gt;
| must appear above&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Cutting Materials:&amp;amp;nbsp;Safe vs. Dangerous===&lt;br /&gt;
The laser cutter can cut or etch a wide variety of materials.&amp;amp;nbsp; However some are not possible to cut with our current set-up, and other materials are dangerous - they release fumes that damage humans or the laser cutter itself. &lt;br /&gt;
&lt;br /&gt;
The laser can only etch some materials; it will not be able to cut through them.&amp;amp;nbsp; See the materials list for more. &lt;br /&gt;
&lt;br /&gt;
The key thing is not to try to cut: &lt;br /&gt;
&lt;br /&gt;
#Any metals &lt;br /&gt;
#Any materials that contain glue (such as plywood) &lt;br /&gt;
#Any plastics or other materials that contain chlorine or vinyl&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
Seriously, do not cut any of the banned materials. &lt;br /&gt;
&lt;br /&gt;
*[http://www.buildlog.net/blog/2010/07/laser-cut-vinyl-record-bad-idea/ Cutting vinyl:&amp;amp;nbsp;bad idea!] &lt;br /&gt;
*[http://www.cnczone.com/forums/laser_engraving_cutting_machines/56833-co2_laser_pvc_cutting.html Cutting PVC, Lexan, polycarbonates:&amp;amp;nbsp;bad idea!]&lt;br /&gt;
&lt;br /&gt;
'''You are responsible for knowing exactly what your material is before you try to cut it.''' &lt;br /&gt;
&lt;br /&gt;
'''Do not cut any materials marked as BANNED in the list below.&amp;amp;nbsp; You would be liable for expensive damage to the machine or worse - you may release toxic fumes that could easily harm or kill!&amp;amp;nbsp; '''&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
====Materials List====&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;1&amp;quot; cellpadding=&amp;quot;1&amp;quot; border=&amp;quot;1&amp;quot; align=&amp;quot;center&amp;quot; width=&amp;quot;770&amp;quot; style=&amp;quot;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Material &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Cut? &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Etch? &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Power &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Speed&lt;br /&gt;
|-&lt;br /&gt;
| Acrylic &lt;br /&gt;
| Yes &lt;br /&gt;
| Yes &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Glass &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Coated Metals &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Ceramic &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Cloth&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Delrin &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Leather &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BANNED - Lexan &lt;br /&gt;
| No &lt;br /&gt;
| No &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| BANNED - Human flesh (yes, this has come up) &lt;br /&gt;
| No &lt;br /&gt;
| No &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Marble &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Matte Board &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Melamine &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Model Foam&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Paper&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Plexiglass &lt;br /&gt;
| Yes &lt;br /&gt;
| Yes &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Mylar&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Painted Metals&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BANNED - Particle board&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BANNED - Plywood&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BANNED&amp;amp;nbsp;- Polycarbonate plastics of any kind&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BANNED&amp;amp;nbsp;- PVC of any kind&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Rubber&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Tile&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Wood, veneer&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Wood, natural&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Cutting Parts on the Laser Cutter===&lt;br /&gt;
&lt;br /&gt;
When cutting parts on the laser, you will use the software to set the cutting speed and power.&amp;amp;nbsp; If we have cut the material you are using before, you can refer to the power and speed recommendations in the table above.&amp;amp;nbsp; Otherwise - experiment!&amp;amp;nbsp; Bring some scrap material to do test cuts on until you find a cut you are satisfied with.&amp;amp;nbsp; After that, record your power and speed settings in the table above.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
In general: &lt;br /&gt;
&lt;br /&gt;
*Lower speeds allow for lower cutting power, which saves life on the laser tube. &lt;br /&gt;
*Lower speeds cut a wider &amp;quot;kerf&amp;quot; (thickness of cut)&amp;amp;nbsp;through the material. &lt;br /&gt;
*At higher speeds the cut is faster but requires higher power, which uses up the laser tube faster. &lt;br /&gt;
*High power on wood and paper may cause some discoloration near the cuts (browning color from burned material).&lt;br /&gt;
&lt;br /&gt;
===FAQ===&lt;br /&gt;
&lt;br /&gt;
'''How much does it cost to use the laser cutter?'''&amp;lt;br&amp;gt;$10 per hour of laser cutting time.&amp;amp;nbsp; This does not mean $10 per hour of standing near the machine; rather, $10 per hour of time displayed on the laser cutter's digital read-out.&amp;amp;nbsp; This timer is only active while the laser is cutting and its motors are moving.&amp;amp;nbsp; For many cuts, the laser is only active for a few minutes, meaning to laser-cut a project part you will often pay less than a dollar. &lt;br /&gt;
&lt;br /&gt;
'''Why do I have to pay to use the laser cutter?''' &lt;br /&gt;
&lt;br /&gt;
The laser cutter's consumable parts are generally not expensive, such as the lens and distilled water.&amp;amp;nbsp; The CO2 laser tubes, however, are $900 to $1,000 each.&amp;amp;nbsp; The laser cutter has a built-in timer to track how long the cutter has been in operation.&amp;amp;nbsp; This makes it simple for us to collect a fair amount of money - you pay for what you use - to eventually replace these expensive consumables.&amp;amp;nbsp; In other shops, laser cutter usage time could be five or ten times more expensive. &lt;br /&gt;
&lt;br /&gt;
'''Why do I have to work with an operator to cut parts?''' &lt;br /&gt;
&lt;br /&gt;
The operator has received training with using the chiller, the exhaust system, and what to do in case of an emergency.&amp;amp;nbsp; The purpose of the laser cutter operator is to prevent damage to the machine and to prevent '''you '''from being liable in case anything happens.&amp;amp;nbsp; If you use the laser cutter without an operator, you lose all protection from liability and could be on the hook for thousands of dollars to replace what you break.&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=AB%27s_Laser_Cutter</id>
		<title>AB's Laser Cutter</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=AB%27s_Laser_Cutter"/>
				<updated>2011-11-19T18:44:34Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Equipment&lt;br /&gt;
==The Big Red Laser Cutter==&lt;br /&gt;
| Owner = 100% AB Garcia&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
| StorageLocation = FabLab&lt;br /&gt;
&lt;br /&gt;
| MakeModel = NEEDS UPDATING&lt;br /&gt;
&lt;br /&gt;
| PartNumber = NEEDS UPDATING&lt;br /&gt;
&lt;br /&gt;
| LooksLike = &lt;br /&gt;
}}&lt;br /&gt;
===Documentation===&lt;br /&gt;
No link yet  :(&lt;br /&gt;
&lt;br /&gt;
==How to&amp;amp;nbsp;Use the Laser Cutter&amp;lt;br&amp;gt;==&lt;br /&gt;
&lt;br /&gt;
To use the laser cutter: &lt;br /&gt;
&lt;br /&gt;
#Design your parts.&amp;amp;nbsp; You will need access to vector graphics software to do this. &lt;br /&gt;
#Find an operator.&amp;amp;nbsp; To lower the risk of damaging the laser cutter, you must work with an operator to cut your parts.&amp;amp;nbsp; You can get in touch with the operators by sending an email to the laser cutter operator mailing list (i3detroit-laser@googlegroups.com). &lt;br /&gt;
#Schedule a time to meet at i3 with your operator. &lt;br /&gt;
#Cut your parts. &lt;br /&gt;
#Pay for your time on the cutter ($10 / hour of active cutting time).&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
{| width=&amp;quot;50%&amp;quot; border=&amp;quot;2&amp;quot; cellpadding=&amp;quot;1&amp;quot; cellspacing=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Operator Name&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Trained By&lt;br /&gt;
|-&lt;br /&gt;
| AB Garcia&lt;br /&gt;
| Owns the laser&lt;br /&gt;
|-&lt;br /&gt;
| Nate Bezanson&lt;br /&gt;
| AB&lt;br /&gt;
|-&lt;br /&gt;
|Dustin White&lt;br /&gt;
|AB&lt;br /&gt;
|-&lt;br /&gt;
| Brian Wennberg&lt;br /&gt;
| AB&lt;br /&gt;
|-&lt;br /&gt;
| other operator&lt;br /&gt;
| must appear above&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Cutting Materials:&amp;amp;nbsp;Safe vs. Dangerous===&lt;br /&gt;
The laser cutter can cut or etch a wide variety of materials.&amp;amp;nbsp; However some are not possible to cut with our current set-up, and other materials are dangerous - they release fumes that damage humans or the laser cutter itself. &lt;br /&gt;
&lt;br /&gt;
The laser can only etch some materials; it will not be able to cut through them.&amp;amp;nbsp; See the materials list for more. &lt;br /&gt;
&lt;br /&gt;
The key thing is not to try to cut: &lt;br /&gt;
&lt;br /&gt;
#Any metals &lt;br /&gt;
#Any materials that contain glue (such as plywood) &lt;br /&gt;
#Any plastics or other materials that contain chlorine or vinyl&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
Seriously, do not cut any of the banned materials. &lt;br /&gt;
&lt;br /&gt;
*[http://www.buildlog.net/blog/2010/07/laser-cut-vinyl-record-bad-idea/ Cutting vinyl:&amp;amp;nbsp;bad idea!] &lt;br /&gt;
*[http://www.cnczone.com/forums/laser_engraving_cutting_machines/56833-co2_laser_pvc_cutting.html Cutting PVC, Lexan, polycarbonates:&amp;amp;nbsp;bad idea!]&lt;br /&gt;
&lt;br /&gt;
'''You are responsible for knowing exactly what your material is before you try to cut it.''' &lt;br /&gt;
&lt;br /&gt;
'''Do not cut any materials marked as BANNED in the list below.&amp;amp;nbsp; You would be liable for expensive damage to the machine or worse - you may release toxic fumes that could easily harm or kill!&amp;amp;nbsp; '''&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
====Materials List====&lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;1&amp;quot; cellpadding=&amp;quot;1&amp;quot; border=&amp;quot;1&amp;quot; align=&amp;quot;center&amp;quot; width=&amp;quot;770&amp;quot; style=&amp;quot;&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Material &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Cut? &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Etch? &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Power &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; | Speed&lt;br /&gt;
|-&lt;br /&gt;
| Acrylic &lt;br /&gt;
| Yes &lt;br /&gt;
| Yes &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Glass &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Coated Metals &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Ceramic &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Cloth&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Delrin &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Leather &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BANNED - Lexan &lt;br /&gt;
| No &lt;br /&gt;
| No &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| BANNED - Human flesh (yes, this has come up) &lt;br /&gt;
| No &lt;br /&gt;
| No &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Marble &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Matte Board &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Melamine &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Model Foam&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Paper&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Plexiglass &lt;br /&gt;
| Yes &lt;br /&gt;
| Yes &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Mylar&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Painted Metals&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BANNED - Particle board&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BANNED - Plywood&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BANNED&amp;amp;nbsp;- Polycarbonate plastics of any kind&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| BANNED&amp;amp;nbsp;- PVC of any kind&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Rubber&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Tile&amp;lt;br&amp;gt; &lt;br /&gt;
| No&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Wood, veneer&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| Wood, natural&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| Yes&amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt; &lt;br /&gt;
| &amp;lt;br&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Cutting Parts on the Laser Cutter===&lt;br /&gt;
&lt;br /&gt;
When cutting parts on the laser, you will use the software to set the cutting speed and power.&amp;amp;nbsp; If we have cut the material you are using before, you can refer to the power and speed recommendations in the table above.&amp;amp;nbsp; Otherwise - experiment!&amp;amp;nbsp; Bring some scrap material to do test cuts on until you find a cut you are satisfied with.&amp;amp;nbsp; After that, record your power and speed settings in the table above.&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
In general: &lt;br /&gt;
&lt;br /&gt;
*Lower speeds allow for lower cutting power, which saves life on the laser tube. &lt;br /&gt;
*Lower speeds cut a wider &amp;quot;kerf&amp;quot; (thickness of cut)&amp;amp;nbsp;through the material. &lt;br /&gt;
*At higher speeds the cut is faster but requires higher power, which uses up the laser tube faster. &lt;br /&gt;
*High power on wood and paper may cause some discoloration near the cuts (browning color from burned material).&lt;br /&gt;
&lt;br /&gt;
===FAQ===&lt;br /&gt;
&lt;br /&gt;
'''How much does it cost to use the laser cutter?'''&amp;lt;br&amp;gt;$10 per hour of laser cutting time.&amp;amp;nbsp; This does not mean $10 per hour of standing near the machine; rather, $10 per hour of time displayed on the laser cutter's digital read-out.&amp;amp;nbsp; This timer is only active while the laser is cutting and its motors are moving.&amp;amp;nbsp; For many cuts, the laser is only active for a few minutes, meaning to laser-cut a project part you will often pay less than a dollar. &lt;br /&gt;
&lt;br /&gt;
'''Why do I have to pay to use the laser cutter?''' &lt;br /&gt;
&lt;br /&gt;
The laser cutter's consumable parts are generally not expensive, such as the lens and distilled water.&amp;amp;nbsp; The CO2 laser tubes, however, are $900 to $1,000 each.&amp;amp;nbsp; The laser cutter has a built-in timer to track how long the cutter has been in operation.&amp;amp;nbsp; This makes it simple for us to collect a fair amount of money - you pay for what you use - to eventually replace these expensive consumables.&amp;amp;nbsp; In other shops, laser cutter usage time could be five or ten times more expensive. &lt;br /&gt;
&lt;br /&gt;
'''Why do I have to work with an operator to cut parts?''' &lt;br /&gt;
&lt;br /&gt;
The operator has received training with using the chiller, the exhaust system, and what to do in case of an emergency.&amp;amp;nbsp; The purpose of the laser cutter operator is to prevent damage to the machine and to prevent '''you '''from being liable in case anything happens.&amp;amp;nbsp; If you use the laser cutter without an operator, you lose all protection from liability and could be on the hook for thousands of dollars to replace what you break.&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=Network</id>
		<title>Network</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=Network"/>
				<updated>2011-11-07T03:36:04Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: /* IP Addresses in use */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Networking]]&lt;br /&gt;
[[Category:Operations]]&lt;br /&gt;
&lt;br /&gt;
= Wireless Network =&lt;br /&gt;
&lt;br /&gt;
The SSID is '''''i3''''' , there is no encryption, this is considered a feature (for the moment). &lt;br /&gt;
&lt;br /&gt;
You may occasionally see an SSID of '''''3302''''' or '''''1216''''', these are the FIRST Robot control WLANs. They are completely isolated networks and are probably not very interesting to you.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= LAN Addresses =&lt;br /&gt;
&lt;br /&gt;
Internally, we are using the 10.13.0.0/16 supernet. It should sidestep most VPN overlap problems, should we establish any connections to other locations.  At present, we are only using one subnet of this:  10.13.0.0/24.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Subnet: 10.13.0.0/24 ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Static Hosts ===&lt;br /&gt;
&lt;br /&gt;
If you have something that needs to be attached to the network at i3Detroit, a static IP address can be assigned to it.  This is useful in cases where something like a printer or a tool needs to be on the network with a known address that doesn't change.  &amp;lt;BR&amp;gt;&amp;lt;BR&amp;gt;Most member and guest laptops, however, do not need one of these.&lt;br /&gt;
&amp;lt;BR&amp;gt;&amp;lt;BR&amp;gt;If you have something that needs a fixed address but can't be configured for one (for some reason), something known as a DHCP reservation can be applied.  Please contact [[User:Jcbender|Joe B]] or Nate W to help you out with this.&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
If you can, please try to create a wiki page with information about the thing you just attached to the network, and link to that from the IP address listing here.&lt;br /&gt;
&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Static hosts use the following settings:'''&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| IP address&lt;br /&gt;
| Take an unused address from the table below.  Document which address you used.  When in doubt, ping first.&lt;br /&gt;
|-&lt;br /&gt;
| Subnet mask&lt;br /&gt;
| 255.255.255.0&lt;br /&gt;
|-&lt;br /&gt;
| Default Gateway&lt;br /&gt;
| 10.13.0.1&lt;br /&gt;
|-&lt;br /&gt;
| DNS Server&lt;br /&gt;
| 10.13.0.1&lt;br /&gt;
|-&lt;br /&gt;
| DNS domain name&lt;br /&gt;
| i3detroit.local&lt;br /&gt;
|-&lt;br /&gt;
| Time / NTP server&lt;br /&gt;
| 10.13.0.1 or 10.13.0.5 (The LAN switch is also an NTP server)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;BR&amp;gt;&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== IP Addresses in use === &lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
! Address &lt;br /&gt;
! Host &lt;br /&gt;
! Description &lt;br /&gt;
! Admin(s)&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.1 &lt;br /&gt;
| pfsense &lt;br /&gt;
| The firewall and dhcp server. Not a toy. ''Nicht für gefingerpöken'' &lt;br /&gt;
| [[User:Jcbender| JCBender]], Brad, Nate2, Ted and others.&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.2 &lt;br /&gt;
| i3-twitter-cam &lt;br /&gt;
| The dlink camera over the front door. Used for the twitterbot. &lt;br /&gt;
| Nate1, Nate2&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.3 &lt;br /&gt;
| wifi-AP &lt;br /&gt;
| linksys running ddwrt above door. &lt;br /&gt;
| Nate2&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.4 &lt;br /&gt;
| Wireless-AP &lt;br /&gt;
| DD-WRT access point. ''Nicht für gefingerpöken'' &lt;br /&gt;
| Nate, Nate2, [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.5&lt;br /&gt;
| [[i3switch01]]&lt;br /&gt;
| This is the Cisco 3750 Ethernet switch that drives i3! Not a toy. ''Nicht für gefingerpöken''&lt;br /&gt;
| [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.6&lt;br /&gt;
| Cisco 1130 AP i3DetroitAP01&lt;br /&gt;
| This is primary access point for i3Detroit. Not a toy. ''Nicht für gefingerpöken''&lt;br /&gt;
| [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.7&lt;br /&gt;
| Cisco 1130 i3DetroitAP02&lt;br /&gt;
| This is the office space access point for i3Detroit. Not a toy. ''Nicht für gefingerpöken''&lt;br /&gt;
| [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.8 &lt;br /&gt;
| Asterisk &lt;br /&gt;
| We make phone calls with this. ''Nicht für gefingerpöken'' &lt;br /&gt;
| Nate2.&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.10&lt;br /&gt;
| [[Wireless LAN Controller]]&lt;br /&gt;
| We do nifty wireless things with this. Not a toy. ''Nicht für gefingerpöken'' &lt;br /&gt;
| [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.11&lt;br /&gt;
| [[Wireless LAN Controller]] IP #2 (required)&lt;br /&gt;
| We do nifty wireless things with this. Not a toy. ''Nicht für gefingerpöken'' &lt;br /&gt;
| [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.13 &lt;br /&gt;
| Camera Server &lt;br /&gt;
| Big brother is watching you. ''Nicht für gefingerpöken'' &lt;br /&gt;
| [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.14&lt;br /&gt;
| Cisco 1130 i3DetroitAP03&lt;br /&gt;
| This is the back-of-shop access point for i3Detroit. Not a toy. ''Nicht für gefingerpöken''&lt;br /&gt;
| [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.15 &lt;br /&gt;
| i3Debian &lt;br /&gt;
| &amp;quot;The Debian Box&amp;quot; General-purpose sandbox. Not to be considered reliable or mission-critical &lt;br /&gt;
| Ted, Nate2, Eric, ToasterDan, Ross&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.16 &lt;br /&gt;
| tbd &lt;br /&gt;
| &amp;quot;the virtualization machine&amp;quot; currently under construction &lt;br /&gt;
| Rocco&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.27 &lt;br /&gt;
| Mobile Podcast Recorder &lt;br /&gt;
| This is the mini computer mounted on the mobile podcast studio used for streaming and recording podcasts and shoutcast shows&lt;br /&gt;
| Bill&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.40&lt;br /&gt;
| [[i3Switch02]]&lt;br /&gt;
| i3 Second managed Ethernet switch in rack&lt;br /&gt;
| [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.50 &lt;br /&gt;
| Plotter &lt;br /&gt;
| [[HOWTO use the Plotter|The HP DesignJet 300 ]] &lt;br /&gt;
| Roger, Rocco?&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.51 &lt;br /&gt;
| Laserjet-5si &lt;br /&gt;
| [[HOWTO_use_the_Laserjet_5si|Laserjet 5si]] MX printer in the &amp;quot;print shop&amp;quot; area &lt;br /&gt;
| Rocco&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.90 &lt;br /&gt;
| First-Cam &lt;br /&gt;
| The Axis 206 network camera over the FIRST corner. &lt;br /&gt;
| Ted, [[User:Jcbender| JCBender]]&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.91&lt;br /&gt;
| Polycom-ATA&lt;br /&gt;
| Cisco ATA-186 VOIP adapter for the Polycom conference phone. ''Nicht f&amp;amp;uuml;r gefingerp&amp;amp;ouml;ken'' &lt;br /&gt;
| [[User:Jcbender| JCBender]], Nate2&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.99 &lt;br /&gt;
| printer&lt;br /&gt;
| [[HOWTO_Use_the_Laserjet_6P|Laserjet 6p]] in the rack. &lt;br /&gt;
| Nate1&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.100-245&lt;br /&gt;
| DHCP RANGE &lt;br /&gt;
| This is the DHCP range handed out by the firewall. Reservations possible&lt;br /&gt;
|-&lt;br /&gt;
| 10.13.0.214 &lt;br /&gt;
| Xbox&lt;br /&gt;
| Xbox in the rack. &lt;br /&gt;
| Nate2, Brad&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
= DNS =&lt;br /&gt;
&lt;br /&gt;
The default DNS domain handed out for DHCP clients is i3detroit.local.  If you have statically assigned a IP to something, and you want its hostname to be in DNS as your_hostname.i3detroit.local, we can add it to the local server.  Post a request on the mailing list to have that taken care of.&lt;br /&gt;
&lt;br /&gt;
= FAQ =&lt;br /&gt;
&lt;br /&gt;
Q: Can we open a port in the firewall for my XYZ server? &lt;br /&gt;
&lt;br /&gt;
:A: Probably not. The upstream bandwidth at the space is rather poor. You are welcome to suggest it, but be prepared to meet with significant resistance from your fellow members. Alternately, many of the members have COLO space that they might be willing to share. Make a proposal on the mailing list and turn on the charm.&lt;br /&gt;
&lt;br /&gt;
Q: Let's get some better bandwidth at the space! &lt;br /&gt;
&lt;br /&gt;
:A: We now have 15mbit down, 2 up from WideOpenWest. If [[The Joke That Never Gets Old|that's not enough pipe for you]], we don't know what to say.&lt;br /&gt;
&lt;br /&gt;
Q: whérε dö ì ƒìñd ┼Hε wâΓεz åñd ┼HΣ p┌Ωn? &lt;br /&gt;
&lt;br /&gt;
:A: Kid, you are up past your bedtime.&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	<entry>
		<id>http://i3detroit.com/wi/index.php?title=ToDo</id>
		<title>ToDo</title>
		<link rel="alternate" type="text/html" href="http://i3detroit.com/wi/index.php?title=ToDo"/>
				<updated>2011-11-02T01:14:49Z</updated>
		
		<summary type="html">&lt;p&gt;Kc8nod: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;NEW TASKS, as of October 2011 &lt;br /&gt;
&lt;br /&gt;
All this planning got you hungry? Head on over to the [[Potlock Menu Planning|Foodie Page]] to get your feast planning on. Volunteer to bring your favorite dishes and show off your amazing culinary skills! &lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;1&amp;quot; cellpadding=&amp;quot;1&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Task &lt;br /&gt;
! Next Action &lt;br /&gt;
! Volunteer?&lt;br /&gt;
|-&lt;br /&gt;
| Repair kitchen door hinge. &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Clear Genie-width path to member storage &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Construct and affix dry-erase marker holders to every whiteboard &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Collect, test, and sort all dry-erase markers and populate above holders. &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Purchase another few dozen Sharpies and put &amp;quot;i3&amp;quot; heatshrink bands&amp;lt;br&amp;gt;on them like the last batch. &lt;br /&gt;
| See Nathaniel B for the right size heatshrink.&amp;lt;br&amp;gt;Costco usually has a good price on the Sharpies themselves. &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Mount monitor on/near rack, for admin KVM usage &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Consolidate adhesives/solvents/cleaners/etc and label &amp;lt;br&amp;gt;each&amp;amp;nbsp;location&amp;amp;nbsp;with pointers to the other locations &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Bring blue bins down from attic and wash them all &lt;br /&gt;
| &lt;br /&gt;
| [[User:Matt|Matt O]]&lt;br /&gt;
|-&lt;br /&gt;
| Fridge cleanout &lt;br /&gt;
| &lt;br /&gt;
| [[User:Matt|Matt O]]&lt;br /&gt;
|-&lt;br /&gt;
| Affix QR codes to every tool with a wiki page &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Cover roof openings, consider snow-melt drainage in your design &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Level concrete near rack &lt;br /&gt;
| &lt;br /&gt;
| Joe&lt;br /&gt;
|-&lt;br /&gt;
| Garage-door concrete &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Winterization stuff (Bill putt suggested -- need more specifics) &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| North &amp;amp;amp; East Storm windows &lt;br /&gt;
| Get measurements and figure hardware &lt;br /&gt;
| Steve H&lt;br /&gt;
|-&lt;br /&gt;
| we need a stock rack/box in machine shop, 5&amp;quot;x5&amp;quot; by 12&amp;quot;deep eggcrate, about 12 holes, &amp;lt;br&amp;gt;1/4 ply, could be laser cut, ply frame. - Ask steve H &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| consolidate and shut down small black freezer &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Run air hose to bike shop &lt;br /&gt;
| run black air hose to new bike shop area &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| add dividers to member storage shelves &lt;br /&gt;
| use tape or paint to divide the shelves into quarters &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| clean up FIRST area &lt;br /&gt;
| throw away junk and put all gear into bins below benches &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| sweep and vacuum your butt off &lt;br /&gt;
| &lt;br /&gt;
| everyone!&lt;br /&gt;
|-&lt;br /&gt;
| identify emergency exit routes and paint the lines &lt;br /&gt;
| we have floor marking paint, (update:picked up skinny rollers) &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| install other welding curtain &lt;br /&gt;
| talk to Nate B. he has vision for this &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Fix bottom seal on garage door &lt;br /&gt;
| use quickrete to level ground &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| install safety chain on theatre lights &lt;br /&gt;
| get chain, or aircraft cable and crimpers &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| make bins/shelf for welding area metal storage &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| make a set of cubbies for storage of cut offs in metal shop area &lt;br /&gt;
| shelves should be 12-14 in deep &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| finish up audio system &lt;br /&gt;
| mount amplifiers in rack, mount speakers, run wire &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| hook up outdoor light outside main door &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| mount and wire security cameras &lt;br /&gt;
| talk to Joe B or Nate B about camera mount locations &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Make boxes to store assorted tools in tool area &lt;br /&gt;
| identify tools which need boxes &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| refill handy bins &lt;br /&gt;
| talk to dustin about contents of handy bins &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| clean up library in loft &lt;br /&gt;
| consolidate books down &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| remove desk from whiteboard room &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| make a bin for casters and wheels &lt;br /&gt;
| put bin in consumables area &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| organize fastener area &lt;br /&gt;
| organize and label fasteners &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| build table for little sanblaster &lt;br /&gt;
| talk to dustin about getting the sandblaster set up &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| clean up and organize consumables area &lt;br /&gt;
| this is the wire rack near the tool crib w/tape, switches, etc &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Label every trash can with the size of bags it takes, and purchase bags of each size. &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Wash trash cans &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Reroute all e-room bench equipment power cords to go behind shelf&amp;lt;br&amp;gt; (empty shelf, rip half an inch off its depth, remount it, reload it) &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Label all E-room gear power cords (Many already done, follow example)&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Repair / upgrade selected 115V circuits &lt;br /&gt;
| Documentation: [[Breaker Panels]], [[Theater Lights]]&lt;br /&gt;
| Dave S&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
OLD LISTS use for inspiration but move relevant tasks to new list above, please only copy the name, and reconsider the &amp;quot;next action&amp;quot; and secure a new volunteer. &lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
Can be tackled immediately: &lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;1&amp;quot; cellpadding=&amp;quot;1&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Task &lt;br /&gt;
! Next Action &lt;br /&gt;
! Volunteer?&lt;br /&gt;
|-&lt;br /&gt;
| Change thermostat batteries &lt;br /&gt;
| Determine what they take &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Rewire laser exhaust on 230v &lt;br /&gt;
| Doublecheck SSR and PSU &lt;br /&gt;
| Joe&lt;br /&gt;
|-&lt;br /&gt;
| bgcolor=&amp;quot;#66ff66&amp;quot; | E-room pretty lights, wire to second switch. &lt;br /&gt;
| bgcolor=&amp;quot;#66ff66&amp;quot; | Install outlet, extend cord. &lt;br /&gt;
| bgcolor=&amp;quot;#66ff66&amp;quot; | Cherish&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Craft room: Establish Cricut-stuff box &lt;br /&gt;
| Find and label suitable box &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| bgcolor=&amp;quot;#66ff66&amp;quot; | Kitchen: Label cabinets with contents &lt;br /&gt;
| bgcolor=&amp;quot;#66ff66&amp;quot; | &lt;br /&gt;
| bgcolor=&amp;quot;#66ff66&amp;quot; | who?&lt;br /&gt;
|-&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Launder everything launderable &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Welding area: Commission P&amp;amp;amp;H&amp;amp;nbsp;welder &lt;br /&gt;
| Print a copy of the manual &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Shop: Redundant tools and rearrange &lt;br /&gt;
| Identify owners of redundant tools &lt;br /&gt;
| Nick&lt;br /&gt;
|-&lt;br /&gt;
| Tool area:&amp;amp;nbsp;Archive dubiously-useful hardware &lt;br /&gt;
| Find sturdy&amp;amp;nbsp;boxes for metal thingies &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Photograph everything for insurance documentation &lt;br /&gt;
| Figure out where to store photos when done &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| E-room: Network jacks &lt;br /&gt;
| Test and trace existing wire &lt;br /&gt;
| Nate W&lt;br /&gt;
|-&lt;br /&gt;
| Cleaning supplies / flammables / etc &lt;br /&gt;
| Decide on scheme and implement, then label. &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| MSDS&amp;amp;nbsp;update &lt;br /&gt;
| Find binder! &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Mount and wire additional ceiling fans &lt;br /&gt;
| get it done before we all melt &lt;br /&gt;
| Brad&lt;br /&gt;
|-&lt;br /&gt;
| Small project Storage &lt;br /&gt;
| Move lockers and build additional storage locker units &lt;br /&gt;
| Brad&lt;br /&gt;
|-&lt;br /&gt;
| E-Room shelving &lt;br /&gt;
| Clean space, assemble units, place units and fasten to wall &lt;br /&gt;
| Brad&lt;br /&gt;
|-&lt;br /&gt;
| ...&lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Just need supplies: &lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;1&amp;quot; cellpadding=&amp;quot;1&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Task &lt;br /&gt;
! Next action / need &lt;br /&gt;
! Volunteer&lt;br /&gt;
|-&lt;br /&gt;
| E-room fluorescent lights, fix flicker &lt;br /&gt;
| Note type of ballasts, and obtain replacement(s) &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| E-room powerstrips &lt;br /&gt;
| Obtain another wall-mountable strip with switch &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Welding curtains &lt;br /&gt;
| Need a pile of sticks and string and sketches &lt;br /&gt;
| Nate B&lt;br /&gt;
|-&lt;br /&gt;
| Cover and insulate roof-fan openings &lt;br /&gt;
| Needs foam, plastic, sticks, and plan. &lt;br /&gt;
| Nate B&lt;br /&gt;
|-&lt;br /&gt;
| Tool area:&amp;amp;nbsp;Sort electrical parts &lt;br /&gt;
| Just need some boxes... &lt;br /&gt;
| Nate B&lt;br /&gt;
|-&lt;br /&gt;
| bgcolor=&amp;quot;#66ff66&amp;quot; | Doorbell &lt;br /&gt;
| bgcolor=&amp;quot;#66ff66&amp;quot; | Easy Button not weatherproof. Find a button that is. &lt;br /&gt;
| bgcolor=&amp;quot;#66ff66&amp;quot; | Nate B&lt;br /&gt;
|-&lt;br /&gt;
| Craft-room bench cushion &lt;br /&gt;
| &amp;amp;nbsp;? &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Craft-room table painting &lt;br /&gt;
| &amp;amp;nbsp;? &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Floor gouge in FIRST&amp;amp;nbsp;area &lt;br /&gt;
| Quickrete &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Garage door bottom seal &lt;br /&gt;
| Quickrete &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Garage door side seals &lt;br /&gt;
| Identify and obtain appripriate thingies &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Safety chain for theater lights &lt;br /&gt;
| Identify appropriate type of chain or cable &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Lubricate Genie column &lt;br /&gt;
| Boe-Lube solid (MSC carries it) &lt;br /&gt;
| Nate B&lt;br /&gt;
|-&lt;br /&gt;
| ... &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt; &lt;br /&gt;
&lt;br /&gt;
Need approval, concept, or otherwise not immediately doable: &lt;br /&gt;
&lt;br /&gt;
{| cellspacing=&amp;quot;1&amp;quot; cellpadding=&amp;quot;1&amp;quot; border=&amp;quot;1&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
! Task &lt;br /&gt;
! Needs &lt;br /&gt;
! Champion&lt;br /&gt;
|-&lt;br /&gt;
| Welding area: Store scrap metal &lt;br /&gt;
| Concept &lt;br /&gt;
| Nate B / Karen?&lt;br /&gt;
|-&lt;br /&gt;
| Whiteboard room lights &lt;br /&gt;
| Find a useful plug-in PIR&amp;amp;nbsp;outlet / Wattstopper perhaps? &lt;br /&gt;
| Nate B&lt;br /&gt;
|-&lt;br /&gt;
| Multizone audio &lt;br /&gt;
| Cohesive plan, mounting location, speaker wire? &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Signage &lt;br /&gt;
| Is this idea still alive? &lt;br /&gt;
| Ross&lt;br /&gt;
|-&lt;br /&gt;
| Shower leak &lt;br /&gt;
| Assess problem, identify repairs needed &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Security (PIR)&amp;amp;nbsp;sensors &lt;br /&gt;
| Need something to wire 'em back to &lt;br /&gt;
| Eric M?&lt;br /&gt;
|-&lt;br /&gt;
| Vending machine light &lt;br /&gt;
| Concept, wiring diagram... &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| Update website static pages &lt;br /&gt;
| Concept, see i3detroit-web group &lt;br /&gt;
| Nate B&lt;br /&gt;
|-&lt;br /&gt;
| Sign proposal &lt;br /&gt;
| &lt;br /&gt;
| Dustin&lt;br /&gt;
|-&lt;br /&gt;
| Outdoor light &lt;br /&gt;
| Concept, box, conduit, permit?? &lt;br /&gt;
| &lt;br /&gt;
|-&lt;br /&gt;
| ... &lt;br /&gt;
| &lt;br /&gt;
| &lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Kc8nod</name></author>	</entry>

	</feed>