<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" version="2.0">

<channel>
	<title>Jimmie P Rodgers . com</title>
	
	<link>http://jimmieprodgers.com</link>
	<description />
	<lastBuildDate>Fri, 17 May 2013 11:50:25 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/jprodgers" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="jprodgers" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>New Tattoo</title>
		<link>http://jimmieprodgers.com/2013/01/new-tattoo/</link>
		<comments>http://jimmieprodgers.com/2013/01/new-tattoo/#comments</comments>
		<pubDate>Fri, 11 Jan 2013 11:28:38 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=574</guid>
		<description><![CDATA[I finally got my new tattoo yesterday. I&#8217;ve been meaning to get this done for the past two years, but being a nomad and being able to get appointments from good tattoo artist is a bit rough. Luckily Marcio Bornholdt at Blut &#38; Eisen in Berlin had an open slot and was up for doing my [...]]]></description>
				<content:encoded><![CDATA[<p></p><p><a href="http://www.flickr.com/photos/jaypee4227/8370294680/in/photostream"><img class="aligncenter" title="resistor tattoo" alt="resistor tattoo" src="http://farm9.staticflickr.com/8084/8370294680_158f06aea7.jpg" width="500" height="333" /></a>I finally got my new tattoo yesterday. I&#8217;ve been meaning to get this done for the past two years, but being a nomad and being able to get appointments from good tattoo artist is a bit rough. Luckily <a href="http://www.bornholdtattoo.com/" target="_blank">Marcio Bornholdt</a> at <a href="http://www.blut-und-eisen.de/" target="_blank">Blut &amp; Eisen</a> in Berlin had an open slot and was up for doing my tattoo on short notice, as I already had all the design files ready to go. There&#8217;s a ton here, despite the plain look.</p>
<p>The most obvious thing is the <a href="http://en.wikipedia.org/wiki/Electronic_color_code" target="_blank">resistor color codes</a>. Doing electronics for a living, that&#8217;s kind of easy to see why I would get such a thing done. However, that&#8217;s a very small portion of the population that will initially recognize it. Most people tend to see just the rainbow, and that leads to lots of fun questions. I&#8217;m openly bisexual, and have done queer geeks panels at both <a href="http://signal.hackerspaces.org/archive/2011-08-12-0200-queer_geeks.ogg" target="_blank">CCC-Camp 2011</a> and again at <a href="http://www.youtube.com/watch?v=K6c9Eg_IA9w" target="_blank">28c3</a>. So I&#8217;m fine with the ambiguity, which adds itself into the meaning of the tattoo for me.</p>
<p>While I didn&#8217;t really need to have the colors implanted into my skin (already have them memorized), it will be a fun way of teaching others how to read the colors in classes. Also, I had the tattoo made to be five inches long, making each block one half inch. So I can use this tattoo as a reasonable-guess ruler. Being skin, it stretches and deforms, so I&#8217;ll have to learn the proper way to hold my arm so that it&#8217;s at least moderately accurate.</p>
<p>The next part of the tattoo, is that I programmed it in processing. It&#8217;s obviously open source, so do with it what you will. <img src='http://jimmieprodgers.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  Here&#8217;s the source code:</p>
<p><code><span style="color: #ff9900;" data-mce-mark="1"> int</span>[] colors = {<br />
#000000, #964B00, #DF0101, #FF8000, #FFFF00,<br />
#04B404, #0101DF, #BF00FF, #848484, #FFFFFF<br />
};<br />
<span style="color: #ff9900;" data-mce-mark="1">float</span> Phi = (1+<span style="color: #3366ff;" data-mce-mark="1">sqrt</span>(5))/2;<br />
<span style="color: #ff9900;" data-mce-mark="1">int</span> X = 140;<br />
<span style="color: #ff9900;" data-mce-mark="1">float</span> Y = X * Phi;<br />
<span style="color: #ff9900;" data-mce-mark="1">float</span> ratio = X/<span style="color: #339966;" data-mce-mark="1">TWO_PI</span>;<br />
<span style="color: #3366ff;" data-mce-mark="1">size </span>(int(X*10 + ratio), <span style="color: #3366ff;" data-mce-mark="1">int</span>(Y + ratio));<br />
<span style="color: #3366ff;" data-mce-mark="1">strokeWeight</span>(ratio);<br />
<span style="color: #3366ff;" data-mce-mark="1">for</span>(<span style="color: #ff9900;" data-mce-mark="1">int</span> i = 0; i &lt;10; i++){<br />
<span style="color: #3366ff;" data-mce-mark="1">  fill</span>(colors[i]);<br />
<span style="color: #3366ff;" data-mce-mark="1">  rect</span>((i*X)+(ratio/2), ratio/2, X, Y);<br />
}<br />
</code></p>
<p>So in summary, it&#8217;s a resistor color code chart, it&#8217;s a rainbow, it&#8217;s a ruler, it&#8217;s got both the golden ratio and Tau built in, and it was written in a programming language. So it&#8217;s a meaningful tattoo that&#8217;s also useful for me beyond looking great.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2013/01/new-tattoo/feed/</wfw:commentRss>
		<slash:comments>25</slash:comments>
<enclosure url="http://signal.hackerspaces.org/archive/2011-08-12-0200-queer_geeks.ogg" length="68316904" type="audio/ogg" />
		</item>
		<item>
		<title>Residency at Unit One</title>
		<link>http://jimmieprodgers.com/2012/10/residency-at-unit-one/</link>
		<comments>http://jimmieprodgers.com/2012/10/residency-at-unit-one/#comments</comments>
		<pubDate>Sun, 14 Oct 2012 22:06:46 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=570</guid>
		<description><![CDATA[I&#8217;m doing a residency at Unit One in Allen hall at the University of Illinois for all of this week. If you are around, then please stop by! I&#8217;ve created a quick LoL Shield animation for my door to tell you whether I&#8217;m in or not (source for that is here, and uses the EEPROM [...]]]></description>
				<content:encoded><![CDATA[<p></p><p><a href="http://www.flickr.com/photos/jaypee4227/sets/72157631770630670/"><img class="aligncenter" title="OMG such great signs they made for my residency!" src="http://farm9.staticflickr.com/8470/8087951740_4880a5e8b6.jpg" alt="" width="500" height="333" /></a></p>
<p>I&#8217;m doing a <a href="http://www.housing.illinois.edu/Current/Living-Learning/Allen/Guest%20in%20Residence%20Program/Jimmie%20Rodgers.aspx">residency at Unit One</a> in Allen hall at the University of Illinois for all of this week. If you are around, then please stop by! I&#8217;ve created a quick LoL Shield animation for my door to tell you whether I&#8217;m in or not (<a href="http://code.google.com/p/lolshield/downloads/detail?name=toggleInOut.ino&amp;can=2&amp;q=">source for that is here</a>, and uses the EEPROM if that&#8217;s interesting to you, so I just have to turn it off/on to toggle it).</p>
<p><em><strong>Sunday, October 14</strong></em><br />
7pm – <strong>Opening Program: Meet Jimmie Rodgers</strong> <em>(south rec room)</em><br />
Jimmie Rodgers is a full time hacker, artist, musician, open hardware developer, and techno-nomad. He travels around the world teaching people how to make things. He does everything from digital to physical art, but everything he does is either open source or creative commons. He&#8217;s best known for the LoL Shield (an Arduino shield with lots of LEDS), and for various circuitbending and music projects.</p>
<p><em><strong>Monday, October 15</strong></em><br />
7pm - <strong>Atari Punk Console workshop</strong>: <strong>build a basic synthesizer or optical theremin</strong> <em>(south rec room)<br />
</em>The Atari Punk Console is an easy to build synthesizer that you can use to make lots of fun sounds. This workshop will include all the parts you need to make the synthesizer, or even to create your own optical theremin! <em>Bring your own case &#8211; Altoids tins, cigar boxes, or anything else that has at least the internal volume of a pack of playing cards.</em></p>
<p>10pm – <strong>tea time: building custom electronic instruments</strong> <em>(guest apartment)</em></p>
<p><em><strong>Tuesday, October 16</strong></em><br />
7pm - <strong>Building Contact Mics</strong> <em>(south rec room)</em><br />
Learn how easy it is to build your own contact mics. This workshop will have everything you&#8217;ll need to build a mic. We&#8217;ll then explore finding sounds in everyday objects, and some fun things to do with those found sounds. If you have your own amp, then please bring it!</p>
<p>9:30pm - <strong>Depression Meetup</strong> <em>(guest apartment)</em><br />
Depression can be a hard burden to bear, both for people who suffer directly, and people who help to support them. Come and talk about it with Jimmie Rodgers, who has been dealing with depression since he was a teenager. He has spoken at a number of events about depression, and has been an advocate of speaking openly about its effects and treatments. Many people suffer from depression, but there&#8217;s no reason to suffer alone.</p>
<p><em><strong>Wednesday, October 17</strong></em><br />
7pm – <strong>Circuitbending </strong><em>(south rec room)</em><br />
Circuitbending is the art of modifying toys, synthesizers, effects pedals, and anything electronic that makes noise or shows video. You&#8217;ll be bending a Staples Easy button, and learn enough of the basics to go exploring on your own after this workshop.</p>
<p>10pm - <strong>Noise Night</strong> <em>(main lounge)</em><br />
Bring your electronic instruments, noise makers, mixers, amps, effects pedals, hookup cables, and anything you can make sound with. People will hook their noise makers together and just jam. An open mind and tolerance for crazy sounds encouraged.</p>
<p><em><strong>Thursday, October 18</strong></em><br />
7pm - <strong>Building (and playing) quality didgeridoos out of PVC</strong> <em>(south rec room)</em><br />
Learn how to quickly and cheaply make good sounding didgeridoos out of PVC. You&#8217;ll learn how to build and play them in this workshop. Advanced techniques will be covered, so you can continue to make nice didgeridoos long after the workshop.</p>
<p>10pm - <strong>Drone Night</strong> <em>(south rec room)<br />
</em>Bring your acoustic instruments, drums, didgeridoos, singing bowls, and anything else that can make a trance-like sound. We&#8217;ll sit around and play the didgeridoos made in the previous workshop along with any brought instruments. Beginners welcome, and experimentation will be encouraged.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2012/10/residency-at-unit-one/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A State of Depression</title>
		<link>http://jimmieprodgers.com/2012/07/a-state-of-depression/</link>
		<comments>http://jimmieprodgers.com/2012/07/a-state-of-depression/#comments</comments>
		<pubDate>Wed, 11 Jul 2012 18:56:18 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=522</guid>
		<description><![CDATA[This is part three in my series on depression (Part 1 here, Part 2 here). In the last post I focused mostly on my general history with depression, and in this one I will focus mostly on what depression is like for me. Depression can last anywhere from a few days, to a lifetime for [...]]]></description>
				<content:encoded><![CDATA[<p></p><p><a href="http://www.flickr.com/photos/jaypee4227/6332793081/in/set-72157627961226455"><img class="aligncenter" title="A view of Tokyo I took while on HOAP9." src="http://farm7.staticflickr.com/6094/6332793081_5c9773c81b.jpg" alt="" width="500" height="333" /></a></p>
<p>This is part three in my series on depression (<a href="http://jimmieprodgers.com/2012/07/on-depression/">Part 1 here</a>, <a href="http://jimmieprodgers.com/2012/07/a-history-of-depression/">Part 2 here</a>). In the last post I focused mostly on my general history with depression, and in this one I will focus mostly on what depression is like for me. Depression can last anywhere from a few days, to a lifetime for some people. Regardless, it always takes many times that to recover most of the things you may have lost, or to just pick up the pieces of things you&#8217;ve let go.</p>
<p>I think that it&#8217;s important to go into what being depressed is like for me, because it could be important for someone to understand a friend/family member/loved one/etc who is also suffering from depression. That being said though, depression is a highly personal thing. The things that someone may be depressed about may seem mundane to you, but there&#8217;s usually a ton of stuff going on around the &#8220;main&#8221; issue. On the other hand, sometimes you just don&#8217;t know what the fuck is going on, or why you feel so bad, and <em>that</em> makes you feel bad. Also, the way depression affects people can be different. I am going to share my experience with depression, which I cannot claim to be how it effects everyone. I can only speak for myself.<span id="more-522"></span></p>
<p>When things are going well, I&#8217;m super productive. I&#8217;m usually on the move and fairly high energy. I&#8217;m able to tackle complex tasks with relative ease, and I actively want to be social. I also pick up new skills quickly, and love to learn and teach new things. At the best of times, I&#8217;ll only have a down day every couple weeks, or maybe a down week every couple of months. Eventually things can build up though, and then I&#8217;m in a serious depression that lasts multiple weeks or months.</p>
<p><a href="http://www.flickr.com/photos/jaypee4227/6331360255/in/set-72157627961226455"><img class="alignright" title="A funny sign outside of a castle we visited in Tokyo." src="http://farm7.staticflickr.com/6034/6331360255_12a786bde5_n.jpg" alt="" width="320" height="213" /></a>An analogy for that moment things go wrong for me is pickles. One time I came home from work, and just wanted a pickle. I walked over to the fridge, and there inside the pickle jar sat. The problem was that it was empty. That&#8217;s a rather crappy thing, to put an empty pickle jar back in the fridge. I would have been angry at my roommate, but at the time I lived alone. While standing there with the fridge door open, I just stared at that empty pickle jar, the pickle juice still inside. Why the hell would I do that? When did I eat the last pickle? I don&#8217;t remember doing that. Why the fuck would I put an EMPTY pickle jar back in the fridge? Was I trying to save the juice? Why would I do that, that&#8217;s stupid!? Seriously though, what kind of person would eat the last pickle, and then just put the jar back in the fridge? Well, I clearly did it, what the fuck is wrong with me? On and on it went, and the depression spiral started.</p>
<p>Almost all of my depressions start in an equally mundane way. It&#8217;s not actually about the pickles, or that specific event. It could be having a flat tire, a bounced check/overdraft, the wrong thing said by a friend, or any number of things that would normally upset me for only a short period of time. Lots of people think it&#8217;s always the big events that cause depression, which can mostly certainly be true, but for myself I&#8217;ve found that it&#8217;s a small thing that sets the spiral off. I simply fail to let the small things go.</p>
<p>Unfortunately, I&#8217;ve had a number of legitimate crises in my life. The death of close family members, nearly dying myself, spending lots of time in a hospital and having to deal with physical therapy, financial problems, car accidents, friends and family members committing suicide, and any number of other major events that can cause severe depressions. All of those things contributed to, and were ultimately the major point of many depressions. However, during a crisis I handle myself extremely well. When I&#8217;m in an accident, I understand what shock is, and treat myself appropriately. When people die, I&#8217;m able to calm people down and take care of important things that have to be done. I&#8217;m able to handle the actual crisis, but it&#8217;s after things have started to settle down that I &#8220;run out of pickles&#8221;.</p>
<p><a href="http://www.flickr.com/photos/jaypee4227/6340244962/in/set-72157627961226455"><img class="alignleft" title="An artist paints a wall at the Design Festa in Tokyo." src="http://farm7.staticflickr.com/6107/6340244962_9bfc3238d8_n.jpg" alt="" width="320" height="213" /></a>Once the spiral has started, it&#8217;s very hard to break out of. I start to beat myself up over silly things, and I start to ignore major tasks I need to do. I feel guilty about not doing the major things, and I stop doing the small things as well. I feel bad that I&#8217;ve not even started on the big thing, so why am I wasting time on this little stuff? The big thing is right there! Why am I not doing it!?</p>
<p>Eventually I stop doing things I love to do, because I feel anxieties about not doing one thing or another. At some point I escape into some anime, TV show, video game, book series, etc. Luckily enough, I&#8217;ve got an allergy to pot, and I don&#8217;t like to get drunk. So at least I&#8217;m not perpetuating things with substance abuse, but I know that it&#8217;s a huge problem for some of my friends. Escapism is my drug of choice.</p>
<p>At some point, people start to notice that I&#8217;ve dropped off the social scenes I&#8217;m part of. I stop going to events (even ones I started), I stop using social media, checking email, or doing anything that involves other people. For a while I&#8217;ll still manage to go out and get food with people occasionally, but I&#8217;m not generally inviting people over for dinner at that point. I&#8217;ll sometimes reach out to a close friend I feel comfortable with in talking about things, but at some point even that stops. Eventually I get to the point that I&#8217;m doing little more than consuming some form of media, cooking/eating, and sleeping. If I can manage it, I&#8217;ll not leave the house for weeks at a time. I&#8217;ve gotten really good at using the barest of things in my cupboard, and I can make a really good onion soup.</p>
<p>In most cases, I just let myself crash. I feel bad for a few days or weeks, and then I pop back up again. That&#8217;s mostly been my cycle for a long time. Knowing what my cycle is has helped me be productive. By letting myself crash, I&#8217;m able to get back into things with a renewed vigor. Life seems important again, and I pick up things that have dropped. I start going out again, and things get made.</p>
<p>I see my cycle as having two parts, consuming and producing. For a while I&#8217;m productive, but I get tapped out and have to re-charge. There are certain things that set these off 100% of the time. Anytime I&#8217;m at a major event like a hacker conference, Makerfaire, or hackerspace tour, I&#8217;ll have a post-event crash. It&#8217;s understandable, and perfectly healthy that I need a bit of personal time and space to deal with all that I have experienced. Eventually I process it, and feel amazing and hugely inspired.</p>
<p><a href="http://www.flickr.com/photos/jaypee4227/6336448607/in/set-72157627961226455"><img class="alignright" title="An accidental picture taken of my face while on the Tokyo subway." src="http://farm7.staticflickr.com/6221/6336448607_a04602d3a0_n.jpg" alt="" width="213" height="320" /></a>The problem with my latest depression started a couple years ago, when I started to let these crash times go on for longer than needed. Instead of using that renewed energy to make something, I would use it to do something like play a difficult video game. Then I would feel bad that I had wasted some of my inspiration on something that didn&#8217;t yield a more permanent thing, and then I would fall back down into another consumption slump. Eventually I would get out of it, but I kept spending more and more time in that smaller cycle, never really getting out of it. At some point that became my default at-home state.</p>
<p>I started to procrastinate more and more when ordering parts for kits, and leaving things for the last possible moment. I went from having things done weeks in advance, to getting things shipped to the event and finishing stuff up the day of. I was putting kits together for the next day after a full day at a conference had ended, and ended up working 2x as hard at events that I was already putting a ton of time into. That lead to me not getting any personal time during events, so it made the crashes back at home that much harder.</p>
<p>When I gave up my apartment, it was my hope that I could break this cycle. I was forcing myself to do the work that needed to be done. The problem was that every time I was left alone, I would hard-crash again. It got harder and harder to just deal with the daily stuff, and I eventually stopped. I fell woefully behind on emails, parts and inventory, managing order fulfillment, and all forms of basic communication that I basically live from. Every time I would try to do even the most basic and simple thing, I would run into this huge wall of anxiety, which would push me down further, and then I would just stop doing much of anything that required effort.</p>
<p>Eventually I got to Berlin, and spent the first couple weeks doing very little indeed. I was staying with the amazing Fabienne and SkyT, well past my welcome. Eventually I managed to find a room with another hacker. I was still a bit &#8220;on&#8221; as the Chaos Communications Congress was about to start, and especially as friends started to pour into town. I was able to prop myself up and get some of the stuff done in time for congress, but I had stopped doing the major things at that point. I had stopped working on the book I was writing for O&#8217;Reilly, and had started to ignore the &#8220;where are my kits&#8221; emails I was getting daily. Everything was weighing down on me, but I had to be social with people. I legitimately enjoy such events, and get a total high from all the amazing people and things involved. Even in my most depressed states, I can usually do quite well in conferences.</p>
<p><a href="http://www.flickr.com/photos/jaypee4227/6984602173/in/set-72157629482699619"><img class="alignleft" title="These pink pipes are all over mitte." src="http://farm8.staticflickr.com/7183/6984602173_a50950f4b3_n.jpg" alt="" width="213" height="320" /></a>When CCC ended, friends were around for a few weeks afterwards, but I had already started to crash. Ultimately the last ones left, and when I was finally alone, I crashed hard. My roommate left for a month, and I didn&#8217;t leave the house for that duration. I generally have a well stocked kitchen, and I used every last stock in it. I left a couple times to go to the shop downstairs for things like rice and lentils, but by then it was after a full three weeks of being alone.</p>
<p>Eventually my roommate got back, and we started to talk about depression. When we realized we were just watching shows and playing games alone in our room, we started to hang out in the kitchen and do those things together. It was the first time I had been in such a deep depression alongside another in a similar state. It allowed us both to talk about things freely and openly. It helped a great deal in learning more about what was causing my depression. Everything from environment, things that had built up, and my own behaviors. Despite all the negatives, you really get a chance to think about things during a depression. It&#8217;s basically all I do, when I&#8217;m not trying to escape into something else entirely.</p>
<p>In the worst of it I will stop even getting out of bed. I stop eating or drinking, so that I don&#8217;t have to get up to use the bathroom. At some point all I&#8217;m doing is lying there inside of my own head. Often times in a fantasy world of my own creation. I&#8217;ve lived whole lifetimes just lying there in the dark, and upon reflections later, my fantasies are often just light veils covering the real issues I&#8217;m trying to deal with. I&#8217;ve gained a ton of insight from such things, but at great cost.</p>
<p>I&#8217;ve only been truly to the point of suicide just once, but once was all it took for me. The last stop for me is a complete and total apathy. I go completely numb emotionally, and just focus on logic. It&#8217;s in this state that nearly anything is possible. The first time I went to that dark abyss was the worst. I had decided that it was more logical that I end the pain before it started again. I was unhappy, and couldn&#8217;t see a way out of it. I woke up that morning, had a Dr. Pepper, and decided to end my own life. I was only 16.</p>
<p style="text-align: center;"><em><strong>Suicide Trigger Warning:</strong></em> <em>The next two paragraphs go into the emotional detail of contemplating suicide. If that is a problem for you, then please skip the following two paragraphs.</em></p>
<p>We had a number of guns around the house, and I knew how to use them (growing up in a family that hunted). I decided that would be the quickest way, and since I was going to be alone for a while, the most sure way of ending things. I was sitting on the floor of my grandfather&#8217;s room, gun loaded, with the barrel in my mouth. I was practicing trying to pull the trigger twice before I lost motor function, hopefully two shots being more likely to kill instead of maim. I&#8217;m not sure how long I was there like that, but I heard my mother honk her horn, which was an indication that I should come outside and help her bring something in.</p>
<p><a href="http://www.flickr.com/photos/jaypee4227/6331441851/in/set-72157627961226455"><img class="alignright" title="A beautiful garden path in Tokyo." src="http://farm7.staticflickr.com/6091/6331441851_0984401875_n.jpg" alt="" width="213" height="320" /></a>In that moment I had a rather profound realization, one that has permanently sealed off suicide as an answer for me. I realized that if my mother had heard the shot, she would have come in and seen what had happened. Being a nurse, she would have tried to revive me, and failing that, she would have most likely taken her own life shortly after mine. My sister would have been the next person to come in and discover us, probably both dead. This would have scarred her for life, and would have sent ripples of pain through the whole of my family and friends. I also realized at that moment how many people my own life affected, and how much damage I would have done to everyone else by taking my own life.</p>
<p>I have now known a few people who have taken their own life, and even more who have attempted, some of whom I was very close to. Having been there myself, I know it to be a truly selfish thing. I don&#8217;t really think it&#8217;s inherently a bad thing to be selfish, you have to be to live. I also think that people should be able to make their own decision as to whether they want to live or not, but I would really like people to think carefully about something so permanent. You have one life, don&#8217;t waste it. It gets better, it really does. When you are that far down, you only have one direction left to go.</p>
<p>When I finally get to the point of apathy, I&#8217;m able to do anything, but now instead of contemplating suicide, I go and get help. I&#8217;ll go to a crisis center, call a friend, anything to get away from there. There&#8217;s no anxiety in the way, so I can get myself to leave the house, or make a phone call. At that point I&#8217;m past being able to help myself, and once I was able to learn that I can lean on others, I&#8217;ve found that my friends are always there for me. At that point I go on medication, and just leave everything behind till I&#8217;ve dealt with myself. It can be freeing in so many ways to finally let go of all the anxiety and guilt and let it out to someone. Medication has been a huge help in my life. While it doesn&#8217;t fix the problems, it allows me to better deal with things. It takes the sharp edges off, and can allow me to climb over that wall of anxiety.</p>
<p>In this most recent major depression, I never quite got there. I touched it a few times, but I was able to turn back on my own. In my next blog post I&#8217;ll cover the ways I&#8217;ve found are most useful for me in getting out of depression, and how I got out of this most recent one.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2012/07/a-state-of-depression/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>A History of Depression</title>
		<link>http://jimmieprodgers.com/2012/07/a-history-of-depression/</link>
		<comments>http://jimmieprodgers.com/2012/07/a-history-of-depression/#comments</comments>
		<pubDate>Tue, 10 Jul 2012 21:50:22 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=511</guid>
		<description><![CDATA[My last post was a sort of coming back to the internet post. It took a ton of effort just to get past that artificial hurdle I had given myself. My goal is to hopefully finish up a series of posts to provide a bit more information about my experiences with depression. It&#8217;s my hope [...]]]></description>
				<content:encoded><![CDATA[<p></p><p><a href="http://www.flickr.com/photos/jaypee4227/6326800071/in/set-72157627961226455"><img class="aligncenter" title="A picture of some koi I took in Japan." src="http://farm7.staticflickr.com/6112/6326800071_be57592c53.jpg" alt="A picture of some koi I took in Japan." width="500" height="333" /></a><br />
<a href="http://jimmieprodgers.com/2012/07/on-depression/">My last post</a> was a sort of coming back to the internet post. It took a ton of effort just to get past that artificial hurdle I had given myself. My goal is to hopefully finish up a series of posts to provide a bit more information about my experiences with depression. It&#8217;s my hope that it may inspire someone else out there to go get the help they need, or maybe to just reach out for help. The communities I&#8217;m a part of have been amazingly supportive, and some of us are working on getting some better resources online for people to find others to talk to about things. Privately, and anonymously if they wish.</p>
<p>I&#8217;ve had so many friends in the hacker/maker communities suffer from depression. People that you wouldn&#8217;t initially suspect. My blog posts are directly influenced by a number of them who have already spoken out about such things; <a href="http://cornfieldelectronics.com/">Mitch Altman</a>, <a href="http://har.ms/">Matthew Borgatti</a>, and <a href="http://schuylertowne.com/">Schyler Towne</a> have all posted things online. Matt did a great two part (<a href="http://har.ms/blog/depression-part-1-how-chemistry-and-memes-can-turn-your-brain-into-soup/">part 1</a>, <a href="http://har.ms/blog/depression-part-2-the-road-back-to-normal/">part2</a>) writeup for his blog, and Schyler is actually keeping a <a href="http://www.howis.schuylertowne.com/">blog to record his own recovery</a>. It was inspiring to me, so hopefully this can further that trend of sharing. Mitch has posted some great stuff to the Noisebridge wiki, but I had difficulty finding them, I&#8217;ll update this once I do.</p>
<p>The rest of this post is rather long, so I&#8217;ll post it after the break. Please click on to read more about my history with depression. <span id="more-511"></span></p>
<p><a href="http://www.flickr.com/photos/jaypee4227/6795097258/in/set-72157629481536219"><img class="alignleft" title="A picture I took in Hamburger Bahnhof" src="http://farm8.staticflickr.com/7201/6795097258_6cf621116c_n.jpg" alt="A picture I took in Hamburger Bahnhof" width="213" height="320" /></a>I&#8217;ve suffered from bouts of depression since I was a teenager. Mostly it was due to some extreme external things that happened to me. Needless to say, I was a miserable teen. I even had a suicide attempt, but was luckily caught by my mother. I spent a number of years in therapy and on various medications. All of that helped, and I eventually made my way off the meds.</p>
<p>Things got better in college, but once again a number of things happened and I just wasn&#8217;t able to deal. Ultimately it led to me failing out of college, getting back in, and then dropping out after 5 years (with no degree). I was broke, broken, and couldn&#8217;t handle those external pressures. I went back into therapy and back onto the meds. Ultimately I sold everything I owned, and moved to Brazil for six months to do volunteer work. It turned out to be one of the best decisions of my life, and it helped me get away from those external pressures and re-find myself. I eventually got off the meds again. That was 2005.</p>
<p>I&#8217;ve done fairly well at managing my depression for the past 7 years without meds. Once I understood my natural cycle and worked with it, I was able to be extremely productive. I paid off all of my student loans, had a well paying job, and a ton of hobbies. I got into the budding hackerspace explosion in 2007, and helped get a hackerspace started before most other cities. Willoughby and Baltic (now gone, but lives on through <a href="http://artisansasylum.com/">Artisan&#8217;s Asylum</a>) was exactly what I needed. There I found my true passion, teaching others how to make things.</p>
<p>I also met Mitch Altman around this time, as well as a number of <a href="http://makezine.com/">Make</a> employees. I had been invited down to <a href="http://www.as220.org/front/">AS220</a> to visit their new hackerspace and meet Mitch while he was doing his artist residence. They basically talked me into something I was already trying to talk myself into, which was to quit my job and make things full time. I was already starting to make my hobby pay for itself with my <a href="http://jimmieprodgers.com/kits/openheart/">first kit</a> being successful and a number of classes I had started to teach. It was all just a matter of application after that.</p>
<p>After going to the 25th Chaos Communications Congress in Berlin, I made a decision to quit my job as soon as it was possible. I managed to do that in only nine months, and I saved up enough money to get some kits going and live on for a full six months after that. I wasn’t going to make much money, but I knew I could live on it. I’ve managed to do exactly that for nearly three years now.</p>
<p><a href="http://www.flickr.com/photos/jaypee4227/6340219926/in/set-72157627961226455"><img class="alignright" title="Me wearing a wrestling mask at the Design Festa in Tokyo." src="http://farm7.staticflickr.com/6211/6340219926_66945c234e_n.jpg" alt="Me at the Design Festa in Tokyo." width="213" height="320" /></a>When my third kit came out (the <a href="http://jimmieprodgers.com/kits/lolshield/">LoL Shield</a>), I started to gain a bit of internet celebrity. It was a very complicated project, and I had a blast getting it done. However, it turns out I’m not very good with being even the small-level celebrity that I had become. For the most part I’m an introvert, but I love being around people when I’m not doing work. Most people don’t expect me to be an introvert, or depressed, but most people have met me at conferences and events. I’m honestly a bit dissociated from myself at such events, so you generally are meeting my louder personality.</p>
<p>Ultimately as things kept going better for me, I started getting more depressed. I was spending more and more time on things like email and support, but I was selling hundreds of kits per month, so it was understandable. I would have to be &#8220;on&#8221; during conferences for days at a time, and would put in 20+ hour days. So whenever I got home I would crash. Hard. I learned to deal with that, and would allow myself to spend a few days watching some TV show or anime in its entirety, or I would play through a very long game all in one sitting. Slowly that started to last for longer and longer periods. Then I started doing such things when I was waiting around for parts to arrive, instead of working on new projects. This led to me feeling more depressed ultimately, but in the short term I felt better.</p>
<p>The problem was also that every time I went away on these escapist sessions, I would have to work harder at getting back on top of things. I would fall behind by weeks, and then months, and spend 2-3 times that getting back to where I was. As long as I stayed on top of kits, it almost ran itself. I only really needed to do a couple hours of email per day to keep things running, but if I stopped, everything else would. Getting it all started again takes much more money and energy.</p>
<p>Around a year ago I made a decision to go ahead and give up my physical apartment. I barely spent half of my time there, and it was costing a fortune to keep it. So I let it go, and once again got rid of most of my stuff. I still think it was the correct decision, despite that being a significant cause of my long depression. Not having a solid place to land gets rather draining, and I wasn’t able to let myself crash anymore. That was one of my main points for doing it though, as I was trying to force myself to deal with the issues. Instead it created a huge ball of anxiety in me, because I couldn&#8217;t retreat into myself to recharge.</p>
<p>On the other hand, things at the time couldn&#8217;t have been going any better. My kits were selling extremely well. I was selling through all the major open hardware resellers, and I even had a book deal with O’Reilly for a “Maker&#8217;s Guide to EagleCAD”. I was even on top of the book deal for a while, but after I spent a month in Japan, I fell behind, and just never picked it up again. I would feel bad about not doing things, but felt really bad about the book. I would then try to work on the book, but I couldn’t get past the anxiety, so I wouldn&#8217;t, and then I just stopped doing much of anything.</p>
<p><a href="http://www.flickr.com/photos/jaypee4227/6799953294/in/set-72157629482699619"><img class="alignleft" title="A trash can in Berlin. Almost all of them look like this." src="http://farm8.staticflickr.com/7068/6799953294_8e8c6d2786_n.jpg" alt="A trash can in Berlin." width="213" height="320" /></a>This all culminated in this latest bout of depression, which went on for at least a full six months. Nearly all of that was spent in Berlin. After this past Chaos Communications Congress, I crashed hard, falling deep into that spiral of depression and anxiety. I had found a cheap apartment with a fellow hacker, and stopped doing anything of use to just about anyone. He had a similar style of depression, and we had a repeating cycle of sitting around while watching shows, or playing games. It ended up working out really well in the end though, because I could be bluntly honest about how I was feeling. When I was up for leaving the house, I would go around taking photos. Some of which have been peppered through this blog post.</p>
<p>While depression has caused a number of issues in my life, I can’t say that everything has been bad about it. Sure I’ve wasted tons of time and money, but I learn extremely important things every time I come back up. That’s the thing with depression, you spend so much time thinking things over, that once you are done, you have a highly polished idea. Despite spending six months doing little more than lying in bed, reading, taking pictures, playing video games, and watching TV, I managed to learn a great deal about myself and how I work.</p>
<p>In the past three months I&#8217;ve started to pick up the pieces. The hacker/maker community is amazing, and has done so much for me. People had started to recognize my pattern, and I had started to open up about being so depressed. The community reached out to me and held out their hand, and I took it. I’m not sure where I would be without that.</p>
<p style="text-align: center;"><em><strong>I seriously love every fucking one of you.</strong></em></p>
<p>I have had an incredible life. I’ve had so many beautiful moments, and met so many amazing people in such a short period of time. I wouldn’t trade it for anything, not even to get rid of the depression. What I can do is share my experience, hold out my own hand, and hope that I can help someone else.</p>
<p>I’ve largely been out of the depression for at least three months now, but I’ve still had a few smaller bouts during that time. It was a combination of having people there for me with so many offers of help, meeting an amazing girl in Berlin (whom I am still dating), and even having to leave Germany for overstaying my visa (which forced me into action). I also banned myself from playing video games or watching anything while alone, which helped significantly.</p>
<p>FYI, if you are an American and you overstay your 90-day visa, you can basically go to the government office before you try to leave, admit you were wrong, and they let you leave peacefully. You even get to come back 90 days later, but you can’t do it again.</p>
<p><a href="http://www.flickr.com/photos/jaypee4227/6838496238/in/set-72157629482699619"><img class="alignright" title="One of my favorite pictures I took in Berlin." src="http://farm8.staticflickr.com/7059/6838496238_736859166b_n.jpg" alt="One of my favorite pictures I took in Berlin" width="213" height="320" /></a>When I got back to the states I came where I knew the most people, the Boston area. While here, I’ve stayed with some of the most amazing people I know, <a href="http://waaronw.com/blog/">Aaron Waychoff</a> and his husband Cameron Dixon. Aaron knew about my depression, and understood why I spent the first couple of weeks basically watching Star Trek TNG, and then DS9 (this is before I had banned it). He also let me work out of his space at <a href="http://artisansasylum.com/">Artisan’s Asylum</a> on the days I felt like leaving the house. I basically ignored everything but making things, and I started to feel better.</p>
<p>Finally I made the final push, and quit watching anything by myself. With continuing support from my friends, I started to poke at more and more of the 8+ months of backlogs. I started with small, easy tasks, and would do one or two a day. Eventually I started working on larger tasks. Running out of money really kicked me into gear towards getting around to billing people as well. Nothing like not being able to buy food to convince you to do something about it.</p>
<p>For the past month I’ve spent most days at Artisan’s. I’ve managed to stick to a rigorous workout schedule, and even started doing things like flossing twice a day. It seems small, but actually managing to keep up with these tasks was far more than I had been willing to do for a long time. I still try to do a few tasks every day, and things aren’t giving me nearly as much anxiety as before. I’ve had amazingly supportive people helping me out, and I’ve seen a number of my friends also reaching out.</p>
<p>As of now, I have some kits in stock. I’m going to be getting all the outstanding orders fulfilled in the next week or so. I’ll be heading out to <a href="http://www.hopenumbernine.net/">HOPE</a> to talk about depression. It’s the first conference that I&#8217;ve not really had anything new for, but honestly I’ve been just dealing with my depression, so it fits that the panel is the only thing I have solid plans for. I plan on joining Hackers on a Train after that, so I’ll be travelling again. I really love to travel and meet new people and see new places, and I’m finally in a place to do that once again.</p>
<p>My next post will work on more specifics about what my depressions are like.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2012/07/a-history-of-depression/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>On Depression</title>
		<link>http://jimmieprodgers.com/2012/07/on-depression/</link>
		<comments>http://jimmieprodgers.com/2012/07/on-depression/#comments</comments>
		<pubDate>Mon, 09 Jul 2012 14:58:29 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=499</guid>
		<description><![CDATA[You may have noticed, but I’ve not really been on the internet much since last year. I haven’t updated my blog since last February, and have barely posted to twitter in the past 8 months. Many people have been worried about me and reached out. It has been appreciated. Long story short, I went through [...]]]></description>
				<content:encoded><![CDATA[<p></p><p><a href="http://www.flickr.com/photos/jaypee4227/6941683761/in/photostream/"><img class="aligncenter" title="Taken during one of my many walks around Berlin." src="http://farm8.staticflickr.com/7045/6941683761_2e0da146bd.jpg" alt="Around Berlin" width="500" height="333" /></a></p>
<p>You may have noticed, but I’ve not really been on the internet much since last year. I haven’t updated my blog since last February, and have barely posted to twitter in the past 8 months. Many people have been worried about me and reached out. It has been appreciated. Long story short, I went through one of the longest periods of depression I’ve had in my adult life.</p>
<p>I’ve had extreme anxieties in coming back online and starting up my business again, but I’m finally getting around to poking my head up online, billing people, and generally getting kits back in stock. I had a friend doing order fulfillment for me, but I didn’t keep her in stock to do it, so orders have gone unfulfilled. This has caused me far more anguish than I can easily express in words.</p>
<p><em><strong>To everyone I have let down, frustrated, or worried; I am extremely sorry.</strong></em>  Apologizing can&#8217;t really make it better, but know that I&#8217;m working hard every day to get things back on track. It&#8217;s slow work going through the better part of a year&#8217;s worth of stuff.</p>
<p>If you have ordered something from me, you will get it. Not only will you get the kits you ordered, but something extra for it. If you cancelled your order and were generally frustrated about my lack of communication, then I am sorry. I will send you something as well. I know I’ve caused a ton of frustrations by simply not communicating. It’s a ton of work climbing out of this hole I’ve dug, but I’m working on it. I’m sorry if it takes a while to get everything done, but I’m working on it. I’ve even got help.</p>
<p>That’s it for the short answer. I was depressed, stopped doing anything, and stopped communicating. Everyone will get what they paid for. I’m not here to rip anyone off. If you would like to hear the longer version, then I’m willing to share. I plan on posting a few additional blog posts to share my experience with depression and failure. I will also be <a href="http://www.hope.net/">speaking at HOPE 9</a> about it on the <a href="http://www.hopenumbernine.net/schedule/#geeks">Geeks and Depression panel</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2012/07/on-depression/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Quick 555 PCB for bending</title>
		<link>http://jimmieprodgers.com/2011/02/quick-555-pcb-for-bending/</link>
		<comments>http://jimmieprodgers.com/2011/02/quick-555-pcb-for-bending/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 22:49:00 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[bending]]></category>
		<category><![CDATA[eaglecad]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=482</guid>
		<description><![CDATA[I started working on a schematic for the 555 looping circuit, and I ended up doing a PCB for it as well. You can download the files here. My plan was to hopefully etch and test out the board today, but those plans got delayed. I&#8217;ll probably give that a shot tomorrow. I&#8217;ve gone ahead [...]]]></description>
				<content:encoded><![CDATA[<p></p><p><a class="tt-flickr tt-flickr-Medium" title="555pcb" href="http://www.flickr.com/photos/jaypee4227/5436164195/"><img class="aligncenter" src="http://farm6.static.flickr.com/5220/5436164195_212b9af9a1.jpg" alt="555pcb" width="500" height="344" /></a> I started working on a schematic for the 555 looping circuit, and I ended up doing a PCB for it as well. <a href="http://jimmieprodgers.com/wp-content/uploads/2011/02/555-trigger.zip">You can download the files here</a>. My plan was to hopefully etch and test out the board today, but those plans got delayed. I&#8217;ll probably give that a shot tomorrow. I&#8217;ve gone ahead and uploaded the PCB files I&#8217;ve been working on. It&#8217;s only at v0.5 till I test the board out. I&#8217;m also going to play around with the silk screen, but the layout probably won&#8217;t change, as I can&#8217;t see anywhere to reduce it further and still keep it single sided.</p>
<p>The PCB measures 1&#8243; x 0.7&#8243; and is single sided to allow for home fabbing. I could make this smaller with SMD parts, but it wouldn&#8217;t be single sided any longer. One position on each pot isn&#8217;t used, but I left them in there, as they could be used for strain relief instead. The diode is completely optional, as that causes the 555&#8242;s duty cycle to stop being 50%.</p>
<p>What that means, is that sometimes you want to press a button for a very short burst between longer pauses. Or have the button press for a long time between short pauses. Sometimes it doesn&#8217;t really matter, and you just want a square wave. In any case, you can change the configuration with this design. The diode also runs through a switch position, so that you can have an external control for it.</p>
<p>I also left a spot for an external trigger. That would allow you to hook this up to some kind of external circuit, like a sequencer or midi board. You&#8217;ll need to cut a trace for that, and the trigger voltage will have to be at least the same as the reference (which is currently tied to VCC). The trace you&#8217;ll cut is the one from TR to the 10uF cap. I&#8217;ll probably do a run of these if it works out, in which case I&#8217;ll make the side that needs to be cut.</p>
<p>I&#8217;m currently using two 100k pots to modulate the time. R2 is actually the left one (I should probably label them), and R1 is the right pot. If you want a simple oscillator, then just use a standard 10k resistor for R1. You can change both pots as well. Larger pots will give you slower rates, and smaller pots will give you quicker rates. You can also change out the 10uF cap to change timing as well. These are the values I found good for triggering simple toys.</p>
<p><a class="tt-flickr tt-flickr-Small" title="555pcb" href="http://www.flickr.com/photos/jaypee4227/5436164223/"><img class="aligncenter" src="http://farm5.static.flickr.com/4112/5436164223_12fccfb403_m.jpg" alt="555pcb" width="240" height="165" /></a> I also did a quick PNG file for etching. You can either get it from Flickr, or from the PCB files. It&#8217;s high res, but should only  be 1&#8243; x 0.7&#8243;. If it isn&#8217;t then you&#8217;ll need to re-size it as well. The file has been mirrored, so this is actually the bottom layer as etched from a single sided PCB. Please  let me know how yours turns out and what you do with it.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2011/02/quick-555-pcb-for-bending/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Triggering the Sing-A-Ma-Jig with a 555</title>
		<link>http://jimmieprodgers.com/2011/02/triggering-the-sing-a-ma-jig-with-a-555/</link>
		<comments>http://jimmieprodgers.com/2011/02/triggering-the-sing-a-ma-jig-with-a-555/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 02:15:57 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[bending]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=470</guid>
		<description><![CDATA[Wow, just wow. The 555 worked like a charm. I didn&#8217;t even need a transistor for it, which I mentioned in the previous post. I used a simple 555 timer to get it to loop. Turns out that Btn1 just need to be dropped to ground, and then it signals a button press. Luckily, the [...]]]></description>
				<content:encoded><![CDATA[<p></p><p><iframe width="500" height="375" src="http://www.youtube.com/embed/idWIfOEzSO8?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p>Wow, just wow. The 555 worked like a charm. I didn&#8217;t even need a transistor for it, which I mentioned in <a href="http://jimmieprodgers.com/2011/02/sing-a-ma-jig-is-a-creepy-toy/">the previous post</a>. I used a simple <a href="http://en.wikipedia.org/wiki/555_timer_IC">555 timer</a> to get it to loop. Turns out that Btn1 just need to be dropped to ground, and then it signals a button press. Luckily, the 555 output was designed to either sink or source current, so it can be used directly without a transistor.</p>
<p>This thing is so fun. You can even <a href="http://jimmieprodgers.com/wp-content/uploads/2011/02/toy.m4a">listen to me playing with it</a>. Seriously, this thing is going to be great.</p>
<p>I&#8217;m using a <a href="http://www.mouser.com/ProductDetail/Texas-Instruments/TLC555CP/?qs=sGAEpiMZZMuMkwKcEjFF1Pzg5iWPfmn5FlpVYEa4uo4%3d">TLC555CP from TI</a>, which starts with a voltage as low as only 2v! What that means is that I can power this off of my 3v toy. My favorite page for <a href="http://www.kpsec.freeuk.com/555timer.htm">basic 555 information is located here</a>. I&#8217;m using the astable configuration with a <a href="http://www.kpsec.freeuk.com/555timer.htm#dutycycle">greater than 50% duty cycle</a>.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0438" href="http://www.flickr.com/photos/jaypee4227/5434428241/"><img class="aligncenter" src="http://farm5.static.flickr.com/4150/5434428241_eeecb4a218.jpg" alt="IMG_0438" width="375" height="500" /></a> I&#8217;m going to do a proper post on this later to fully explain what all this is doing, and how to use it with other toys. For now I&#8217;m having fun playing with it. I&#8217;ve also done three blog posts today, in short succession. I&#8217;m going to go and grab some food now, then I&#8217;ll probably do up a proper schematic in Eagle. I will probably do a PCB for this as well, since it&#8217;s extremely useful. I&#8217;ll actually submit that for the <a href="http://www.555contest.com/">555 contest</a>.</p>
<p><span id="more-470"></span></p>
<p>Here are a few pics of the circuit:<br />
<a class="tt-flickr tt-flickr-Medium" title="IMG_0442" href="http://www.flickr.com/photos/jaypee4227/5434433865/"><img class="aligncenter" src="http://farm6.static.flickr.com/5014/5434433865_9300f7525a.jpg" alt="IMG_0442" width="500" height="375" /></a></p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0441" href="http://www.flickr.com/photos/jaypee4227/5435043578/"><img class="aligncenter" src="http://farm5.static.flickr.com/4151/5435043578_93a12cca5c.jpg" alt="IMG_0441" width="500" height="375" /></a></p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0440" href="http://www.flickr.com/photos/jaypee4227/5434431769/"><img class="aligncenter" src="http://farm6.static.flickr.com/5179/5434431769_0335122073.jpg" alt="IMG_0440" width="375" height="500" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2011/02/triggering-the-sing-a-ma-jig-with-a-555/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
<enclosure url="http://jimmieprodgers.com/wp-content/uploads/2011/02/toy.m4a" length="3012475" type="audio/mp4" />
		</item>
		<item>
		<title>Sing-A-Ma-Jig is a creepy toy!</title>
		<link>http://jimmieprodgers.com/2011/02/sing-a-ma-jig-is-a-creepy-toy/</link>
		<comments>http://jimmieprodgers.com/2011/02/sing-a-ma-jig-is-a-creepy-toy/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 01:43:54 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[bending]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=462</guid>
		<description><![CDATA[Holy crap, I can&#8217;t believe they make this thing for kids! Even without the molestache(which I printed out), it&#8217;s still creepy.  It&#8217;s also quite ripe for bending. The thing is called a Sing-A-Ma-Jig, and I got mine at target while in NYC a few weeks back. I even opened it up that night and just [...]]]></description>
				<content:encoded><![CDATA[<p></p><p><a class="tt-flickr tt-flickr-Medium" title="IMG_0357" href="http://www.flickr.com/photos/jaypee4227/5434498451/"><img class="aligncenter" src="http://farm5.static.flickr.com/4142/5434498451_5431ca027f.jpg" alt="IMG_0357" width="375" height="500" /></a> Holy crap, I can&#8217;t believe they make this thing for kids! Even without the <a href="http://www.urbandictionary.com/define.php?term=molestache">molestache</a>(which I <a href="http://www.thingiverse.com/thing:5123">printed out</a>), it&#8217;s still creepy.  It&#8217;s also quite ripe for bending. The thing is called a <a href="http://www.thesingamajigs.com/">Sing-A-Ma-Jig</a>, and I got mine <a href="http://www.toysrus.com/product/index.jsp?productId=4081950">at target</a> while in NYC a few weeks back. I even <a href="http://www.flickr.com/photos/jaypee4227/5434493869/">opened it up that night</a> and just used my fingers to see if it was bendable, and it is indeed.</p>
<p>This post is something that should have been posted yesterday, but I sort of started hanging out with my roommates. Then beers got involved, and then motivation was thoroughly lost. The previous two days was a combination of sleep deprivation, workshop preparation, visiting of friends, and travel. Seriously, I didn&#8217;t do anything creative for those two days, and I was running on only a few hours of sleep a night. That really tends to sap my creative energy. I&#8217;ll post a few projects after the month is over to make up for it.</p>
<p>This post is about the exploration of the toy, and how I go about finding fun points to bend. I made a quick video, and I also uploaded a <a href="http://www.flickr.com/photos/jaypee4227/sets/72157625831129447/">bunch of pics to my Flickr</a>. Behold, the first video:</p>
<p><iframe width="500" height="375" src="http://www.youtube.com/embed/BKB_D7SVouE?feature=oembed" frameborder="0" allowfullscreen></iframe></p>
<p><span id="more-462"></span>This thing is fun right away. Really sensitive to touch, which means that it will be easy to bend.</p>
<p>This was actually fairly easy to take apart, but you do have to snip the threads at the top of the battery compartment. Behind the head you&#8217;ll find the two screws you&#8217;ll need to remove the electronics:</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0419" href="http://www.flickr.com/photos/jaypee4227/5434421495/"><img class="aligncenter" src="http://farm6.static.flickr.com/5255/5434421495_12688e3e0c.jpg" alt="IMG_0419" width="375" height="500" /></a> Those two holes at the top right and left are what you are looking for. Next there are four on the front of the case you&#8217;ll have to remove:</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0420" href="http://www.flickr.com/photos/jaypee4227/5434422231/"><img class="aligncenter" src="http://farm5.static.flickr.com/4076/5434422231_50ce70820a.jpg" alt="IMG_0420" width="375" height="500" /></a> I&#8217;ve removed the four at this point. The plastic piece on top can be taken off as a single piece. You&#8217;ll then be left with the speaker to deal with:</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0421" href="http://www.flickr.com/photos/jaypee4227/5434423523/"><img class="aligncenter" src="http://farm5.static.flickr.com/4118/5434423523_885bd3163e.jpg" alt="IMG_0421" width="375" height="500" /></a> Save that metal bar in the middle, otherwise you won&#8217;t be able to keep the strange mouth movement. Honestly, the mouth movement is half of what makes this thing creepy.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0423" href="http://www.flickr.com/photos/jaypee4227/5434424647/"><img class="aligncenter" src="http://farm6.static.flickr.com/5171/5434424647_a6c01c2e8d.jpg" alt="IMG_0423" width="500" height="375" /></a> I&#8217;ve removed the hot glue that covered most of the electronics so that I can give it the bad touch. For interesting toys, I draw a map of the circuit.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0434" href="http://www.flickr.com/photos/jaypee4227/5435037120/"><img class="aligncenter" src="http://farm6.static.flickr.com/5216/5435037120_fd87bb6a5f.jpg" alt="IMG_0434" width="375" height="500" /></a></p>
<p>This is my note page filled with info. At the time of the video, only things above &#8220;Bends&#8221; were really written down. Then the second half has the info for bend point one.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0439" href="http://www.flickr.com/photos/jaypee4227/5434430505/"><img class="aligncenter" src="http://farm6.static.flickr.com/5095/5434430505_b7dcb69579.jpg" alt="IMG_0439" width="500" height="375" /></a> I found that bend point one responded really well with a 1Meg pot. Point1 is connected to the middle position of the pot, with +3V going to the left position, and GND going to the right position. I also found that it responded well with a photo-resistor, and I <a href="http://www.jameco.com/webapp/wcs/stores/servlet/ProductDisplay?langId=-1&amp;productId=120310&amp;catalogId=10001&amp;freeText=120310&amp;app.products.maxperpage=15&amp;storeId=10001&amp;search_type=jamecoall&amp;ddkey=https:StoreCatalogDrillDownView">used a 2k-2M one</a>. I generally tune my toys as well, which is what the 22k resistors are about.</p>
<p>What I mean by tuning, is that I try and find both the high and low end that the toy crashes. I start with a large pot (like 1 Meg), and find that spot. I then remove the pot and measure it with a multimeter. Then I lower to an appropriate pot and continue to fine tune it. If the crash value is 10k, I&#8217;m not going to use a 500k, but a 100k or 50k. In this case I got +57k and -39k, so I used a 100k pot. Then I found the value of +-24k. The closest resistor value I had was 22k, so 22k it was.</p>
<p>I&#8217;ll put touch contacts in behind the 22k resistors, as going below that doesn&#8217;t help at all. I&#8217;ll also get up the next post fairly shortly, as I&#8217;ve already completed it. Like I said, this should have been posted last night.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2011/02/sing-a-ma-jig-is-a-creepy-toy/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Open Source Hardware Definition 1.0</title>
		<link>http://jimmieprodgers.com/2011/02/open-source-hardware-definition-1-0/</link>
		<comments>http://jimmieprodgers.com/2011/02/open-source-hardware-definition-1-0/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 23:45:42 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=458</guid>
		<description><![CDATA[The Open Source Hardware definition has reached v1.0! I&#8217;m proud to say that all of my kits fully comply with the definition, and will continue to do so in the future. I feel very strongly about the free culture movement, and believe that it is the best way of going about things. Knowledge and digital [...]]]></description>
				<content:encoded><![CDATA[<p></p><p><a href="http://freedomdefined.org/OSHW"><img class="aligncenter size-full wp-image-457" title="oshw" src="http://jimmieprodgers.com/wp-content/uploads/2011/02/oshw.png" alt="" width="500" height="500" /></a>The <a href="http://freedomdefined.org/OSHW">Open Source Hardware definition has reached v1.0</a>! I&#8217;m proud to say that all of my kits fully comply with the definition, and will continue to do so in the future. I feel very strongly about the free culture movement, and believe that it is the best way of going about things. Knowledge and digital resources should be free.</p>
<p>I actually learned electronics through exploring things online. If people would not have posted their projects and code for me to learn with, then I would probably still be doing systems administration. I would have still bought kits and soldered them together, but I would not have progressed as quickly as I did if the resources had not been available online, open source, and free.</p>
<p>That is why I&#8217;ve allowed for commercial use in my licensing from the start, and I&#8217;m glad that it&#8217;s in the OSHW definition. Basically, hardware costs money. If you can&#8217;t at least make the money back for your project, you are far less likely to move beyond a small production run. That means that anyone can also download my source, and create kits that directly compete with me. However, they are then held to the same license, and must release the modified source as well.</p>
<p>That allows for a project to progress very quickly. I&#8217;ll admit it, I get board of things if they aren&#8217;t new or interesting, so it&#8217;s good for others to keep me on my toes, and it keeps me creating instead of just sitting on my laurels. It also means, that if someone moves into my space with an improved kit, that I can incorporate the improvements into the main project and then sell a better product myself. This is a market where first-seller has a distinct advantage.</p>
<p>The most common question I get asked is about larger kit makers taking my design and selling it. I&#8217;ve been approached by some of them, and they actually just buy the kits from me instead of kitting it up themselves. Theoretically if I&#8217;m doing my job and meeting market demand, then even large sellers are going to have a hard time getting into the market at the same volumes, and volume is how I make money with my kits. I&#8217;m just a small seller, but I&#8217;m making enough to live on and travel around the world.</p>
<p>In short, I make a living giving away my intellectual property, and I make enough money to live on plus travel around the world. I don&#8217;t make nearly as much as I did as a systems administrator, but I can honestly say that I love what I&#8217;m doing. I&#8217;m also constantly inspired by the others who are involved in the movement, and I&#8217;m extremely happy that I&#8217;m able to continue doing this.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2011/02/open-source-hardware-definition-1-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Modular Dice Tower</title>
		<link>http://jimmieprodgers.com/2011/02/modular-dice-tower/</link>
		<comments>http://jimmieprodgers.com/2011/02/modular-dice-tower/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 02:51:37 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[3d]]></category>
		<category><![CDATA[digital fab]]></category>
		<category><![CDATA[sketchup]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=453</guid>
		<description><![CDATA[I totally failed to get a post up today by 7pm (that&#8217;s what I get for taking a &#8220;nap&#8221; at 5pm). I also failed to finish anything substantial, as I was hanging out with a good friend all day, and only spent about an hour in sketchup before taking my &#8220;nap&#8221;. I did come up [...]]]></description>
				<content:encoded><![CDATA[<p></p><p><a href="http://jimmieprodgers.com/wp-content/uploads/2011/02/round-dice-tower-base.jpg"><img class="aligncenter size-full wp-image-452" title="round dice tower base" src="http://jimmieprodgers.com/wp-content/uploads/2011/02/round-dice-tower-base.jpg" alt="" width="500" height="541" /></a>I totally failed to get a post up today by 7pm (that&#8217;s what I get for taking a &#8220;nap&#8221; at 5pm). I also failed to finish anything substantial, as I was hanging out with a good friend all day, and only spent about an hour in sketchup before taking my &#8220;nap&#8221;. I did come up with the idea of having a Makerbot printable modular dice tower design though. This is the base section of it. It&#8217;s three inches wide, with a wall width of 1.5mm.</p>
<p><a href="http://jimmieprodgers.com/wp-content/uploads/2011/02/round-dice-tower-base-2.jpg"><img class="aligncenter size-full wp-image-454" title="round dice tower base 2" src="http://jimmieprodgers.com/wp-content/uploads/2011/02/round-dice-tower-base-2.jpg" alt="" width="500" height="565" /></a>Here you can see the slanted module. I only really completed the template piece and this one. I had started on the bottom one, but wasn&#8217;t even close when I decided to &#8220;nap&#8221;. The slope of it should print just fine without support, so I can print it hollow. I&#8217;m much better at judging printable designs as opposed to laser cut-able ones.</p>
<p>Most of my creative efforts were daydreaming today, but I&#8217;m honestly inspired to finish up some more of these and print them when I get home. I&#8217;ll post the full set to Thingiverse before that though. I enjoy traveling around to different hackerspaces, but I can&#8217;t wait till I get home and have access to my tools and parts. I prefer physically making things more than digitally designing. A mix of the two is nice, but at the moment all I have with me is my laptop and LoL Shields.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2011/02/modular-dice-tower/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dice Tower</title>
		<link>http://jimmieprodgers.com/2011/02/dice-tower/</link>
		<comments>http://jimmieprodgers.com/2011/02/dice-tower/#comments</comments>
		<pubDate>Sat, 05 Feb 2011 22:51:05 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=447</guid>
		<description><![CDATA[I didn&#8217;t want to do another LoL Shield project today, mostly because my whole front page is nothing but LoL Shield posts. So I decided to do something I&#8217;ve been wanting to design for some time, a dice tower. I have thrown it up on Thingiverse. The image above is just a quick render in [...]]]></description>
				<content:encoded><![CDATA[<p></p><p><a href="http://jimmieprodgers.com/wp-content/uploads/2011/02/dicetower-sketch.jpg"><img class="aligncenter size-full wp-image-448" title="dicetower sketch" src="http://jimmieprodgers.com/wp-content/uploads/2011/02/dicetower-sketch.jpg" alt="" width="500" height="636" /></a>I didn&#8217;t want to do another LoL Shield project today, mostly because my whole front page is nothing but LoL Shield posts. So I decided to do something I&#8217;ve been wanting to design for some time, a <a href="http://en.wikipedia.org/wiki/Dice_tower">dice tower</a>. I have <a href="http://www.thingiverse.com/thing:6132">thrown it up on Thingiverse</a>. The image above is just a quick render in sketchup, the actual file is an <a href="http://www.thingiverse.com/download:18909">SVG</a> that you will laser cut out of an 1/8&#8243; material. I won&#8217;t get a chance to cut this out for a while, so if you do, please let me know how well it goes. I hope to add some art and flourishes (turrets, etc). I also can&#8217;t wait to try it out with a <a href="http://en.wikipedia.org/wiki/Arkham_Horror">game that uses tons of dice</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2011/02/dice-tower/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ten Second LED Belt Buckle</title>
		<link>http://jimmieprodgers.com/2011/02/ten-second-led-belt-buckle/</link>
		<comments>http://jimmieprodgers.com/2011/02/ten-second-led-belt-buckle/#comments</comments>
		<pubDate>Fri, 04 Feb 2011 23:56:55 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[arduino]]></category>
		<category><![CDATA[charlieplexing]]></category>
		<category><![CDATA[hackerspace]]></category>
		<category><![CDATA[LoL Shield]]></category>
		<category><![CDATA[workshop]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=431</guid>
		<description><![CDATA[The Diavolino from Evil Made Science is hands down my favorite Arduino clone. It&#8217;s the only one I sell at workshops, and it works extremely well with the LoL Shield. So much so, that it is my official recommendation as THE Arduino to use with the LoL Shield. Why do I love it so much? [...]]]></description>
				<content:encoded><![CDATA[<p></p><p><a class="tt-flickr tt-flickr-Medium" title="IMG_0398" href="http://www.flickr.com/photos/jaypee4227/5415903625/"><img class="aligncenter" src="http://farm5.static.flickr.com/4120/5415903625_72e8159818.jpg" alt="IMG_0398" width="500" height="375" /></a></p>
<p>The Diavolino from Evil Made Science is hands down my favorite Arduino clone. It&#8217;s the only one I sell at workshops, and it works extremely well with the LoL Shield. So much so, that it is my <a href="http://jimmieprodgers.com/kits/lolshield/diavolino/">official recommendation as THE Arduino to use with the LoL Shield</a>.</p>
<p>Why do I love it so much? It&#8217;s cheap, so you can dedicate the Arduino to the LoL Shield or other project. Since you build it yourself, you can simply choose to leave out the pin 13 LED, which gets rid of the ghosting. It also has a really low profile, so it works great as a belt buckle. <a href="http://www.flickr.com/photos/nordgrens/4261611453/in/photostream/">Which I usually wear around at conferences</a>.</p>
<p>I ran a workshop last night at <a href="http://www.unallocatedspace.org/">Unallocated space</a>, and one of the members flat out bought one of my pre-soldered examples (white one with the Diavolino). No-one has ever done that before, but next time I&#8217;m charging more than $110. So that basically made my project today re-building the kit I show off at workshops. Since I had to re-build a Diavolino, I decided to do a <a href="http://jimmieprodgers.com/kits/lolshield/diavolino/">quick instructional page</a> for the slight modification as well. The instructional page is much closer to my project than this post, but I&#8217;m combining them, as I spent most of my non-travel time today building the white shield again.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0412" href="http://www.flickr.com/photos/jaypee4227/5415905359/"><img class="aligncenter" src="http://farm6.static.flickr.com/5138/5415905359_d2db187e92.jpg" alt="IMG_0412" width="500" height="375" /></a> The only modification for a belt buckle would be the removal of the reset button. I just don&#8217;t solder it in.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0413" href="http://www.flickr.com/photos/jaypee4227/5416518270/"><img class="aligncenter" src="http://farm5.static.flickr.com/4140/5416518270_696e773d65.jpg" alt="IMG_0413" width="500" height="375" /></a> Look at how much room there is!</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0414" href="http://www.flickr.com/photos/jaypee4227/5416518484/"><img class="aligncenter" src="http://farm5.static.flickr.com/4127/5416518484_aab1ecc97e.jpg" alt="IMG_0414" width="500" height="375" /></a> I usually wear the actual buckle off to the side. My shirt generally hangs over it, so it doesn&#8217;t really show.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0415" href="http://www.flickr.com/photos/jaypee4227/5416518724/"><img class="aligncenter" src="http://farm6.static.flickr.com/5060/5416518724_31d1f211c4.jpg" alt="IMG_0415" width="500" height="375" /></a> You can actually see the wear my belt has had from all the LoL Shields.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0416" href="http://www.flickr.com/photos/jaypee4227/5416518896/"><img class="aligncenter" src="http://farm5.static.flickr.com/4108/5416518896_3e3a5f28bd.jpg" alt="IMG_0416" width="500" height="375" /></a> Bam! Ten second belt buckle (minus assembly time).</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0417" href="http://www.flickr.com/photos/jaypee4227/5415906177/"><img class="aligncenter" src="http://farm6.static.flickr.com/5296/5415906177_48f0f77b7d.jpg" alt="IMG_0417" width="500" height="375" /></a> Here it is <a href="http://www.youtube.com/watch?v=dQw4w9WgXcQ">playing a very interesting video</a>. On my belt.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2011/02/ten-second-led-belt-buckle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Updated LoL Shield Video</title>
		<link>http://jimmieprodgers.com/2011/02/updated-lol-shield-video/</link>
		<comments>http://jimmieprodgers.com/2011/02/updated-lol-shield-video/#comments</comments>
		<pubDate>Thu, 03 Feb 2011 21:38:37 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=419</guid>
		<description><![CDATA[http://www.youtube.com/watch?v=sWpqH37Zb9M﻿ Since it&#8217;s been a while since I updated my LoL Shield stuff, here is a new video explaining it a bit. It&#8217;s mostly for the official LoL Shield page. Basically, my project for the day is doing stuff I should have done quite a while ago. Kind of lame for a project, but it&#8217;s [...]]]></description>
				<content:encoded><![CDATA[<p></p><p>http://www.youtube.com/watch?v=sWpqH37Zb9M﻿</p>
<p>Since it&#8217;s been a while since I updated my LoL Shield stuff, here is a new video explaining it a bit. It&#8217;s mostly for the official <a href="http://jimmieprodgers.com/kits/lolshield/">LoL Shield page</a>. Basically, my project for the day is doing stuff I should have done quite a while ago. Kind of lame for a project, but it&#8217;s something that needed to be done, and I didn&#8217;t have much time today between traveling and setting up for a workshop.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2011/02/updated-lol-shield-video/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Base 12 Clock</title>
		<link>http://jimmieprodgers.com/2011/02/base-12-clock/</link>
		<comments>http://jimmieprodgers.com/2011/02/base-12-clock/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 21:57:35 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[arduino]]></category>
		<category><![CDATA[charlieplexing]]></category>
		<category><![CDATA[LoL Shield]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=406</guid>
		<description><![CDATA[So I couldn&#8217;t let the whole clock thing be after my perceived failure yesterday. This time I went with a conceptual clock that I would write the display myself. What I came up with is a fairly good indicator of time at a glance, but takes a bit to get the exact time down. The [...]]]></description>
				<content:encoded><![CDATA[<p></p><p><a class="tt-flickr tt-flickr-Medium" title="IMG_0385" href="http://www.flickr.com/photos/jaypee4227/5410800971/"><img class="aligncenter" src="http://farm6.static.flickr.com/5292/5410800971_f1a94255bd.jpg" alt="IMG_0385" width="500" height="375" /></a>So I couldn&#8217;t let the whole clock thing be after <a href="http://jimmieprodgers.com/2011/02/february-project-month/">my perceived failure yesterday</a>. This time I went with a conceptual clock that I would write the display myself. What I came up with is a fairly good indicator of time at a glance, but takes a bit to get the exact time down. The time in the photo above is 2:34:58.</p>
<p><div class="flickr-photos"><object width="640" height="480" data="http://www.flickr.com/apps/video/stewart.swf?v=71377&photo_id=5410847869&photo_secret=e5bfa4c9d3" type="application/x-shockwave-flash" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="flickr_show_info_box=false"></param> <param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=71377&photo_id=5410847869&photo_secret=e5bfa4c9d3"></param> <param name="bgcolor" value="#000000"></param> <param name="allowFullScreen" value="true"></param> <embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=71377&photo_id=5410847869&photo_secret=e5bfa4c9d3" bgcolor="#000000" allowfullscreen="true" flashvars="flickr_show_info_box=false" width="640" height="480"></embed></object></div><br />
I really like when the time changes over to a new hour.</p>
<p>Since I have 14 columns to play with, I came up with a system that uses 12 dots with two spaces (hence the base 12). The first two rows are the hours, and it starts all the way to the left. That allows for a full 24 hour clock. At a glance you can tell what quarter of the day you are in, and you really only need to count a few individual dots to get the hour.</p>
<p>The middle five rows are for the minutes. Since 60 divides by 5 so nicely, it gave me 12 dots to work with as well. So I had the minutes shift over one column to separate it from the hour. I really like how the minutes fill up over an hour, the design really allows you to get an idea of the time at a glance. It&#8217;s a bit more counting to get the exact time, but I&#8217;m getting much better with my base12 math because of it.</p>
<p>The last two rows I left for seconds. I didn&#8217;t want to represent all of them like the minutes, plus I didn&#8217;t have room. Since I had been using the 12&#215;5 method already, I decided to let each of the 12 dots on row 8 represent 5 seconds each. I also wanted something to count individual seconds, so I had row 9 represent a single second, but only showed 10 at a time (yes, I know that isn&#8217;t even sort of base12). That means that for every 5 dots on row 9, a single dot advances on row 8. This one hasn&#8217;t been the easiest to get used to during the day, as I just don&#8217;t have a feel for it just yet. It still accomplishes the progress bar I was looking for.</p>
<p><div class="flickr-photos"><object width="640" height="480" data="http://www.flickr.com/apps/video/stewart.swf?v=71377&photo_id=5410800583&photo_secret=e65659ffb6" type="application/x-shockwave-flash" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="flickr_show_info_box=false"></param> <param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=71377&photo_id=5410800583&photo_secret=e65659ffb6"></param> <param name="bgcolor" value="#000000"></param> <param name="allowFullScreen" value="true"></param> <embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=71377&photo_id=5410800583&photo_secret=e65659ffb6" bgcolor="#000000" allowfullscreen="true" flashvars="flickr_show_info_box=false" width="640" height="480"></embed></object></div><br />
I have no idea why this video is sideways. It plays on both my phone and laptop correct. Flickr flipped it, and I&#8217;m not sure how to rotate it.</p>
<p>Overall I&#8217;m quite happy with how it looks. The only problem is that the Diavolino I&#8217;m using has a 4.5v battery pack and the DS1307 requires 5v to start up. So it currently only runs when connected to my computer. I&#8217;ll have to pick up a 4xAAA pack and a <a href="http://evilmadscience.com/partsmenu/181-5vreg">voltage regulator</a> to get the DS1307 to run properly on battery power.</p>
<p>I&#8217;ve thrown up <a href="http://lolshield.googlecode.com/files/base12clock.pde">the source code</a> in the <a href="http://code.google.com/p/lolshield/">google code project</a>. You&#8217;ll still need a <a href="http://www.ladyada.net/learn/breakoutplus/ds1307rtc.html">DS1307</a>. The breakout is directly soldered to pins 16-19 on the LoL Shield. I&#8217;ll definately be doing more clocks this month. Also, with the traveling I&#8217;m fairly limited. It will at least be LoL Shield projects for the week, as that&#8217;s all I got with me. This also showed me that there is something screwy with the font library, so I&#8217;ll probably try to take a stab at that as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2011/02/base-12-clock/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>February Project Month</title>
		<link>http://jimmieprodgers.com/2011/02/february-project-month/</link>
		<comments>http://jimmieprodgers.com/2011/02/february-project-month/#comments</comments>
		<pubDate>Tue, 01 Feb 2011 23:51:49 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[arduino]]></category>
		<category><![CDATA[charlieplexing]]></category>
		<category><![CDATA[LoL Shield]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=393</guid>
		<description><![CDATA[Like many folks on the interwebs, I&#8217;m going to be doing a sort of project a day thing. It&#8217;s mostly to get me back into documenting my work, and posting new content to my website. It came around when one of my roommates, Keith Simmons, quit his job and started hacking full time as well. [...]]]></description>
				<content:encoded><![CDATA[<p></p><p><a href="http://jimmieprodgers.com/wp-content/uploads/2011/02/terrible-pic.gif"><img class="aligncenter size-full wp-image-394" title="terrible pic" src="http://jimmieprodgers.com/wp-content/uploads/2011/02/terrible-pic.gif" alt="" width="550" height="400" /></a></p>
<p>Like many folks on the interwebs, I&#8217;m going to be doing a sort of project a day thing. It&#8217;s mostly to get me back into documenting my work, and posting new content to my website. It came around when one of my roommates, <a href="http://ksimmulator.wordpress.com/">Keith Simmons</a>, quit his job and started hacking full time as well. By having another person participating as well, it makes it a little easier. So we will be pushing each other to post.</p>
<p>The really fun part of this is going to be that I&#8217;m traveling for the next week or so. I&#8217;m terrible about getting much of anything useful done while traveling, so I&#8217;ve got an added challenge. The point of this is to have me document what I&#8217;m doing though, even if it doesn&#8217;t work out or doesn&#8217;t work well.</p>
<p>We came up with some official rules, which you can <a href="https://docs.google.com/document/pub?id=1dIBcAzlXROq3lz2OF506x2FHJ_J_JgZD_ROZgqTS1yA">check out if you want</a>. Basically, the idea is to create something, and post it. Regardless of  functionality or how clean/nice it all looks. We also aren&#8217;t limiting ourselves to a single day for projects, but you do have to post every day. Also, anything that is creative is fair game. So it could be as simple as making a quick instructional video. As long as it represents what you did during that day.</p>
<p>My project for the day was to build a clock for the LoL Shield. Seemed simple enough. <span id="more-393"></span> I&#8217;ve had an<a href="http://www.adafruit.com/index.php?main_page=product_info&amp;cPath=42&amp;products_id=264"> Adafruit DS1307 Real Time Clock breakout board kit</a> in my bag for a while now, so I thought it would be a good place to start for a clock.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0368" href="http://www.flickr.com/photos/jaypee4227/5408930486/"><img class="aligncenter" src="http://farm6.static.flickr.com/5255/5408930486_8beb3147d0.jpg" alt="IMG_0368" width="500" height="375" /></a></p>
<p>I like to bend IC leads out when soldering straight to a PCB. I started doing that with APCs, because I wanted to minimize height.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0373" href="http://www.flickr.com/photos/jaypee4227/5408930504/"><img class="aligncenter" src="http://farm6.static.flickr.com/5055/5408930504_4556e51744.jpg" alt="IMG_0373" width="500" height="375" /></a> I actually just soldered the kit straight to the LoL Shield. I&#8217;ve got lots of headers, so I don&#8217;t mind destroying them if needed.</p>
<p><a class="tt-flickr tt-flickr-Medium" title="IMG_0372" href="http://www.flickr.com/photos/jaypee4227/5408930498/"><img class="aligncenter" src="http://farm6.static.flickr.com/5254/5408930498_219ff52626.jpg" alt="IMG_0372" width="500" height="375" /></a> You can still get to the battery this way, and I thought it worked out well. There is plenty of room between the LoL Shield and a Diavolino.</p>
<p><code><br />
#include "Charliplexing.h"<br />
#include "Font.h"<br />
#include "WProgram.h"</code><br />
#include<br />
#include &#8220;RTClib.h&#8221;<br />
RTC_DS1307 RTC;<br />
char hour[2];<br />
char minute[2];</p>
<p>void setup () {<br />
LedSign::Init();<br />
pinMode(16, OUTPUT);<br />
pinMode(17, OUTPUT);<br />
digitalWrite(16, LOW);<br />
digitalWrite(17, HIGH);<br />
Wire.begin();<br />
RTC.begin();}</p>
<p>void loop(){<br />
int x=0;<br />
DateTime now = RTC.now();<br />
itoa(now.hour(), hour, 10);<br />
itoa(now.minute(), minute, 10);<br />
LedSign::Clear();<br />
x=Font::Draw(hour[0], 0, 0);<br />
Font::Draw(hour[1], x, 0);<br />
delay(1500);<br />
LedSign::Clear();<br />
x=Font::Draw(minute[0], 2, 0);<br />
Font::Draw(minute[1], x+2, 0);<br />
delay(1500);}</p>
<p>I wrote this in a fairly short time, and it sort of worked. However, it seems that I keep getting 0&#8242;s displayed. When I run just serial output, the RTC seems to be reporting the time correctly. When start changing things around with the code, or have both the RTC and LoL shield library with serial, I start to get really strange results.</p>
<p>Here is a video of the strangeness<br />
<div class="flickr-photos"><object width="640" height="480" data="http://www.flickr.com/apps/video/stewart.swf?v=71377&photo_id=5408930506&photo_secret=9ec6421c20" type="application/x-shockwave-flash" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"> <param name="flashvars" value="flickr_show_info_box=false"></param> <param name="movie" value="http://www.flickr.com/apps/video/stewart.swf?v=71377&photo_id=5408930506&photo_secret=9ec6421c20"></param> <param name="bgcolor" value="#000000"></param> <param name="allowFullScreen" value="true"></param> <embed type="application/x-shockwave-flash" src="http://www.flickr.com/apps/video/stewart.swf?v=71377&photo_id=5408930506&photo_secret=9ec6421c20" bgcolor="#000000" allowfullscreen="true" flashvars="flickr_show_info_box=false" width="640" height="480"></embed></object></div></p>
<p>It basically tells you the time when it feels like it. I haven&#8217;t got a clue. It may work 10 times in a row, or fail 10 times in a row. Perhaps it&#8217;s trying to tell me that focusing on time isn&#8217;t that important, and I should just enjoy what I&#8217;m doing. It could also be a timer or memory issue, as I&#8217;m not sure how compatible the libraries all are. Also, the current LoL Shield text library needs some work, as I got some strange results by just using that.</p>
<p>I&#8217;ll continue working on this, as it&#8217;s something I can code on while sitting on a bus. I&#8217;ll probably just code the display from scratch instead of using the text library.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2011/02/february-project-month/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>LoL Shield Projects</title>
		<link>http://jimmieprodgers.com/2010/08/lol-shield-projects/</link>
		<comments>http://jimmieprodgers.com/2010/08/lol-shield-projects/#comments</comments>
		<pubDate>Thu, 12 Aug 2010 16:25:30 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[arduino]]></category>
		<category><![CDATA[charlieplexing]]></category>
		<category><![CDATA[LoL Shield]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=373</guid>
		<description><![CDATA[I&#8217;ve recently received a few awesome LoL Shield projects in my inbox, and I thought I should share. The first one was Pete&#8217;s awesome white block clock. He painted the inside of a plastic box white, so that the LEDs would have to shine through. It looks amazing, and you should check out the post. [...]]]></description>
				<content:encoded><![CDATA[<p></p><div id="attachment_374" class="wp-caption aligncenter" style="width: 400px">
	<a href="http://jimmieprodgers.com/wp-content/uploads/2010/08/lolclock.jpg"><img class="size-full wp-image-374" title="lolclock" src="http://jimmieprodgers.com/wp-content/uploads/2010/08/lolclock.jpg" alt="LoL Shield Clock" width="400" height="535" /></a>
	<p class="wp-caption-text">http://www.thisispete.com/whiteblock/</p>
</div>
<p>I&#8217;ve recently received a few awesome LoL Shield projects in my inbox, and I thought I should share. The first one was Pete&#8217;s awesome <a href="http://www.thisispete.com/whiteblock/">white block clock</a>. He painted the inside of a plastic box white, so that the LEDs would have to shine through. It looks amazing, and you should check out the post. He&#8217;s unfortunately not ready to release the code just yet, but I&#8217;ll make sure to update this post once he does.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="481" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/YJX4p--a90E?fs=1&amp;hl=en&amp;start=0&amp;fs=1&amp;rel=0&amp;showinfo=0&amp;ap=%2526fmt%3D18" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="600" height="481" src="http://www.youtube.com/v/YJX4p--a90E?fs=1&amp;hl=en&amp;start=0&amp;fs=1&amp;rel=0&amp;showinfo=0&amp;ap=%2526fmt%3D18" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The second thing I got was Matt Mett&#8217;s <a href="http://www.cibomahto.com/2010/08/programming-the-lol-shield-using-animated-gifs/">sprite converter</a>. Above you can see a neat animation, that was generated from a python script converting this simple 9&#215;14 pixle animation. <a href="http://jimmieprodgers.com/wp-content/uploads/2010/08/ripple.gif"><img class="alignnone size-full wp-image-377" title="ripple" src="http://jimmieprodgers.com/wp-content/uploads/2010/08/ripple.gif" alt="" width="14" height="9" /></a> That will make frame by frame animation a good bit easier.</p>
<div id="attachment_383" class="wp-caption aligncenter" style="width: 600px">
	<a href="http://jimmieprodgers.com/wp-content/uploads/2010/08/lol_framebuffer.jpg"><img class="size-full wp-image-383" title="lol_framebuffer" src="http://jimmieprodgers.com/wp-content/uploads/2010/08/lol_framebuffer.jpg" alt="" width="600" height="378" /></a>
	<p class="wp-caption-text">http://www.cibomahto.com/2010/08/lol-processing/</p>
</div>
<p><em>Update</em>: Matt also put up a <a href="http://www.cibomahto.com/2010/08/lol-processing/">really cool processing sketch</a> to send serial data to the LoL Shield, which he has been using to scroll &#8220;The Time is Now [time]&#8220;. Matt has been traveling with Mitch and I on this trip, and has been a great help with the <a href="http://code.google.com/p/lolshield/">LoL Shield library</a> releases.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="481" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/qYuc81cGM8Q?fs=1&amp;hl=en&amp;start=0&amp;fs=1&amp;rel=0&amp;showinfo=0&amp;ap=%2526fmt%3D18" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="600" height="481" src="http://www.youtube.com/v/qYuc81cGM8Q?fs=1&amp;hl=en&amp;start=0&amp;fs=1&amp;rel=0&amp;showinfo=0&amp;ap=%2526fmt%3D18" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>This third thing I got was Eric&#8217;s <a href="http://www.akeric.com/blog/?page_id=1180">phygame graphic library</a>, that can send live graphics to the LoL Shield. The possibilities here are endless, and it&#8217;s a great way to get graphics quickly to the LoL Shield through the serial cable.</p>
<p>At the moment I&#8217;ve got my LoL Shield inventory with me in the <a href="http://jimmieprodgers.com/2010/08/mid-west-hackerspace-tour/">mid-west hackerspace tour</a>, but I&#8217;ve added two new colors. You can now get the LoL Shield in Blue or White. The only way to get them from me at the moment is in person at one of the hackerspaces. After this tour they will be online. If you are fine with green or red, you can get them from <a href="http://www.makershed.com/ProductDetails.asp?ProductCode=MKJR3">Make</a>, <a href="http://www.sparkfun.com/commerce/advanced_search_result.php?keywords=lol+shield&amp;x=0&amp;y=0&amp;search_section=products">Sparkfun</a>, <a href="http://www.oomlout.co.uk/arduino-shields-c-65_78.html?zenid=030c66c5cec6d97db96f48e8ad97ae85">Oomlout</a>, and now <a href="http://www.adafruit.com/index.php?main_page=product_info&amp;cPath=17_21&amp;products_id=274">Adafruit</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2010/08/lol-shield-projects/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Next Hope Talk is up</title>
		<link>http://jimmieprodgers.com/2010/08/next-hope-talk-is-up/</link>
		<comments>http://jimmieprodgers.com/2010/08/next-hope-talk-is-up/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 18:51:00 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[bending]]></category>
		<category><![CDATA[workshop]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=366</guid>
		<description><![CDATA[I&#8217;ve updated my Next Hope circuit bending talk page with some additional info. Basically they&#8217;ve released the audio of the talks, and you can get those here. This is a direct link to a high quality MP3 of my talk. You may want to follow along with a PDF of my presentation, or the outline. [...]]]></description>
				<content:encoded><![CDATA[<p></p><p><a href="http://jimmieprodgers.com/wp-content/uploads/2010/07/bending-bad-slide.jpg"><img class="aligncenter size-full wp-image-369" title="bending bad slide" src="http://jimmieprodgers.com/wp-content/uploads/2010/07/bending-bad-slide.jpg" alt="" width="640" height="400" /></a>I&#8217;ve updated my <a href="http://jimmieprodgers.com/hopetalk2010/">Next Hope circuit bending talk page</a> with some additional info. Basically they&#8217;ve released the audio of the talks, and you can <a href="http://thenexthope.org/talks-list/">get those here</a>. This is a <a href="http://c2047862.cdn.cloudfiles.rackspacecloud.com/tnhb24.mp3">direct link to a high quality MP3 of my talk</a>. You may want to follow along with a <a href="http://jimmieprodgers.com/wp-content/uploads/2010/08/Circuitbending.pdf">PDF of my presentation</a>, or <a href="https://docs.google.com/document/pub?id=1Ea2gAVcjc3KHcI7tKxp-i2euvNj5NJLIzAWMgHLvxO8">the outline</a>. Once I get a video, I will post it here as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2010/08/next-hope-talk-is-up/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Mid-west Hackerspace Tour</title>
		<link>http://jimmieprodgers.com/2010/08/mid-west-hackerspace-tour/</link>
		<comments>http://jimmieprodgers.com/2010/08/mid-west-hackerspace-tour/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 15:57:42 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=361</guid>
		<description><![CDATA[I was recently at Maker Faire Detroit, which was a blast. Mitch Altman and I, along with some great volunteers, taught around 1,500 people to solder during the event. It was really great, and I always love Maker Faires. People are always just so excited to be there, and love to make things. Since we [...]]]></description>
				<content:encoded><![CDATA[<p></p><div id="attachment_362" class="wp-caption aligncenter" style="width: 400px">
	<a href="http://jimmieprodgers.com/wp-content/uploads/2010/08/img_0180-e1281023491712.jpg"><img class="size-large wp-image-362" title="img_0180" src="http://jimmieprodgers.com/wp-content/uploads/2010/08/img_0180-e1281023491712-768x1024.jpg" alt="Mitch Teaching Henry Ford" width="400" height="533" /></a>
	<p class="wp-caption-text">Mitch Teaching Henry Ford</p>
</div>
<p>I was <a href="http://blog.makezine.com/archive/2010/08/mitch_altman_rocks.html">recently at Maker Faire Detroit</a>, which was a blast. <a href="http://www.tvbgone.com/cfe_tvbg_main.php">Mitch Altman</a> and I, along with some great volunteers, taught around 1,500 people to solder during the event. It was really great, and I always love Maker Faires. People are always just so excited to be there, and love to make things.</p>
<p>Since we were in the area, we&#8217;re going through the mid-west, and even up into Canada for a short stint. At the moment we are in Toronto, and will be running two workshops in the next two days. Mitch has posted a <a href="http://blog.noisebridge.net/2010/08/04/mitchs-midwest-workshop-tour-of-hackerspaces/">full schedule up on the Noisebridge blog</a>, but here it is as well:</p>
<p><strong>Hacklab.TO</strong> –<em> Toronto, ON</em> — visit on 3-August<br />
<strong>Site3</strong> — <em>Toronto, ON</em> — workshop on 5-August<br />
<strong>Kwartzlab</strong> –<em> Kitchener, ON</em> — workshop on 6-August<br />
<strong>OCD</strong> — <em>Detroit, MI</em> — workshop on 8-August<br />
<strong>Mt. Elliot Makerspace</strong> –<em> Detroit, MI</em> — workshop on 9-August<br />
<strong>I3</strong> — <em>Detroit, MI</em> — workshop on 10-August<br />
<strong>A2 MechShop</strong> — <em>Ann Arbor, MI</em> — visit on 11-August<br />
<strong>AHA</strong> — <em>Ann Arbor, MI</em> — workshop on 12-August<br />
<strong>LVL1</strong> — <em>Louisville, KY</em> — workshop on 14-August<br />
<strong>Hive13</strong> — <em>Cincinnati, OH</em> — presentation on 17-August<br />
<strong>Hive13</strong> — <em>Cincinnati, OH</em> — workshop on 18-August<br />
<strong>BloomingLabs</strong> — <em>Bloomington, IN</em> — workshop on 19-August<br />
<strong>Arch Reactor</strong> — <em>St. Louis, MO</em> — workshop on 20-August<br />
<strong>KC Mini Maker Faire</strong> / <strong>CCCKC</strong> — <em>Kansas City, MO</em> — Hardware Hacking Area at Faire on 22-August<br />
<strong>Quad Cities Co-Lab Hackerspace</strong> — <em>Quad Cities, IA/IL </em>– workshop on 24-August<br />
<strong>PS:1</strong> — <em>Chicago, IL</em> — workshop on 25-August<br />
<strong>Madison BarCamp</strong> — <em>Madison, WI</em> — talk on hackerspaces on 28-August<br />
<strong>Sector67</strong> –<em> Madison, WI</em> — workshop on 29-August</p>
<p>I will be dipping out after Chicago on the 25th to go to the Road Island Maker Faire, but other than that I will be at all of them. If you are around any of the spaces, you should swing by.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2010/08/mid-west-hackerspace-tour/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Circuit Bending Talk and Workshop At Hope</title>
		<link>http://jimmieprodgers.com/2010/07/circuit-bending-talk-and-workshop-at-hope/</link>
		<comments>http://jimmieprodgers.com/2010/07/circuit-bending-talk-and-workshop-at-hope/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 09:08:46 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[bending]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[workshop]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=352</guid>
		<description><![CDATA[Pre-register here. I will be giving a talk on circuit bending at the Next Hope conference this month. The talk will be Friday night at 9:00pm on Saturday. I will then be running a circuit bending workshop immediately afterwards. It will be from 10-ish PM till whenever in the hardware hacking village. To attend the [...]]]></description>
				<content:encoded><![CDATA[<p></p><p style="text-align: center;"><a class="tt-flickr tt-flickr-Medium" title="Easy Button" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=ZMDSCMD9RKPG8"><img class="aligncenter" src="http://farm4.static.flickr.com/3529/3922277297_60c7916e63.jpg" alt="Easy Button" width="500" height="375" />Pre-register here.</a></p>
<p style="text-align: left;">I will be giving a talk on circuit bending at the <a href="http://thenexthope.org/">Next Hope</a> conference this month. The talk will be Friday night at 9:00pm on Saturday. I will then be running a circuit bending workshop immediately afterwards. It will be from 10-ish PM till whenever in the hardware hacking village. To attend the workshop, you will either need to <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=ZMDSCMD9RKPG8">pre-register here</a> ($25, includes everything), or show up with an Easy Button and $15 in hand. I&#8217;m only going to bring about 10 Easy Buttons over the pre-registration, so I can&#8217;t guarantee you&#8217;ll get one. I will have all other parts needed for as many people as the hardware hacking village can hold.</p>
<p style="text-align: left;">The talk will cover not only a bit about what circuit bending is, but what it has been, and what it will be in the future. I will also go over some common exploits so that attendees will be able to leave the talk with a solid understanding of where to start, as well as what parts are needed. I will also be going over what toys to look for, and how to find ones that are ripe for exploits.</p>
<p style="text-align: left;"><strong>UPDATE:</strong></p>
<p style="text-align: left;">It looks like I only managed to get a grand total of 11 Easy Buttons from Staples. Also, since there is a bending concert on Saturday night, I&#8217;m not going to hold the workshop afterwards. That would just be unfair to the people who want to go to the concert (like me <img src='http://jimmieprodgers.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' />  The new time will be Sunday from 13:00 till you finish.</p>
<p style="text-align: left;">Your best bet is to either <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=ZMDSCMD9RKPG8">pre-register  here</a> or show up with an easy button and $20. I would suggest you go outside of Manhattan, as I&#8217;ve already bought all of the ones near the conference center. Although, there are supposedly 6 in the Staples in Pen Station, but I couldn&#8217;t find it, and nobody seemed to know where it was located. If you can find it, then you&#8217;ll be all set.</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2010/07/circuit-bending-talk-and-workshop-at-hope/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AS220 Artist in Residence</title>
		<link>http://jimmieprodgers.com/2010/06/as220-artist-in-residence/</link>
		<comments>http://jimmieprodgers.com/2010/06/as220-artist-in-residence/#comments</comments>
		<pubDate>Thu, 03 Jun 2010 20:34:09 +0000</pubDate>
		<dc:creator>Jimmie</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://jimmieprodgers.com/?p=349</guid>
		<description><![CDATA[I really should put this up on my blog I suppose, but I&#8217;m the current artist in residence at AS220 for the month of June. What all will I be doing? I&#8217;ll be working in the AS220 Labs some days, teaching classes on others, and generally working on my own projects. The point of this [...]]]></description>
				<content:encoded><![CDATA[<p></p><p><a href="http://as220.org"><img class="aligncenter size-medium wp-image-350" title="as220" src="http://jimmieprodgers.com/wp-content/uploads/2010/06/as220-300x86.jpg" alt="" width="300" height="86" /></a>I really should put this up on my blog I suppose, but I&#8217;m the current <a href="http://www.as220.org/front/2010/05/cyborg-kittens-dustbowl-etc.html">artist in residence at AS220</a> for the month of June. What all will I be doing? I&#8217;ll be working in the <a href="http://as220.org/labs">AS220 Labs</a> some days, teaching classes on others, and generally working on my own projects. The point of this month is to get me to do stuff, help out the community at large, and make progress with my own art. In many senses I really do believe what I am doing is art, some of it anyhow. So if you are around Providence, then drop me a line, or swing by during one of the project nights.</p>
<p>One of my personal goals is to actually post to my blog more frequently. I&#8217;ll actually be in one place for more than a week, so that will hopefully help out with things. I&#8217;m hoping to finish up some of the LoL Shield and Open Heart software stuff. I also want to do some instructional videos of basic soldering, circuit bending, and things like that. Anything specific people are interested in seeing from me?</p>
]]></content:encoded>
			<wfw:commentRss>http://jimmieprodgers.com/2010/06/as220-artist-in-residence/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
