<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Kellbot! &#187; crafting</title>
	<atom:link href="http://www.kellbot.com/category/crafting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kellbot.com</link>
	<description>Tinysaurs and Hacking and Nonsense</description>
	<lastBuildDate>Fri, 10 Sep 2010 00:30:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Meta Lego Storage</title>
		<link>http://www.kellbot.com/2010/06/meta-lego-storage/</link>
		<comments>http://www.kellbot.com/2010/06/meta-lego-storage/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 15:04:36 +0000</pubDate>
		<dc:creator>Postling</dc:creator>
				<category><![CDATA[LEGO]]></category>
		<category><![CDATA[crafting]]></category>
		<category><![CDATA[lased]]></category>
		<category><![CDATA[lego]]></category>

		<guid isPermaLink="false">http://www.kellbot.com/2010/06/meta-lego-storage/</guid>
		<description><![CDATA[In need of a way to organize and store my Lego obsession, I made a bunch of acrylic boxes which not only hold Legos, but also stack and interlock similarly: Each brick box holds 64+ of the same-shape piece. So the 1&#215;1 box will hold 64 1&#215;1 bricks, and the 2&#215;2 holds 64 2&#215;2 bricks. [...]<a href="http://www.tkqlhce.com/click-3554893-10356338" target="_top">
<img src="http://www.lduhtrp.net/image-3554893-10356338" width="728" height="90" alt="ThinkGeek - Cool Stuff for Geeks and Technophiles" border="0"/></a>]]></description>
			<content:encoded><![CDATA[<p>	In need of a way to organize and store <a href="http://www.flickr.com/photos/kellbot/collections/72157624316889052/">my Lego obsession</a>, I made a bunch of acrylic boxes which not only hold Legos, but also stack and interlock similarly:</p>
<p>	<img alt="" src="http://images.postling.com/f/f54/g_400xN.3068.jpg" style="width: 400px; height: 266px;" /></p>
<p>	Each brick box holds 64+ of the same-shape piece. So the 1&#215;1 box will hold 64 1&#215;1 bricks, and the 2&#215;2 holds 64 2&#215;2 bricks. The larger ones hold a few more due to how the sizing works out. The 1&#215;1 box is 40mm per side (external dimensions).</p>
<p>	I <a href="http://www.thingiverse.com/thing:3379/">posted the patterns on Thingiverse</a> should anyone wish to make their own. No,&nbsp; I&#39;m not going to make and sell them. They&#39;re time consuming to make, and plus I&#39;m pretty sure Lego would sue me. If you don&#39;t have access to a laser cutter, I&#39;d suggest using a service like Ponoko.</p>
<p>	The patterns were generated in OpenSCAD using the following code. Change &quot;rows&quot; and &quot;cols&quot; to get the lego size you desire. By the way, I&#8217;m teaching a <a href="http://openscad.eventbrite.com">class on OpenSCAD</a> in Brooklyn next weekend!</p>
<p>
<div class="wp_syntax"><div class="code"><pre class="java" style="font-family:monospace;">fundamental_unit <span style="color: #339933;">=</span> <span style="color: #cc66cc;">0.8</span><span style="color: #339933;">;</span>
thickness <span style="color: #339933;">=</span><span style="color: #cc66cc;">3</span><span style="color: #339933;">;</span>
h_pitch <span style="color: #339933;">=</span> <span style="color: #cc66cc;">10</span><span style="color: #339933;">;</span>
v_pitch <span style="color: #339933;">=</span> <span style="color: #cc66cc;">12</span><span style="color: #339933;">;</span>
tform <span style="color: #339933;">=</span> <span style="color: #cc66cc;">5</span><span style="color: #339933;">;</span>
knob <span style="color: #339933;">=</span> fundamental_unit<span style="color: #339933;">*</span>h_pitch<span style="color: #339933;">*</span>tform<span style="color: #339933;">;</span>
module side<span style="color: #009900;">&#40;</span>rows<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	lwidth <span style="color: #339933;">=</span> rows<span style="color: #339933;">*</span>fundamental_unit<span style="color: #339933;">*</span>h_pitch<span style="color: #339933;">*</span>tform<span style="color: #339933;">;</span>
	lheight <span style="color: #339933;">=</span> v_pitch<span style="color: #339933;">*</span>fundamental_unit<span style="color: #339933;">*</span>tform<span style="color: #339933;">;</span>
	difference<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
		square<span style="color: #009900;">&#40;</span>size<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span>lwidth, lheight<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		translate<span style="color: #009900;">&#40;</span>v<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">10</span>,<span style="color: #cc66cc;">0</span>,<span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> square<span style="color: #009900;">&#40;</span>size<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span>lwidth<span style="color: #339933;">-</span><span style="color: #cc66cc;">20</span>,thickness<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		translate<span style="color: #009900;">&#40;</span>v<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">10</span>,lheight<span style="color: #339933;">-</span>thickness,<span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> square<span style="color: #009900;">&#40;</span>size<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span>lwidth<span style="color: #339933;">-</span><span style="color: #cc66cc;">20</span>,thickness<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		square<span style="color: #009900;">&#40;</span>size<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span>thickness, <span style="color: #cc66cc;">10</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		translate<span style="color: #009900;">&#40;</span>v<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span>,lheight<span style="color: #339933;">-</span><span style="color: #cc66cc;">10</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> square<span style="color: #009900;">&#40;</span>size<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span>thickness, <span style="color: #cc66cc;">10</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	translate<span style="color: #009900;">&#40;</span>v<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span>lwidth<span style="color: #339933;">-</span>thickness,<span style="color: #cc66cc;">10</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> square<span style="color: #009900;">&#40;</span>size<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span>thickness, lheight<span style="color: #339933;">-</span><span style="color: #cc66cc;">20</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
module top<span style="color: #009900;">&#40;</span>rows,cols,holes<span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	lwidth <span style="color: #339933;">=</span> rows<span style="color: #339933;">*</span>fundamental_unit<span style="color: #339933;">*</span>h_pitch<span style="color: #339933;">*</span>tform<span style="color: #339933;">;</span>
	llength <span style="color: #339933;">=</span> cols<span style="color: #339933;">*</span>fundamental_unit<span style="color: #339933;">*</span>h_pitch<span style="color: #339933;">*</span>tform<span style="color: #339933;">;</span>
	difference<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
		square<span style="color: #009900;">&#40;</span>size<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span>lwidth,llength<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		square<span style="color: #009900;">&#40;</span>size<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span>thickness,<span style="color: #cc66cc;">10</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		square<span style="color: #009900;">&#40;</span>size<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">10</span>,thickness<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		translate<span style="color: #009900;">&#40;</span>v<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span>lwidth,<span style="color: #cc66cc;">0</span>,<span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> square<span style="color: #009900;">&#40;</span>size<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span><span style="color: #339933;">-</span>thickness,<span style="color: #cc66cc;">10</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		translate<span style="color: #009900;">&#40;</span>v<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span>lwidth,<span style="color: #cc66cc;">0</span>,<span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> square<span style="color: #009900;">&#40;</span>size<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span><span style="color: #339933;">-</span><span style="color: #cc66cc;">10</span>,thickness<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		translate<span style="color: #009900;">&#40;</span>v<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span>lwidth,llength<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> square<span style="color: #009900;">&#40;</span>size<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span><span style="color: #339933;">-</span><span style="color: #cc66cc;">10</span>,<span style="color: #339933;">-</span>thickness<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		translate<span style="color: #009900;">&#40;</span>v<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span>lwidth,llength<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> square<span style="color: #009900;">&#40;</span>size<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span><span style="color: #339933;">-</span>thickness,<span style="color: #339933;">-</span><span style="color: #cc66cc;">10</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	
		translate<span style="color: #009900;">&#40;</span>v<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span>,llength<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> square<span style="color: #009900;">&#40;</span>size<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">10</span>,<span style="color: #339933;">-</span>thickness<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		translate<span style="color: #009900;">&#40;</span>v<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span>,llength<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> square<span style="color: #009900;">&#40;</span>size<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span>thickness,<span style="color: #339933;">-</span><span style="color: #cc66cc;">10</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>	
		<span style="color: #000000; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>holes<span style="color: #339933;">==</span><span style="color: #000066; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
			<span style="color: #000000; font-weight: bold;">for</span> <span style="color: #009900;">&#40;</span>i <span style="color: #339933;">=</span> <span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">:</span>cols<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
				<span style="color: #000000; font-weight: bold;">for</span> <span style="color: #009900;">&#40;</span>j<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">1</span><span style="color: #339933;">:</span>rows<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
				translate<span style="color: #009900;">&#40;</span>v<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span>j<span style="color: #339933;">*</span>knob<span style="color: #339933;">-</span>knob<span style="color: #339933;">/</span><span style="color: #cc66cc;">2</span>,i<span style="color: #339933;">*</span>knob<span style="color: #339933;">-</span><span style="color: #009900;">&#40;</span>fundamental_unit<span style="color: #339933;">*</span>h_pitch<span style="color: #339933;">*</span>tform<span style="color: #009900;">&#41;</span><span style="color: #339933;">/</span><span style="color: #cc66cc;">2</span>,<span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> circle<span style="color: #009900;">&#40;</span>r<span style="color: #339933;">=</span>fundamental_unit<span style="color: #339933;">*</span><span style="color: #cc66cc;">6</span><span style="color: #339933;">*</span>tform<span style="color: #339933;">/</span><span style="color: #cc66cc;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
				<span style="color: #009900;">&#125;</span>
			<span style="color: #009900;">&#125;</span>
		<span style="color: #009900;">&#125;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
rows <span style="color: #339933;">=</span> <span style="color: #cc66cc;">2</span><span style="color: #339933;">;</span>
cols <span style="color: #339933;">=</span> <span style="color: #cc66cc;">4</span><span style="color: #339933;">;</span>
&nbsp;
h_spacing <span style="color: #339933;">=</span>  rows<span style="color: #339933;">*</span>fundamental_unit<span style="color: #339933;">*</span>h_pitch<span style="color: #339933;">*</span>tform<span style="color: #339933;">+</span><span style="color: #cc66cc;">10</span><span style="color: #339933;">;</span>
l_spacing <span style="color: #339933;">=</span>  cols<span style="color: #339933;">*</span>fundamental_unit<span style="color: #339933;">*</span>h_pitch<span style="color: #339933;">*</span>tform<span style="color: #339933;">+</span><span style="color: #cc66cc;">10</span><span style="color: #339933;">;</span>
v_spacing <span style="color: #339933;">=</span> fundamental_unit<span style="color: #339933;">*</span>v_pitch<span style="color: #339933;">*</span>tform<span style="color: #339933;">+</span><span style="color: #cc66cc;">10</span><span style="color: #339933;">;</span>
&nbsp;
side<span style="color: #009900;">&#40;</span>rows<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
translate<span style="color: #009900;">&#40;</span>v<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span> rows<span style="color: #339933;">*</span>fundamental_unit<span style="color: #339933;">*</span>h_pitch<span style="color: #339933;">*</span>tform<span style="color: #339933;">+</span><span style="color: #cc66cc;">10</span>,<span style="color: #cc66cc;">0</span>,<span style="color: #cc66cc;">0</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> side<span style="color: #009900;">&#40;</span>rows<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
translate<span style="color: #009900;">&#40;</span>v<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span>,v_spacing<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> side<span style="color: #009900;">&#40;</span>cols<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
translate<span style="color: #009900;">&#40;</span>v<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span> cols<span style="color: #339933;">*</span>fundamental_unit<span style="color: #339933;">*</span>h_pitch<span style="color: #339933;">*</span>tform<span style="color: #339933;">+</span><span style="color: #cc66cc;">10</span>,v_spacing<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> side<span style="color: #009900;">&#40;</span>cols<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
translate<span style="color: #009900;">&#40;</span>v<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span><span style="color: #cc66cc;">0</span>,<span style="color: #cc66cc;">2</span><span style="color: #339933;">*</span>v_spacing<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> top<span style="color: #009900;">&#40;</span>rows,cols,<span style="color: #000066; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
translate<span style="color: #009900;">&#40;</span>v<span style="color: #339933;">=</span><span style="color: #009900;">&#91;</span> rows<span style="color: #339933;">*</span>fundamental_unit<span style="color: #339933;">*</span>h_pitch<span style="color: #339933;">*</span>tform<span style="color: #339933;">+</span><span style="color: #cc66cc;">10</span>,<span style="color: #cc66cc;">2</span><span style="color: #339933;">*</span>v_spacing<span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span> top<span style="color: #009900;">&#40;</span>rows,cols,<span style="color: #000066; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

</p>
<p>	In the next batch I&#39;m going to make the nubs a little smaller than the holes. They work now, but it&#39;s a bit fiddly getting everything to line up just so. A little more forgiveness would be nice. Also, OpenSCAD does strange things with circles. Rather than simply write a circle in the DXF, it represents it as a bunch of line segments. I&#8217;m not sure if there&#8217;s a way around this, but it&#8217;s marginally irritating.</p>
<p>You can download a .dxf for a few different box sizes <a href="http://www.thingiverse.com/thing:3379">on Thingiverse</a>.<br />
I&#8217;ve also created a <a href="http://www.flickr.com/photos/kellbot/collections/72157624316889052/">Flickr Collection</a> for my various Lego stuff.</p>
<p><a href="http://www.flickr.com/photos/kellbot/4715585844/" title="Meta Lego by kellbot, on Flickr"><img src="http://farm5.static.flickr.com/4063/4715585844_5f1a5ba114.jpg" width="500" height="333" alt="Meta Lego" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kellbot.com/2010/06/meta-lego-storage/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>My First Lego Ovoids</title>
		<link>http://www.kellbot.com/2010/05/my-first-lego-ovoids/</link>
		<comments>http://www.kellbot.com/2010/05/my-first-lego-ovoids/#comments</comments>
		<pubDate>Fri, 28 May 2010 03:26:46 +0000</pubDate>
		<dc:creator>Postling</dc:creator>
				<category><![CDATA[LEGO]]></category>
		<category><![CDATA[crafting]]></category>

		<guid isPermaLink="false">http://www.kellbot.com/2010/05/my-first-lego-ovoids/</guid>
		<description><![CDATA[After ordering a few hundred bricks from bricklink, I started working on what is for now a top secret project. Step one was to practice making spherical and organic LEGO shapes, and I&#39;m pretty happy with the two sphereoids I came up with while catching up on House. PS, Dr House is a huge jerk.<a href="http://www.tkqlhce.com/click-3554893-10356338" target="_top">
<img src="http://www.lduhtrp.net/image-3554893-10356338" width="728" height="90" alt="ThinkGeek - Cool Stuff for Geeks and Technophiles" border="0"/></a>]]></description>
			<content:encoded><![CDATA[<p>	<a href="http://www.flickr.com/photos/kellbot/4646695446/" title="My first lego ovoids by kellbot, on Flickr"><img alt="My first lego ovoids" style="border:0" height="375" src="http://farm5.static.flickr.com/4042/4646695446_4c8dc76590.jpg" width="500" /></a></p>
<p>	After ordering a few hundred bricks from <a href="http://www.bricklink.com">bricklink</a>, I started working on what is for now a top secret project.</p>
<p>	Step one was to practice making spherical and organic LEGO shapes, and I&#39;m pretty happy with the two sphereoids I came up with while catching up on House. PS, Dr House is a huge jerk.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kellbot.com/2010/05/my-first-lego-ovoids/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Lased: Miniature Embroidery Hoops</title>
		<link>http://www.kellbot.com/2010/04/lased-miniature-embroidery-hoops/</link>
		<comments>http://www.kellbot.com/2010/04/lased-miniature-embroidery-hoops/#comments</comments>
		<pubDate>Tue, 13 Apr 2010 17:06:21 +0000</pubDate>
		<dc:creator>Postling</dc:creator>
				<category><![CDATA[Etsy]]></category>
		<category><![CDATA[crafting]]></category>
		<category><![CDATA[lased]]></category>
		<category><![CDATA[cross stitch]]></category>
		<category><![CDATA[miniature]]></category>

		<guid isPermaLink="false">http://www.kellbot.com/2010/04/lased-miniature-embroidery-hoops/</guid>
		<description><![CDATA[I spent a decent portion of yesterday on the laser, prototyping a tiny embroidery hoop for (duh) tiny embroidery. I&#39;m pretty happy with the results. So much in fact that I&#39;ve decided to start offering tiny embroidery kits along side my tiny dinosaur kits. The embroidery hoop is made from laser cut acrylic, and the [...]<a href="http://www.tkqlhce.com/click-3554893-10356338" target="_top">
<img src="http://www.lduhtrp.net/image-3554893-10356338" width="728" height="90" alt="ThinkGeek - Cool Stuff for Geeks and Technophiles" border="0"/></a>]]></description>
			<content:encoded><![CDATA[<p>	I spent a decent portion of yesterday on the laser, prototyping a tiny embroidery hoop for (duh) tiny embroidery. I&#39;m pretty happy with the results. So much in fact that I&#39;ve decided to start offering <a href="http://www.etsy.com/view_listing.php?listing_id=44700771">tiny embroidery kits</a> along side my tiny dinosaur kits.</p>
<p>	<img alt="" height="266" src="http://images.postling.com/5/5b6/g_400xN.1812.jpg" width="400" /></p>
<p>	The embroidery hoop is made from laser cut acrylic, and the rubber band provides tension to keep everything in place. The whole thing measures 1.5&quot; across, a standard sewing machine bobbin is show for scale in the picture above. I actually neglected to save the cut file (oops) but it&#39;s pretty simple: two concentric rings (0.2&quot; wide), with the outside diameter of the smaller ring being 0.05&quot; smaller than the <strong>inside </strong>diameter of the larger ring. The large ring has a &quot;nub&quot; on the side for the rubber band, and is split down the middle on that side.</p>
<p>	<img alt="" height="266" src="http://images.postling.com/f/f54/g_400xN.1813.jpg" width="400" /></p>
<p>	There&#39;s about a 1&quot; diameter working area. I used 28 count aida fabric, which gave me approximately 28 &quot;pixels&quot; across to work with. Chris helped me design a cupcake chart for counted cross stitch. It uses 7 colors: white, red, light pink, dark pink, pink, grey, and light grey. It&#39;s a nice portable project because it fits in your pocket. I&#39;ve listed a kit for sale on Etsy and may bring a few down to <a href="http://www.springbadabing.com">Spring BadaBing</a> in Richmond, VA this weekend.</p>
<p>	Here&#39;s the chart for your cross-stitch pleasure:</p>
<p>	<img alt="" height="325" src="http://images.postling.com/1/155/g_fullxfull.1814.jpg" width="360" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kellbot.com/2010/04/lased-miniature-embroidery-hoops/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Rainy Day Crafts</title>
		<link>http://www.kellbot.com/2010/03/rainy-day-crafts/</link>
		<comments>http://www.kellbot.com/2010/03/rainy-day-crafts/#comments</comments>
		<pubDate>Sat, 13 Mar 2010 21:00:00 +0000</pubDate>
		<dc:creator>Kellbot</dc:creator>
				<category><![CDATA[Etsy]]></category>
		<category><![CDATA[crafting]]></category>

		<guid isPermaLink="false">http://www.kellbot.com/?p=575</guid>
		<description><![CDATA[Today is gross and rainy. I&#8217;ve spent most of it working, which as you can imagine is tons of fun. While packing up some tiny glass jars for Tinysaurs I decided to take a break and make a tiny display of my own. I had some tiny 1cm paper cranes left over from when I [...]<a href="http://www.tkqlhce.com/click-3554893-10356338" target="_top">
<img src="http://www.lduhtrp.net/image-3554893-10356338" width="728" height="90" alt="ThinkGeek - Cool Stuff for Geeks and Technophiles" border="0"/></a>]]></description>
			<content:encoded><![CDATA[<p><a title="Paper Terrarium by kellbot, on Flickr" href="http://www.flickr.com/photos/kellbot/4429524455/"><img src="http://farm3.static.flickr.com/2733/4429524455_ac894f1bf5.jpg" alt="Paper Terrarium" width="500" height="333" /></a><br />
Today is gross and rainy. I&#8217;ve spent most of it working, which as you can imagine is tons of fun. While packing up some <a href="http://www.everythingtiny.com/tinysaur/tinysaur-display-kit.html">tiny glass jars</a> for Tinysaurs I decided to take a break and make a tiny display of my own.</p>
<p>I had some tiny 1cm paper cranes left over from when I used to make crane earrings.  I covered the basswood stand in origami paper, and glued two of the cranes to straight pins. The whole thing is about an inch and a half tall.</p>
<p>Now I&#8217;m trying to decide what I should do with it. Should I just be happy with my crafty Saturday, or try to make it into a new product for <a href="http://www.everythingtiny.com">Everything Tiny</a>?<br />
<script language="JavaScript" src="http://www.micropoll.com/akira/MicroPoll?id=240240"></script><noscript>
<div><a href="http://www.micropoll.com/akira/mpview/856362-240240">Click Here for Poll</a><a href="http://www.questionpro.com" title="online survey">Online Survey</a><BR><a href="http://www.surveyanalytics.com/enterprise-feedback-management.html" title="Enterprise Feedback Management">Enterprise Feedback Management</a><BR> | <a href="http://www.micropoll.com" title="Website Polls">Website Polls</a><BR> | <a href="http://www.contactpro.com" title="email marketing">Email Marketing</a><BR><BR> | <a href="http://www.ideascale.com/" title="crowdsourcing software">Crowdsourcing Software</a><BR><a href="http://www.micropoll.com/akira/MicroPoll?mode=html&#038;id=240240">View MicroPoll</A></div>
<p></noscript></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kellbot.com/2010/03/rainy-day-crafts/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Craft Room Redux</title>
		<link>http://www.kellbot.com/2010/01/craft-room-redux/</link>
		<comments>http://www.kellbot.com/2010/01/craft-room-redux/#comments</comments>
		<pubDate>Tue, 12 Jan 2010 05:20:51 +0000</pubDate>
		<dc:creator>Kellbot</dc:creator>
				<category><![CDATA[crafting]]></category>

		<guid isPermaLink="false">http://www.kellbot.com/?p=478</guid>
		<description><![CDATA[The craft blogs are full of reorganization photographs. I think it&#8217;s a universal: we all trash our workspace during the holiday madness. Only when we dig out in January do we look around and say &#8220;oh god I have to do something about this.&#8221; Or at least that&#8217;s what I did: Uh yeah. There&#8217;s a [...]<a href="http://www.tkqlhce.com/click-3554893-10356338" target="_top">
<img src="http://www.lduhtrp.net/image-3554893-10356338" width="728" height="90" alt="ThinkGeek - Cool Stuff for Geeks and Technophiles" border="0"/></a>]]></description>
			<content:encoded><![CDATA[<p>The craft blogs are full of reorganization photographs. I think it&#8217;s a universal: we all trash our workspace during the holiday madness. Only when we dig out in January do we look around and say &#8220;oh god I have to do something about this.&#8221;</p>
<p>Or at least that&#8217;s what I did:</p>
<p><a href="http://www.flickr.com/photos/kellbot/4266445631/" title="The beginning. by kellbot, on Flickr"><img src="http://farm5.static.flickr.com/4009/4266445631_911a708058.jpg" width="500" height="375" alt="The beginning." /></a><br />
<a href="http://www.flickr.com/photos/kellbot/4267193618/" title="The beginning. by kellbot, on Flickr"><img src="http://farm5.static.flickr.com/4005/4267193618_8ddab59f88.jpg" width="375" height="500" alt="The beginning." /></a></p>
<p>Uh yeah. There&#8217;s a workspace somewhere in there. Where, I&#8217;m not sure. As such operations had to be moved downstairs, the only place with any remaining horizontal surfaces. Oh any my plants died. The <a href="http://www.kellbot.com/category/projects/diy-aeroponics/">DIY aeroponics project</a> was actually incredibly successful. But even pseudo-aeroponic systems need water added every few weeks.</p>
<p>The first step is admitting you have a problem.</p>
<p>The second step is (wait for it&#8230;) throwing out all the trash and putting away everything you can. I know it seems obvious but when faced with a room that looks like the scene of a recent natural disaster it can be overwhelming and hard to know where to start. For me, I accumulated a number of new things over the holiday season, so a lot of stuff never had a &#8220;home&#8221; to begin with. Which led to it simply floating around the room, helping to hide the rest of the junk.</p>
<p>Suddenly, with the trash in the trash can and everything either put away or sitting in a box / on a table awaiting further instructions, you can see the floor:<br />
<a title="Step 2 by kellbot, on Flickr" href="http://www.flickr.com/photos/kellbot/4266448937/"><img src="http://farm3.static.flickr.com/2681/4266448937_c12e445b6a_m.jpg" alt="Step 2" width="180" height="240" /></a><a title="Step 2 by kellbot, on Flickr" href="http://www.flickr.com/photos/kellbot/4266451311/"><img src="http://farm5.static.flickr.com/4058/4266451311_f984280757_m.jpg" alt="Step 2" width="240" height="180" /></a></p>
<p>You still can&#8217;t sit in the chair or on the bed, and the tables are still covered in crap, but hey! I have a rug!</p>
<p>At this point, I was at a bit of a loss. If you look at my shelving unit, all the cubes are full. And yet there&#8217;s a ton of stuff lying around I don&#8217;t know what to do with. It&#8217;s hard to see in the pictures, but there&#8217;s a secondary workbench on the right which is also piled high with items in need of a place to be. And this is when you call in the big guns. Have a friend come over and help you, if you know anyone vaguely organized.  Your friend will not only keep you motivated and prevent you from simply sitting on the floor staring at the mess (my mother has seen me do this just about every time I move), they&#8217;ll also keep you honest. They say things to you like, &#8220;Kelly, if you put that box in front of the magazine file and then need a magazine, are you just going to put the box on the floor and leave it there?&#8221; And then you (if you&#8217;re me) say, &#8220;&#8230; yes,&#8221; and find a better place for said box.</p>
<p><a href="http://www.flickr.com/photos/kellbot/4261054719/" title="Progress by kellbot, on Flickr"><img src="http://farm5.static.flickr.com/4008/4261054719_24c22b574d.jpg" width="500" height="375" alt="Progress" /></a></p>
<p>I thought we needed more shelving, but my superstar amazing organizer friend managed to rearrange what was on the existing shelves to fit almost everything. In the above picture we&#8217;ve got most of the leftovers condensed to the workbench while my friend assembles some additional drawers for the ubiquitos Ikea EXPEDIT shelving. The workspace still needed some work though, otherwise it would just revert to its natural disaster state as soon as she left. We went to Ikea and got a nice wide desk to replace the drafting table I&#8217;d been working on, and separated the workspace into building/making on the right workbench, and shipping/administration/finished products on the left table.</p>
<p><a href="http://www.flickr.com/photos/kellbot/4261817014/" title="Done! by kellbot, on Flickr"><img src="http://farm5.static.flickr.com/4040/4261817014_dac2b10dc2.jpg" width="500" height="375" alt="Done!" /></a><br />
<a href="http://www.flickr.com/photos/kellbot/4261054975/" title="Work table by kellbot, on Flickr"><img src="http://farm3.static.flickr.com/2729/4261054975_e097254056.jpg" width="500" height="375" alt="Work table" /></a></p>
<p>It doesn&#8217;t look quite as dramatic in the pictures, but anyone who has been in the room is stunned with the transformation. I&#8217;m excited to have a workspace I can actually use. Yay!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kellbot.com/2010/01/craft-room-redux/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Last Minute Displays</title>
		<link>http://www.kellbot.com/2009/12/last-minute-displays/</link>
		<comments>http://www.kellbot.com/2009/12/last-minute-displays/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 19:30:56 +0000</pubDate>
		<dc:creator>Postling</dc:creator>
				<category><![CDATA[crafting]]></category>
		<category><![CDATA[craft show]]></category>
		<category><![CDATA[everything tiny]]></category>

		<guid isPermaLink="false">http://www.kellbot.com/2009/12/last-minute-displays/</guid>
		<description><![CDATA[My craft show displays, like so many others&#39;, are in a constant state of flux. I&#39;m constantly adding new products to my line, and for some reason I don&#39;t usually think about how to display them until right before a show. This month I had back to back weekend shows, Squidfire and the Brooklyn Lyceum, [...]<a href="http://www.tkqlhce.com/click-3554893-10356338" target="_top">
<img src="http://www.lduhtrp.net/image-3554893-10356338" width="728" height="90" alt="ThinkGeek - Cool Stuff for Geeks and Technophiles" border="0"/></a>]]></description>
			<content:encoded><![CDATA[<p>	My craft show displays, like so many others&#39;, are in a constant state of flux. I&#39;m constantly adding new products to my line, and for some reason I don&#39;t usually think about how to display them until <em>right before</em> a show. This month I had back to back weekend shows, Squidfire and the Brooklyn Lyceum, so I scrambled to put together some new displays for my <a href="http://www.everythingtiny.com/jewelry.html">new line of pendants</a> and my older line of <a href="http://www.everythingtiny.com/belt-buckles.html">belt buckles</a> whose display I wasn&#39;t totally happy with. I had about a week to get it all together.</p>
<p>	<strong>Belt Buckle Display</strong></p>
<p>	<img alt="Belt Buckle Display" height="500" src="http://farm5.static.flickr.com/4003/4208923708_0914fb5636.jpg" width="375" /></p>
<p>	The belt buckle display is made of PVC and wood, and the cost of all the materials was about $20. The goal for the display was to put many of the buckles at eye level and keep the belts themselves from getting tangled up. Bonus points for being able to easily see the backs of the belts to view sizing info.</p>
<p>	Parts list:</p>
<ul>
<li>		18&quot; long piece of 1&#215;6</li>
<li>		2 metal flanges for 3/4&quot; pipe</li>
<li>		4 6&quot; lengths of 3/4&quot; PVC pipe</li>
<li>		2 16&quot; lengths of 3/4&quot; PVC pipe</li>
<li>		6 3/4&quot; PVC straight couplings</li>
<li>		2 couplings to fit the 3/4&quot; pipe into the flange threads</li>
<li>		3 16&quot; strips of rectangular molding</li>
<li>		Scraps of 1/8&quot; plywood</li>
<li>		18 magnets</li>
<li>		C clamp to keep it from falling over</li>
</ul>
<p>	To make the rails to hold the buckles/belts, I took the rectangular molding and glued magnets evenly along them, 6 per rail. The buckle backs are steel, so they stick to the magnets pretty well. I used some ceramic magnets and some neodymium magnets because that&#39;s what I had lying around, but if I were to do it again I&#39;d probably use all neodymium.</p>
<p>	<a href="http://drop.io/hidden/auswbppiqgfh9q/asset/c3RhbmQtcmluZy1keGY%3D"><img align="left" alt="" height="100" src="http://images.postling.com/0/0cb/g_fullxfull.696.jpg" width="100" /></a>To attach the rails to the PVC I laser cut some rings (shown on the left) out of some scrap 1/8 plywood and glue them to each end of the rails. While I&#39;m lucky enough to have a laser, it&#39;s something you could pretty easily cut by hand with a little patience and an appropriately sized drill bit.&nbsp;</p>
<p>	The rings slip over the PVC, and rest on top of the coupling. The whole thing is surprisingly sturdy, and breaks down easily to fit in my Big Box of Craft Show Gear. The C clamp helps keep things stable. The last show I did had super wobbly floors that shook the table any time someone walked by.</p>
<p>	Eventually I&#39;d like to make some cloth covers for the PVC pipe, so it&#39;s not so ugly, but for the time being the display worked pretty well. I sold a good deal more belt buckles than usual, and I think having them all easy to see was a big part of that.</p>
<p>	<strong>Pendant Display</strong></p>
<p>	<img alt="Pendant Display" height="375" src="http://farm5.static.flickr.com/4030/4208158225_792df46b29.jpg" width="500" /></p>
<p>	The pendant display was made literally the night before the show. I grabbed an Ikea frame and a 12&quot; square piece of grey industrial felt I had lying around. I cut the felt to fit the frame, and had some leftover. From that I cut narrow 1/4&quot; strips of felt the same width as the frame. I glued them at pendant-sized intervals, and the pendants are just thin enough that they can sit on the felt rails. And unlike my last slapdash jewelry display, this one doesn&#39;t have nails sticking out the back to stab me.</p>
<p>	Overall I&#39;m pretty happy with the two displays, although I sometimes wonder what craft shows would look like if it wasn&#39;t for Ikea. The Tinysaurs themselves are in need of some new display furniture, so I&#39;ll probably put something together for them in the spring. I&#39;m free from craft shows for a whole four months!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kellbot.com/2009/12/last-minute-displays/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Squidfire Holiday Art Mart</title>
		<link>http://www.kellbot.com/2009/12/squidfire-holiday-art-mart/</link>
		<comments>http://www.kellbot.com/2009/12/squidfire-holiday-art-mart/#comments</comments>
		<pubDate>Thu, 10 Dec 2009 15:09:38 +0000</pubDate>
		<dc:creator>Postling</dc:creator>
				<category><![CDATA[crafting]]></category>
		<category><![CDATA[craft show]]></category>

		<guid isPermaLink="false">http://www.kellbot.com/2009/12/squidfire-holiday-art-mart/</guid>
		<description><![CDATA[If you&#39;re in or near Baltimore this weekend, stop by Squidfire&#39;s Holiday Art Mart! Everything Tiny will be there along with awesome folks like ZooGuu and Girls Can Tell. Maybe Mrs. Claus will make an appearance!<a href="http://www.tkqlhce.com/click-3554893-10356338" target="_top">
<img src="http://www.lduhtrp.net/image-3554893-10356338" width="728" height="90" alt="ThinkGeek - Cool Stuff for Geeks and Technophiles" border="0"/></a>]]></description>
			<content:encoded><![CDATA[<p style="text-align: center; ">	<img alt="" height="600" src="http://images.postling.com/2/2f3/g_400xN.658.jpg" width="400" /></p>
<p>	If you&#39;re in or near Baltimore this weekend, stop by Squidfire&#39;s Holiday Art Mart! Everything Tiny will be there along with awesome folks like <a href="http://www.zooguu.com">ZooGuu</a> and <a href="http://www.girlscantell.com">Girls Can Tell</a>. Maybe Mrs. Claus will make an appearance!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kellbot.com/2009/12/squidfire-holiday-art-mart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oh look, jewelry!</title>
		<link>http://www.kellbot.com/2009/12/oh-look-jewelry/</link>
		<comments>http://www.kellbot.com/2009/12/oh-look-jewelry/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 04:22:16 +0000</pubDate>
		<dc:creator>Kellbot</dc:creator>
				<category><![CDATA[Etsy]]></category>
		<category><![CDATA[crafting]]></category>

		<guid isPermaLink="false">http://www.kellbot.com/?p=458</guid>
		<description><![CDATA[Things have been quiet here because I haven&#8217;t been doing much hacking; mostly I&#8217;ve been shipping things. Hello, busy retail season. Somehow in all this selling madness I found time to eek out a new line. A line of jewelry, none the less! For those of you who don&#8217;t know, I actually got my degree [...]<a href="http://www.tkqlhce.com/click-3554893-10356338" target="_top">
<img src="http://www.lduhtrp.net/image-3554893-10356338" width="728" height="90" alt="ThinkGeek - Cool Stuff for Geeks and Technophiles" border="0"/></a>]]></description>
			<content:encoded><![CDATA[<p>Things have been quiet here because I haven&#8217;t been doing much hacking; mostly I&#8217;ve been <a href="http://www.everythingtiny.com">shipping things</a>. Hello, busy retail season.</p>
<p>Somehow in all this selling madness I found time to eek out a new line. A line of jewelry, none the less! For those of you who don&#8217;t know, I actually <a href="http://www.vcu.edu">got my degree</a> in metalsmithing / jewelrymaking. So in some ways it&#8217;s not surprising. Except to the people who heard me swear up and down I was done with production jewelry years ago. I think I swore off craft shows around the same time. That might explain why I have 2 scheduled for December.</p>
<p style="text-align: center;"><a href="http://www.everythingtiny.com/jewelry.html"><img class="alignnone" src="http://ny-image3.etsy.com//il_155x125.105879519.jpg" alt="" width="155" height="125" /><img class="alignnone" src="http://ny-image3.etsy.com//il_155x125.107181803.jpg" alt="" width="155" height="125" /><img class="alignnone" src="http://ny-image0.etsy.com//il_155x125.106189376.jpg" alt="" width="155" height="125" /></a></p>
<p>The pendants are all laser cut acrylic. There are 10 different designs, and they can be theoretically put on any color background although I&#8217;ve found there are only a handful of colors which look particularly good. You can find them at <a href="http://www.everythingtiny.com">Everything Tiny</a>, or on <a href="http://kfarrell.etsy.com">Etsy</a>, or at either of the craft shows I&#8217;ll be doing this month:</p>
<p><a href="http://squidfire.com/2009-winter-art-mart-squidfire.cfm">Squidfire Art Mart</a> &#8211; Baltimore, MD on December 12<br />
<a href="http://www.bkcraftcentral.com/">Brooklyn Lyceum</a> &#8211; Brooklyn, NY on December 19th and 20th</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kellbot.com/2009/12/oh-look-jewelry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Papercraft Nikon F</title>
		<link>http://www.kellbot.com/2009/11/papercraft-nikon-f/</link>
		<comments>http://www.kellbot.com/2009/11/papercraft-nikon-f/#comments</comments>
		<pubDate>Mon, 09 Nov 2009 23:12:40 +0000</pubDate>
		<dc:creator>Kellbot</dc:creator>
				<category><![CDATA[crafting]]></category>

		<guid isPermaLink="false">http://www.kellbot.com/?p=421</guid>
		<description><![CDATA[For about a year now I&#8217;ve been trying to get some more models/kits designed for Everything Tiny. But it&#8217;s a super slow process, and admittedly one I don&#8217;t spend enough time on. Today I prototyped a model of a Nikon F, the first SLR camera I used. I started fairly large, cutting with an xacto [...]<a href="http://www.tkqlhce.com/click-3554893-10356338" target="_top">
<img src="http://www.lduhtrp.net/image-3554893-10356338" width="728" height="90" alt="ThinkGeek - Cool Stuff for Geeks and Technophiles" border="0"/></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/kellbot/4091123994/" title="Tiny Prototype by kellbot, on Flickr"><img src="http://farm3.static.flickr.com/2509/4091123994_635b86bf53.jpg" width="500" height="375" alt="Tiny Prototype" /></a></p>
<p>For about a year now I&#8217;ve been trying to get some more models/kits designed for Everything Tiny. But it&#8217;s a super slow process, and admittedly one I don&#8217;t spend enough time on.</p>
<p>Today I prototyped a model of a Nikon F, the first SLR camera I used. I started fairly large, cutting with an xacto knife, and ended up somewhere which is still a little bigger than what I hope to get down to.<br />
<a href="http://www.flickr.com/photos/kellbot/4090357391/" title="F Party by kellbot, on Flickr"><img src="http://farm3.static.flickr.com/2713/4090357391_6d4d917af1.jpg" width="500" height="375" alt="F Party" /></a><br />
The largest model is about 1/2 the size of a real Nikon.</p>
<p>There&#8217;s still a ton I need to add (F stop / focus rings on the lens, the little button to open the back, etc) but they&#8217;re at a good stopping point for today.</p>
<p>After I was done modeling I googled &#8220;papercraft camera&#8221; to see what other people have done. I specifically waited until after I had my design roughed out. Olympus came out with some which <a href="http://www.olympus.co.jp/jp/fun/wallpaper/camera/index.cfm?t=pc">make my little paper models look pathetic</a>. Oh well. Since I want other people to be able to build these I need to keep it a little more sane anyway.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kellbot.com/2009/11/papercraft-nikon-f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hipster Jewelry</title>
		<link>http://www.kellbot.com/2009/07/hipster-jewelry/</link>
		<comments>http://www.kellbot.com/2009/07/hipster-jewelry/#comments</comments>
		<pubDate>Fri, 03 Jul 2009 15:15:18 +0000</pubDate>
		<dc:creator>Kellbot</dc:creator>
				<category><![CDATA[crafting]]></category>
		<category><![CDATA[handmade]]></category>
		<category><![CDATA[hipster]]></category>
		<category><![CDATA[jewelry]]></category>

		<guid isPermaLink="false">http://www.kellbot.com/?p=361</guid>
		<description><![CDATA[Yesterday afternoon I was struck by a desire to make some big acrylic jewelry. For hipsters. Using stereotypical hipster things like deer and owls. Something which would provide instant gratification. Two hours later I had these two pendants, cut from acrylic plastic on the laser. Each pendant is two layers, one black and one white, [...]<a href="http://www.tkqlhce.com/click-3554893-10356338" target="_top">
<img src="http://www.lduhtrp.net/image-3554893-10356338" width="728" height="90" alt="ThinkGeek - Cool Stuff for Geeks and Technophiles" border="0"/></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday afternoon I was struck by a desire to make some big acrylic jewelry. For hipsters. Using stereotypical hipster things like deer and owls. Something which would provide instant gratification.</p>
<p><a title="Hipster Jewelry Deer by kellbot, on Flickr" href="http://www.1000markets.com/products/70933"><img src="http://farm3.static.flickr.com/2593/3682280515_3d58056db9_m.jpg" alt="Hipster Jewelry Deer" width="240" height="180" /></a><a title="Hipster Jewelry Woman by kellbot, on Flickr" href="http://www.1000markets.com/products/70935"><img src="http://farm4.static.flickr.com/3568/3683092624_a589c6080f_m.jpg" alt="Hipster Jewelry Woman" width="240" height="180" /></a></p>
<p>Two hours later I had these two pendants, cut from acrylic plastic on the laser. Each pendant is two layers, one black and one white, glued together. Each one is about 2.5 inches in the longest direction. Chris&#8217;s response to them was &#8220;I thought they&#8217;d be bigger.&#8221;</p>
<p>I&#8217;ve listed them for sale on <a href="http://kfarrell.etsy.com">Etsy </a>and <a href="http://kellbot.1000markets.com">1000 Markets</a> under the title &#8220;Hipster Jewelry.&#8221; Chris suggested that this might be a bad idea, as hipsters notoriously hate hipsters. I pointed out that they LOVE irony. He wasn&#8217;t sure they&#8217;d be up for meta-irony.</p>
<p>My mother asked <a href="http://wiki.answers.com/Q/What_is_a_hipster">what a hipster was</a>, and why I would make jewelry for them. It&#8217;s hard to explain what a hipster is to someone who has never had an occasion to interact with them. Or why they have such overbearing self loathing. I told her it is a deroggatory term for people who try to be a certain type of trendy. As for why I made the jewelry &#8211; it was just sort of a wild hare. One that I could easily satisfy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kellbot.com/2009/07/hipster-jewelry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
