<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://old.hacdc.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Redbeard</id>
	<title>HacDC Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://old.hacdc.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Redbeard"/>
	<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php/Special:Contributions/Redbeard"/>
	<updated>2026-05-07T12:06:56Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.3</generator>
	<entry>
		<id>https://old.hacdc.org/index.php?title=CNC_Mill&amp;diff=5936</id>
		<title>CNC Mill</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=CNC_Mill&amp;diff=5936"/>
		<updated>2011-11-21T00:19:38Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* When you&amp;#039;re done */  added bits about turning off power&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Terms ===&lt;br /&gt;
&lt;br /&gt;
* Computer Numerical Control (CNC) - The ability to control a machine using mathematical commands&lt;br /&gt;
* Computer Aided Design (CAD) - Software which generates a model which a machine can translate into tooling commands for manufacturing.&lt;br /&gt;
* Computer Aided Manufacturing (CAM) - The actual process of production from file to finished product.&lt;br /&gt;
* Tooling/tools - The bits used in a mill to actually&lt;br /&gt;
* Milling - The use of a spinning piece of metal to shape an object through calculated removal of a media, normally via an X / Y / Z axis.&lt;br /&gt;
* Manual Data Input (MDI) - A method for doing manual milling with precise control commands.&lt;br /&gt;
* Lathing - The use of a &amp;quot;static&amp;quot; piece of metal to shape an object through calculated removal of a media which is in (usually) a circular motion.&lt;br /&gt;
* [http://www.linuxcnc.org EMC2] - The software used to translate G Code into electrical pulses which can be used by a mill.&lt;br /&gt;
* [http://www.linuxcnc.org/docview/html/gui_axis.html Axis] - The most commonly used graphical user interface with the program EMC2&lt;br /&gt;
&lt;br /&gt;
=== Getting Started ===&lt;br /&gt;
&lt;br /&gt;
To initially get started with the CNC mill, it&#039;s helpful to have a basic grasp of G Code.  How better to get started with this than to begin playing.&lt;br /&gt;
&lt;br /&gt;
==== Turning on the Mill ====&lt;br /&gt;
When turning on the mill there are three primary &amp;quot;light switch&amp;quot; style switches which should be turned on.  The first is on the back of the black box labeled &amp;quot;MicroProto Systems, MicroMill DSLS 3000&amp;quot;.  This switch is located on the back to the right side (imagine reaching around on the rear right).  Flipping the switch &amp;quot;up&amp;quot; should turn this on.&lt;br /&gt;
&lt;br /&gt;
Next, turn on the main control to the spindle.  This is achieved via the light switch on the M3/M5 box.  Turn this to the &amp;quot;on&amp;quot; position (flicking it towards the label M3/M5).&lt;br /&gt;
&lt;br /&gt;
Finally, turn on the spindle on the actual mill.  This is in a blue enameled box residing on the Z axis.  Flip this switch &amp;quot;up&amp;quot;.  If the spindle immediately starts spinning, this is because someone didn&#039;t send the control command to stop it.  This isn&#039;t a problem, but we will want to stop it sooner than later.  We will cover this in the next section.&lt;br /&gt;
&lt;br /&gt;
==== Starting EMC2 ====&lt;br /&gt;
To start, you&#039;ll want to fire up EMC2 with the proper configuration file.  This can be done by using the icon on the desktop or by clicking the corresponding link on the quick launch bar on the top of the screen.&lt;br /&gt;
&lt;br /&gt;
If the mill has been turned on and the right configuration file is used, you will hear the spindle briefly spin up.&lt;br /&gt;
&lt;br /&gt;
Once in EMC2 you&#039;ll need to enable machine control of the mill.  Begin by clicking the large red &amp;quot;X&amp;quot; button on the button toolbar within AXIS. After this button has been pressed, the power button directly beside it should become available to click.  Upon pressing this &amp;quot;power&amp;quot; button, EMC2 / AXIS can be used to send commands to the mill.&lt;br /&gt;
&lt;br /&gt;
==== Making our first motions ====&lt;br /&gt;
&lt;br /&gt;
===== Beginning Manual Control =====&lt;br /&gt;
To start, we&#039;re going to use the &amp;quot;jog&amp;quot; functions to move the milling cutter around and get a feel for what is &amp;quot;positive&amp;quot; and &amp;quot;negative&amp;quot; on the X, Y, &amp;amp; Z axis.&lt;br /&gt;
&lt;br /&gt;
Especially, when starting out, limit motion to the X and Y axis as this has the least potential for damaging our tooling (aka, breaking a bit).  As you get a feel for what&#039;s positive and negative, we will start using larger motions.&lt;br /&gt;
&lt;br /&gt;
To start, hit &amp;quot;F3&amp;quot; on the keyboard to enter fully manual control.  This will present us with a radio button to choose the axis, followed by a &amp;quot;+&amp;quot; and &amp;quot;-&amp;quot; sign to show where our milling cutter will move.  &lt;br /&gt;
&lt;br /&gt;
To start, select the &amp;quot;X&amp;quot; axis and press the positive button.  Next, select the &amp;quot;Y&amp;quot; axis and press the positive button.  As you were moving the milling cutter around, you&#039;ll notice that the coordinates are displayed in the preview window.  This is where you can quickly survey where your tooling is located.  Using these tools, move the mill to the following positions (x,y) - (0,0), (0,1), (1,1).&lt;br /&gt;
&lt;br /&gt;
Next, lets raise the tool a little bit to give ourselves more clearance to put in something to be milled.  Select the Z axis and press the &amp;quot;+&amp;quot; button.  Move the Z axis all the way to &amp;quot;1&amp;quot;.  &lt;br /&gt;
&lt;br /&gt;
At this point, adding our Z axis, our tooling should be located at (1,1,1).&lt;br /&gt;
&lt;br /&gt;
===== Advanced Manual Control - MDI (Manual Data Input) =====&lt;br /&gt;
In AXIS press &amp;quot;F5&amp;quot; and go to the MDI Section.  Within this section we can type in actual G Code to move our tooling around.  To start, we&#039;re going to use simple &amp;quot;go to&amp;quot; commands.  This will rapidly move the tool to the position that we tell it to.  Note, at any time, we can stop the execution of these commands by hitting the &amp;quot;esc&amp;quot; key on the keyboard.  The first command we will use is &amp;quot;rapid go to&amp;quot; or &amp;quot;g0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
To make our first motion, let&#039;s move the X axis to position 0.5.  To do this, enter the command:&lt;br /&gt;
&lt;br /&gt;
  g0 x0.5&lt;br /&gt;
&lt;br /&gt;
The X axis should begin moving.&lt;br /&gt;
&lt;br /&gt;
Additionally, we can give multiple coordinates at once.  Now try the command:&lt;br /&gt;
&lt;br /&gt;
  g0 x0 y0&lt;br /&gt;
&lt;br /&gt;
This should send our tool back to the starting position.  This can make things go much, much faster for resetting back to the position that you started with the mill at.&lt;br /&gt;
&lt;br /&gt;
To have more fine grained control we can use the command &amp;quot;g1&amp;quot;.  There is nothing that G0 does which G1 cannot.  The only difference in syntax is that we specify the feed rate of the motion as the first option.  By default the mill is set to operate in inches per minute.  Thus, unless you change this (via g code) it should be assumed that this will be the unit of measure for your commands.&lt;br /&gt;
&lt;br /&gt;
Lets slowly drop our Z axis back to zero:&lt;br /&gt;
&lt;br /&gt;
  g1 f2 z0&lt;br /&gt;
&lt;br /&gt;
Note, since we were at a position approx 1 inch up and told the mill to return to zero at a rate of F2 or 2 inches per minute, it will take approximately 30 seconds for this command to complete.  Slow movement of the tool (especially when &#039;plunging&#039; the z axis is a good idea as it allows for time to hit the &amp;quot;esc&amp;quot; key if things start going horribly wrong).&lt;br /&gt;
&lt;br /&gt;
Now, let&#039;s build on some of these together:&lt;br /&gt;
&lt;br /&gt;
  g1 f10 x1 y1 z1&lt;br /&gt;
&lt;br /&gt;
Whoops, back to zero:&lt;br /&gt;
&lt;br /&gt;
  g1 f5 x0 y0 z0&lt;br /&gt;
&lt;br /&gt;
When moving back to zero you will see that the mill is moving half of the original speed (5 inches per minute rather than 10 inches per minute).&lt;br /&gt;
&lt;br /&gt;
Let&#039;s really open this thing up and see what it can do.  While watching this command move notice the &amp;quot;vel: &amp;quot; or Velocity property in the preview window.  This will allow you to see the actual speed of the tool.&lt;br /&gt;
&lt;br /&gt;
  g1 f50 x1 y1 z1&lt;br /&gt;
&lt;br /&gt;
Hmm, apparently our steppers max out at ~10.39 inches per minute.  Thus, no matter how much faster we tell them to go, they will never go faster than this.&lt;br /&gt;
&lt;br /&gt;
Linear motion is great and all, but how about we dwell outside the euclidean space for a minute.  The next commands that we are going to learn are G2/G3.  G2 will make a clockwise arc while G3 will make a counterclockwise arc.  The command syntax is as follows:&lt;br /&gt;
&lt;br /&gt;
 *G2 - Command&lt;br /&gt;
 *Fx - Feedrate at X inches per minute&lt;br /&gt;
 *Xv - Destination X coordinate (in this case end at v)&lt;br /&gt;
 *Yw - Destination Y coordinate (in this case end at w)&lt;br /&gt;
 *Ix - X axis center point offset&lt;br /&gt;
 *Jy - Y axis center point offset&lt;br /&gt;
 *Za - Interpolated Z axis coordinate (optional)&lt;br /&gt;
&lt;br /&gt;
To start, lets make a circle:&lt;br /&gt;
&lt;br /&gt;
  g2 f5 x1 y0 i-0.5 j0&lt;br /&gt;
&lt;br /&gt;
Annnnd we fail.  This is because we&#039;ve given junk data to the mill.  Lets try that again making a circle.  Of course, to make a circle, we will want our beginning (1,1,1) to be the same as our destination (1,1,1) only changing the X axis center point offset.&lt;br /&gt;
&lt;br /&gt;
  g2 f5 x1 y1 i-0.5 j0&lt;br /&gt;
&lt;br /&gt;
Fun math bits... run that command again and note the &amp;quot;distance to go&amp;quot; or &amp;quot;DTG&amp;quot; in the preview area.  Note the distance at the immediate start of plotting our 1 inch diameter circle (2 * 0.5 X offset). This should be a predictable [http://en.wikipedia.org/wiki/Pi result]&lt;br /&gt;
&lt;br /&gt;
=== When you&#039;re done ===&lt;br /&gt;
Be a dear and reset the mill back where you started.  Go into MDI mode and run:&lt;br /&gt;
&lt;br /&gt;
  g0 x0y0z0&lt;br /&gt;
&lt;br /&gt;
Finally, turn off all three power switches noted above.&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
&lt;br /&gt;
=== GCode Tips ===&lt;br /&gt;
&lt;br /&gt;
Jogging the mill is a pain in the ass.  One of the most helpful GCode commands you can use is &amp;quot;go to coordinate&amp;quot;.  To go to an X coordinate &amp;quot;zero&amp;quot; one would use &amp;quot;g0 x0&amp;quot;, similarly to go to y0 one would use &amp;quot;g0 y0&amp;quot;.  This is especially helpful for moving the tooling out of the way to add a new piece to be milled or to make an adjustment.  Subsequently, the tooling can be reset with &amp;quot;g0 x0&amp;quot; &amp;quot;g0 y0&amp;quot; &amp;quot;g0 z0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Config File ===&lt;br /&gt;
&lt;br /&gt;
Redbeard made some changes to the config file including resetting the initial home positions to &amp;quot;0 0 0 0&amp;quot; so that when the application starts up, it will leave the tool exactly where it is placed.  While this isn&#039;t the behaviour we want long term, it&#039;s perfect for our current lack of limit switches.  Additionally, the directive &amp;quot;no_force_homing=1&amp;quot; was added to get rid of pesky error messages (again, since we don&#039;t have limit switches for homing the device.)&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=CNC_Mill&amp;diff=5935</id>
		<title>CNC Mill</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=CNC_Mill&amp;diff=5935"/>
		<updated>2011-11-21T00:15:14Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: lots and lots of content walking through the basics of g code&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Terms ===&lt;br /&gt;
&lt;br /&gt;
* Computer Numerical Control (CNC) - The ability to control a machine using mathematical commands&lt;br /&gt;
* Computer Aided Design (CAD) - Software which generates a model which a machine can translate into tooling commands for manufacturing.&lt;br /&gt;
* Computer Aided Manufacturing (CAM) - The actual process of production from file to finished product.&lt;br /&gt;
* Tooling/tools - The bits used in a mill to actually&lt;br /&gt;
* Milling - The use of a spinning piece of metal to shape an object through calculated removal of a media, normally via an X / Y / Z axis.&lt;br /&gt;
* Manual Data Input (MDI) - A method for doing manual milling with precise control commands.&lt;br /&gt;
* Lathing - The use of a &amp;quot;static&amp;quot; piece of metal to shape an object through calculated removal of a media which is in (usually) a circular motion.&lt;br /&gt;
* [http://www.linuxcnc.org EMC2] - The software used to translate G Code into electrical pulses which can be used by a mill.&lt;br /&gt;
* [http://www.linuxcnc.org/docview/html/gui_axis.html Axis] - The most commonly used graphical user interface with the program EMC2&lt;br /&gt;
&lt;br /&gt;
=== Getting Started ===&lt;br /&gt;
&lt;br /&gt;
To initially get started with the CNC mill, it&#039;s helpful to have a basic grasp of G Code.  How better to get started with this than to begin playing.&lt;br /&gt;
&lt;br /&gt;
==== Turning on the Mill ====&lt;br /&gt;
When turning on the mill there are three primary &amp;quot;light switch&amp;quot; style switches which should be turned on.  The first is on the back of the black box labeled &amp;quot;MicroProto Systems, MicroMill DSLS 3000&amp;quot;.  This switch is located on the back to the right side (imagine reaching around on the rear right).  Flipping the switch &amp;quot;up&amp;quot; should turn this on.&lt;br /&gt;
&lt;br /&gt;
Next, turn on the main control to the spindle.  This is achieved via the light switch on the M3/M5 box.  Turn this to the &amp;quot;on&amp;quot; position (flicking it towards the label M3/M5).&lt;br /&gt;
&lt;br /&gt;
Finally, turn on the spindle on the actual mill.  This is in a blue enameled box residing on the Z axis.  Flip this switch &amp;quot;up&amp;quot;.  If the spindle immediately starts spinning, this is because someone didn&#039;t send the control command to stop it.  This isn&#039;t a problem, but we will want to stop it sooner than later.  We will cover this in the next section.&lt;br /&gt;
&lt;br /&gt;
==== Starting EMC2 ====&lt;br /&gt;
To start, you&#039;ll want to fire up EMC2 with the proper configuration file.  This can be done by using the icon on the desktop or by clicking the corresponding link on the quick launch bar on the top of the screen.&lt;br /&gt;
&lt;br /&gt;
If the mill has been turned on and the right configuration file is used, you will hear the spindle briefly spin up.&lt;br /&gt;
&lt;br /&gt;
Once in EMC2 you&#039;ll need to enable machine control of the mill.  Begin by clicking the large red &amp;quot;X&amp;quot; button on the button toolbar within AXIS. After this button has been pressed, the power button directly beside it should become available to click.  Upon pressing this &amp;quot;power&amp;quot; button, EMC2 / AXIS can be used to send commands to the mill.&lt;br /&gt;
&lt;br /&gt;
==== Making our first motions ====&lt;br /&gt;
&lt;br /&gt;
===== Beginning Manual Control =====&lt;br /&gt;
To start, we&#039;re going to use the &amp;quot;jog&amp;quot; functions to move the milling cutter around and get a feel for what is &amp;quot;positive&amp;quot; and &amp;quot;negative&amp;quot; on the X, Y, &amp;amp; Z axis.&lt;br /&gt;
&lt;br /&gt;
Especially, when starting out, limit motion to the X and Y axis as this has the least potential for damaging our tooling (aka, breaking a bit).  As you get a feel for what&#039;s positive and negative, we will start using larger motions.&lt;br /&gt;
&lt;br /&gt;
To start, hit &amp;quot;F3&amp;quot; on the keyboard to enter fully manual control.  This will present us with a radio button to choose the axis, followed by a &amp;quot;+&amp;quot; and &amp;quot;-&amp;quot; sign to show where our milling cutter will move.  &lt;br /&gt;
&lt;br /&gt;
To start, select the &amp;quot;X&amp;quot; axis and press the positive button.  Next, select the &amp;quot;Y&amp;quot; axis and press the positive button.  As you were moving the milling cutter around, you&#039;ll notice that the coordinates are displayed in the preview window.  This is where you can quickly survey where your tooling is located.  Using these tools, move the mill to the following positions (x,y) - (0,0), (0,1), (1,1).&lt;br /&gt;
&lt;br /&gt;
Next, lets raise the tool a little bit to give ourselves more clearance to put in something to be milled.  Select the Z axis and press the &amp;quot;+&amp;quot; button.  Move the Z axis all the way to &amp;quot;1&amp;quot;.  &lt;br /&gt;
&lt;br /&gt;
At this point, adding our Z axis, our tooling should be located at (1,1,1).&lt;br /&gt;
&lt;br /&gt;
===== Advanced Manual Control - MDI (Manual Data Input) =====&lt;br /&gt;
In AXIS press &amp;quot;F5&amp;quot; and go to the MDI Section.  Within this section we can type in actual G Code to move our tooling around.  To start, we&#039;re going to use simple &amp;quot;go to&amp;quot; commands.  This will rapidly move the tool to the position that we tell it to.  Note, at any time, we can stop the execution of these commands by hitting the &amp;quot;esc&amp;quot; key on the keyboard.  The first command we will use is &amp;quot;rapid go to&amp;quot; or &amp;quot;g0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
To make our first motion, let&#039;s move the X axis to position 0.5.  To do this, enter the command:&lt;br /&gt;
&lt;br /&gt;
  g0 x0.5&lt;br /&gt;
&lt;br /&gt;
The X axis should begin moving.&lt;br /&gt;
&lt;br /&gt;
Additionally, we can give multiple coordinates at once.  Now try the command:&lt;br /&gt;
&lt;br /&gt;
  g0 x0 y0&lt;br /&gt;
&lt;br /&gt;
This should send our tool back to the starting position.  This can make things go much, much faster for resetting back to the position that you started with the mill at.&lt;br /&gt;
&lt;br /&gt;
To have more fine grained control we can use the command &amp;quot;g1&amp;quot;.  There is nothing that G0 does which G1 cannot.  The only difference in syntax is that we specify the feed rate of the motion as the first option.  By default the mill is set to operate in inches per minute.  Thus, unless you change this (via g code) it should be assumed that this will be the unit of measure for your commands.&lt;br /&gt;
&lt;br /&gt;
Lets slowly drop our Z axis back to zero:&lt;br /&gt;
&lt;br /&gt;
  g1 f2 z0&lt;br /&gt;
&lt;br /&gt;
Note, since we were at a position approx 1 inch up and told the mill to return to zero at a rate of F2 or 2 inches per minute, it will take approximately 30 seconds for this command to complete.  Slow movement of the tool (especially when &#039;plunging&#039; the z axis is a good idea as it allows for time to hit the &amp;quot;esc&amp;quot; key if things start going horribly wrong).&lt;br /&gt;
&lt;br /&gt;
Now, let&#039;s build on some of these together:&lt;br /&gt;
&lt;br /&gt;
  g1 f10 x1 y1 z1&lt;br /&gt;
&lt;br /&gt;
Whoops, back to zero:&lt;br /&gt;
&lt;br /&gt;
  g1 f5 x0 y0 z0&lt;br /&gt;
&lt;br /&gt;
When moving back to zero you will see that the mill is moving half of the original speed (5 inches per minute rather than 10 inches per minute).&lt;br /&gt;
&lt;br /&gt;
Let&#039;s really open this thing up and see what it can do.  While watching this command move notice the &amp;quot;vel: &amp;quot; or Velocity property in the preview window.  This will allow you to see the actual speed of the tool.&lt;br /&gt;
&lt;br /&gt;
  g1 f50 x1 y1 z1&lt;br /&gt;
&lt;br /&gt;
Hmm, apparently our steppers max out at ~10.39 inches per minute.  Thus, no matter how much faster we tell them to go, they will never go faster than this.&lt;br /&gt;
&lt;br /&gt;
Linear motion is great and all, but how about we dwell outside the euclidean space for a minute.  The next commands that we are going to learn are G2/G3.  G2 will make a clockwise arc while G3 will make a counterclockwise arc.  The command syntax is as follows:&lt;br /&gt;
&lt;br /&gt;
 *G2 - Command&lt;br /&gt;
 *Fx - Feedrate at X inches per minute&lt;br /&gt;
 *Xv - Destination X coordinate (in this case end at v)&lt;br /&gt;
 *Yw - Destination Y coordinate (in this case end at w)&lt;br /&gt;
 *Ix - X axis center point offset&lt;br /&gt;
 *Jy - Y axis center point offset&lt;br /&gt;
 *Za - Interpolated Z axis coordinate (optional)&lt;br /&gt;
&lt;br /&gt;
To start, lets make a circle:&lt;br /&gt;
&lt;br /&gt;
  g2 f5 x1 y0 i-0.5 j0&lt;br /&gt;
&lt;br /&gt;
Annnnd we fail.  This is because we&#039;ve given junk data to the mill.  Lets try that again making a circle.  Of course, to make a circle, we will want our beginning (1,1,1) to be the same as our destination (1,1,1) only changing the X axis center point offset.&lt;br /&gt;
&lt;br /&gt;
  g2 f5 x1 y1 i-0.5 j0&lt;br /&gt;
&lt;br /&gt;
Fun math bits... run that command again and note the &amp;quot;distance to go&amp;quot; or &amp;quot;DTG&amp;quot; in the preview area.  Note the distance at the immediate start of plotting our 1 inch diameter circle (2 * 0.5 X offset). This should be a predictable [http://en.wikipedia.org/wiki/Pi result]&lt;br /&gt;
&lt;br /&gt;
=== When you&#039;re done ===&lt;br /&gt;
Be a dear and reset the mill back where you started.  Go into MDI mode and run:&lt;br /&gt;
&lt;br /&gt;
  g0 x0y0z0&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
&lt;br /&gt;
=== GCode Tips ===&lt;br /&gt;
&lt;br /&gt;
Jogging the mill is a pain in the ass.  One of the most helpful GCode commands you can use is &amp;quot;go to coordinate&amp;quot;.  To go to an X coordinate &amp;quot;zero&amp;quot; one would use &amp;quot;g0 x0&amp;quot;, similarly to go to y0 one would use &amp;quot;g0 y0&amp;quot;.  This is especially helpful for moving the tooling out of the way to add a new piece to be milled or to make an adjustment.  Subsequently, the tooling can be reset with &amp;quot;g0 x0&amp;quot; &amp;quot;g0 y0&amp;quot; &amp;quot;g0 z0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Config File ===&lt;br /&gt;
&lt;br /&gt;
Redbeard made some changes to the config file including resetting the initial home positions to &amp;quot;0 0 0 0&amp;quot; so that when the application starts up, it will leave the tool exactly where it is placed.  While this isn&#039;t the behaviour we want long term, it&#039;s perfect for our current lack of limit switches.  Additionally, the directive &amp;quot;no_force_homing=1&amp;quot; was added to get rid of pesky error messages (again, since we don&#039;t have limit switches for homing the device.)&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=CNC_Mill&amp;diff=5934</id>
		<title>CNC Mill</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=CNC_Mill&amp;diff=5934"/>
		<updated>2011-11-20T23:35:44Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* Turning on the Mill */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Terms ===&lt;br /&gt;
&lt;br /&gt;
* Computer Numerical Control (CNC) - The ability to control a machine using mathematical commands&lt;br /&gt;
* Computer Aided Design (CAD) - Software which generates a model which a machine can translate into tooling commands for manufacturing.&lt;br /&gt;
* Computer Aided Manufacturing (CAM) - The actual process of production from file to finished product.&lt;br /&gt;
* Tooling/tools - The bits used in a mill to actually&lt;br /&gt;
* Milling - The use of a spinning piece of metal to shape an object through calculated removal of a media, normally via an X / Y / Z axis.&lt;br /&gt;
* Lathing - The use of a &amp;quot;static&amp;quot; piece of metal to shape an object through calculated removal of a media which is in (usually) a circular motion.&lt;br /&gt;
* [[http://www.linuxcnc.org EMC2]] - The software used to translate G Code into electrical pulses which can be used by a mill.&lt;br /&gt;
* [[http://www.linuxcnc.org/docview/html/gui_axis.html Axis]] - The most commonly used graphical user interface with the program EMC2&lt;br /&gt;
&lt;br /&gt;
=== Getting Started ===&lt;br /&gt;
&lt;br /&gt;
To initially get started with the CNC mill, it&#039;s helpful to have a basic grasp of G Code.  How better to get started with this than to begin playing.&lt;br /&gt;
&lt;br /&gt;
==== Turning on the Mill ====&lt;br /&gt;
When turning on the mill there are three primary &amp;quot;light switch&amp;quot; style switches which should be turned on.  The first is on the back of the black box labeled &amp;quot;MicroProto Systems, MicroMill DSLS 3000&amp;quot;.  This switch is located on the back to the right side (imagine reaching around on the rear right).  Flipping the switch &amp;quot;up&amp;quot; should turn this on.&lt;br /&gt;
&lt;br /&gt;
Next, turn on the main control to the spindle.  This is achieved via the light switch on the M3/M5 box.  Turn this to the &amp;quot;on&amp;quot; position (flicking it towards the label M3/M5).&lt;br /&gt;
&lt;br /&gt;
Finally, turn on the spindle on the actual mill.  This is in a blue enameled box residing on the Z axis.  Flip this switch &amp;quot;up&amp;quot;.  If the spindle immediately starts spinning, this is because someone didn&#039;t send the control command to stop it.  This isn&#039;t a problem, but we will want to stop it sooner than later.  We will cover this in the next section.&lt;br /&gt;
&lt;br /&gt;
==== Starting EMC2 ====&lt;br /&gt;
To start, you&#039;ll want to fire up EMC2 with the proper configuration file.  This can be done by using the icon on the desktop or by clicking the corresponding link on the quick launch bar on the top of the screen.&lt;br /&gt;
&lt;br /&gt;
If the mill has been turned on and the right configuration file is used, you will hear the spindle briefly spin up.&lt;br /&gt;
&lt;br /&gt;
Once in EMC2 you&#039;ll need to enable machine control of the mill.  Begin by clicking the large red &amp;quot;X&amp;quot; button on the button toolbar within AXIS. After this button has been pressed, the power button directly beside it should become available to click.  Upon pressing this &amp;quot;power&amp;quot; button, EMC2 / AXIS can be used to send commands to the mill.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== GCode Tips ===&lt;br /&gt;
&lt;br /&gt;
Jogging the mill is a pain in the ass.  One of the most helpful GCode commands you can use is &amp;quot;go to coordinate&amp;quot;.  To go to an X coordinate &amp;quot;zero&amp;quot; one would use &amp;quot;g0 x0&amp;quot;, similarly to go to y0 one would use &amp;quot;g0 y0&amp;quot;.  This is especially helpful for moving the tooling out of the way to add a new piece to be milled or to make an adjustment.  Subsequently, the tooling can be reset with &amp;quot;g0 x0&amp;quot; &amp;quot;g0 y0&amp;quot; &amp;quot;g0 z0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Config File ===&lt;br /&gt;
&lt;br /&gt;
Redbeard made some changes to the config file including resetting the initial home positions to &amp;quot;0 0 0 0&amp;quot; so that when the application starts up, it will leave the tool exactly where it is placed.  While this isn&#039;t the behaviour we want long term, it&#039;s perfect for our current lack of limit switches.  Additionally, the directive &amp;quot;no_force_homing=1&amp;quot; was added to get rid of pesky error messages (again, since we don&#039;t have limit switches for homing the device.)&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=CNC_Mill&amp;diff=5933</id>
		<title>CNC Mill</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=CNC_Mill&amp;diff=5933"/>
		<updated>2011-11-20T23:16:43Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Terms ===&lt;br /&gt;
&lt;br /&gt;
* Computer Numerical Control (CNC) - The ability to control a machine using mathematical commands&lt;br /&gt;
* Computer Aided Design (CAD) - Software which generates a model which a machine can translate into tooling commands for manufacturing.&lt;br /&gt;
* Computer Aided Manufacturing (CAM) - The actual process of production from file to finished product.&lt;br /&gt;
* Tooling/tools - The bits used in a mill to actually&lt;br /&gt;
* Milling - The use of a spinning piece of metal to shape an object through calculated removal of a media, normally via an X / Y / Z axis.&lt;br /&gt;
* Lathing - The use of a &amp;quot;static&amp;quot; piece of metal to shape an object through calculated removal of a media which is in (usually) a circular motion.&lt;br /&gt;
* [[http://www.linuxcnc.org EMC2]] - The software used to translate G Code into electrical pulses which can be used by a mill.&lt;br /&gt;
* [[http://www.linuxcnc.org/docview/html/gui_axis.html Axis]] - The most commonly used graphical user interface with the program EMC2&lt;br /&gt;
&lt;br /&gt;
=== Getting Started ===&lt;br /&gt;
&lt;br /&gt;
To initially get started with the CNC mill, it&#039;s helpful to have a basic grasp of G Code.  How better to get started with this than to begin playing.&lt;br /&gt;
&lt;br /&gt;
==== Turning on the Mill ====&lt;br /&gt;
When turning on the mill there are three primary &amp;quot;light switch&amp;quot; style switches which should be turned on.  The first is on the back of the black box labeled &amp;quot;MicroProto Systems, MicroMill DSLS 3000&amp;quot;.  This switch is located on the back to the right side (imagine reaching around on the rear right).  Flipping the switch &amp;quot;up&amp;quot; should turn this on.&lt;br /&gt;
&lt;br /&gt;
Next, turn on the main control to the spindle.  This is achieved via the light switch on the M3/M5 box &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Starting EMC2 ====&lt;br /&gt;
To start, you&#039;ll want to fire up EMC2 with the proper configuration file.  This can be done by using the icon on the desktop or by clicking the corresponding link on the quick launch bar on the top of the screen.&lt;br /&gt;
&lt;br /&gt;
If the mill has been turned on and the right configuration file is used, you will hear the spindle briefly spin up.&lt;br /&gt;
&lt;br /&gt;
Once in EMC2 you&#039;ll need to enable machine control of the mill.  Begin by clicking the large red &amp;quot;X&amp;quot; button on the button toolbar within AXIS. After this button has been pressed, the power button directly beside it should become available to click.  Upon pressing this &amp;quot;power&amp;quot; button, EMC2 / AXIS can be used to send commands to the mill.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== GCode Tips ===&lt;br /&gt;
&lt;br /&gt;
Jogging the mill is a pain in the ass.  One of the most helpful GCode commands you can use is &amp;quot;go to coordinate&amp;quot;.  To go to an X coordinate &amp;quot;zero&amp;quot; one would use &amp;quot;g0 x0&amp;quot;, similarly to go to y0 one would use &amp;quot;g0 y0&amp;quot;.  This is especially helpful for moving the tooling out of the way to add a new piece to be milled or to make an adjustment.  Subsequently, the tooling can be reset with &amp;quot;g0 x0&amp;quot; &amp;quot;g0 y0&amp;quot; &amp;quot;g0 z0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Config File ===&lt;br /&gt;
&lt;br /&gt;
Redbeard made some changes to the config file including resetting the initial home positions to &amp;quot;0 0 0 0&amp;quot; so that when the application starts up, it will leave the tool exactly where it is placed.  While this isn&#039;t the behaviour we want long term, it&#039;s perfect for our current lack of limit switches.  Additionally, the directive &amp;quot;no_force_homing=1&amp;quot; was added to get rid of pesky error messages (again, since we don&#039;t have limit switches for homing the device.)&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=CNC_Mill&amp;diff=5932</id>
		<title>CNC Mill</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=CNC_Mill&amp;diff=5932"/>
		<updated>2011-11-20T23:13:15Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: continued update to documentation.  added glossary and beginning information on firing up EMC2&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Terms ===&lt;br /&gt;
&lt;br /&gt;
* Computer Numerical Control (CNC) - The ability to control a machine using mathematical commands&lt;br /&gt;
* Computer Aided Design (CAD) - Software which generates a model which a machine can translate into tooling commands for manufacturing.&lt;br /&gt;
* Computer Aided Manufacturing (CAM) - The actual process of production from file to finished product.&lt;br /&gt;
* Tooling/tools - The bits used in a mill to actually&lt;br /&gt;
* Milling - The use of a spinning piece of metal to shape an object through calculated removal of a media, normally via an X / Y / Z axis.&lt;br /&gt;
* Lathing - The use of a &amp;quot;static&amp;quot; piece of metal to shape an object through calculated removal of a media which is in (usually) a circular motion.&lt;br /&gt;
* [[http://www.linuxcnc.org EMC2]] - The software used to translate G Code into electrical pulses which can be used by a mill.&lt;br /&gt;
* [[http://www.linuxcnc.org/docview/html/gui_axis.html Axis]] - The most commonly used graphical user interface with the program EMC2&lt;br /&gt;
&lt;br /&gt;
=== Getting Started ===&lt;br /&gt;
&lt;br /&gt;
To initially get started with the CNC mill, it&#039;s helpful to have a basic grasp of G Code.  How better to get started with this than to begin playing.&lt;br /&gt;
&lt;br /&gt;
To start, you&#039;ll want to fire up EMC2 with the proper configuration file.  This can be done by using the icon on the desktop or by clicking the corresponding link on the quick launch bar on the top of the screen.&lt;br /&gt;
&lt;br /&gt;
If the mill has been turned on and the right configuration file is used, you will hear the spindle briefly spin up.&lt;br /&gt;
&lt;br /&gt;
Once in EMC2 you&#039;ll need to enable machine control of the mill.  Begin by clicking the large red &amp;quot;X&amp;quot; button on the button toolbar within AXIS. After this button has been pressed, the power button directly beside it should become available to click.  Upon pressing this &amp;quot;power&amp;quot; button, EMC2 / AXIS can be used to send commands to the mill.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== GCode Tips ===&lt;br /&gt;
&lt;br /&gt;
Jogging the mill is a pain in the ass.  One of the most helpful GCode commands you can use is &amp;quot;go to coordinate&amp;quot;.  To go to an X coordinate &amp;quot;zero&amp;quot; one would use &amp;quot;g0 x0&amp;quot;, similarly to go to y0 one would use &amp;quot;g0 y0&amp;quot;.  This is especially helpful for moving the tooling out of the way to add a new piece to be milled or to make an adjustment.  Subsequently, the tooling can be reset with &amp;quot;g0 x0&amp;quot; &amp;quot;g0 y0&amp;quot; &amp;quot;g0 z0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Config File ===&lt;br /&gt;
&lt;br /&gt;
Redbeard made some changes to the config file including resetting the initial home positions to &amp;quot;0 0 0 0&amp;quot; so that when the application starts up, it will leave the tool exactly where it is placed.  While this isn&#039;t the behaviour we want long term, it&#039;s perfect for our current lack of limit switches.  Additionally, the directive &amp;quot;no_force_homing=1&amp;quot; was added to get rid of pesky error messages (again, since we don&#039;t have limit switches for homing the device.)&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=CNC_Mill&amp;diff=5931</id>
		<title>CNC Mill</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=CNC_Mill&amp;diff=5931"/>
		<updated>2011-11-20T23:05:17Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* Getting Started */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Getting Started ===&lt;br /&gt;
&lt;br /&gt;
To initially get started with the CNC mill, it&#039;s helpful to have a basic grasp of G Code.  How better to get started with this than to begin playing.&lt;br /&gt;
&lt;br /&gt;
To start, you&#039;ll want to fire up EMC2 with the proper configuration file.  This can be done by using the icon on the desktop or by clicking the corresponding link on the quick launch bar on the top of the screen.&lt;br /&gt;
&lt;br /&gt;
If the mill has been turned on and the right configuration file is used, you will hear the spindle briefly spin up.&lt;br /&gt;
&lt;br /&gt;
Once in EMC2 you&#039;ll need to enable machine control of the mill.  Begin by clicking the large red &amp;quot;X&amp;quot; button on the button toolbar within AXIS. After this button has been pressed, the power button directly beside it should become available to click.  Upon pressing this &amp;quot;power&amp;quot; button, EMC2 / AXIS can be used to send commands to the mill.&lt;br /&gt;
&lt;br /&gt;
=== Terms ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== GCode Tips ===&lt;br /&gt;
&lt;br /&gt;
Jogging the mill is a pain in the ass.  One of the most helpful GCode commands you can use is &amp;quot;go to coordinate&amp;quot;.  To go to an X coordinate &amp;quot;zero&amp;quot; one would use &amp;quot;g0 x0&amp;quot;, similarly to go to y0 one would use &amp;quot;g0 y0&amp;quot;.  This is especially helpful for moving the tooling out of the way to add a new piece to be milled or to make an adjustment.  Subsequently, the tooling can be reset with &amp;quot;g0 x0&amp;quot; &amp;quot;g0 y0&amp;quot; &amp;quot;g0 z0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Config File ===&lt;br /&gt;
&lt;br /&gt;
Redbeard made some changes to the config file including resetting the initial home positions to &amp;quot;0 0 0 0&amp;quot; so that when the application starts up, it will leave the tool exactly where it is placed.  While this isn&#039;t the behaviour we want long term, it&#039;s perfect for our current lack of limit switches.  Additionally, the directive &amp;quot;no_force_homing=1&amp;quot; was added to get rid of pesky error messages (again, since we don&#039;t have limit switches for homing the device.)&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=CNC_Mill&amp;diff=5922</id>
		<title>CNC Mill</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=CNC_Mill&amp;diff=5922"/>
		<updated>2011-11-16T05:20:15Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: Created page with &amp;quot;=== Getting Started ===     === Terms ===   === GCode Tips ===  Jogging the mill is a pain in the ass.  One of the most helpful GCode commands you can use is &amp;quot;go to coordinate&amp;quot;. ...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Getting Started ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Terms ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== GCode Tips ===&lt;br /&gt;
&lt;br /&gt;
Jogging the mill is a pain in the ass.  One of the most helpful GCode commands you can use is &amp;quot;go to coordinate&amp;quot;.  To go to an X coordinate &amp;quot;zero&amp;quot; one would use &amp;quot;g0 x0&amp;quot;, similarly to go to y0 one would use &amp;quot;g0 y0&amp;quot;.  This is especially helpful for moving the tooling out of the way to add a new piece to be milled or to make an adjustment.  Subsequently, the tooling can be reset with &amp;quot;g0 x0&amp;quot; &amp;quot;g0 y0&amp;quot; &amp;quot;g0 z0&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Config File ===&lt;br /&gt;
&lt;br /&gt;
Redbeard made some changes to the config file including resetting the initial home positions to &amp;quot;0 0 0 0&amp;quot; so that when the application starts up, it will leave the tool exactly where it is placed.  While this isn&#039;t the behaviour we want long term, it&#039;s perfect for our current lack of limit switches.  Additionally, the directive &amp;quot;no_force_homing=1&amp;quot; was added to get rid of pesky error messages (again, since we don&#039;t have limit switches for homing the device.)&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5890</id>
		<title>Regular Member Meeting 2011 11 08</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5890"/>
		<updated>2011-11-09T01:48:41Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* Adjournment */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011-11-08 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 8, 2011&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at 19:55 by: Redbeard&lt;br /&gt;
&lt;br /&gt;
Members Present: Martin, Phil, Todd, Toast, Tim S., Adam, Brad, Dan Barlow, Daniel Watson, Maxwell, Jamie, Emily, Alex, Redbeard&lt;br /&gt;
&lt;br /&gt;
Others Present: Mike, Nadir&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? yes&lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
[[Regular Member Meeting 2011 10 11]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
End of the year, so that means we need to beg for money.  Do it.&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
One big thing: Before Elliot left, we were in communications with Viz arts in Rockville (trying to make a makerspace for young ladies, 5th grade-ish).  Viz arts have subsequently followed up and Brad will be teach classes there on the condition of co-branding and a cut of some grant money.  He wants to show up to a Microcontroller Monday and record a Kickstarter video as a plea for money (Arduinos, gear, etc).  Members interested in participating would be appreciated.  Brad will be doing drop in Arduino sessions to teach about basic electronics and getting started.  Will be 10 wk class to teach processing and hardware interaction.  Current lab is 8 Mac Pros and some Macbook pros.  They are set as far as a standardized lab, but are lacking in traditional &amp;quot;maker&amp;quot; gear (o-scopes, soldering irons, etc).&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report (Tim Slagle) ===&lt;br /&gt;
&lt;br /&gt;
Here is the October 2011 financial summary: [[file:HacDC_Financials_Oct_2011.pdf]]&lt;br /&gt;
&lt;br /&gt;
October was good to HacDC, we finished ahead more than $500 due to increased membership revenue, additional member donations, and a generous one-time donation from Stephen Beuttel (thanks!)  We added three membership subscriptions in October: Maxwell Whitaker, Mike Chelen (who didn&#039;t yet get voted in as a member), and Nicholas Stoler.  Jeremy Bruestle dropped because he moved out of the area, and we had one non-paying member.&lt;br /&gt;
&lt;br /&gt;
I&#039;d still like to add more members - 60 would be a good goal.  Then our expenses would be met by member dues, people wouldn&#039;t need to keep contributing extra (unless they wanted to!), and any additional money that came in through class and event donations could go to funding some projects.&lt;br /&gt;
&lt;br /&gt;
Our DC corporate status was restored once we recreated the paperwork and sent them proof of payment.&lt;br /&gt;
&lt;br /&gt;
I called PayPal and got us activated with their non-profit program, so we are paying 2.2% instead of 2.9% (plus $0.30 per transaction).  This will save us ~$20/mo in fees.&lt;br /&gt;
&lt;br /&gt;
Our change of DC Registered Agent paperwork is filled out and can be submitted once signed by the appropriate directors.&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
DOA / N/A&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== Toast ====&lt;br /&gt;
&lt;br /&gt;
Not much to report… Went to Smithsonian and got awesome.  Looking to swap out Mario cabinet in the space for a different cabinet which is being donated soon.  Need help moving the cabinet.&lt;br /&gt;
&lt;br /&gt;
==== Vacant (election today!) ====&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
Jamie - Slacking on migrating the mailing list, will try to finish by thxgvng.  FredHack (Fredricksburg, VA) has some metalworking gear (described as &amp;quot;big&amp;quot;) and will let us use it.  Owner of metalworking gear owns a large tract of land.  He has invited us to come play with things requiring open space.  Has extra hackerspace passports and is looking to unload them.&lt;br /&gt;
&lt;br /&gt;
Brad - Back in the day we used to do lightning talks.  Brad will spearhead them.  December or New Year as a timeline. (Phil: Can we find a previous speakers list that Daniel P. kept?)&lt;br /&gt;
&lt;br /&gt;
Tim S. - Went with Alberto to Fab Lab open house.  Space is on North Capitol near NY Ave Metro.  Have space but no/very little gear.  Space is owned by Phyllis&#039; (Executive Director&#039;s) husband.  Open house runs through Thursday as a part of DC week (10:30 am - 3:00pm).  Were there for hours but no one else showed up.  They have a Prusa Mendel (3d printer).  It&#039;s not a part of the Fab Lab cannon.  Additionally, they have some chinese 3d printers.&lt;br /&gt;
&lt;br /&gt;
Dan B. - The 4axis mill that Martin recovered has been set up with a laptop and were able to mill out a torus.  If anyone can produce black &amp;amp; white photos to turn into pipefields / g-code we&#039;re ready for manufacturing.  Dan suspects there is an SVG to G-Code filter.  (Martin: Smithsonian is donating software for the mill, we will need to acquire dongle.)  Mention the type of things you want to make on the blabber list. Engraving text, making machine front panels, creating 3d objects, all take different skill sets/coding jams.  This is controlled via EMC.&lt;br /&gt;
&lt;br /&gt;
Martin - Access control stuff is in it&#039;s death throes.  We&#039;re almost done and soon to be paid/credited.&lt;br /&gt;
&lt;br /&gt;
Toast - Quick note on the smithsonian - they have a huge facility out in landover.  They have 3 gymnasiums worth of gear with no one to use it. By volunteering at the &amp;quot;Office of Exhibit Central&amp;quot;, we can possibly gain access to it. (Phil is interested)&lt;br /&gt;
&lt;br /&gt;
Jamie (2) - 757 Labs has a working Laser cutter&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
Election for Director-At-Large position.&lt;br /&gt;
&lt;br /&gt;
Candidates:&lt;br /&gt;
*Martin - Toast nominates, Dan seconds. (Martin wins unopposed)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Yearly Member meeting&lt;br /&gt;
* Yearly meeting is proposed as Wednesday Feb 15th (Tim S.), Maxwell Seconds. Monthly meeting will piggyback on this.  Vote carries unanimously. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
AND SPEAKING OF THE IRS.......&lt;br /&gt;
&lt;br /&gt;
Tim S. was perusing the bylaws and supposedly we need two folks (not on the board) to audit our books.  We should ensure that happens.&lt;br /&gt;
&lt;br /&gt;
== New Members ==&lt;br /&gt;
&lt;br /&gt;
Mike C. - Works as a web developer and data analyst with a background in science and sharing of data.  Looking to expand sharing of datasets in similar fashion as open source software.  Brad Nominates, Dan B. second. Vote passes unanimously.&lt;br /&gt;
&lt;br /&gt;
Nadir - Originally from SF area.  Been here since 2005.  Worked as SE for Raytheon working on guidance systems and has been working in the field of financial analysis.  Has been here a few times and liked it and kept coming back.  Dan nominates, Brad seconds.  Vote passes unanimously.&lt;br /&gt;
&lt;br /&gt;
Alan - Would like to re-instate membership. Redbeard &amp;amp; Toast vouch for him. Todd nominates, Maxwell seconds. Vote passes unanimously.&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at: 20:48&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5889</id>
		<title>Regular Member Meeting 2011 11 08</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5889"/>
		<updated>2011-11-09T01:47:24Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* New Members */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011-11-08 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 8, 2011&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at 19:55 by: Redbeard&lt;br /&gt;
&lt;br /&gt;
Members Present: Martin, Phil, Todd, Toast, Tim S., Adam, Brad, Dan Barlow, Daniel Watson, Maxwell, Jamie, Emily, Alex, Redbeard&lt;br /&gt;
&lt;br /&gt;
Others Present: Mike, Nadir&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? yes&lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
[[Regular Member Meeting 2011 10 11]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
End of the year, so that means we need to beg for money.  Do it.&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
One big thing: Before Elliot left, we were in communications with Viz arts in Rockville (trying to make a makerspace for young ladies, 5th grade-ish).  Viz arts have subsequently followed up and Brad will be teach classes there on the condition of co-branding and a cut of some grant money.  He wants to show up to a Microcontroller Monday and record a Kickstarter video as a plea for money (Arduinos, gear, etc).  Members interested in participating would be appreciated.  Brad will be doing drop in Arduino sessions to teach about basic electronics and getting started.  Will be 10 wk class to teach processing and hardware interaction.  Current lab is 8 Mac Pros and some Macbook pros.  They are set as far as a standardized lab, but are lacking in traditional &amp;quot;maker&amp;quot; gear (o-scopes, soldering irons, etc).&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report (Tim Slagle) ===&lt;br /&gt;
&lt;br /&gt;
Here is the October 2011 financial summary: [[file:HacDC_Financials_Oct_2011.pdf]]&lt;br /&gt;
&lt;br /&gt;
October was good to HacDC, we finished ahead more than $500 due to increased membership revenue, additional member donations, and a generous one-time donation from Stephen Beuttel (thanks!)  We added three membership subscriptions in October: Maxwell Whitaker, Mike Chelen (who didn&#039;t yet get voted in as a member), and Nicholas Stoler.  Jeremy Bruestle dropped because he moved out of the area, and we had one non-paying member.&lt;br /&gt;
&lt;br /&gt;
I&#039;d still like to add more members - 60 would be a good goal.  Then our expenses would be met by member dues, people wouldn&#039;t need to keep contributing extra (unless they wanted to!), and any additional money that came in through class and event donations could go to funding some projects.&lt;br /&gt;
&lt;br /&gt;
Our DC corporate status was restored once we recreated the paperwork and sent them proof of payment.&lt;br /&gt;
&lt;br /&gt;
I called PayPal and got us activated with their non-profit program, so we are paying 2.2% instead of 2.9% (plus $0.30 per transaction).  This will save us ~$20/mo in fees.&lt;br /&gt;
&lt;br /&gt;
Our change of DC Registered Agent paperwork is filled out and can be submitted once signed by the appropriate directors.&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
DOA / N/A&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== Toast ====&lt;br /&gt;
&lt;br /&gt;
Not much to report… Went to Smithsonian and got awesome.  Looking to swap out Mario cabinet in the space for a different cabinet which is being donated soon.  Need help moving the cabinet.&lt;br /&gt;
&lt;br /&gt;
==== Vacant (election today!) ====&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
Jamie - Slacking on migrating the mailing list, will try to finish by thxgvng.  FredHack (Fredricksburg, VA) has some metalworking gear (described as &amp;quot;big&amp;quot;) and will let us use it.  Owner of metalworking gear owns a large tract of land.  He has invited us to come play with things requiring open space.  Has extra hackerspace passports and is looking to unload them.&lt;br /&gt;
&lt;br /&gt;
Brad - Back in the day we used to do lightning talks.  Brad will spearhead them.  December or New Year as a timeline. (Phil: Can we find a previous speakers list that Daniel P. kept?)&lt;br /&gt;
&lt;br /&gt;
Tim S. - Went with Alberto to Fab Lab open house.  Space is on North Capitol near NY Ave Metro.  Have space but no/very little gear.  Space is owned by Phyllis&#039; (Executive Director&#039;s) husband.  Open house runs through Thursday as a part of DC week (10:30 am - 3:00pm).  Were there for hours but no one else showed up.  They have a Prusa Mendel (3d printer).  It&#039;s not a part of the Fab Lab cannon.  Additionally, they have some chinese 3d printers.&lt;br /&gt;
&lt;br /&gt;
Dan B. - The 4axis mill that Martin recovered has been set up with a laptop and were able to mill out a torus.  If anyone can produce black &amp;amp; white photos to turn into pipefields / g-code we&#039;re ready for manufacturing.  Dan suspects there is an SVG to G-Code filter.  (Martin: Smithsonian is donating software for the mill, we will need to acquire dongle.)  Mention the type of things you want to make on the blabber list. Engraving text, making machine front panels, creating 3d objects, all take different skill sets/coding jams.  This is controlled via EMC.&lt;br /&gt;
&lt;br /&gt;
Martin - Access control stuff is in it&#039;s death throes.  We&#039;re almost done and soon to be paid/credited.&lt;br /&gt;
&lt;br /&gt;
Toast - Quick note on the smithsonian - they have a huge facility out in landover.  They have 3 gymnasiums worth of gear with no one to use it. By volunteering at the &amp;quot;Office of Exhibit Central&amp;quot;, we can possibly gain access to it. (Phil is interested)&lt;br /&gt;
&lt;br /&gt;
Jamie (2) - 757 Labs has a working Laser cutter&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
Election for Director-At-Large position.&lt;br /&gt;
&lt;br /&gt;
Candidates:&lt;br /&gt;
*Martin - Toast nominates, Dan seconds. (Martin wins unopposed)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Yearly Member meeting&lt;br /&gt;
* Yearly meeting is proposed as Wednesday Feb 15th (Tim S.), Maxwell Seconds. Monthly meeting will piggyback on this.  Vote carries unanimously. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
AND SPEAKING OF THE IRS.......&lt;br /&gt;
&lt;br /&gt;
Tim S. was perusing the bylaws and supposedly we need two folks (not on the board) to audit our books.  We should ensure that happens.&lt;br /&gt;
&lt;br /&gt;
== New Members ==&lt;br /&gt;
&lt;br /&gt;
Mike C. - Works as a web developer and data analyst with a background in science and sharing of data.  Looking to expand sharing of datasets in similar fashion as open source software.  Brad Nominates, Dan B. second. Vote passes unanimously.&lt;br /&gt;
&lt;br /&gt;
Nadir - Originally from SF area.  Been here since 2005.  Worked as SE for Raytheon working on guidance systems and has been working in the field of financial analysis.  Has been here a few times and liked it and kept coming back.  Dan nominates, Brad seconds.  Vote passes unanimously.&lt;br /&gt;
&lt;br /&gt;
Alan - Would like to re-instate membership. Redbeard &amp;amp; Toast vouch for him. Todd nominates, Maxwell seconds. Vote passes unanimously.&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at: x:xx&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5888</id>
		<title>Regular Member Meeting 2011 11 08</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5888"/>
		<updated>2011-11-09T01:41:57Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* New Business */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011-11-08 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 8, 2011&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at 19:55 by: Redbeard&lt;br /&gt;
&lt;br /&gt;
Members Present: Martin, Phil, Todd, Toast, Tim S., Adam, Brad, Dan Barlow, Daniel Watson, Maxwell, Jamie, Emily, Alex, Redbeard&lt;br /&gt;
&lt;br /&gt;
Others Present: Mike, Nadir&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? yes&lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
[[Regular Member Meeting 2011 10 11]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
End of the year, so that means we need to beg for money.  Do it.&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
One big thing: Before Elliot left, we were in communications with Viz arts in Rockville (trying to make a makerspace for young ladies, 5th grade-ish).  Viz arts have subsequently followed up and Brad will be teach classes there on the condition of co-branding and a cut of some grant money.  He wants to show up to a Microcontroller Monday and record a Kickstarter video as a plea for money (Arduinos, gear, etc).  Members interested in participating would be appreciated.  Brad will be doing drop in Arduino sessions to teach about basic electronics and getting started.  Will be 10 wk class to teach processing and hardware interaction.  Current lab is 8 Mac Pros and some Macbook pros.  They are set as far as a standardized lab, but are lacking in traditional &amp;quot;maker&amp;quot; gear (o-scopes, soldering irons, etc).&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report (Tim Slagle) ===&lt;br /&gt;
&lt;br /&gt;
Here is the October 2011 financial summary: [[file:HacDC_Financials_Oct_2011.pdf]]&lt;br /&gt;
&lt;br /&gt;
October was good to HacDC, we finished ahead more than $500 due to increased membership revenue, additional member donations, and a generous one-time donation from Stephen Beuttel (thanks!)  We added three membership subscriptions in October: Maxwell Whitaker, Mike Chelen (who didn&#039;t yet get voted in as a member), and Nicholas Stoler.  Jeremy Bruestle dropped because he moved out of the area, and we had one non-paying member.&lt;br /&gt;
&lt;br /&gt;
I&#039;d still like to add more members - 60 would be a good goal.  Then our expenses would be met by member dues, people wouldn&#039;t need to keep contributing extra (unless they wanted to!), and any additional money that came in through class and event donations could go to funding some projects.&lt;br /&gt;
&lt;br /&gt;
Our DC corporate status was restored once we recreated the paperwork and sent them proof of payment.&lt;br /&gt;
&lt;br /&gt;
I called PayPal and got us activated with their non-profit program, so we are paying 2.2% instead of 2.9% (plus $0.30 per transaction).  This will save us ~$20/mo in fees.&lt;br /&gt;
&lt;br /&gt;
Our change of DC Registered Agent paperwork is filled out and can be submitted once signed by the appropriate directors.&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
DOA / N/A&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== Toast ====&lt;br /&gt;
&lt;br /&gt;
Not much to report… Went to Smithsonian and got awesome.  Looking to swap out Mario cabinet in the space for a different cabinet which is being donated soon.  Need help moving the cabinet.&lt;br /&gt;
&lt;br /&gt;
==== Vacant (election today!) ====&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
Jamie - Slacking on migrating the mailing list, will try to finish by thxgvng.  FredHack (Fredricksburg, VA) has some metalworking gear (described as &amp;quot;big&amp;quot;) and will let us use it.  Owner of metalworking gear owns a large tract of land.  He has invited us to come play with things requiring open space.  Has extra hackerspace passports and is looking to unload them.&lt;br /&gt;
&lt;br /&gt;
Brad - Back in the day we used to do lightning talks.  Brad will spearhead them.  December or New Year as a timeline. (Phil: Can we find a previous speakers list that Daniel P. kept?)&lt;br /&gt;
&lt;br /&gt;
Tim S. - Went with Alberto to Fab Lab open house.  Space is on North Capitol near NY Ave Metro.  Have space but no/very little gear.  Space is owned by Phyllis&#039; (Executive Director&#039;s) husband.  Open house runs through Thursday as a part of DC week (10:30 am - 3:00pm).  Were there for hours but no one else showed up.  They have a Prusa Mendel (3d printer).  It&#039;s not a part of the Fab Lab cannon.  Additionally, they have some chinese 3d printers.&lt;br /&gt;
&lt;br /&gt;
Dan B. - The 4axis mill that Martin recovered has been set up with a laptop and were able to mill out a torus.  If anyone can produce black &amp;amp; white photos to turn into pipefields / g-code we&#039;re ready for manufacturing.  Dan suspects there is an SVG to G-Code filter.  (Martin: Smithsonian is donating software for the mill, we will need to acquire dongle.)  Mention the type of things you want to make on the blabber list. Engraving text, making machine front panels, creating 3d objects, all take different skill sets/coding jams.  This is controlled via EMC.&lt;br /&gt;
&lt;br /&gt;
Martin - Access control stuff is in it&#039;s death throes.  We&#039;re almost done and soon to be paid/credited.&lt;br /&gt;
&lt;br /&gt;
Toast - Quick note on the smithsonian - they have a huge facility out in landover.  They have 3 gymnasiums worth of gear with no one to use it. By volunteering at the &amp;quot;Office of Exhibit Central&amp;quot;, we can possibly gain access to it. (Phil is interested)&lt;br /&gt;
&lt;br /&gt;
Jamie (2) - 757 Labs has a working Laser cutter&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
Election for Director-At-Large position.&lt;br /&gt;
&lt;br /&gt;
Candidates:&lt;br /&gt;
*Martin - Toast nominates, Dan seconds. (Martin wins unopposed)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Yearly Member meeting&lt;br /&gt;
* Yearly meeting is proposed as Wednesday Feb 15th (Tim S.), Maxwell Seconds. Monthly meeting will piggyback on this.  Vote carries unanimously. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
AND SPEAKING OF THE IRS.......&lt;br /&gt;
&lt;br /&gt;
Tim S. was perusing the bylaws and supposedly we need two folks (not on the board) to audit our books.  We should ensure that happens.&lt;br /&gt;
&lt;br /&gt;
== New Members ==&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at: x:xx&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5887</id>
		<title>Regular Member Meeting 2011 11 08</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5887"/>
		<updated>2011-11-09T01:36:46Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* New Business */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011-11-08 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 8, 2011&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at 19:55 by: Redbeard&lt;br /&gt;
&lt;br /&gt;
Members Present: Martin, Phil, Todd, Toast, Tim S., Adam, Brad, Dan Barlow, Daniel Watson, Maxwell, Jamie, Emily, Alex, Redbeard&lt;br /&gt;
&lt;br /&gt;
Others Present: Mike, Nadir&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? yes&lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
[[Regular Member Meeting 2011 10 11]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
End of the year, so that means we need to beg for money.  Do it.&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
One big thing: Before Elliot left, we were in communications with Viz arts in Rockville (trying to make a makerspace for young ladies, 5th grade-ish).  Viz arts have subsequently followed up and Brad will be teach classes there on the condition of co-branding and a cut of some grant money.  He wants to show up to a Microcontroller Monday and record a Kickstarter video as a plea for money (Arduinos, gear, etc).  Members interested in participating would be appreciated.  Brad will be doing drop in Arduino sessions to teach about basic electronics and getting started.  Will be 10 wk class to teach processing and hardware interaction.  Current lab is 8 Mac Pros and some Macbook pros.  They are set as far as a standardized lab, but are lacking in traditional &amp;quot;maker&amp;quot; gear (o-scopes, soldering irons, etc).&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report (Tim Slagle) ===&lt;br /&gt;
&lt;br /&gt;
Here is the October 2011 financial summary: [[file:HacDC_Financials_Oct_2011.pdf]]&lt;br /&gt;
&lt;br /&gt;
October was good to HacDC, we finished ahead more than $500 due to increased membership revenue, additional member donations, and a generous one-time donation from Stephen Beuttel (thanks!)  We added three membership subscriptions in October: Maxwell Whitaker, Mike Chelen (who didn&#039;t yet get voted in as a member), and Nicholas Stoler.  Jeremy Bruestle dropped because he moved out of the area, and we had one non-paying member.&lt;br /&gt;
&lt;br /&gt;
I&#039;d still like to add more members - 60 would be a good goal.  Then our expenses would be met by member dues, people wouldn&#039;t need to keep contributing extra (unless they wanted to!), and any additional money that came in through class and event donations could go to funding some projects.&lt;br /&gt;
&lt;br /&gt;
Our DC corporate status was restored once we recreated the paperwork and sent them proof of payment.&lt;br /&gt;
&lt;br /&gt;
I called PayPal and got us activated with their non-profit program, so we are paying 2.2% instead of 2.9% (plus $0.30 per transaction).  This will save us ~$20/mo in fees.&lt;br /&gt;
&lt;br /&gt;
Our change of DC Registered Agent paperwork is filled out and can be submitted once signed by the appropriate directors.&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
DOA / N/A&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== Toast ====&lt;br /&gt;
&lt;br /&gt;
Not much to report… Went to Smithsonian and got awesome.  Looking to swap out Mario cabinet in the space for a different cabinet which is being donated soon.  Need help moving the cabinet.&lt;br /&gt;
&lt;br /&gt;
==== Vacant (election today!) ====&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
Jamie - Slacking on migrating the mailing list, will try to finish by thxgvng.  FredHack (Fredricksburg, VA) has some metalworking gear (described as &amp;quot;big&amp;quot;) and will let us use it.  Owner of metalworking gear owns a large tract of land.  He has invited us to come play with things requiring open space.  Has extra hackerspace passports and is looking to unload them.&lt;br /&gt;
&lt;br /&gt;
Brad - Back in the day we used to do lightning talks.  Brad will spearhead them.  December or New Year as a timeline. (Phil: Can we find a previous speakers list that Daniel P. kept?)&lt;br /&gt;
&lt;br /&gt;
Tim S. - Went with Alberto to Fab Lab open house.  Space is on North Capitol near NY Ave Metro.  Have space but no/very little gear.  Space is owned by Phyllis&#039; (Executive Director&#039;s) husband.  Open house runs through Thursday as a part of DC week (10:30 am - 3:00pm).  Were there for hours but no one else showed up.  They have a Prusa Mendel (3d printer).  It&#039;s not a part of the Fab Lab cannon.  Additionally, they have some chinese 3d printers.&lt;br /&gt;
&lt;br /&gt;
Dan B. - The 4axis mill that Martin recovered has been set up with a laptop and were able to mill out a torus.  If anyone can produce black &amp;amp; white photos to turn into pipefields / g-code we&#039;re ready for manufacturing.  Dan suspects there is an SVG to G-Code filter.  (Martin: Smithsonian is donating software for the mill, we will need to acquire dongle.)  Mention the type of things you want to make on the blabber list. Engraving text, making machine front panels, creating 3d objects, all take different skill sets/coding jams.  This is controlled via EMC.&lt;br /&gt;
&lt;br /&gt;
Martin - Access control stuff is in it&#039;s death throes.  We&#039;re almost done and soon to be paid/credited.&lt;br /&gt;
&lt;br /&gt;
Toast - Quick note on the smithsonian - they have a huge facility out in landover.  They have 3 gymnasiums worth of gear with no one to use it. By volunteering at the &amp;quot;Office of Exhibit Central&amp;quot;, we can possibly gain access to it. (Phil is interested)&lt;br /&gt;
&lt;br /&gt;
Jamie (2) - 757 Labs has a working Laser cutter&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
Election for Director-At-Large position.&lt;br /&gt;
&lt;br /&gt;
Candidates:&lt;br /&gt;
*Martin - Toast nominates, Dan seconds. (Martin wins unopposed)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Yearly Member meeting&lt;br /&gt;
&lt;br /&gt;
== New Members ==&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at: x:xx&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5886</id>
		<title>Regular Member Meeting 2011 11 08</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5886"/>
		<updated>2011-11-09T01:36:05Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* New Business */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011-11-08 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 8, 2011&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at 19:55 by: Redbeard&lt;br /&gt;
&lt;br /&gt;
Members Present: Martin, Phil, Todd, Toast, Tim S., Adam, Brad, Dan Barlow, Daniel Watson, Maxwell, Jamie, Emily, Alex, Redbeard&lt;br /&gt;
&lt;br /&gt;
Others Present: Mike, Nadir&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? yes&lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
[[Regular Member Meeting 2011 10 11]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
End of the year, so that means we need to beg for money.  Do it.&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
One big thing: Before Elliot left, we were in communications with Viz arts in Rockville (trying to make a makerspace for young ladies, 5th grade-ish).  Viz arts have subsequently followed up and Brad will be teach classes there on the condition of co-branding and a cut of some grant money.  He wants to show up to a Microcontroller Monday and record a Kickstarter video as a plea for money (Arduinos, gear, etc).  Members interested in participating would be appreciated.  Brad will be doing drop in Arduino sessions to teach about basic electronics and getting started.  Will be 10 wk class to teach processing and hardware interaction.  Current lab is 8 Mac Pros and some Macbook pros.  They are set as far as a standardized lab, but are lacking in traditional &amp;quot;maker&amp;quot; gear (o-scopes, soldering irons, etc).&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report (Tim Slagle) ===&lt;br /&gt;
&lt;br /&gt;
Here is the October 2011 financial summary: [[file:HacDC_Financials_Oct_2011.pdf]]&lt;br /&gt;
&lt;br /&gt;
October was good to HacDC, we finished ahead more than $500 due to increased membership revenue, additional member donations, and a generous one-time donation from Stephen Beuttel (thanks!)  We added three membership subscriptions in October: Maxwell Whitaker, Mike Chelen (who didn&#039;t yet get voted in as a member), and Nicholas Stoler.  Jeremy Bruestle dropped because he moved out of the area, and we had one non-paying member.&lt;br /&gt;
&lt;br /&gt;
I&#039;d still like to add more members - 60 would be a good goal.  Then our expenses would be met by member dues, people wouldn&#039;t need to keep contributing extra (unless they wanted to!), and any additional money that came in through class and event donations could go to funding some projects.&lt;br /&gt;
&lt;br /&gt;
Our DC corporate status was restored once we recreated the paperwork and sent them proof of payment.&lt;br /&gt;
&lt;br /&gt;
I called PayPal and got us activated with their non-profit program, so we are paying 2.2% instead of 2.9% (plus $0.30 per transaction).  This will save us ~$20/mo in fees.&lt;br /&gt;
&lt;br /&gt;
Our change of DC Registered Agent paperwork is filled out and can be submitted once signed by the appropriate directors.&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
DOA / N/A&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== Toast ====&lt;br /&gt;
&lt;br /&gt;
Not much to report… Went to Smithsonian and got awesome.  Looking to swap out Mario cabinet in the space for a different cabinet which is being donated soon.  Need help moving the cabinet.&lt;br /&gt;
&lt;br /&gt;
==== Vacant (election today!) ====&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
Jamie - Slacking on migrating the mailing list, will try to finish by thxgvng.  FredHack (Fredricksburg, VA) has some metalworking gear (described as &amp;quot;big&amp;quot;) and will let us use it.  Owner of metalworking gear owns a large tract of land.  He has invited us to come play with things requiring open space.  Has extra hackerspace passports and is looking to unload them.&lt;br /&gt;
&lt;br /&gt;
Brad - Back in the day we used to do lightning talks.  Brad will spearhead them.  December or New Year as a timeline. (Phil: Can we find a previous speakers list that Daniel P. kept?)&lt;br /&gt;
&lt;br /&gt;
Tim S. - Went with Alberto to Fab Lab open house.  Space is on North Capitol near NY Ave Metro.  Have space but no/very little gear.  Space is owned by Phyllis&#039; (Executive Director&#039;s) husband.  Open house runs through Thursday as a part of DC week (10:30 am - 3:00pm).  Were there for hours but no one else showed up.  They have a Prusa Mendel (3d printer).  It&#039;s not a part of the Fab Lab cannon.  Additionally, they have some chinese 3d printers.&lt;br /&gt;
&lt;br /&gt;
Dan B. - The 4axis mill that Martin recovered has been set up with a laptop and were able to mill out a torus.  If anyone can produce black &amp;amp; white photos to turn into pipefields / g-code we&#039;re ready for manufacturing.  Dan suspects there is an SVG to G-Code filter.  (Martin: Smithsonian is donating software for the mill, we will need to acquire dongle.)  Mention the type of things you want to make on the blabber list. Engraving text, making machine front panels, creating 3d objects, all take different skill sets/coding jams.  This is controlled via EMC.&lt;br /&gt;
&lt;br /&gt;
Martin - Access control stuff is in it&#039;s death throes.  We&#039;re almost done and soon to be paid/credited.&lt;br /&gt;
&lt;br /&gt;
Toast - Quick note on the smithsonian - they have a huge facility out in landover.  They have 3 gymnasiums worth of gear with no one to use it. By volunteering at the &amp;quot;Office of Exhibit Central&amp;quot;, we can possibly gain access to it. (Phil is interested)&lt;br /&gt;
&lt;br /&gt;
Jamie (2) - 757 Labs has a working Laser cutter&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
Election for Director-At-Large position.&lt;br /&gt;
&lt;br /&gt;
Candidates:&lt;br /&gt;
 Martin - Toast nominates, Dan seconds.&lt;br /&gt;
&lt;br /&gt;
Yearly Member meeting&lt;br /&gt;
&lt;br /&gt;
== New Members ==&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at: x:xx&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5885</id>
		<title>Regular Member Meeting 2011 11 08</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5885"/>
		<updated>2011-11-09T01:31:21Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* Member Reports */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011-11-08 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 8, 2011&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at 19:55 by: Redbeard&lt;br /&gt;
&lt;br /&gt;
Members Present: Martin, Phil, Todd, Toast, Tim S., Adam, Brad, Dan Barlow, Daniel Watson, Maxwell, Jamie, Emily, Alex, Redbeard&lt;br /&gt;
&lt;br /&gt;
Others Present: Mike, Nadir&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? yes&lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
[[Regular Member Meeting 2011 10 11]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
End of the year, so that means we need to beg for money.  Do it.&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
One big thing: Before Elliot left, we were in communications with Viz arts in Rockville (trying to make a makerspace for young ladies, 5th grade-ish).  Viz arts have subsequently followed up and Brad will be teach classes there on the condition of co-branding and a cut of some grant money.  He wants to show up to a Microcontroller Monday and record a Kickstarter video as a plea for money (Arduinos, gear, etc).  Members interested in participating would be appreciated.  Brad will be doing drop in Arduino sessions to teach about basic electronics and getting started.  Will be 10 wk class to teach processing and hardware interaction.  Current lab is 8 Mac Pros and some Macbook pros.  They are set as far as a standardized lab, but are lacking in traditional &amp;quot;maker&amp;quot; gear (o-scopes, soldering irons, etc).&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report (Tim Slagle) ===&lt;br /&gt;
&lt;br /&gt;
Here is the October 2011 financial summary: [[file:HacDC_Financials_Oct_2011.pdf]]&lt;br /&gt;
&lt;br /&gt;
October was good to HacDC, we finished ahead more than $500 due to increased membership revenue, additional member donations, and a generous one-time donation from Stephen Beuttel (thanks!)  We added three membership subscriptions in October: Maxwell Whitaker, Mike Chelen (who didn&#039;t yet get voted in as a member), and Nicholas Stoler.  Jeremy Bruestle dropped because he moved out of the area, and we had one non-paying member.&lt;br /&gt;
&lt;br /&gt;
I&#039;d still like to add more members - 60 would be a good goal.  Then our expenses would be met by member dues, people wouldn&#039;t need to keep contributing extra (unless they wanted to!), and any additional money that came in through class and event donations could go to funding some projects.&lt;br /&gt;
&lt;br /&gt;
Our DC corporate status was restored once we recreated the paperwork and sent them proof of payment.&lt;br /&gt;
&lt;br /&gt;
I called PayPal and got us activated with their non-profit program, so we are paying 2.2% instead of 2.9% (plus $0.30 per transaction).  This will save us ~$20/mo in fees.&lt;br /&gt;
&lt;br /&gt;
Our change of DC Registered Agent paperwork is filled out and can be submitted once signed by the appropriate directors.&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
DOA / N/A&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== Toast ====&lt;br /&gt;
&lt;br /&gt;
Not much to report… Went to Smithsonian and got awesome.  Looking to swap out Mario cabinet in the space for a different cabinet which is being donated soon.  Need help moving the cabinet.&lt;br /&gt;
&lt;br /&gt;
==== Vacant (election today!) ====&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
Jamie - Slacking on migrating the mailing list, will try to finish by thxgvng.  FredHack (Fredricksburg, VA) has some metalworking gear (described as &amp;quot;big&amp;quot;) and will let us use it.  Owner of metalworking gear owns a large tract of land.  He has invited us to come play with things requiring open space.  Has extra hackerspace passports and is looking to unload them.&lt;br /&gt;
&lt;br /&gt;
Brad - Back in the day we used to do lightning talks.  Brad will spearhead them.  December or New Year as a timeline. (Phil: Can we find a previous speakers list that Daniel P. kept?)&lt;br /&gt;
&lt;br /&gt;
Tim S. - Went with Alberto to Fab Lab open house.  Space is on North Capitol near NY Ave Metro.  Have space but no/very little gear.  Space is owned by Phyllis&#039; (Executive Director&#039;s) husband.  Open house runs through Thursday as a part of DC week (10:30 am - 3:00pm).  Were there for hours but no one else showed up.  They have a Prusa Mendel (3d printer).  It&#039;s not a part of the Fab Lab cannon.  Additionally, they have some chinese 3d printers.&lt;br /&gt;
&lt;br /&gt;
Dan B. - The 4axis mill that Martin recovered has been set up with a laptop and were able to mill out a torus.  If anyone can produce black &amp;amp; white photos to turn into pipefields / g-code we&#039;re ready for manufacturing.  Dan suspects there is an SVG to G-Code filter.  (Martin: Smithsonian is donating software for the mill, we will need to acquire dongle.)  Mention the type of things you want to make on the blabber list. Engraving text, making machine front panels, creating 3d objects, all take different skill sets/coding jams.  This is controlled via EMC.&lt;br /&gt;
&lt;br /&gt;
Martin - Access control stuff is in it&#039;s death throes.  We&#039;re almost done and soon to be paid/credited.&lt;br /&gt;
&lt;br /&gt;
Toast - Quick note on the smithsonian - they have a huge facility out in landover.  They have 3 gymnasiums worth of gear with no one to use it. By volunteering at the &amp;quot;Office of Exhibit Central&amp;quot;, we can possibly gain access to it. (Phil is interested)&lt;br /&gt;
&lt;br /&gt;
Jamie (2) - 757 Labs has a working Laser cutter&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
Election for Director-At-Large position.&lt;br /&gt;
&lt;br /&gt;
Yearly Member meeting&lt;br /&gt;
== New Members ==&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at: x:xx&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5884</id>
		<title>Regular Member Meeting 2011 11 08</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5884"/>
		<updated>2011-11-09T01:28:34Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* Member Reports */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011-11-08 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 8, 2011&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at 19:55 by: Redbeard&lt;br /&gt;
&lt;br /&gt;
Members Present: Martin, Phil, Todd, Toast, Tim S., Adam, Brad, Dan Barlow, Daniel Watson, Maxwell, Jamie, Emily, Alex, Redbeard&lt;br /&gt;
&lt;br /&gt;
Others Present: Mike, Nadir&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? yes&lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
[[Regular Member Meeting 2011 10 11]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
End of the year, so that means we need to beg for money.  Do it.&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
One big thing: Before Elliot left, we were in communications with Viz arts in Rockville (trying to make a makerspace for young ladies, 5th grade-ish).  Viz arts have subsequently followed up and Brad will be teach classes there on the condition of co-branding and a cut of some grant money.  He wants to show up to a Microcontroller Monday and record a Kickstarter video as a plea for money (Arduinos, gear, etc).  Members interested in participating would be appreciated.  Brad will be doing drop in Arduino sessions to teach about basic electronics and getting started.  Will be 10 wk class to teach processing and hardware interaction.  Current lab is 8 Mac Pros and some Macbook pros.  They are set as far as a standardized lab, but are lacking in traditional &amp;quot;maker&amp;quot; gear (o-scopes, soldering irons, etc).&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report (Tim Slagle) ===&lt;br /&gt;
&lt;br /&gt;
Here is the October 2011 financial summary: [[file:HacDC_Financials_Oct_2011.pdf]]&lt;br /&gt;
&lt;br /&gt;
October was good to HacDC, we finished ahead more than $500 due to increased membership revenue, additional member donations, and a generous one-time donation from Stephen Beuttel (thanks!)  We added three membership subscriptions in October: Maxwell Whitaker, Mike Chelen (who didn&#039;t yet get voted in as a member), and Nicholas Stoler.  Jeremy Bruestle dropped because he moved out of the area, and we had one non-paying member.&lt;br /&gt;
&lt;br /&gt;
I&#039;d still like to add more members - 60 would be a good goal.  Then our expenses would be met by member dues, people wouldn&#039;t need to keep contributing extra (unless they wanted to!), and any additional money that came in through class and event donations could go to funding some projects.&lt;br /&gt;
&lt;br /&gt;
Our DC corporate status was restored once we recreated the paperwork and sent them proof of payment.&lt;br /&gt;
&lt;br /&gt;
I called PayPal and got us activated with their non-profit program, so we are paying 2.2% instead of 2.9% (plus $0.30 per transaction).  This will save us ~$20/mo in fees.&lt;br /&gt;
&lt;br /&gt;
Our change of DC Registered Agent paperwork is filled out and can be submitted once signed by the appropriate directors.&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
DOA / N/A&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== Toast ====&lt;br /&gt;
&lt;br /&gt;
Not much to report… Went to Smithsonian and got awesome.  Looking to swap out Mario cabinet in the space for a different cabinet which is being donated soon.  Need help moving the cabinet.&lt;br /&gt;
&lt;br /&gt;
==== Vacant (election today!) ====&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
Jamie - Slacking on migrating the mailing list, will try to finish by thxgvng.  FredHack (Fredricksburg, VA) has some metalworking gear (described as &amp;quot;big&amp;quot;) and will let us use it.  Owner of metalworking gear owns a large tract of land.  He has invited us to come play with things requiring open space.  Has extra hackerspace passports and is looking to unload them.&lt;br /&gt;
&lt;br /&gt;
Brad - Back in the day we used to do lightning talks.  Brad will spearhead them.  December or New Year as a timeline. (Phil: Can we find a previous speakers list that Daniel P. kept?)&lt;br /&gt;
&lt;br /&gt;
Tim S. - Went with Alberto to Fab Lab open house.  Space is on North Capitol near NY Ave Metro.  Have space but no/very little gear.  Space is owned by Phyllis&#039; (Executive Director&#039;s) husband.  Open house runs through Thursday as a part of DC week (10:30 am - 3:00pm).  Were there for hours but no one else showed up.  They have a Prusa Mendel (3d printer).  It&#039;s not a part of the Fab Lab cannon.  Additionally, they have some chinese 3d printers.&lt;br /&gt;
&lt;br /&gt;
Dan B. - The 4axis mill that Martin recovered has been set up with a laptop and were able to mill out a torus.  If anyone can produce black &amp;amp; white photos to turn into pipefields / g-code we&#039;re ready for manufacturing.  Dan suspects there is an SVG to G-Code filter.  (Martin: Smithsonian is donating software for the mill, we will need to acquire dongle.)  Mention the type of things you want to make on the blabber list. Engraving text, making machine front panels, creating 3d objects, all take different skill sets/coding jams.  This is controlled via EMC.&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
Election for Director-At-Large position.&lt;br /&gt;
&lt;br /&gt;
Yearly Member meeting&lt;br /&gt;
== New Members ==&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at: x:xx&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5883</id>
		<title>Regular Member Meeting 2011 11 08</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5883"/>
		<updated>2011-11-09T01:25:02Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* Member Reports */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011-11-08 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 8, 2011&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at 19:55 by: Redbeard&lt;br /&gt;
&lt;br /&gt;
Members Present: Martin, Phil, Todd, Toast, Tim S., Adam, Brad, Dan Barlow, Daniel Watson, Maxwell, Jamie, Emily, Alex, Redbeard&lt;br /&gt;
&lt;br /&gt;
Others Present: Mike, Nadir&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? yes&lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
[[Regular Member Meeting 2011 10 11]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
End of the year, so that means we need to beg for money.  Do it.&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
One big thing: Before Elliot left, we were in communications with Viz arts in Rockville (trying to make a makerspace for young ladies, 5th grade-ish).  Viz arts have subsequently followed up and Brad will be teach classes there on the condition of co-branding and a cut of some grant money.  He wants to show up to a Microcontroller Monday and record a Kickstarter video as a plea for money (Arduinos, gear, etc).  Members interested in participating would be appreciated.  Brad will be doing drop in Arduino sessions to teach about basic electronics and getting started.  Will be 10 wk class to teach processing and hardware interaction.  Current lab is 8 Mac Pros and some Macbook pros.  They are set as far as a standardized lab, but are lacking in traditional &amp;quot;maker&amp;quot; gear (o-scopes, soldering irons, etc).&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report (Tim Slagle) ===&lt;br /&gt;
&lt;br /&gt;
Here is the October 2011 financial summary: [[file:HacDC_Financials_Oct_2011.pdf]]&lt;br /&gt;
&lt;br /&gt;
October was good to HacDC, we finished ahead more than $500 due to increased membership revenue, additional member donations, and a generous one-time donation from Stephen Beuttel (thanks!)  We added three membership subscriptions in October: Maxwell Whitaker, Mike Chelen (who didn&#039;t yet get voted in as a member), and Nicholas Stoler.  Jeremy Bruestle dropped because he moved out of the area, and we had one non-paying member.&lt;br /&gt;
&lt;br /&gt;
I&#039;d still like to add more members - 60 would be a good goal.  Then our expenses would be met by member dues, people wouldn&#039;t need to keep contributing extra (unless they wanted to!), and any additional money that came in through class and event donations could go to funding some projects.&lt;br /&gt;
&lt;br /&gt;
Our DC corporate status was restored once we recreated the paperwork and sent them proof of payment.&lt;br /&gt;
&lt;br /&gt;
I called PayPal and got us activated with their non-profit program, so we are paying 2.2% instead of 2.9% (plus $0.30 per transaction).  This will save us ~$20/mo in fees.&lt;br /&gt;
&lt;br /&gt;
Our change of DC Registered Agent paperwork is filled out and can be submitted once signed by the appropriate directors.&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
DOA / N/A&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== Toast ====&lt;br /&gt;
&lt;br /&gt;
Not much to report… Went to Smithsonian and got awesome.  Looking to swap out Mario cabinet in the space for a different cabinet which is being donated soon.  Need help moving the cabinet.&lt;br /&gt;
&lt;br /&gt;
==== Vacant (election today!) ====&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
Jamie - Slacking on migrating the mailing list, will try to finish by thxgvng.  FredHack (Fredricksburg, VA) has some metalworking gear (described as &amp;quot;big&amp;quot;) and will let us use it.  Owner of metalworking gear owns a large tract of land.  He has invited us to come play with things requiring open space.  Has extra hackerspace passports and is looking to unload them.&lt;br /&gt;
&lt;br /&gt;
Brad - Back in the day we used to do lightning talks.  Brad will spearhead them.  December or New Year as a timeline. (Phil: Can we find a previous speakers list that Daniel P. kept?)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Tim S. - Went with Alberto to Fab Lab open house.  Space is on North Capitol near NY Ave Metro.  Have space but no/very little gear.  Space is owned by Phyllis&#039; (Executive Director&#039;s) husband.  Open house runs through Thursday as a part of DC week (10:30 am - 3:00pm).  Were there for hours but no one else showed up.  They have a Prusa Mendel (3d printer).  It&#039;s not a part of the Fab Lab cannon.  Additionally, they have some chinese 3d printers.&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
Election for Director-At-Large position.&lt;br /&gt;
&lt;br /&gt;
Yearly Member meeting&lt;br /&gt;
== New Members ==&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at: x:xx&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5882</id>
		<title>Regular Member Meeting 2011 11 08</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5882"/>
		<updated>2011-11-09T01:14:50Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* Toast */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011-11-08 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 8, 2011&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at 19:55 by: Redbeard&lt;br /&gt;
&lt;br /&gt;
Members Present: Martin, Phil, Todd, Toast, Tim S., Adam, Brad, Dan Barlow, Daniel Watson, Maxwell, Jamie, Emily, Alex, Redbeard&lt;br /&gt;
&lt;br /&gt;
Others Present: Mike, Nadir&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? yes&lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
[[Regular Member Meeting 2011 10 11]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
End of the year, so that means we need to beg for money.  Do it.&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
One big thing: Before Elliot left, we were in communications with Viz arts in Rockville (trying to make a makerspace for young ladies, 5th grade-ish).  Viz arts have subsequently followed up and Brad will be teach classes there on the condition of co-branding and a cut of some grant money.  He wants to show up to a Microcontroller Monday and record a Kickstarter video as a plea for money (Arduinos, gear, etc).  Members interested in participating would be appreciated.  Brad will be doing drop in Arduino sessions to teach about basic electronics and getting started.  Will be 10 wk class to teach processing and hardware interaction.  Current lab is 8 Mac Pros and some Macbook pros.  They are set as far as a standardized lab, but are lacking in traditional &amp;quot;maker&amp;quot; gear (o-scopes, soldering irons, etc).&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report (Tim Slagle) ===&lt;br /&gt;
&lt;br /&gt;
Here is the October 2011 financial summary: [[file:HacDC_Financials_Oct_2011.pdf]]&lt;br /&gt;
&lt;br /&gt;
October was good to HacDC, we finished ahead more than $500 due to increased membership revenue, additional member donations, and a generous one-time donation from Stephen Beuttel (thanks!)  We added three membership subscriptions in October: Maxwell Whitaker, Mike Chelen (who didn&#039;t yet get voted in as a member), and Nicholas Stoler.  Jeremy Bruestle dropped because he moved out of the area, and we had one non-paying member.&lt;br /&gt;
&lt;br /&gt;
I&#039;d still like to add more members - 60 would be a good goal.  Then our expenses would be met by member dues, people wouldn&#039;t need to keep contributing extra (unless they wanted to!), and any additional money that came in through class and event donations could go to funding some projects.&lt;br /&gt;
&lt;br /&gt;
Our DC corporate status was restored once we recreated the paperwork and sent them proof of payment.&lt;br /&gt;
&lt;br /&gt;
I called PayPal and got us activated with their non-profit program, so we are paying 2.2% instead of 2.9% (plus $0.30 per transaction).  This will save us ~$20/mo in fees.&lt;br /&gt;
&lt;br /&gt;
Our change of DC Registered Agent paperwork is filled out and can be submitted once signed by the appropriate directors.&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
DOA / N/A&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== Toast ====&lt;br /&gt;
&lt;br /&gt;
Not much to report… Went to Smithsonian and got awesome.  Looking to swap out Mario cabinet in the space for a different cabinet which is being donated soon.  Need help moving the cabinet.&lt;br /&gt;
&lt;br /&gt;
==== Vacant (election today!) ====&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
Election for Director-At-Large position.&lt;br /&gt;
&lt;br /&gt;
Yearly Member meeting&lt;br /&gt;
== New Members ==&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at: x:xx&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5881</id>
		<title>Regular Member Meeting 2011 11 08</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5881"/>
		<updated>2011-11-09T01:10:48Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* Time and Location */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011-11-08 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 8, 2011&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at 19:55 by: Redbeard&lt;br /&gt;
&lt;br /&gt;
Members Present: Martin, Phil, Todd, Toast, Tim S., Adam, Brad, Dan Barlow, Daniel Watson, Maxwell, Jamie, Emily, Alex, Redbeard&lt;br /&gt;
&lt;br /&gt;
Others Present: Mike, Nadir&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? yes&lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
[[Regular Member Meeting 2011 10 11]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
End of the year, so that means we need to beg for money.  Do it.&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
One big thing: Before Elliot left, we were in communications with Viz arts in Rockville (trying to make a makerspace for young ladies, 5th grade-ish).  Viz arts have subsequently followed up and Brad will be teach classes there on the condition of co-branding and a cut of some grant money.  He wants to show up to a Microcontroller Monday and record a Kickstarter video as a plea for money (Arduinos, gear, etc).  Members interested in participating would be appreciated.  Brad will be doing drop in Arduino sessions to teach about basic electronics and getting started.  Will be 10 wk class to teach processing and hardware interaction.  Current lab is 8 Mac Pros and some Macbook pros.  They are set as far as a standardized lab, but are lacking in traditional &amp;quot;maker&amp;quot; gear (o-scopes, soldering irons, etc).&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report (Tim Slagle) ===&lt;br /&gt;
&lt;br /&gt;
Here is the October 2011 financial summary: [[file:HacDC_Financials_Oct_2011.pdf]]&lt;br /&gt;
&lt;br /&gt;
October was good to HacDC, we finished ahead more than $500 due to increased membership revenue, additional member donations, and a generous one-time donation from Stephen Beuttel (thanks!)  We added three membership subscriptions in October: Maxwell Whitaker, Mike Chelen (who didn&#039;t yet get voted in as a member), and Nicholas Stoler.  Jeremy Bruestle dropped because he moved out of the area, and we had one non-paying member.&lt;br /&gt;
&lt;br /&gt;
I&#039;d still like to add more members - 60 would be a good goal.  Then our expenses would be met by member dues, people wouldn&#039;t need to keep contributing extra (unless they wanted to!), and any additional money that came in through class and event donations could go to funding some projects.&lt;br /&gt;
&lt;br /&gt;
Our DC corporate status was restored once we recreated the paperwork and sent them proof of payment.&lt;br /&gt;
&lt;br /&gt;
I called PayPal and got us activated with their non-profit program, so we are paying 2.2% instead of 2.9% (plus $0.30 per transaction).  This will save us ~$20/mo in fees.&lt;br /&gt;
&lt;br /&gt;
Our change of DC Registered Agent paperwork is filled out and can be submitted once signed by the appropriate directors.&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
DOA / N/A&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== Toast ====&lt;br /&gt;
&lt;br /&gt;
==== Vacant (election today!) ====&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
Election for Director-At-Large position.&lt;br /&gt;
&lt;br /&gt;
Yearly Member meeting&lt;br /&gt;
== New Members ==&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at: x:xx&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5880</id>
		<title>Regular Member Meeting 2011 11 08</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5880"/>
		<updated>2011-11-09T01:10:09Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* Secretary&amp;#039;s Report */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011-11-08 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 8, 2011&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at __07:xx__ by:&lt;br /&gt;
&lt;br /&gt;
Members Present: Martin, Phil, Todd, Toast, Tim S., Adam, Brad, Dan Barlow, Daniel Watson, Maxwell, Jamie, Emily, Alex, Redbeard&lt;br /&gt;
&lt;br /&gt;
Others Present: Mike, Nadir&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? yes&lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
[[Regular Member Meeting 2011 10 11]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
End of the year, so that means we need to beg for money.  Do it.&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
One big thing: Before Elliot left, we were in communications with Viz arts in Rockville (trying to make a makerspace for young ladies, 5th grade-ish).  Viz arts have subsequently followed up and Brad will be teach classes there on the condition of co-branding and a cut of some grant money.  He wants to show up to a Microcontroller Monday and record a Kickstarter video as a plea for money (Arduinos, gear, etc).  Members interested in participating would be appreciated.  Brad will be doing drop in Arduino sessions to teach about basic electronics and getting started.  Will be 10 wk class to teach processing and hardware interaction.  Current lab is 8 Mac Pros and some Macbook pros.  They are set as far as a standardized lab, but are lacking in traditional &amp;quot;maker&amp;quot; gear (o-scopes, soldering irons, etc).&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report (Tim Slagle) ===&lt;br /&gt;
&lt;br /&gt;
Here is the October 2011 financial summary: [[file:HacDC_Financials_Oct_2011.pdf]]&lt;br /&gt;
&lt;br /&gt;
October was good to HacDC, we finished ahead more than $500 due to increased membership revenue, additional member donations, and a generous one-time donation from Stephen Beuttel (thanks!)  We added three membership subscriptions in October: Maxwell Whitaker, Mike Chelen (who didn&#039;t yet get voted in as a member), and Nicholas Stoler.  Jeremy Bruestle dropped because he moved out of the area, and we had one non-paying member.&lt;br /&gt;
&lt;br /&gt;
I&#039;d still like to add more members - 60 would be a good goal.  Then our expenses would be met by member dues, people wouldn&#039;t need to keep contributing extra (unless they wanted to!), and any additional money that came in through class and event donations could go to funding some projects.&lt;br /&gt;
&lt;br /&gt;
Our DC corporate status was restored once we recreated the paperwork and sent them proof of payment.&lt;br /&gt;
&lt;br /&gt;
I called PayPal and got us activated with their non-profit program, so we are paying 2.2% instead of 2.9% (plus $0.30 per transaction).  This will save us ~$20/mo in fees.&lt;br /&gt;
&lt;br /&gt;
Our change of DC Registered Agent paperwork is filled out and can be submitted once signed by the appropriate directors.&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
DOA / N/A&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== Toast ====&lt;br /&gt;
&lt;br /&gt;
==== Vacant (election today!) ====&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
Election for Director-At-Large position.&lt;br /&gt;
&lt;br /&gt;
Yearly Member meeting&lt;br /&gt;
== New Members ==&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at: x:xx&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5879</id>
		<title>Regular Member Meeting 2011 11 08</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5879"/>
		<updated>2011-11-09T01:09:48Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* Time and Location */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011-11-08 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 8, 2011&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at __07:xx__ by:&lt;br /&gt;
&lt;br /&gt;
Members Present: Martin, Phil, Todd, Toast, Tim S., Adam, Brad, Dan Barlow, Daniel Watson, Maxwell, Jamie, Emily, Alex, Redbeard&lt;br /&gt;
&lt;br /&gt;
Others Present: Mike, Nadir&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? yes&lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
[[Regular Member Meeting 2011 10 11]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
End of the year, so that means we need to beg for money.  Do it.&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
One big thing: Before Elliot left, we were in communications with Viz arts in Rockville (trying to make a makerspace for young ladies, 5th grade-ish).  Viz arts have subsequently followed up and Brad will be teach classes there on the condition of co-branding and a cut of some grant money.  He wants to show up to a Microcontroller Monday and record a Kickstarter video as a plea for money (Arduinos, gear, etc).  Members interested in participating would be appreciated.  Brad will be doing drop in Arduino sessions to teach about basic electronics and getting started.  Will be 10 wk class to teach processing and hardware interaction.  Current lab is 8 Mac Pros and some Macbook pros.  They are set as far as a standardized lab, but are lacking in traditional &amp;quot;maker&amp;quot; gear (o-scopes, soldering irons, etc).&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report (Tim Slagle) ===&lt;br /&gt;
&lt;br /&gt;
Here is the October 2011 financial summary: [[file:HacDC_Financials_Oct_2011.pdf]]&lt;br /&gt;
&lt;br /&gt;
October was good to HacDC, we finished ahead more than $500 due to increased membership revenue, additional member donations, and a generous one-time donation from Stephen Beuttel (thanks!)  We added three membership subscriptions in October: Maxwell Whitaker, Mike Chelen (who didn&#039;t yet get voted in as a member), and Nicholas Stoler.  Jeremy Bruestle dropped because he moved out of the area, and we had one non-paying member.&lt;br /&gt;
&lt;br /&gt;
I&#039;d still like to add more members - 60 would be a good goal.  Then our expenses would be met by member dues, people wouldn&#039;t need to keep contributing extra (unless they wanted to!), and any additional money that came in through class and event donations could go to funding some projects.&lt;br /&gt;
&lt;br /&gt;
Our DC corporate status was restored once we recreated the paperwork and sent them proof of payment.&lt;br /&gt;
&lt;br /&gt;
I called PayPal and got us activated with their non-profit program, so we are paying 2.2% instead of 2.9% (plus $0.30 per transaction).  This will save us ~$20/mo in fees.&lt;br /&gt;
&lt;br /&gt;
Our change of DC Registered Agent paperwork is filled out and can be submitted once signed by the appropriate directors.&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== Toast ====&lt;br /&gt;
&lt;br /&gt;
==== Vacant (election today!) ====&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
Election for Director-At-Large position.&lt;br /&gt;
&lt;br /&gt;
Yearly Member meeting&lt;br /&gt;
== New Members ==&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at: x:xx&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5878</id>
		<title>Regular Member Meeting 2011 11 08</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5878"/>
		<updated>2011-11-09T01:09:10Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011-11-08 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 8, 2011&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at __07:xx__ by:&lt;br /&gt;
&lt;br /&gt;
Members Present: Martin (m), Phil, Todd, Toast, Tim S. (m), Adam (m), Brad (m), Dan (m), Daniel Watson (m), Maxwell (m), Jamie (m), Emily, Alex(m), Redbeard(m)&lt;br /&gt;
&lt;br /&gt;
Others Present: Mike, Nadir&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? yes&lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
[[Regular Member Meeting 2011 10 11]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
End of the year, so that means we need to beg for money.  Do it.&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
One big thing: Before Elliot left, we were in communications with Viz arts in Rockville (trying to make a makerspace for young ladies, 5th grade-ish).  Viz arts have subsequently followed up and Brad will be teach classes there on the condition of co-branding and a cut of some grant money.  He wants to show up to a Microcontroller Monday and record a Kickstarter video as a plea for money (Arduinos, gear, etc).  Members interested in participating would be appreciated.  Brad will be doing drop in Arduino sessions to teach about basic electronics and getting started.  Will be 10 wk class to teach processing and hardware interaction.  Current lab is 8 Mac Pros and some Macbook pros.  They are set as far as a standardized lab, but are lacking in traditional &amp;quot;maker&amp;quot; gear (o-scopes, soldering irons, etc).&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report (Tim Slagle) ===&lt;br /&gt;
&lt;br /&gt;
Here is the October 2011 financial summary: [[file:HacDC_Financials_Oct_2011.pdf]]&lt;br /&gt;
&lt;br /&gt;
October was good to HacDC, we finished ahead more than $500 due to increased membership revenue, additional member donations, and a generous one-time donation from Stephen Beuttel (thanks!)  We added three membership subscriptions in October: Maxwell Whitaker, Mike Chelen (who didn&#039;t yet get voted in as a member), and Nicholas Stoler.  Jeremy Bruestle dropped because he moved out of the area, and we had one non-paying member.&lt;br /&gt;
&lt;br /&gt;
I&#039;d still like to add more members - 60 would be a good goal.  Then our expenses would be met by member dues, people wouldn&#039;t need to keep contributing extra (unless they wanted to!), and any additional money that came in through class and event donations could go to funding some projects.&lt;br /&gt;
&lt;br /&gt;
Our DC corporate status was restored once we recreated the paperwork and sent them proof of payment.&lt;br /&gt;
&lt;br /&gt;
I called PayPal and got us activated with their non-profit program, so we are paying 2.2% instead of 2.9% (plus $0.30 per transaction).  This will save us ~$20/mo in fees.&lt;br /&gt;
&lt;br /&gt;
Our change of DC Registered Agent paperwork is filled out and can be submitted once signed by the appropriate directors.&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== Toast ====&lt;br /&gt;
&lt;br /&gt;
==== Vacant (election today!) ====&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
Election for Director-At-Large position.&lt;br /&gt;
&lt;br /&gt;
Yearly Member meeting&lt;br /&gt;
== New Members ==&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at: x:xx&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5877</id>
		<title>Regular Member Meeting 2011 11 08</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5877"/>
		<updated>2011-11-09T01:07:37Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011-11-08 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 8, 2011&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at __07:xx__ by:&lt;br /&gt;
&lt;br /&gt;
Members Present: Martin (m), Phil, Todd, Toast, Tim S. (m), Adam (m), Brad (m), Dan (m), Daniel Watson (m), Maxwell (m), Jamie (m), Emily, Alex(m), Redbeard(m)&lt;br /&gt;
&lt;br /&gt;
Others Present: Mike, Nadir&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? yes&lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
[[Regular Member Meeting 2011 10 11]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
End of the year, so that means we need to beg for money.  Do it.&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
One big thing: Before Elliot left, we were in communications with Viz arts in Rockville (trying to make a makerspace for young ladies, 5th grade-ish).  Viz arts have subsequently followed up and Brad will be teach classes there on the condition of co-branding and a cut of some grant money.  He wants to show up to a Microcontroller Monday and record a Kickstarter video as a plea for money (Arduinos, gear, etc).  Members interested in participating would be appreciated.  Brad will be doing drop in Arduino sessions to teach about basic electronics and getting started.  Will be 10 wk class to teach processing and hardware interaction.  Current lab is 8 Mac Pros and some Macbook pros.  They are set as far as a standardized lab, but are lacking in traditional &amp;quot;maker&amp;quot; gear (o-scopes, soldering irons, etc).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report (Tim Slagle) ===&lt;br /&gt;
&lt;br /&gt;
Here is the October 2011 financial summary: [[file:HacDC_Financials_Oct_2011.pdf]]&lt;br /&gt;
&lt;br /&gt;
October was good to HacDC, we finished ahead more than $500 due to increased membership revenue, additional member donations, and a generous one-time donation from Stephen Beuttel (thanks!)  We added three membership subscriptions in October: Maxwell Whitaker, Mike Chelen (who didn&#039;t yet get voted in as a member), and Nicholas Stoler.  Jeremy Bruestle dropped because he moved out of the area, and we had one non-paying member.&lt;br /&gt;
&lt;br /&gt;
I&#039;d still like to add more members - 60 would be a good goal.  Then our expenses would be met by member dues, people wouldn&#039;t need to keep contributing extra (unless they wanted to!), and any additional money that came in through class and event donations could go to funding some projects.&lt;br /&gt;
&lt;br /&gt;
Our DC corporate status was restored once we recreated the paperwork and sent them proof of payment.&lt;br /&gt;
&lt;br /&gt;
I called PayPal and got us activated with their non-profit program, so we are paying 2.2% instead of 2.9% (plus $0.30 per transaction).  This will save us ~$20/mo in fees.&lt;br /&gt;
&lt;br /&gt;
Our change of DC Registered Agent paperwork is filled out and can be submitted once signed by the appropriate directors.&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== Toast ====&lt;br /&gt;
&lt;br /&gt;
==== Vacant (election today!) ====&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
Election for Director-At-Large position.&lt;br /&gt;
&lt;br /&gt;
Yearly Member meeting&lt;br /&gt;
== New Members ==&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at: x:xx&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5876</id>
		<title>Regular Member Meeting 2011 11 08</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5876"/>
		<updated>2011-11-09T01:03:10Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011-11-08 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 8, 2011&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at __07:xx__ by:&lt;br /&gt;
&lt;br /&gt;
Members Present: Martin (m), Phil, Todd, Toast, Tim S. (m), Adam (m), Brad (m), Dan (m), Daniel Watson (m), Maxwell (m), Jamie (m), Emily, Alex(m), Redbeard(m)&lt;br /&gt;
&lt;br /&gt;
Others Present: Mike, Nadir&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? yes&lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
[[Regular Member Meeting 2011 10 11]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report (Tim Slagle) ===&lt;br /&gt;
&lt;br /&gt;
Here is the October 2011 financial summary: [[file:HacDC_Financials_Oct_2011.pdf]]&lt;br /&gt;
&lt;br /&gt;
October was good to HacDC, we finished ahead more than $500 due to increased membership revenue, additional member donations, and a generous one-time donation from Stephen Beuttel (thanks!)  We added three membership subscriptions in October: Maxwell Whitaker, Mike Chelen (who didn&#039;t yet get voted in as a member), and Nicholas Stoler.  Jeremy Bruestle dropped because he moved out of the area, and we had one non-paying member.&lt;br /&gt;
&lt;br /&gt;
I&#039;d still like to add more members - 60 would be a good goal.  Then our expenses would be met by member dues, people wouldn&#039;t need to keep contributing extra (unless they wanted to!), and any additional money that came in through class and event donations could go to funding some projects.&lt;br /&gt;
&lt;br /&gt;
Our DC corporate status was restored once we recreated the paperwork and sent them proof of payment.&lt;br /&gt;
&lt;br /&gt;
I called PayPal and got us activated with their non-profit program, so we are paying 2.2% instead of 2.9% (plus $0.30 per transaction).  This will save us ~$20/mo in fees.&lt;br /&gt;
&lt;br /&gt;
Our change of DC Registered Agent paperwork is filled out and can be submitted once signed by the appropriate directors.&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== Toast ====&lt;br /&gt;
&lt;br /&gt;
==== Vacant (election today!) ====&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
Election for Director-At-Large position.&lt;br /&gt;
&lt;br /&gt;
Yearly Member meeting&lt;br /&gt;
== New Members ==&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at: x:xx&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5875</id>
		<title>Regular Member Meeting 2011 11 08</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_11_08&amp;diff=5875"/>
		<updated>2011-11-09T00:58:19Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011-11-08 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 8, 2011&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at __07:xx__ by:&lt;br /&gt;
&lt;br /&gt;
Members Present: Martin (m), Phil, Todd, Toast, Tim S. (m), Adam (m), Brad (m), Dan (m), Daniel Watson (m), Maxwell (m), Jamie (m), Emily, Alex(m), Redbeard(m)&lt;br /&gt;
&lt;br /&gt;
Others Present: Mike, Nadir&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? yes&lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
[[Regular Member Meeting 2011 10 11]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report (Tim Slagle) ===&lt;br /&gt;
&lt;br /&gt;
Here is the October 2011 financial summary: [[file:HacDC_Financials_Oct_2011.pdf]]&lt;br /&gt;
&lt;br /&gt;
October was good to HacDC, we finished ahead more than $500 due to increased membership revenue, additional member donations, and a generous one-time donation from Stephen Beuttel (thanks!)  We added three membership subscriptions in October: Maxwell Whitaker, Mike Chelen (who didn&#039;t yet get voted in as a member), and Nicholas Stoler.  Jeremy Bruestle dropped because he moved out of the area, and we had one non-paying member.&lt;br /&gt;
&lt;br /&gt;
I&#039;d still like to add more members - 60 would be a good goal.  Then our expenses would be met by member dues, people wouldn&#039;t need to keep contributing extra (unless they wanted to!), and any additional money that came in through class and event donations could go to funding some projects.&lt;br /&gt;
&lt;br /&gt;
Our DC corporate status was restored once we recreated the paperwork and sent them proof of payment.&lt;br /&gt;
&lt;br /&gt;
I called PayPal and got us activated with their non-profit program, so we are paying 2.2% instead of 2.9% (plus $0.30 per transaction).  This will save us ~$20/mo in fees.&lt;br /&gt;
&lt;br /&gt;
Our change of DC Registered Agent paperwork is filled out and can be submitted once signed by the appropriate directors.&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== Toast ====&lt;br /&gt;
&lt;br /&gt;
==== Vacant (election today!) ====&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
Election for Director-At-Large position.&lt;br /&gt;
&lt;br /&gt;
== New Members ==&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at: x:xx&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_05_10&amp;diff=5070</id>
		<title>Regular Member Meeting 2011 05 10</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2011_05_10&amp;diff=5070"/>
		<updated>2011-05-10T23:38:59Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011-05-10 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
May 10, 2011&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at __ by __.&lt;br /&gt;
&lt;br /&gt;
Members Present: &lt;br /&gt;
&lt;br /&gt;
Others Present: &lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met?&lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
[[Regular Member Meeting 2011 04 12]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
Upcoming events:&lt;br /&gt;
* Maker Faire&lt;br /&gt;
** SF&lt;br /&gt;
*** (Anyone going?)&lt;br /&gt;
** Detroit&lt;br /&gt;
*** (Anyone going?)&lt;br /&gt;
*** Scooter Race (Entries?)&lt;br /&gt;
&lt;br /&gt;
Fundraising Opportunities:&lt;br /&gt;
* DCMAT&lt;br /&gt;
** ASCAP&lt;br /&gt;
** MetLife - Meet the artist&lt;br /&gt;
* Weather Station&lt;br /&gt;
* Contuning Edubuzzer&lt;br /&gt;
* &amp;quot;Photography Project Invites Proposals for Audience Engagement&amp;quot;&lt;br /&gt;
* Humanities and Social Sciences Data Challenge&lt;br /&gt;
* Ideas that Matter&lt;br /&gt;
* Programs Serving Children With Disabilities&lt;br /&gt;
* Chesapeake Bay Trust&lt;br /&gt;
* National Geographic&lt;br /&gt;
* Apps for Communities Challenge, which aims to help bring useful public data to traditionally underserved populations through Web, mobile, or text/SMS- based applications.&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Membership:&lt;br /&gt;
&lt;br /&gt;
 44 members payed via PayPal&lt;br /&gt;
&lt;br /&gt;
Income:&lt;br /&gt;
&lt;br /&gt;
 Paypal 14 Friends subscriptions: $455   (Donations ranged from $0.25&lt;br /&gt;
to $100 /month!)&lt;br /&gt;
 Paypal 41 members: $2050                   (Many people doubled up)&lt;br /&gt;
 Paypal unrestricted donations: $300      (Including very generous&lt;br /&gt;
donation from Japan and several local individuals)&lt;br /&gt;
 Paypal echecks (inc. 3 members):         $150&lt;br /&gt;
 Cash donations deposited:               $250&lt;br /&gt;
 ===========================&lt;br /&gt;
 Total         $2955&lt;br /&gt;
&lt;br /&gt;
One time $900 donation earmarked for a specific project and therefore&lt;br /&gt;
not counted as income.&lt;br /&gt;
Two Make magazine subscriptions @ 34.95 (net 33.64).  Is anyone&lt;br /&gt;
willing to take over the subscription task?&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Expenses:&lt;br /&gt;
&lt;br /&gt;
04/26/2011      Debit           INTUIT *QB ONLINE 04-25 800-286-6800 CA 1703 BB&amp;amp;T&lt;br /&gt;
CHECK CARD RECURRING PYMT       $10.55&lt;br /&gt;
04/18/2011      Debit           SFPP STATE FARM RO 27 XXXXXXXXXXX4321 ACH DEBIT         $68.58&lt;br /&gt;
04/14/2011      Check   1007    CHECK #1007  View       $2,526.00&lt;br /&gt;
04/04/2011      POS             350 NICE INC. 04-02 415-8684457 CA 1703 BB&amp;amp;T CHECK&lt;br /&gt;
CARD PURCHASE   $20.97&lt;br /&gt;
04/04/2011      POS             LINODE.COM 04-02 609-593-7103 NJ 1703 BB&amp;amp;T CHECK&lt;br /&gt;
CARD PURCHASE   $37.45&lt;br /&gt;
04/2011            paypal fees  $108&lt;br /&gt;
==============================&lt;br /&gt;
Total expenses:  $2771&lt;br /&gt;
&lt;br /&gt;
Net income:  $183.45&lt;br /&gt;
&lt;br /&gt;
Our anonymous patrons deserve a huge thanks.  Any thoughts on how we&lt;br /&gt;
can show our appreciation?&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== Will G ====&lt;br /&gt;
&lt;br /&gt;
==== Brad B ====&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
Kickstarter?&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== New Members ==&lt;br /&gt;
&lt;br /&gt;
== Space Discussion ==&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at __&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Great_Global_Hackerspace_Challenge&amp;diff=4844</id>
		<title>Great Global Hackerspace Challenge</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Great_Global_Hackerspace_Challenge&amp;diff=4844"/>
		<updated>2011-03-23T00:56:29Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= WELCOME =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Hello, and welcome to The Great Global Hackerspace Challenge, brought to you by the very excited folks over at element14!&lt;br /&gt;
&lt;br /&gt;
You are one of thirty hackerspaces from across the globe who have been chosen to participate in this amazing event, which seeks to stretch your hackerspace-minded ingenuity to its very limit to create an electronics build that will make a real, and very positive difference in an educational establishment. And for you to have a whole lot of fun along the way!&lt;br /&gt;
&lt;br /&gt;
Exactly what that build is, and what solution it provides is entirely down to you. The only stipulation is that your build must make use of a microcontroller and a portable power source. We encourage you to reach out to an educational institute in your area so that you can test your invention as it evolves, make sure you are answering a genuine educational need, and hopefully establish a home for your product once the challenge is over.&lt;br /&gt;
&lt;br /&gt;
Within this pack, you&#039;ll find detailed information on the equipment element14 will provide you with to get your creative thoughts flowing, and your talented hands building, as well as the low down on how to share your Hackerspace&#039;s ongoing progress with the world.&lt;br /&gt;
&lt;br /&gt;
We&#039;d also ask you make sure to read our Great Global Hackerspace Challenge Pact section, on which we are asking for a virtual handshake from you. It&#039;s our way of establishing mutual ground rules and understanding before the storm of genius activity begins.&lt;br /&gt;
&lt;br /&gt;
We thank you once again for being a part of this incredible challenge, wish you the very best of luck, and look forward with great anticipation to seeing your work as it develops. This is a challenge in which brilliant minds collaborate so that everybody wins. Onwards!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==CHALLENGE GUIDELINES==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Outlined below is a step-by-step guide with all the information you will need to help make your hackerspace challenge as successful as possible. There&#039;s a great deal to do in a very short space of time, and so we have created a calendar of key delivery dates which you&#039;ll find at the end of this pack to help you stay on track.&lt;br /&gt;
&lt;br /&gt;
If you have any questions along the way that aren&#039;t answered here, please email hackerspace@element14.com and we&#039;ll be sure to get back to you.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==YOUR TOOL KIT==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
element14 is providing you with a budget of $900 US to complete your build. You will be contacted directly to establish exactly how you would prefer to receive this money. Your microcontroller and portable power source should be procured using this money, and any additional electronic components you might need can be purchased from the element14 store. Simply go to the element14 website (www.element14.com), click on the &#039;store&#039; tab and then select your items using your $900 stipend. Your components will then be sent directly to you.&lt;br /&gt;
&lt;br /&gt;
We ask that you try not add to this budget, as one of the judging criteria is based on the total cost of the final build, but you are fully permitted to use any components or items that you might already have at your hackerspace within your build. We challenge you to be as creative as you like!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==DOCUMENTING YOUR BUILD==&lt;br /&gt;
&lt;br /&gt;
Core to this challenge is to produce an electronics build that will ultimately help education, but you can also start to help people learn about hackerspaces and electronics building along the way by regularly sharing information on your design. This is also how the judging panel will be able to track your progress and pick the three semi-finalists, and a minimum of one weekly update is a mandatory element of the challenge.&lt;br /&gt;
&lt;br /&gt;
Please feel free to share all your exciting moments as they happen, but as a guideline, content that would be useful for you to provide would be:&lt;br /&gt;
&lt;br /&gt;
*Week 1&lt;br /&gt;
** Introduce your team (video would be a great way to do this), explain your hackerspace&#039;s philosophy, and provide a top level summary of your first week&lt;br /&gt;
*Week 2&lt;br /&gt;
** Provide a basic outline of the materials you will be using in your build and any key challenges you anticipate&lt;br /&gt;
*Week 3&lt;br /&gt;
** Provide an update on the status of your build and quick summary of obstacles encountered and how they are being addressed&lt;br /&gt;
*Week 4&lt;br /&gt;
** Is everything going to plan? Perhaps provide footage of a visit to an educational institution you&#039;re working with&lt;br /&gt;
*Week 5&lt;br /&gt;
** In your penultimate week provide a review of the challenge to date. Is the pressure on? What have you learned?&lt;br /&gt;
*Week 6&lt;br /&gt;
** This is the time to really showcase your build, why it works and what features make it stand out&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==HOW TO SHARE==&lt;br /&gt;
&lt;br /&gt;
You will be required to contribute to your profile page within the element14 community. This is where you can upload your videos and photos and keep everyone informed via a written blog. You will be able to personalize the page so that your hackerspace&#039;s own unique character shines through. To do this, go to element14.com, click on �Join Now� if you are not already registered, using your Hackerspace name, and we will create your page for you.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==BUILD CRITERIA==&lt;br /&gt;
&lt;br /&gt;
Our esteemed panel of judges will include luminaries from the worlds of technology and science, education and hackerspacing.&lt;br /&gt;
&lt;br /&gt;
Following the completion of the build period, they will be judging each one on the criteria below in order to select three semi-finalists to attend the California Maker Faire for the grand finale on May 22.&lt;br /&gt;
&lt;br /&gt;
Semi-finalists will be notified personally by Mitch on May 6.&lt;br /&gt;
&lt;br /&gt;
Criteria:&lt;br /&gt;
* How reproducible is the final project&lt;br /&gt;
* How easily can the parts be sourced in locations around the world&lt;br /&gt;
* How low cost is the final output&lt;br /&gt;
* How well are the plans documented&lt;br /&gt;
* How relevant is the project to helping education today&lt;br /&gt;
* How inventive and creative is the design and build of the project&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==THE MAKER FAIRE GRAND FINALE==&lt;br /&gt;
&lt;br /&gt;
The Great Global Hackerspace Challenge will culminate in a live demonstration of each of the three semi-finalists in front of the panel of judges at the San Mateo Maker Faire. One team member from the final three hackerspaces will be flown out to California to attend the Faire and present their build. Air fare, hotel accommodation and daily food costs will all be covered by element14 - we&#039;ll provide more detail on this if you are selected.&lt;br /&gt;
&lt;br /&gt;
In the spirit of collaboration over competition, and to thank you for taking part, element14 will be sending you a set of soldering equipment, including a soldering station, for your hackerspace once you have completed the challenge.&lt;br /&gt;
&lt;br /&gt;
Each of the semi-finalist hackerspaces will receive the following prizes:&lt;br /&gt;
&lt;br /&gt;
* Fluke 233 DMM (worth US$300)&lt;br /&gt;
* Fluke 381 Clamp Meter (worth US$500)&lt;br /&gt;
* Tektronix PWS4205 Power Supply (worth US$865)&lt;br /&gt;
* Agilent HH DMM (specific model TBD)&lt;br /&gt;
&lt;br /&gt;
Finally, the build chosen to have that extra sprinkling of hackerspace magic will receive a suitably rocking prize: a Tektronix MSO2024 oscilloscope (worth around US$5,600). Start clearing a space in the corner of your hackerspace now!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==THE GREAT GLOBAL HACKERSPACE CHALLENGE PACT==&lt;br /&gt;
&lt;br /&gt;
You won&#039;t find any legal language here. We promise. The purpose of this section is to let you know that if, for any reason you are unable to finish your project you should let the organizers know as soon as possible. Particularly if you encounter circumstances beyond your control. We need to be able to manage expectations so we can accommodate the logistics of the event; judging, the Maker Faire event and the management of the content on the community.&lt;br /&gt;
&lt;br /&gt;
This isn&#039;t a contract. You won&#039;t be signing your life away. We trust you. We simply want to have the best competition possible.&lt;br /&gt;
&lt;br /&gt;
To quote the 1989 MGM classic &#039;Bill &amp;amp; Ted&#039;s Excellent Adventure&#039; we want everyone involved in this event to &#039;Be excellent to each other&#039;. And that works full circle. We are investing funds into your builds and you are investing your valuable time and energy into our challenge. In the spirit of transparency and collaboration we want everyone to succeed and get as much as they can from this project however we reserve the right to withhold product and stipend if groups do not deliver on the requirements of the challenge. We will be in close communication throughout this project and, we can all work together to avoid any adverse situations.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==CHALLENGE KEY DATES CALENDAR==&lt;br /&gt;
&lt;br /&gt;
* Week of 3/21 : Official Challenge Briefing / Q+A&lt;br /&gt;
* 3/25: Deadline to create your profile and submit your first blog update&lt;br /&gt;
* 4/1: Deadline for Hackerspace Challenge Blog Post 2&lt;br /&gt;
* 4/15: Deadline for Hackerspace Challenge Blog Post 3&lt;br /&gt;
* 4/30: End of build time&lt;br /&gt;
* 05/01- 05/05: Judging period&lt;br /&gt;
* 05/06: 3 semi-finalists will be announced&lt;br /&gt;
* Week Of 5/16: One team member from each of the three semi-finalist hackerspaces will travel to San Francisco Bay Area&lt;br /&gt;
* 5/21/22: Maker Faire&lt;br /&gt;
* 5/22: Maker Faire Great Global Hackerspace Challenge Grand Finale&lt;br /&gt;
* 5/23: Team members travel home&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
[http://www.element-14.com/community/groups/the-great-global-hackerspace-challenge http://www.element-14.com/community/groups/the-great-global-hackerspace-challenge]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Great_Global_Hackerspace_Challenge&amp;diff=4843</id>
		<title>Great Global Hackerspace Challenge</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Great_Global_Hackerspace_Challenge&amp;diff=4843"/>
		<updated>2011-03-23T00:56:15Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= WELCOME =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Hello, and welcome to The Great Global Hackerspace Challenge, brought to you by the very excited folks over at element14!&lt;br /&gt;
&lt;br /&gt;
You are one of thirty hackerspaces from across the globe who have been chosen to participate in this amazing event, which seeks to stretch your hackerspace-minded ingenuity to its very limit to create an electronics build that will make a real, and very positive difference in an educational establishment. And for you to have a whole lot of fun along the way!&lt;br /&gt;
&lt;br /&gt;
Exactly what that build is, and what solution it provides is entirely down to you. The only stipulation is that your build must make use of a microcontroller and a portable power source. We encourage you to reach out to an educational institute in your area so that you can test your invention as it evolves, make sure you are answering a genuine educational need, and hopefully establish a home for your product once the challenge is over.&lt;br /&gt;
&lt;br /&gt;
Within this pack, you&#039;ll find detailed information on the equipment element14 will provide you with to get your creative thoughts flowing, and your talented hands building, as well as the low down on how to share your Hackerspace&#039;s ongoing progress with the world.&lt;br /&gt;
&lt;br /&gt;
We&#039;d also ask you make sure to read our Great Global Hackerspace Challenge Pact section, on which we are asking for a virtual handshake from you. It&#039;s our way of establishing mutual ground rules and understanding before the storm of genius activity begins.&lt;br /&gt;
&lt;br /&gt;
We thank you once again for being a part of this incredible challenge, wish you the very best of luck, and look forward with great anticipation to seeing your work as it develops. This is a challenge in which brilliant minds collaborate so that everybody wins. Onwards!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==CHALLENGE GUIDELINES==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Outlined below is a step-by-step guide with all the information you will need to help make your hackerspace challenge as successful as possible. There&#039;s a great deal to do in a very short space of time, and so we have created a calendar of key delivery dates which you&#039;ll find at the end of this pack to help you stay on track.&lt;br /&gt;
&lt;br /&gt;
If you have any questions along the way that aren&#039;t answered here, please email hackerspace@element14.com and we&#039;ll be sure to get back to you.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==YOUR TOOL KIT==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
element14 is providing you with a budget of $900 US to complete your build. You will be contacted directly to establish exactly how you would prefer to receive this money. Your microcontroller and portable power source should be procured using this money, and any additional electronic components you might need can be purchased from the element14 store. Simply go to the element14 website (www.element14.com), click on the &#039;store&#039; tab and then select your items using your $900 stipend. Your components will then be sent directly to you.&lt;br /&gt;
&lt;br /&gt;
We ask that you try not add to this budget, as one of the judging criteria is based on the total cost of the final build, but you are fully permitted to use any components or items that you might already have at your hackerspace within your build. We challenge you to be as creative as you like!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==DOCUMENTING YOUR BUILD==&lt;br /&gt;
&lt;br /&gt;
Core to this challenge is to produce an electronics build that will ultimately help education, but you can also start to help people learn about hackerspaces and electronics building along the way by regularly sharing information on your design. This is also how the judging panel will be able to track your progress and pick the three semi-finalists, and a minimum of one weekly update is a mandatory element of the challenge.&lt;br /&gt;
&lt;br /&gt;
Please feel free to share all your exciting moments as they happen, but as a guideline, content that would be useful for you to provide would be:&lt;br /&gt;
&lt;br /&gt;
*Week 1&lt;br /&gt;
** Introduce your team (video would be a great way to do this), explain your hackerspace&#039;s philosophy, and provide a top level summary of your first week&lt;br /&gt;
*Week 2&lt;br /&gt;
** Provide a basic outline of the materials you will be using in your build and any key challenges you anticipate&lt;br /&gt;
*Week 3&lt;br /&gt;
** Provide an update on the status of your build and quick summary of obstacles encountered and how they are being addressed&lt;br /&gt;
*Week 4&lt;br /&gt;
** Is everything going to plan? Perhaps provide footage of a visit to an educational institution you&#039;re working with&lt;br /&gt;
*Week 5&lt;br /&gt;
** In your penultimate week provide a review of the challenge to date. Is the pressure on? What have you learned?&lt;br /&gt;
*Week 6&lt;br /&gt;
** This is the time to really showcase your build, why it works and what features make it stand out&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==HOW TO SHARE==&lt;br /&gt;
&lt;br /&gt;
You will be required to contribute to your profile page within the element14 community. This is where you can upload your videos and photos and keep everyone informed via a written blog. You will be able to personalize the page so that your hackerspace&#039;s own unique character shines through. To do this, go to element14.com, click on �Join Now� if you are not already registered, using your Hackerspace name, and we will create your page for you.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==BUILD CRITERIA==&lt;br /&gt;
&lt;br /&gt;
Our esteemed panel of judges will include luminaries from the worlds of technology and science, education and hackerspacing.&lt;br /&gt;
&lt;br /&gt;
Following the completion of the build period, they will be judging each one on the criteria below in order to select three semi-finalists to attend the California Maker Faire for the grand finale on May 22.&lt;br /&gt;
&lt;br /&gt;
Semi-finalists will be notified personally by Mitch on May 6.&lt;br /&gt;
&lt;br /&gt;
Criteria:&lt;br /&gt;
* How reproducible is the final project&lt;br /&gt;
* How easily can the parts be sourced in locations around the world&lt;br /&gt;
* How low cost is the final output&lt;br /&gt;
* How well are the plans documented&lt;br /&gt;
* How relevant is the project to helping education today&lt;br /&gt;
* How inventive and creative is the design and build of the project&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==THE MAKER FAIRE GRAND FINALE==&lt;br /&gt;
&lt;br /&gt;
The Great Global Hackerspace Challenge will culminate in a live demonstration of each of the three semi-finalists in front of the panel of judges at the San Mateo Maker Faire. One team member from the final three hackerspaces will be flown out to California to attend the Faire and present their build. Air fare, hotel accommodation and daily food costs will all be covered by element14 - we&#039;ll provide more detail on this if you are selected.&lt;br /&gt;
&lt;br /&gt;
In the spirit of collaboration over competition, and to thank you for taking part, element14 will be sending you a set of soldering equipment, including a soldering station, for your hackerspace once you have completed the challenge.&lt;br /&gt;
&lt;br /&gt;
Each of the semi-finalist hackerspaces will receive the following prizes:&lt;br /&gt;
&lt;br /&gt;
* Fluke 233 DMM (worth US$300)&lt;br /&gt;
* Fluke 381 Clamp Meter (worth US$500)&lt;br /&gt;
* Tektronix PWS4205 Power Supply (worth US$865)&lt;br /&gt;
* Agilent HH DMM (specific model TBD)&lt;br /&gt;
&lt;br /&gt;
Finally, the build chosen to have that extra sprinkling of hackerspace magic will receive a suitably rocking prize: a Tektronix MSO2024 oscilloscope (worth around US$5,600). Start clearing a space in the corner of your hackerspace now!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==THE GREAT GLOBAL HACKERSPACE CHALLENGE PACT==&lt;br /&gt;
&lt;br /&gt;
You won&#039;t find any legal language here. We promise. The purpose of this section is to let you know that if, for any reason you are unable to finish your project you should let the organizers know as soon as possible. Particularly if you encounter circumstances beyond your control. We need to be able to manage expectations so we can accommodate the logistics of the event; judging, the Maker Faire event and the management of the content on the community.&lt;br /&gt;
&lt;br /&gt;
This isn&#039;t a contract. You won&#039;t be signing your life away. We trust you. We simply want to have the best competition possible.&lt;br /&gt;
&lt;br /&gt;
To quote the 1989 MGM classic &#039;Bill &amp;amp; Ted&#039;s Excellent Adventure&#039; we want everyone involved in this event to &#039;Be excellent to each other&#039;. And that works full circle. We are investing funds into your builds and you are investing your valuable time and energy into our challenge. In the spirit of transparency and collaboration we want everyone to succeed and get as much as they can from this project however we reserve the right to withhold product and stipend if groups do not deliver on the requirements of the challenge. We will be in close communication throughout this project and, we can all work together to avoid any adverse situations.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==CHALLENGE KEY DATES CALENDAR==&lt;br /&gt;
&lt;br /&gt;
* Week of 3/21 : Official Challenge Briefing / Q+A&lt;br /&gt;
* 3/25: Deadline to create your profile and submit your first blog update&lt;br /&gt;
* 4/1: Deadline for Hackerspace Challenge Blog Post 2&lt;br /&gt;
* 4/15: Deadline for Hackerspace Challenge Blog Post 3&lt;br /&gt;
* 4/30: End of build time&lt;br /&gt;
* 05/01- 05/05: Judging period&lt;br /&gt;
* 05/06: 3 semi-finalists will be announced&lt;br /&gt;
* Week Of 5/16: One team member from each of the three semi-finalist hackerspaces will travel to San Francisco Bay Area&lt;br /&gt;
* 5/21/22: Maker Faire&lt;br /&gt;
* 5/22: Maker Faire Great Global Hackerspace Challenge Grand Finale&lt;br /&gt;
* 5/23: Team members travel home&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
[http://www.element-14.com/community/groups/the-great-global-hackerspace-challenge]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Great_Global_Hackerspace_Challenge&amp;diff=4842</id>
		<title>Great Global Hackerspace Challenge</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Great_Global_Hackerspace_Challenge&amp;diff=4842"/>
		<updated>2011-03-23T00:49:45Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= WELCOME =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Hello, and welcome to The Great Global Hackerspace Challenge, brought to you by the very excited folks over at element14!&lt;br /&gt;
&lt;br /&gt;
You are one of thirty hackerspaces from across the globe who have been chosen to participate in this amazing event, which seeks to stretch your hackerspace-minded ingenuity to its very limit to create an electronics build that will make a real, and very positive difference in an educational establishment. And for you to have a whole lot of fun along the way!&lt;br /&gt;
&lt;br /&gt;
Exactly what that build is, and what solution it provides is entirely down to you. The only stipulation is that your build must make use of a microcontroller and a portable power source. We encourage you to reach out to an educational institute in your area so that you can test your invention as it evolves, make sure you are answering a genuine educational need, and hopefully establish a home for your product once the challenge is over.&lt;br /&gt;
&lt;br /&gt;
Within this pack, you&#039;ll find detailed information on the equipment element14 will provide you with to get your creative thoughts flowing, and your talented hands building, as well as the low down on how to share your Hackerspace&#039;s ongoing progress with the world.&lt;br /&gt;
&lt;br /&gt;
We&#039;d also ask you make sure to read our Great Global Hackerspace Challenge Pact section, on which we are asking for a virtual handshake from you. It&#039;s our way of establishing mutual ground rules and understanding before the storm of genius activity begins.&lt;br /&gt;
&lt;br /&gt;
We thank you once again for being a part of this incredible challenge, wish you the very best of luck, and look forward with great anticipation to seeing your work as it develops. This is a challenge in which brilliant minds collaborate so that everybody wins. Onwards!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==CHALLENGE GUIDELINES==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Outlined below is a step-by-step guide with all the information you will need to help make your hackerspace challenge as successful as possible. There&#039;s a great deal to do in a very short space of time, and so we have created a calendar of key delivery dates which you&#039;ll find at the end of this pack to help you stay on track.&lt;br /&gt;
&lt;br /&gt;
If you have any questions along the way that aren&#039;t answered here, please email hackerspace@element14.com and we&#039;ll be sure to get back to you.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==YOUR TOOL KIT==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
element14 is providing you with a budget of $900 US to complete your build. You will be contacted directly to establish exactly how you would prefer to receive this money. Your microcontroller and portable power source should be procured using this money, and any additional electronic components you might need can be purchased from the element14 store. Simply go to the element14 website (www.element14.com), click on the &#039;store&#039; tab and then select your items using your $900 stipend. Your components will then be sent directly to you.&lt;br /&gt;
&lt;br /&gt;
We ask that you try not add to this budget, as one of the judging criteria is based on the total cost of the final build, but you are fully permitted to use any components or items that you might already have at your hackerspace within your build. We challenge you to be as creative as you like!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==DOCUMENTING YOUR BUILD==&lt;br /&gt;
&lt;br /&gt;
Core to this challenge is to produce an electronics build that will ultimately help education, but you can also start to help people learn about hackerspaces and electronics building along the way by regularly sharing information on your design. This is also how the judging panel will be able to track your progress and pick the three semi-finalists, and a minimum of one weekly update is a mandatory element of the challenge.&lt;br /&gt;
&lt;br /&gt;
Please feel free to share all your exciting moments as they happen, but as a guideline, content that would be useful for you to provide would be:&lt;br /&gt;
&lt;br /&gt;
*Week 1&lt;br /&gt;
** Introduce your team (video would be a great way to do this), explain your hackerspace&#039;s philosophy, and provide a top level summary of your first week&lt;br /&gt;
*Week 2&lt;br /&gt;
** Provide a basic outline of the materials you will be using in your build and any key challenges you anticipate&lt;br /&gt;
*Week 3&lt;br /&gt;
** Provide an update on the status of your build and quick summary of obstacles encountered and how they are being addressed&lt;br /&gt;
*Week 4&lt;br /&gt;
** Is everything going to plan? Perhaps provide footage of a visit to an educational institution you&#039;re working with&lt;br /&gt;
*Week 5&lt;br /&gt;
** In your penultimate week provide a review of the challenge to date. Is the pressure on? What have you learned?&lt;br /&gt;
*Week 6&lt;br /&gt;
** This is the time to really showcase your build, why it works and what features make it stand out&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==HOW TO SHARE==&lt;br /&gt;
&lt;br /&gt;
You will be required to contribute to your profile page within the element14 community. This is where you can upload your videos and photos and keep everyone informed via a written blog. You will be able to personalize the page so that your hackerspace&#039;s own unique character shines through. To do this, go to element14.com, click on �Join Now� if you are not already registered, using your Hackerspace name, and we will create your page for you.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==BUILD CRITERIA==&lt;br /&gt;
&lt;br /&gt;
Our esteemed panel of judges will include luminaries from the worlds of technology and science, education and hackerspacing.&lt;br /&gt;
&lt;br /&gt;
Following the completion of the build period, they will be judging each one on the criteria below in order to select three semi-finalists to attend the California Maker Faire for the grand finale on May 22.&lt;br /&gt;
&lt;br /&gt;
Semi-finalists will be notified personally by Mitch on May 6.&lt;br /&gt;
&lt;br /&gt;
Criteria:&lt;br /&gt;
* How reproducible is the final project&lt;br /&gt;
* How easily can the parts be sourced in locations around the world&lt;br /&gt;
* How low cost is the final output&lt;br /&gt;
* How well are the plans documented&lt;br /&gt;
* How relevant is the project to helping education today&lt;br /&gt;
* How inventive and creative is the design and build of the project&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==THE MAKER FAIRE GRAND FINALE==&lt;br /&gt;
&lt;br /&gt;
The Great Global Hackerspace Challenge will culminate in a live demonstration of each of the three semi-finalists in front of the panel of judges at the San Mateo Maker Faire. One team member from the final three hackerspaces will be flown out to California to attend the Faire and present their build. Air fare, hotel accommodation and daily food costs will all be covered by element14 - we&#039;ll provide more detail on this if you are selected.&lt;br /&gt;
&lt;br /&gt;
In the spirit of collaboration over competition, and to thank you for taking part, element14 will be sending you a set of soldering equipment, including a soldering station, for your hackerspace once you have completed the challenge.&lt;br /&gt;
&lt;br /&gt;
Each of the semi-finalist hackerspaces will receive the following prizes:&lt;br /&gt;
&lt;br /&gt;
* Fluke 233 DMM (worth US$300)&lt;br /&gt;
* Fluke 381 Clamp Meter (worth US$500)&lt;br /&gt;
* Tektronix PWS4205 Power Supply (worth US$865)&lt;br /&gt;
* Agilent HH DMM (specific model TBD)&lt;br /&gt;
&lt;br /&gt;
Finally, the build chosen to have that extra sprinkling of hackerspace magic will receive a suitably rocking prize: a Tektronix MSO2024 oscilloscope (worth around US$5,600). Start clearing a space in the corner of your hackerspace now!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==THE GREAT GLOBAL HACKERSPACE CHALLENGE PACT==&lt;br /&gt;
&lt;br /&gt;
You won&#039;t find any legal language here. We promise. The purpose of this section is to let you know that if, for any reason you are unable to finish your project you should let the organizers know as soon as possible. Particularly if you encounter circumstances beyond your control. We need to be able to manage expectations so we can accommodate the logistics of the event; judging, the Maker Faire event and the management of the content on the community.&lt;br /&gt;
&lt;br /&gt;
This isn&#039;t a contract. You won&#039;t be signing your life away. We trust you. We simply want to have the best competition possible.&lt;br /&gt;
&lt;br /&gt;
To quote the 1989 MGM classic &#039;Bill &amp;amp; Ted&#039;s Excellent Adventure&#039; we want everyone involved in this event to &#039;Be excellent to each other&#039;. And that works full circle. We are investing funds into your builds and you are investing your valuable time and energy into our challenge. In the spirit of transparency and collaboration we want everyone to succeed and get as much as they can from this project however we reserve the right to withhold product and stipend if groups do not deliver on the requirements of the challenge. We will be in close communication throughout this project and, we can all work together to avoid any adverse situations.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==CHALLENGE KEY DATES CALENDAR==&lt;br /&gt;
&lt;br /&gt;
* Week of 3/21 : Official Challenge Briefing / Q+A&lt;br /&gt;
* 3/25: Deadline to create your profile and submit your first blog update&lt;br /&gt;
* 4/1: Deadline for Hackerspace Challenge Blog Post 2&lt;br /&gt;
* 4/15: Deadline for Hackerspace Challenge Blog Post 3&lt;br /&gt;
* 4/30: End of build time&lt;br /&gt;
* 05/01- 05/05: Judging period&lt;br /&gt;
* 05/06: 3 semi-finalists will be announced&lt;br /&gt;
* Week Of 5/16: One team member from each of the three semi-finalist hackerspaces will travel to San Francisco Bay Area&lt;br /&gt;
* 5/21/22: Maker Faire&lt;br /&gt;
* 5/22: Maker Faire Great Global Hackerspace Challenge Grand Finale&lt;br /&gt;
* 5/23: Team members travel home&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
[[http://www.element-14.com/community/groups/the-great-global-hackerspace-challenge]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Talk:Great_Global_Hackerspace_Challenge&amp;diff=4832</id>
		<title>Talk:Great Global Hackerspace Challenge</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Talk:Great_Global_Hackerspace_Challenge&amp;diff=4832"/>
		<updated>2011-03-22T01:45:57Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: Created page with &amp;quot;=Emails!=  ==First Email - From Mark @ Agent Silverfox --~~~~== Hi there,  I&amp;#039;m emailing you on behalf of Mitch Altman and the Great Global Hackerspace Challenge that you&amp;#039;re parti...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Emails!=&lt;br /&gt;
&lt;br /&gt;
==First Email - From Mark @ Agent Silverfox --[[User:Redbeard|Redbeard]] 01:45, 22 March 2011 (UTC)==&lt;br /&gt;
Hi there,&lt;br /&gt;
&lt;br /&gt;
I&#039;m emailing you on behalf of Mitch Altman and the Great Global Hackerspace Challenge that you&#039;re participating in.  My name is Mark and I work for Silverfox. We&#039;re based in San Francisco, California. We&#039;re running this competition for our client element14. &lt;br /&gt;
&lt;br /&gt;
(If this email has been received at a general mailbox for your Hackerspace and you&#039;re not familiar with this program please reply and I can let you know who at your space you can direct this to.)&lt;br /&gt;
&lt;br /&gt;
Our team includes Claire, Sally and Ryan and we&#039;ll be available through out this project to help with scheduling, finances, travel and publishing. We want to get a group phone or Skype call set up to introduce ourselves and answer any questions you may have. Since we would like to have you set up on the element14.com community by Friday March 25th we&#039;d like to get a call planned as soon as possible to provide as much assistance as we can. &lt;br /&gt;
&lt;br /&gt;
Would you be free tomorrow Tuesday March 22nd or Wednesday March 23rd for 30-60 minutes? Here is a link to a free scheduling service where you can let us know which times are good for you.&lt;br /&gt;
&lt;br /&gt;
http://www.doodle.com/z6m5sutkd6e3yex7&lt;br /&gt;
&lt;br /&gt;
Click on as many of the suggested slots that you could attend and we&#039;ll pick a time that hopefully works for everyone.&lt;br /&gt;
&lt;br /&gt;
If you&#039;re not available for voice calls we want to be flexible. Let us know how you&#039;d like to communicate - Basecamp, email, IM. It&#039;s all good with us. We will also be communicating with you directly for private discussions. &lt;br /&gt;
&lt;br /&gt;
We&#039;re looking forward to meeting you all!&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Great_Global_Hackerspace_Challenge&amp;diff=4831</id>
		<title>Great Global Hackerspace Challenge</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Great_Global_Hackerspace_Challenge&amp;diff=4831"/>
		<updated>2011-03-22T00:16:15Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: Created page with &amp;quot;= WELCOME =     Hello, and welcome to The Great Global Hackerspace Challenge, brought to you by the very excited folks over at element14!  You are one of thirty hackerspaces from...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= WELCOME =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Hello, and welcome to The Great Global Hackerspace Challenge, brought to you by the very excited folks over at element14!&lt;br /&gt;
&lt;br /&gt;
You are one of thirty hackerspaces from across the globe who have been chosen to participate in this amazing event, which seeks to stretch your hackerspace-minded ingenuity to its very limit to create an electronics build that will make a real, and very positive difference in an educational establishment. And for you to have a whole lot of fun along the way!&lt;br /&gt;
&lt;br /&gt;
Exactly what that build is, and what solution it provides is entirely down to you. The only stipulation is that your build must make use of a microcontroller and a portable power source. We encourage you to reach out to an educational institute in your area so that you can test your invention as it evolves, make sure you are answering a genuine educational need, and hopefully establish a home for your product once the challenge is over.&lt;br /&gt;
&lt;br /&gt;
Within this pack, you&#039;ll find detailed information on the equipment element14 will provide you with to get your creative thoughts flowing, and your talented hands building, as well as the low down on how to share your Hackerspace&#039;s ongoing progress with the world.&lt;br /&gt;
&lt;br /&gt;
We&#039;d also ask you make sure to read our Great Global Hackerspace Challenge Pact section, on which we are asking for a virtual handshake from you. It&#039;s our way of establishing mutual ground rules and understanding before the storm of genius activity begins.&lt;br /&gt;
&lt;br /&gt;
We thank you once again for being a part of this incredible challenge, wish you the very best of luck, and look forward with great anticipation to seeing your work as it develops. This is a challenge in which brilliant minds collaborate so that everybody wins. Onwards!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==CHALLENGE GUIDELINES==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Outlined below is a step-by-step guide with all the information you will need to help make your hackerspace challenge as successful as possible. There&#039;s a great deal to do in a very short space of time, and so we have created a calendar of key delivery dates which you&#039;ll find at the end of this pack to help you stay on track.&lt;br /&gt;
&lt;br /&gt;
If you have any questions along the way that aren&#039;t answered here, please email hackerspace@element14.com and we&#039;ll be sure to get back to you.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==YOUR TOOL KIT==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
element14 is providing you with a budget of $900 US to complete your build. You will be contacted directly to establish exactly how you would prefer to receive this money. Your microcontroller and portable power source should be procured using this money, and any additional electronic components you might need can be purchased from the element14 store. Simply go to the element14 website (www.element14.com), click on the &#039;store&#039; tab and then select your items using your $900 stipend. Your components will then be sent directly to you.&lt;br /&gt;
&lt;br /&gt;
We ask that you try not add to this budget, as one of the judging criteria is based on the total cost of the final build, but you are fully permitted to use any components or items that you might already have at your hackerspace within your build. We challenge you to be as creative as you like!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==DOCUMENTING YOUR BUILD==&lt;br /&gt;
&lt;br /&gt;
Core to this challenge is to produce an electronics build that will ultimately help education, but you can also start to help people learn about hackerspaces and electronics building along the way by regularly sharing information on your design. This is also how the judging panel will be able to track your progress and pick the three semi-finalists, and a minimum of one weekly update is a mandatory element of the challenge.&lt;br /&gt;
&lt;br /&gt;
Please feel free to share all your exciting moments as they happen, but as a guideline, content that would be useful for you to provide would be:&lt;br /&gt;
&lt;br /&gt;
*Week 1&lt;br /&gt;
** Introduce your team (video would be a great way to do this), explain your hackerspace&#039;s philosophy, and provide a top level summary of your first week&lt;br /&gt;
*Week 2&lt;br /&gt;
** Provide a basic outline of the materials you will be using in your build and any key challenges you anticipate&lt;br /&gt;
*Week 3&lt;br /&gt;
** Provide an update on the status of your build and quick summary of obstacles encountered and how they are being addressed&lt;br /&gt;
*Week 4&lt;br /&gt;
** Is everything going to plan? Perhaps provide footage of a visit to an educational institution you&#039;re working with&lt;br /&gt;
*Week 5&lt;br /&gt;
** In your penultimate week provide a review of the challenge to date. Is the pressure on? What have you learned?&lt;br /&gt;
*Week 6&lt;br /&gt;
** This is the time to really showcase your build, why it works and what features make it stand out&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==HOW TO SHARE==&lt;br /&gt;
&lt;br /&gt;
You will be required to contribute to your profile page within the element14 community. This is where you can upload your videos and photos and keep everyone informed via a written blog. You will be able to personalize the page so that your hackerspace&#039;s own unique character shines through. To do this, go to element14.com, click on �Join Now� if you are not already registered, using your Hackerspace name, and we will create your page for you.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==BUILD CRITERIA==&lt;br /&gt;
&lt;br /&gt;
Our esteemed panel of judges will include luminaries from the worlds of technology and science, education and hackerspacing.&lt;br /&gt;
&lt;br /&gt;
Following the completion of the build period, they will be judging each one on the criteria below in order to select three semi-finalists to attend the California Maker Faire for the grand finale on May 22.&lt;br /&gt;
&lt;br /&gt;
Semi-finalists will be notified personally by Mitch on May 6.&lt;br /&gt;
&lt;br /&gt;
Criteria:&lt;br /&gt;
* How reproducible is the final project&lt;br /&gt;
* How easily can the parts be sourced in locations around the world&lt;br /&gt;
* How low cost is the final output&lt;br /&gt;
* How well are the plans documented&lt;br /&gt;
* How relevant is the project to helping education today&lt;br /&gt;
* How inventive and creative is the design and build of the project&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==THE MAKER FAIRE GRAND FINALE==&lt;br /&gt;
&lt;br /&gt;
The Great Global Hackerspace Challenge will culminate in a live demonstration of each of the three semi-finalists in front of the panel of judges at the San Mateo Maker Faire. One team member from the final three hackerspaces will be flown out to California to attend the Faire and present their build. Air fare, hotel accommodation and daily food costs will all be covered by element14 - we&#039;ll provide more detail on this if you are selected.&lt;br /&gt;
&lt;br /&gt;
In the spirit of collaboration over competition, and to thank you for taking part, element14 will be sending you a set of soldering equipment, including a soldering station, for your hackerspace once you have completed the challenge.&lt;br /&gt;
&lt;br /&gt;
Each of the semi-finalist hackerspaces will receive the following prizes:&lt;br /&gt;
&lt;br /&gt;
* Fluke 233 DMM (worth US$300)&lt;br /&gt;
* Fluke 381 Clamp Meter (worth US$500)&lt;br /&gt;
* Tektronix PWS4205 Power Supply (worth US$865)&lt;br /&gt;
* Agilent HH DMM (specific model TBD)&lt;br /&gt;
&lt;br /&gt;
Finally, the build chosen to have that extra sprinkling of hackerspace magic will receive a suitably rocking prize: a Tektronix MSO2024 oscilloscope (worth around US$5,600). Start clearing a space in the corner of your hackerspace now!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==THE GREAT GLOBAL HACKERSPACE CHALLENGE PACT==&lt;br /&gt;
&lt;br /&gt;
You won&#039;t find any legal language here. We promise. The purpose of this section is to let you know that if, for any reason you are unable to finish your project you should let the organizers know as soon as possible. Particularly if you encounter circumstances beyond your control. We need to be able to manage expectations so we can accommodate the logistics of the event; judging, the Maker Faire event and the management of the content on the community.&lt;br /&gt;
&lt;br /&gt;
This isn&#039;t a contract. You won&#039;t be signing your life away. We trust you. We simply want to have the best competition possible.&lt;br /&gt;
&lt;br /&gt;
To quote the 1989 MGM classic &#039;Bill &amp;amp; Ted&#039;s Excellent Adventure&#039; we want everyone involved in this event to &#039;Be excellent to each other&#039;. And that works full circle. We are investing funds into your builds and you are investing your valuable time and energy into our challenge. In the spirit of transparency and collaboration we want everyone to succeed and get as much as they can from this project however we reserve the right to withhold product and stipend if groups do not deliver on the requirements of the challenge. We will be in close communication throughout this project and, we can all work together to avoid any adverse situations.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==CHALLENGE KEY DATES CALENDAR==&lt;br /&gt;
&lt;br /&gt;
* Week of 3/21 : Official Challenge Briefing / Q+A&lt;br /&gt;
* 3/25: Deadline to create your profile and submit your first blog update&lt;br /&gt;
* 4/1: Deadline for Hackerspace Challenge Blog Post 2&lt;br /&gt;
* 4/15: Deadline for Hackerspace Challenge Blog Post 3&lt;br /&gt;
* 4/30: End of build time&lt;br /&gt;
* 05/01- 05/05: Judging period&lt;br /&gt;
* 05/06: 3 semi-finalists will be announced&lt;br /&gt;
* Week Of 5/16: One team member from each of the three semi-finalist hackerspaces will travel to San Francisco Bay Area&lt;br /&gt;
* 5/21/22: Maker Faire&lt;br /&gt;
* 5/22: Maker Faire Great Global Hackerspace Challenge Grand Finale&lt;br /&gt;
* 5/23: Team members travel home&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Welcome_to_the_HacDC_Wiki&amp;diff=4830</id>
		<title>Welcome to the HacDC Wiki</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Welcome_to_the_HacDC_Wiki&amp;diff=4830"/>
		<updated>2011-03-22T00:06:35Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: added link fro great global hackerspace challenge&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOCright}}&amp;lt;span style=&amp;quot;font-size:large; line-height:1.5em; color:#222&amp;quot;&amp;gt;Welcome to HacDC. We are a hacker space located in Washington, DC. HacDC members improve the world by creatively rethinking technology. We break, build, and occasionally abuse technology in the pursuit of greater knowledge about how it works and repurposing it to build new things. Our shop is located in the [http://en.wikipedia.org/wiki/Columbia_Heights%2C_Washington%2C_D.C. Columbia Heights] neighborhood of DC.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you&#039;re new here, you should start by looking at our public web site at [http://www.hacdc.org/ hacdc.org]. Our Wiki is mostly for internal organization, but you&#039;re welcome to look through to get a sense of what we work on (and consider joining yourself!).  We invite you to subscribe to our [http://www.hacdc.org/mailman/listinfo/announce announcement] (weekly e-mail) and [http://www.hacdc.org/mailman/listinfo/blabber blabber] (high traffic) mailing lists.&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width:48%;&amp;quot;&amp;gt;&lt;br /&gt;
=== Cool Stuff Going On Right Now ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[Byzantium]]&lt;br /&gt;
* [[AVR Microcontroller Class 2011]]&lt;br /&gt;
* [[Great Global Hackerspace Challenge]]&lt;br /&gt;
* [[Linux Class]]&lt;br /&gt;
* [[TECS | The Elements of Computing Systems: Building a Modern Computer from First Principles]]&lt;br /&gt;
* [[3D Printing]]&lt;br /&gt;
* [[Bike Maintenance Class]]&lt;br /&gt;
* [[HacDC Spaceblimp]]&lt;br /&gt;
&lt;br /&gt;
=== Top Links ===&lt;br /&gt;
Themes and threads that span across the other categories in the Wiki.  This is also where we keep things that don&#039;t easily fit in other categories:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[[New Space]]&#039;&#039;&#039;&lt;br /&gt;
* [[TECS | The Elements of Computing Systems]]&lt;br /&gt;
* [[GettingHere]]&lt;br /&gt;
* [[:Category:Meeting Minutes | Meeting Minutes]] . Next: [[Regular Member Meeting 2011 04 12]]&lt;br /&gt;
* [[:Category:Meeting Agendas | Meeting Agendas]]&lt;br /&gt;
* [[:Category:Classes | Classes]]&lt;br /&gt;
* [[:Category:Hacker Travel | Hacker Travel]]&lt;br /&gt;
&lt;br /&gt;
=== [[:Category:Projects]] ===&lt;br /&gt;
Where our projects collaborate and document their research and progress.  They are generally classified as:&lt;br /&gt;
* [[:Category:Ongoing Projects | Ongoing Projects]]&lt;br /&gt;
* [[:Category:Proposed Projects | Proposed Projects]]&lt;br /&gt;
* [[:Category:Abandoned Projects | Abandoned Projects]]&lt;br /&gt;
&lt;br /&gt;
=== [[:Category:In the Space | Records]] ===&lt;br /&gt;
Entries relating to the space including layout and events and classes we hold&lt;br /&gt;
* [[:SpaceSearch | Space Search: the search for a new space]]&lt;br /&gt;
* [[:Category:Space Configuration | Configuration]]&lt;br /&gt;
* [[:Category:Event Planning | Event Planning]]&lt;br /&gt;
* [[:Category:Classes | Classes]]&lt;br /&gt;
* [[Wishlist]]&lt;br /&gt;
* [[:Category:What_I_Stole | What I Stole]]&lt;br /&gt;
* [[Human_Resources | Workspace Access]]&lt;br /&gt;
* [[Central_Services | HacDC Leadership]]&lt;br /&gt;
* [[Inventory | Inventory]]&lt;br /&gt;
* [[Procurement | Procurement]]&lt;br /&gt;
* [[Suppliers | Suppliers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right; width:48%;&amp;quot;&amp;gt; &amp;lt;!-- This width adds to the margin above to equal 100 %--&amp;gt;&lt;br /&gt;
== Events ==&lt;br /&gt;
&amp;lt;googlecalendar&amp;gt;?showTitle=0&amp;amp;amp;showPrint=0&amp;amp;amp;showCalendars=0&amp;amp;amp;mode=AGENDA&amp;amp;amp;height=250&amp;amp;amp;wkst=1&amp;amp;amp;bgcolor=%23FFFFFF&amp;amp;amp;src=c0jnbtagjrjs0h1o00jqvauduflv24ca%40import.calendar.google.com&amp;amp;amp;color=%2328754E&amp;amp;amp;ctz=America%2FNew_York&amp;quot; style=&amp;quot; border-width:0 &amp;quot; width=&amp;quot;500&amp;quot; height=&amp;quot;250&amp;quot; frameborder=&amp;quot;0&amp;quot; scrolling=&amp;quot;no&amp;quot;&amp;gt;&amp;lt;/googlecalendar&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A [http://hacdc.org/ics iCal feed] is also available, for enjoying our events from your favorite calendaring software.&lt;br /&gt;
&lt;br /&gt;
=== [[:Category:Community]] ===&lt;br /&gt;
Pages on people in our community :&lt;br /&gt;
* [[:Category:Members | Member User Pages]] &lt;br /&gt;
* [[:Category:Friends | Friends of HacDC]]&lt;br /&gt;
* [[:Category:Heroes | Heroes and people who inspire us]]&lt;br /&gt;
&lt;br /&gt;
=== [[:Category:Policy]] ===&lt;br /&gt;
Our Policy Manual is divided into the following subcategories:&lt;br /&gt;
* [[Articles_of_Incorporation|Articles of Incorporation]]&lt;br /&gt;
* [[Bylaws]]&lt;br /&gt;
* [[MIBS_Simplified_Rules_of_Coordinated_Consensus_through_Chaos | Meeting Rules]]&lt;br /&gt;
* [[Privacy_Policy | Privacy Policy]]&lt;br /&gt;
* [[Resource_Use_Policy | Resource Use Policy]]&lt;br /&gt;
* [[Resource_Disposal | Resource Disposal Policy]]&lt;br /&gt;
* [[:Category:Communications Policy | Communications Policy]]&lt;br /&gt;
* [[Licensing_Policy | Licensing Policy]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Linux_Class&amp;diff=4751</id>
		<title>Linux Class</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Linux_Class&amp;diff=4751"/>
		<updated>2011-03-11T23:19:34Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Stuff for the HacDC Linux Curriculum.  Contains information to make you a Linux Guru.&lt;br /&gt;
&lt;br /&gt;
Initially, this will be filled with a lot of acronym soup.  To make this easier, please feel free to link in pages from Wikipedia to help readers with terms they&#039;re not familiar with.  In the end, the goal of this class/workshop/curriculum is to help students not only learn new things, but learn what they don&#039;t know as well.&lt;br /&gt;
&lt;br /&gt;
Also see (and contribute to) [[Linux Lab]]&lt;br /&gt;
&lt;br /&gt;
== Class ¼: Introduction and Setup (The Hardware)==&lt;br /&gt;
=== Types of systems ===&lt;br /&gt;
&lt;br /&gt;
* Desktops&lt;br /&gt;
* Servers&lt;br /&gt;
** Servers (not services)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Class ½: Introduction and Setup (Installation - Physical Media)==&lt;br /&gt;
&lt;br /&gt;
== Class ¾: Introduction and Setup (Installation - Kickstart)==&lt;br /&gt;
&lt;br /&gt;
Kickstart is a component of &amp;quot;Anaconda&amp;quot;, the Red Hat installation system.  Kickstart allows you to provide all of the answers to the questions prompted during the installation of a system.  The result is that the installation can be completely automated.  When combined with [http://en.wikipedia.org/wiki/Preboot_Execution_Environment  PXE] (the Preboot Execution Environment) the result is (almost) completely painless installation of new machines.  &lt;br /&gt;
&lt;br /&gt;
The setup of a network based PXE/Kickstart environment can be challenging for the inexperienced.  A netboot enabled PXE environment will often include a [http://en.wikipedia.org/wiki/Trivial_File_Transfer_Protocol TFTP] server, a [http://en.wikipedia.org/wiki/Dynamic_Host_Configuration_Protocol DHCP] server, and some method of serving the files to the client.  In our case, we use [http://httpd.apache.org Apache], a piece of software designed to serve web pages to clients using the [http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol HTTP] protocol.  Though we&#039;re not using it for web pages per se, it still gets transferred to the clients in the same fashion.&lt;br /&gt;
&lt;br /&gt;
== Class 1: SSH  &amp;amp; Getting In ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Class 2: My Little VM ==&lt;br /&gt;
&lt;br /&gt;
== Class 3: Service Time: DNS ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Classes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Linux_Class&amp;diff=4750</id>
		<title>Linux Class</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Linux_Class&amp;diff=4750"/>
		<updated>2011-03-11T23:17:44Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* Class ¾: Introduction and Setup (Installation - Kickstart) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Stuff for the HacDC Linux Curriculum.  Contains information to make you a Linux Guru &lt;br /&gt;
&lt;br /&gt;
Also see (and contribute to) [[Linux Lab]]&lt;br /&gt;
&lt;br /&gt;
== Class ¼: Introduction and Setup (The Hardware)==&lt;br /&gt;
=== Types of systems ===&lt;br /&gt;
&lt;br /&gt;
* Desktops&lt;br /&gt;
* Servers&lt;br /&gt;
** Servers (not services)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Class ½: Introduction and Setup (Installation - Physical Media)==&lt;br /&gt;
&lt;br /&gt;
== Class ¾: Introduction and Setup (Installation - Kickstart)==&lt;br /&gt;
&lt;br /&gt;
Kickstart is a component of &amp;quot;Anaconda&amp;quot;, the Red Hat installation system.  Kickstart allows you to provide all of the answers to the questions prompted during the installation of a system.  The result is that the installation can be completely automated.  When combined with [http://en.wikipedia.org/wiki/Preboot_Execution_Environment  PXE] (the Preboot Execution Environment) the result is (almost) completely painless installation of new machines.  &lt;br /&gt;
&lt;br /&gt;
The setup of a network based PXE/Kickstart environment can be challenging for the inexperienced.  A netboot enabled PXE environment will often include a [http://en.wikipedia.org/wiki/Trivial_File_Transfer_Protocol TFTP] server, a [http://en.wikipedia.org/wiki/Dynamic_Host_Configuration_Protocol DHCP] server, and some method of serving the files to the client.  In our case, we use [http://httpd.apache.org Apache], a piece of software designed to serve web pages to clients using the [http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol HTTP] protocol.  Though we&#039;re not using it for web pages per se, it still gets transferred to the clients in the same fashion.&lt;br /&gt;
&lt;br /&gt;
== Class 1: SSH  &amp;amp; Getting In ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Class 2: My Little VM ==&lt;br /&gt;
&lt;br /&gt;
== Class 3: Service Time: DNS ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Classes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Linux_Class&amp;diff=4749</id>
		<title>Linux Class</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Linux_Class&amp;diff=4749"/>
		<updated>2011-03-11T23:12:53Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Stuff for the HacDC Linux Curriculum.  Contains information to make you a Linux Guru &lt;br /&gt;
&lt;br /&gt;
Also see (and contribute to) [[Linux Lab]]&lt;br /&gt;
&lt;br /&gt;
== Class ¼: Introduction and Setup (The Hardware)==&lt;br /&gt;
=== Types of systems ===&lt;br /&gt;
&lt;br /&gt;
* Desktops&lt;br /&gt;
* Servers&lt;br /&gt;
** Servers (not services)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Class ½: Introduction and Setup (Installation - Physical Media)==&lt;br /&gt;
&lt;br /&gt;
== Class ¾: Introduction and Setup (Installation - Kickstart)==&lt;br /&gt;
&lt;br /&gt;
Kickstart is a component of &amp;quot;Anaconda&amp;quot;, the Red Hat installation system.  Kickstart allows you to provide all of the answers to the questions prompted during the installation of a system.  The result is that the installation can be completely automated.  When combined with [http://en.wikipedia.org/wiki/Preboot_Execution_Environment  PXE] (the Preboot Execution Environment)&lt;br /&gt;
== Class 1: SSH  &amp;amp; Getting In ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Class 2: My Little VM ==&lt;br /&gt;
&lt;br /&gt;
== Class 3: Service Time: DNS ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Classes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Linux_Class&amp;diff=4748</id>
		<title>Linux Class</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Linux_Class&amp;diff=4748"/>
		<updated>2011-03-11T23:07:18Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: Created page with &amp;quot;Stuff for the HacDC Linux Curriculum.  Contains information to make you a Linux Guru   Also see (and contribute to) Linux Lab  == Class ¼: Introduction and Setup (The Hardwa...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Stuff for the HacDC Linux Curriculum.  Contains information to make you a Linux Guru &lt;br /&gt;
&lt;br /&gt;
Also see (and contribute to) [[Linux Lab]]&lt;br /&gt;
&lt;br /&gt;
== Class ¼: Introduction and Setup (The Hardware)==&lt;br /&gt;
&lt;br /&gt;
== Class ½: Introduction and Setup (Installation - Physical Media)==&lt;br /&gt;
&lt;br /&gt;
== Class ¾: Introduction and Setup (Installation - Kickstart)==&lt;br /&gt;
&lt;br /&gt;
== Class 1: SSH  &amp;amp; Getting In ==&lt;br /&gt;
&lt;br /&gt;
== Class 2: My Little VM ==&lt;br /&gt;
&lt;br /&gt;
== Class 3: Service Time: DNS ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Classes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Welcome_to_the_HacDC_Wiki&amp;diff=4747</id>
		<title>Welcome to the HacDC Wiki</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Welcome_to_the_HacDC_Wiki&amp;diff=4747"/>
		<updated>2011-03-11T23:03:29Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{TOCright}}&amp;lt;span style=&amp;quot;font-size:large; line-height:1.5em; color:#222&amp;quot;&amp;gt;Welcome to HacDC. We are a hacker space located in Washington, DC. HacDC members improve the world by creatively rethinking technology. We break, build, and occasionally abuse technology in the pursuit of greater knowledge about how it works and repurposing it to build new things. Our shop is located in the [http://en.wikipedia.org/wiki/Columbia_Heights%2C_Washington%2C_D.C. Columbia Heights] neighborhood of DC.&amp;lt;/span&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If you&#039;re new here, you should start by looking at our public web site at [http://www.hacdc.org/ hacdc.org]. Our Wiki is mostly for internal organization, but you&#039;re welcome to look through to get a sense of what we work on (and consider joining yourself!).  We invite you to subscribe to our [http://www.hacdc.org/mailman/listinfo/announce announcement] (weekly e-mail) and [http://www.hacdc.org/mailman/listinfo/blabber blabber] (high traffic) mailing lists.&amp;lt;hr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:left; width:48%;&amp;quot;&amp;gt;&lt;br /&gt;
=== Cool Stuff Going On Right Now ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* [[Byzantium]]&lt;br /&gt;
* [[AVR Microcontroller Class 2011]]&lt;br /&gt;
* [[Linux Class]]&lt;br /&gt;
* [[TECS | The Elements of Computing Systems: Building a Modern Computer from First Principles]]&lt;br /&gt;
* [[3D Printing]]&lt;br /&gt;
* [[Bike Maintenance Class]]&lt;br /&gt;
&lt;br /&gt;
=== Top Links ===&lt;br /&gt;
Themes and threads that span across the other categories in the Wiki.  This is also where we keep things that don&#039;t easily fit in other categories:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;[[New Space]]&#039;&#039;&#039;&lt;br /&gt;
* [[TECS | The Elements of Computing Systems]]&lt;br /&gt;
* [[GettingHere]]&lt;br /&gt;
* [[:Category:Meeting Minutes | Meeting Minutes]] . Next: [[Regular Member Meeting 2011 04 12]]&lt;br /&gt;
* [[:Category:Meeting Agendas | Meeting Agendas]]&lt;br /&gt;
* [[:Category:Classes | Classes]]&lt;br /&gt;
* [[:Category:Hacker Travel | Hacker Travel]]&lt;br /&gt;
&lt;br /&gt;
=== [[:Category:Projects]] ===&lt;br /&gt;
Where our projects collaborate and document their research and progress.  They are generally classified as:&lt;br /&gt;
* [[:Category:Ongoing Projects | Ongoing Projects]]&lt;br /&gt;
* [[:Category:Proposed Projects | Proposed Projects]]&lt;br /&gt;
* [[:Category:Abandoned Projects | Abandoned Projects]]&lt;br /&gt;
&lt;br /&gt;
=== [[:Category:In the Space | Records]] ===&lt;br /&gt;
Entries relating to the space including layout and events and classes we hold&lt;br /&gt;
* [[:SpaceSearch | Space Search: the search for a new space]]&lt;br /&gt;
* [[:Category:Space Configuration | Configuration]]&lt;br /&gt;
* [[:Category:Event Planning | Event Planning]]&lt;br /&gt;
* [[:Category:Classes | Classes]]&lt;br /&gt;
* [[Wishlist]]&lt;br /&gt;
* [[:Category:What_I_Stole | What I Stole]]&lt;br /&gt;
* [[Human_Resources | Workspace Access]]&lt;br /&gt;
* [[Central_Services | HacDC Leadership]]&lt;br /&gt;
* [[Inventory | Inventory]]&lt;br /&gt;
* [[Procurement | Procurement]]&lt;br /&gt;
* [[Suppliers | Suppliers]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div style=&amp;quot;float:right; width:48%;&amp;quot;&amp;gt; &amp;lt;!-- This width adds to the margin above to equal 100 %--&amp;gt;&lt;br /&gt;
== HacDC&#039;s [[Live Status]] ==&lt;br /&gt;
We&#039;re working on providing [[Live Status]] information here; please bear with us.&lt;br /&gt;
&lt;br /&gt;
See [http://twitter.com/hacdcdoorman the hacdoorman twitter feed].&lt;br /&gt;
Or get your status straight from the source: [http://hacdc.org/sites/default/files/last_occsensor.txt last_occsensor.txt].&lt;br /&gt;
&lt;br /&gt;
== Events ==&lt;br /&gt;
&amp;lt;googlecalendar&amp;gt;?showTitle=0&amp;amp;amp;showPrint=0&amp;amp;amp;showCalendars=0&amp;amp;amp;mode=AGENDA&amp;amp;amp;height=250&amp;amp;amp;wkst=1&amp;amp;amp;bgcolor=%23FFFFFF&amp;amp;amp;src=c0jnbtagjrjs0h1o00jqvauduflv24ca%40import.calendar.google.com&amp;amp;amp;color=%2328754E&amp;amp;amp;ctz=America%2FNew_York&amp;quot; style=&amp;quot; border-width:0 &amp;quot; width=&amp;quot;500&amp;quot; height=&amp;quot;250&amp;quot; frameborder=&amp;quot;0&amp;quot; scrolling=&amp;quot;no&amp;quot;&amp;gt;&amp;lt;/googlecalendar&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A [http://hacdc.org/ics iCal feed] is also available, for enjoying our events from your favorite calendaring software.&lt;br /&gt;
&lt;br /&gt;
=== [[:Category:Community]] ===&lt;br /&gt;
Pages on people in our community :&lt;br /&gt;
* [[:Category:Members | Member User Pages]] &lt;br /&gt;
* [[:Category:Friends | Friends of HacDC]]&lt;br /&gt;
* [[:Category:Heroes | Heroes and people who inspire us]]&lt;br /&gt;
&lt;br /&gt;
=== [[:Category:Policy]] ===&lt;br /&gt;
Our Policy Manual is divided into the following subcategories:&lt;br /&gt;
* [[Articles_of_Incorporation|Articles of Incorporation]]&lt;br /&gt;
* [[Bylaws]]&lt;br /&gt;
* [[MIBS_Simplified_Rules_of_Coordinated_Consensus_through_Chaos | Meeting Rules]]&lt;br /&gt;
* [[Privacy_Policy | Privacy Policy]]&lt;br /&gt;
* [[Resource_Use_Policy | Resource Use Policy]]&lt;br /&gt;
* [[Resource_Disposal | Resource Disposal Policy]]&lt;br /&gt;
* [[:Category:Communications Policy | Communications Policy]]&lt;br /&gt;
* [[Licensing_Policy | Licensing Policy]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=AVR_Class&amp;diff=4527</id>
		<title>AVR Class</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=AVR_Class&amp;diff=4527"/>
		<updated>2011-03-03T23:11:52Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: Redirected page to AVR Microcontroller Class&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[AVR_Microcontroller_Class]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Linux_Lab&amp;diff=4481</id>
		<title>Linux Lab</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Linux_Lab&amp;diff=4481"/>
		<updated>2011-03-03T04:44:30Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;For the purpose of education amongst it&#039;s members, HacDC maintains a lab of Red Hat Enterprise Linux Machines.  These are used for the purposes of learning linux administration, pentesting, and network security.&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Linux_Lab&amp;diff=4480</id>
		<title>Linux Lab</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Linux_Lab&amp;diff=4480"/>
		<updated>2011-03-03T04:43:34Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: Created page with &amp;quot;Welcome to teh linux&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to teh linux&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Annual_Meeting_2011&amp;diff=4392</id>
		<title>Annual Meeting 2011</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Annual_Meeting_2011&amp;diff=4392"/>
		<updated>2011-02-24T01:07:53Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* New Business */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011 Annual Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
= Purpose =&lt;br /&gt;
&lt;br /&gt;
From the HacDC Bylaws, Article III, Section 2:&lt;br /&gt;
:At the annual meeting, the voting members shall elect the Board of Directors, review and vote on the standing rules and policies of the corporation, receive reports on the activities of the corporation, approve the budget and determine the direction of corporation in the coming year.&lt;br /&gt;
&lt;br /&gt;
= Time and Location =&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at ___ by ___&lt;br /&gt;
&lt;br /&gt;
Members Present:&lt;br /&gt;
&lt;br /&gt;
Others:&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] established?&lt;br /&gt;
&lt;br /&gt;
= Officer Reports =&lt;br /&gt;
&lt;br /&gt;
== President&#039;s Report ==&lt;br /&gt;
&lt;br /&gt;
== Vice President&#039;s Report ==&lt;br /&gt;
&lt;br /&gt;
== Treasurer&#039;s Report ==&lt;br /&gt;
&lt;br /&gt;
ASSETS 	&lt;br /&gt;
&lt;br /&gt;
Current Assets 	&lt;br /&gt;
&lt;br /&gt;
Bank Accounts 	&lt;br /&gt;
&lt;br /&gt;
BBT Checking 	2,726.07&lt;br /&gt;
&lt;br /&gt;
Total Bank Accounts 	$2,726.07&lt;br /&gt;
&lt;br /&gt;
Other Current Assets 	&lt;br /&gt;
&lt;br /&gt;
Paypal 	3,733.28&lt;br /&gt;
&lt;br /&gt;
Undeposited Funds 	0.00&lt;br /&gt;
&lt;br /&gt;
Total Other Current Assets 	$3,733.28&lt;br /&gt;
&lt;br /&gt;
Total Current Assets 	$6,459.35&lt;br /&gt;
&lt;br /&gt;
Other Assets 	&lt;br /&gt;
&lt;br /&gt;
Rent Security Deposits 	850.00&lt;br /&gt;
&lt;br /&gt;
Total Other Assets 	$850.00&lt;br /&gt;
&lt;br /&gt;
TOTAL ASSETS 	$7,309.35&lt;br /&gt;
&lt;br /&gt;
LIABILITIES AND EQUITY 	&lt;br /&gt;
&lt;br /&gt;
Liabilities 	&lt;br /&gt;
&lt;br /&gt;
Total Liabilities 	&lt;br /&gt;
&lt;br /&gt;
Equity 	&lt;br /&gt;
&lt;br /&gt;
Opening Balance Equity (April 2010, Beginning of Quickbooks) 9,023.84&lt;br /&gt;
&lt;br /&gt;
Retained Earnings 	-1,304.64&lt;br /&gt;
&lt;br /&gt;
Net Income 	-409.85&lt;br /&gt;
&lt;br /&gt;
Total Equity 	$7,309.35&lt;br /&gt;
&lt;br /&gt;
TOTAL LIABILITIES AND EQUITY 	$7,309.35&lt;br /&gt;
&lt;br /&gt;
BUDGET:&lt;br /&gt;
&lt;br /&gt;
2526.00 RENT&lt;br /&gt;
&lt;br /&gt;
$68.58 ST. FARM INSURANCE&lt;br /&gt;
&lt;br /&gt;
$37.45 LINODE &lt;br /&gt;
&lt;br /&gt;
$10.55 QUICKBOOKS&lt;br /&gt;
&lt;br /&gt;
$2642.58&lt;br /&gt;
&lt;br /&gt;
-~2000&lt;br /&gt;
&lt;br /&gt;
=642.58 STRUCTURAL DEFICIT&lt;br /&gt;
&lt;br /&gt;
== Secretary&#039;s Report ==&lt;br /&gt;
&lt;br /&gt;
== At-Large Directors&#039; Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Member Reports =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= New Business =&lt;br /&gt;
&lt;br /&gt;
* Remote meetings/telemeetings via GoToMeeting via TechSoup.  $95/year for up to 1000 attendees.  Voting allowed, but not secret ballot (if you want it secret, show up).  Would also allow for remote attendees of classes.&lt;br /&gt;
&lt;br /&gt;
== Board of Directors Elections ==&lt;br /&gt;
&lt;br /&gt;
=== President ===&lt;br /&gt;
&lt;br /&gt;
=== Vice-President ===&lt;br /&gt;
&lt;br /&gt;
=== Treasurer ===&lt;br /&gt;
&lt;br /&gt;
=== Secretary ===&lt;br /&gt;
&lt;br /&gt;
=== At-Large Directors ===&lt;br /&gt;
&lt;br /&gt;
=== Induction of New Members ===&lt;br /&gt;
&lt;br /&gt;
= Finances =&lt;br /&gt;
&lt;br /&gt;
= Adjournment =&lt;br /&gt;
&lt;br /&gt;
Meeting adjourned at ___&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Annual_Meeting_2011&amp;diff=4391</id>
		<title>Annual Meeting 2011</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Annual_Meeting_2011&amp;diff=4391"/>
		<updated>2011-02-24T01:00:11Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: added remote meetings&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2011 Annual Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
= Purpose =&lt;br /&gt;
&lt;br /&gt;
From the HacDC Bylaws, Article III, Section 2:&lt;br /&gt;
:At the annual meeting, the voting members shall elect the Board of Directors, review and vote on the standing rules and policies of the corporation, receive reports on the activities of the corporation, approve the budget and determine the direction of corporation in the coming year.&lt;br /&gt;
&lt;br /&gt;
= Time and Location =&lt;br /&gt;
&lt;br /&gt;
Meeting called to order at ___ by ___&lt;br /&gt;
&lt;br /&gt;
Members Present:&lt;br /&gt;
&lt;br /&gt;
Others:&lt;br /&gt;
&lt;br /&gt;
[[Quorum]] established?&lt;br /&gt;
&lt;br /&gt;
= Officer Reports =&lt;br /&gt;
&lt;br /&gt;
== President&#039;s Report ==&lt;br /&gt;
&lt;br /&gt;
== Vice President&#039;s Report ==&lt;br /&gt;
&lt;br /&gt;
== Treasurer&#039;s Report ==&lt;br /&gt;
&lt;br /&gt;
ASSETS 	&lt;br /&gt;
&lt;br /&gt;
Current Assets 	&lt;br /&gt;
&lt;br /&gt;
Bank Accounts 	&lt;br /&gt;
&lt;br /&gt;
BBT Checking 	2,726.07&lt;br /&gt;
&lt;br /&gt;
Total Bank Accounts 	$2,726.07&lt;br /&gt;
&lt;br /&gt;
Other Current Assets 	&lt;br /&gt;
&lt;br /&gt;
Paypal 	3,733.28&lt;br /&gt;
&lt;br /&gt;
Undeposited Funds 	0.00&lt;br /&gt;
&lt;br /&gt;
Total Other Current Assets 	$3,733.28&lt;br /&gt;
&lt;br /&gt;
Total Current Assets 	$6,459.35&lt;br /&gt;
&lt;br /&gt;
Other Assets 	&lt;br /&gt;
&lt;br /&gt;
Rent Security Deposits 	850.00&lt;br /&gt;
&lt;br /&gt;
Total Other Assets 	$850.00&lt;br /&gt;
&lt;br /&gt;
TOTAL ASSETS 	$7,309.35&lt;br /&gt;
&lt;br /&gt;
LIABILITIES AND EQUITY 	&lt;br /&gt;
&lt;br /&gt;
Liabilities 	&lt;br /&gt;
&lt;br /&gt;
Total Liabilities 	&lt;br /&gt;
&lt;br /&gt;
Equity 	&lt;br /&gt;
&lt;br /&gt;
Opening Balance Equity (April 2010, Beginning of Quickbooks) 9,023.84&lt;br /&gt;
&lt;br /&gt;
Retained Earnings 	-1,304.64&lt;br /&gt;
&lt;br /&gt;
Net Income 	-409.85&lt;br /&gt;
&lt;br /&gt;
Total Equity 	$7,309.35&lt;br /&gt;
&lt;br /&gt;
TOTAL LIABILITIES AND EQUITY 	$7,309.35&lt;br /&gt;
&lt;br /&gt;
BUDGET:&lt;br /&gt;
&lt;br /&gt;
2526.00 RENT&lt;br /&gt;
&lt;br /&gt;
$68.58 ST. FARM INSURANCE&lt;br /&gt;
&lt;br /&gt;
$37.45 LINODE &lt;br /&gt;
&lt;br /&gt;
$10.55 QUICKBOOKS&lt;br /&gt;
&lt;br /&gt;
$2642.58&lt;br /&gt;
&lt;br /&gt;
-~2000&lt;br /&gt;
&lt;br /&gt;
=642.58 STRUCTURAL DEFICIT&lt;br /&gt;
&lt;br /&gt;
== Secretary&#039;s Report ==&lt;br /&gt;
&lt;br /&gt;
== At-Large Directors&#039; Reports ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Member Reports =&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= New Business =&lt;br /&gt;
&lt;br /&gt;
 Remote meetings/telemeetings via GoToMeeting via TechSoup.  $95/year for up to 1000 attendees.  Voting allowed, but not secret ballot (if you want it secret, show up).  Would also allow for remote attendees of classes.&lt;br /&gt;
&lt;br /&gt;
== Board of Directors Elections ==&lt;br /&gt;
&lt;br /&gt;
=== President ===&lt;br /&gt;
&lt;br /&gt;
=== Vice-President ===&lt;br /&gt;
&lt;br /&gt;
=== Treasurer ===&lt;br /&gt;
&lt;br /&gt;
=== Secretary ===&lt;br /&gt;
&lt;br /&gt;
=== At-Large Directors ===&lt;br /&gt;
&lt;br /&gt;
=== Induction of New Members ===&lt;br /&gt;
&lt;br /&gt;
= Finances =&lt;br /&gt;
&lt;br /&gt;
= Adjournment =&lt;br /&gt;
&lt;br /&gt;
Meeting adjourned at ___&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2010_11_09&amp;diff=3845</id>
		<title>Regular Member Meeting 2010 11 09</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2010_11_09&amp;diff=3845"/>
		<updated>2010-11-09T14:22:33Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* New Members */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2010-11-09 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 9, 2010&lt;br /&gt;
Meeting called to order at ___ by ___.&lt;br /&gt;
&lt;br /&gt;
Members Present:&lt;br /&gt;
 &lt;br /&gt;
Others Present: &lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? &lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
&lt;br /&gt;
[[Regular Member Meeting 2010 10 12]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== William ====&lt;br /&gt;
&lt;br /&gt;
==== Katie ====&lt;br /&gt;
&lt;br /&gt;
Come to [http://hacdc.org/content/t2-return-tea-night T2: Return of Tea Night] on Sunday at 7 p.m.&lt;br /&gt;
&lt;br /&gt;
Go [[HacDC Spaceblimp 3]]!  (Launch planned for Saturday the 13th.)&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== New Members ===&lt;br /&gt;
&lt;br /&gt;
Sunsh1ne (Beckie) - Formerly of Twin Cities maker now in the DC area.  Has been paying dues, but unfortunately could not make it to the meeting tonight.  Talk to Alberto, timball, or (possibly) Elliot for more information.&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at ___.&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2010_11_09&amp;diff=3844</id>
		<title>Regular Member Meeting 2010 11 09</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Regular_Member_Meeting_2010_11_09&amp;diff=3844"/>
		<updated>2010-11-09T14:20:40Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: /* New Members */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Note:&#039;&#039;&#039; This page serves as the 2010-11-09 Member Meeting&#039;s agenda (before the meeting) and minutes (after the meeting).&lt;br /&gt;
&lt;br /&gt;
== Time and Location == &lt;br /&gt;
November 9, 2010&lt;br /&gt;
Meeting called to order at ___ by ___.&lt;br /&gt;
&lt;br /&gt;
Members Present:&lt;br /&gt;
 &lt;br /&gt;
Others Present: &lt;br /&gt;
&lt;br /&gt;
[[Quorum]] met? &lt;br /&gt;
&lt;br /&gt;
== Approval of Previous Meeting&#039;s Minutes ==&lt;br /&gt;
&lt;br /&gt;
[[Regular Member Meeting 2010 10 12]]&lt;br /&gt;
&lt;br /&gt;
== Director Reports ==&lt;br /&gt;
&lt;br /&gt;
=== President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Treasurer&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Vice President&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Secretary&#039;s Report ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Director-at-Large Reports ===&lt;br /&gt;
&lt;br /&gt;
==== William ====&lt;br /&gt;
&lt;br /&gt;
==== Katie ====&lt;br /&gt;
&lt;br /&gt;
Come to [http://hacdc.org/content/t2-return-tea-night T2: Return of Tea Night] on Sunday at 7 p.m.&lt;br /&gt;
&lt;br /&gt;
Go [[HacDC Spaceblimp 3]]!  (Launch planned for Saturday the 13th.)&lt;br /&gt;
&lt;br /&gt;
== Member Reports ==&lt;br /&gt;
&lt;br /&gt;
== Old Business ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== New Business ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== New Members ===&lt;br /&gt;
&lt;br /&gt;
Sunsh1ne - Formerly of Twin Cities maker now in the DC area.  Has been paying dues, but unfortunately could not make it to the meeting tonight.  Talk to Alberto, timball, or (possibly) Elliot for more information.&lt;br /&gt;
&lt;br /&gt;
== Adjournment ==&lt;br /&gt;
&lt;br /&gt;
Adjourned at ___.&lt;br /&gt;
&lt;br /&gt;
[[Category:Meeting_Agendas]]&lt;br /&gt;
[[Category:Meeting_Minutes]]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Reflow_Oven&amp;diff=3685</id>
		<title>Reflow Oven</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Reflow_Oven&amp;diff=3685"/>
		<updated>2010-09-01T22:50:58Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: Initial revision&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Plans =&lt;br /&gt;
Arc and Redbeard are planning on producing a tutorial for an AVR based reflow oven.  The goal of the project is to be an updated version of the sparkfun reflow oven with a better graphical display and improved user input system.&lt;br /&gt;
&lt;br /&gt;
= Goals =&lt;br /&gt;
* Use AVR&lt;br /&gt;
* Provide visualization of temperature graph&lt;br /&gt;
* Produce board kit&lt;br /&gt;
* Be cost equivalent (or cheaper) than sparkfun&lt;br /&gt;
* Be programmable via keypad or serial port&lt;br /&gt;
* Provide real time output via serial&lt;br /&gt;
* All through hole (otherwise you&#039;re in chicken vs egg mode)&lt;br /&gt;
&lt;br /&gt;
= Parts List = &lt;br /&gt;
* SPST Relay (at least 30 amps)&lt;br /&gt;
* AVR (At least ATMega168, possibly ATMega328&lt;br /&gt;
* Thermocouple&lt;br /&gt;
* LCD Display&lt;br /&gt;
* Keypad&lt;br /&gt;
* Fuse Holder?&lt;br /&gt;
* Thermocouple Amplifier&lt;br /&gt;
&lt;br /&gt;
= Upgrades =&lt;br /&gt;
* Line inside of oven with Reflect-a-gold - [http://www.designengineering.com/category/catalog/design-engineering-inc/heat-sound-barrier/reflect-gold Manufacturer&#039;s Link] (Will improve cooling ramp down times)&lt;br /&gt;
&lt;br /&gt;
= Links =&lt;br /&gt;
* [http://www.sparkfun.com/commerce/product_info.php?products_id=81 Reflow Kit @ Sparkfun (the project to beat!)]&lt;br /&gt;
* [http://www.sparkfun.com/commerce/product_info.php?products_id=710 LCD Screen @ Sparkfun]&lt;br /&gt;
* [http://www.sparkfun.com/commerce/product_info.php?products_id=101 SPST 30A Relay @ Sparkfun]&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=File:Ssh_lock.jpg&amp;diff=3604</id>
		<title>File:Ssh lock.jpg</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=File:Ssh_lock.jpg&amp;diff=3604"/>
		<updated>2010-08-04T17:47:31Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: Photo by SuperKuh (http://www.flickr.com/photos/sooperkuh/4241490395)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Photo by SuperKuh (http://www.flickr.com/photos/sooperkuh/4241490395)&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=File:Raffle.pdf&amp;diff=3345</id>
		<title>File:Raffle.pdf</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=File:Raffle.pdf&amp;diff=3345"/>
		<updated>2010-06-01T18:43:52Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: Notes of raffles with DC Government.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Notes of raffles with DC Government.&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=User:Redbeard&amp;diff=3310</id>
		<title>User:Redbeard</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=User:Redbeard&amp;diff=3310"/>
		<updated>2010-05-28T18:35:30Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: Created page with &amp;#039;thumb  =redbeard (is one sick dude)= ==about== I live in DC.  I break things and sometimes even get around to fixing them.  When I&amp;#039;m not wasting…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:redbeard.jpg|250px|left|thumb]] &lt;br /&gt;
=redbeard (is one sick dude)=&lt;br /&gt;
==about==&lt;br /&gt;
I live in DC.  I break things and sometimes even get around to fixing them.  When I&#039;m not wasting time with school I make it by the space pretty regular.&lt;br /&gt;
&lt;br /&gt;
track me down on irc as &amp;quot;thebeardisred&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==current projects==&lt;br /&gt;
* audio manipulation&lt;br /&gt;
::building stomp boxes&lt;br /&gt;
::realtime audio bit-crushing&lt;br /&gt;
* making art (badly)&lt;br /&gt;
* figuring out what new tools to play with&lt;br /&gt;
* not being a developer&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=File:Redbeard.jpg&amp;diff=3309</id>
		<title>File:Redbeard.jpg</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=File:Redbeard.jpg&amp;diff=3309"/>
		<updated>2010-05-28T18:27:13Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: No really.  This is how i live.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;No really.  This is how i live.&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=File:Hedy_lamar_v3.png&amp;diff=3278</id>
		<title>File:Hedy lamar v3.png</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=File:Hedy_lamar_v3.png&amp;diff=3278"/>
		<updated>2010-05-27T02:32:35Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: Proposed mural of Hedy Lamarr&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Proposed mural of Hedy Lamarr&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Template:Information&amp;diff=2865</id>
		<title>Template:Information</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Template:Information&amp;diff=2865"/>
		<updated>2010-01-22T19:10:04Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Information/{{Fallback|Information}}&lt;br /&gt;
| description = {{{description|}}}{{{Description|}}}&lt;br /&gt;
| source = {{{source|}}}{{{Source|}}}&lt;br /&gt;
| date = {{{date|}}}{{{Date|}}}&lt;br /&gt;
| author = {{{author|}}}{{{Author|}}}&lt;br /&gt;
| permission = {{{permission|}}}{{{Permission|}}}&lt;br /&gt;
| other_versions = {{{other_versions|}}}{{{Other_versions|}}}{{{other versions|}}}{{{Other versions|}}}&lt;br /&gt;
| other_fields = {{{other_fields|}}}{{{Other_fields|}}}{{{other fields|}}}{{{Other fields|}}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
	<entry>
		<id>https://old.hacdc.org/index.php?title=Template:Description&amp;diff=2864</id>
		<title>Template:Description</title>
		<link rel="alternate" type="text/html" href="https://old.hacdc.org/index.php?title=Template:Description&amp;diff=2864"/>
		<updated>2010-01-22T19:08:19Z</updated>

		<summary type="html">&lt;p&gt;Redbeard: Created page with &amp;#039;&amp;lt;includeonly&amp;gt;{{#if:{{{inline|}}}|&amp;lt;span class=&amp;quot;description {{{1}}}&amp;quot; lang=&amp;quot;{{{4|{{{1}}}}}}&amp;quot;&amp;gt;|&amp;lt;div class=&amp;quot;description {{{1}}}&amp;quot; lang=&amp;quot;{{{4|{{{1}}}}}}&amp;quot;&amp;gt;}}&amp;lt;span class=&amp;quot;language {{{1}}}…&amp;#039;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;includeonly&amp;gt;{{#if:{{{inline|}}}|&amp;lt;span class=&amp;quot;description {{{1}}}&amp;quot; lang=&amp;quot;{{{4|{{{1}}}}}}&amp;quot;&amp;gt;|&amp;lt;div class=&amp;quot;description {{{1}}}&amp;quot; lang=&amp;quot;{{{4|{{{1}}}}}}&amp;quot;&amp;gt;}}&amp;lt;span class=&amp;quot;language {{{1}}}&amp;quot; title=&amp;quot;{{{name|{{{3|}}}}}}&amp;quot;&amp;gt;&#039;&#039;&#039;{{#language:{{{1}}}}}{{{5|}}}:&#039;&#039;&#039;&amp;lt;/span&amp;gt; {{{2|}}}{{#if:{{{inline|}}}|&amp;lt;/span&amp;gt;|&amp;lt;/div&amp;gt;}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;&lt;br /&gt;
----&lt;br /&gt;
Parameters:&lt;br /&gt;
*1=wikicode for the language and name of the CSS formating class (mandatory)&lt;br /&gt;
*2=description text (optional, default is empty)&lt;br /&gt;
*3=title for tooltip (optional, default is empty)&lt;br /&gt;
**name=alternative parameter name for parameter 3&lt;br /&gt;
*4=standard code for lang tag in HTML (optional, default is same as parameter 1)&lt;br /&gt;
*5=extension text shown after the language name before colon (optional, default is empty)&lt;br /&gt;
*inline=optional, default is empty string. When set to any value different from an empty string, forces the template to be displayed inline, so that it does not break the current paragraph (i.e. that makes possible to put several descriptions side by side on a single line)&lt;br /&gt;
&lt;br /&gt;
[[Category:Internationalization templates]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>Redbeard</name></author>
	</entry>
</feed>