<?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>Artifacture</title>
	<atom:link href="http://www.artifacturestudios.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.artifacturestudios.com</link>
	<description>Ideas Made Real</description>
	<lastBuildDate>Thu, 16 Feb 2012 00:21:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>QR Code Hacking</title>
		<link>http://www.artifacturestudios.com/archives/3422/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=qr-code-hacking</link>
		<comments>http://www.artifacturestudios.com/archives/3422/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 18:16:51 +0000</pubDate>
		<dc:creator>Michael Reilly</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Problem solving]]></category>
		<category><![CDATA[Prototype]]></category>

		<guid isPermaLink="false">http://www.artifacturestudios.com/?p=3422</guid>
		<description><![CDATA[While there is considerable debate whether or not QR Codes will &#8220;catch on&#8221;, they are beginning to show up in more and more places. Although a code can store as many as 4,096 characters of text in any format, QR codes are most commonly used to provide easy access to a web address. It makes [...]]]></description>
			<content:encoded><![CDATA[<p>While there is considerable debate whether or not QR Codes will &#8220;catch on&#8221;, they are beginning to show up in more and more places. Although a code can store as many as 4,096 characters of text in any format, QR codes are most commonly used to provide easy access to a web address. It makes sense, anything beyond a basic domain name is a pain for people to enter themselves, and while many services exist to alias URLs into shorter paths, the result is hardly user friendly.</p>
<p>Still, to many designers at least, QR codes are generic and ugly. Someone realized that QR codes implement error correction and that means that a certain amount of the data can be corrupted without losing effectiveness. For a long time, it was largely a trial and error process of deleting sections and seeing if it was still readable. Odds could be increased by padding the code out with additional data. But there is another way to better your odds. The secret was explained to me in this great <a href="http://www.systemid.com/qrcode/">blog post</a>.</p>
<p>Here is the process I followed to create one for Artifacture. First, I created a QR code using one of the many websites devoted to offering that service. I used <a href="http://BeQRious.com">BeQRious.com</a>.</p>
<p><a title="qr_code1" href="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code1.png"><img src="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code1-574x383.png" alt="qr_code1" width="574" /></a></p>
<p><span id="more-3422"></span></p>
<p>First, certain regions of the QR code are reserved. The red shading is devoted to alignment of the scan. The green and blue shaded areas tell the scanner other details including the size of the code, the encoding version, etc. Nothing can interfere with these areas without making the code unreadable.</p>
<p><a title="qr_code2" href="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code2.png"><img src="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code2-574x383.png" alt="qr_code2" width="574" /></a></p>
<p>The balance of the code is composed of small squares. Those squares are divided into groups of 8 (bits), or 1-byte of data. The bytes are read beginning at the bottom-right corner and read up and then down, right-to-left. The bits are initially arranged in a 2&#215;4 grid and stay in that arrangement until the reserved areas are encountered. Then the bits have to shift around to fit. The bytes are shown as various shades of gray. in the diagram below.</p>
<p><a title="qr_code2-5" href="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code2-5.png"><img src="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code2-5-574x383.png" alt="qr_code2-5" width="574" /></a></p>
<p>If we lay that diagram over our QR code, we can see how the data is divided up. The key to removing data is to understand that once you remove one bit in a byte, it&#8217;s corrupt, so you may as well remove all 8 bits.</p>
<p><a title="qr_code3" href="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code3.png"><img src="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code3-574x383.png" alt="qr_code3" width="574" /></a></p>
<p>Going back to our map so it&#8217;s easier to see, our goal is to pick the areas to remove that represent as few bytes as possible. Here I put in a part of our logo. After some experimentation, I arrived at this arrangement. You can see where I positioned it just right to retain the light gray and medium gray bytes at the top-middle of our logo.</p>
<p><a title="qr_code4-5-01" href="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code4-5-01.png"><img src="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code4-5-01-574x383.png" alt="qr_code4-5-01" width="574" /></a><br />
I tried having it read without erasing the data behind the logo, but it didn&#8217;t work. So I marked out the area to fill white. For aesthetic reasons, I didn&#8217;t white out the whole bytes in all cases. It doesn&#8217;t matter, as it knows where they should be, and once some is gone, the whole byte is invalid.</p>
<p><a title="qr_code5-5" href="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code5-5.png"><img src="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code5-5-574x383.png" alt="qr_code5-5" width="574" /></a><br />
Here we&#8217;ve filled the background with white.</p>
<p><a title="qr_code6-1" href="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code6-1.png"><img src="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code6-1-574x383.png" alt="qr_code6-1" width="574" /></a></p>
<p>Here we put the QR code back in.</p>
<p><a title="qr_code5" href="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code5.png"><img src="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code5-574x383.png" alt="qr_code5" width="574" /></a></p>
<p>And lastly, we turn off the mapping layers to get the final product.</p>
<p><a title="qr_code6" href="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code6.png"><img src="http://images.artifacturestudios.com/wp-content/uploads/2012/01/qr_code6-574x383.png" alt="qr_code6" width="574" /></a></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.artifacturestudios.com/archives/3422/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gear Christmas Tree</title>
		<link>http://www.artifacturestudios.com/archives/3228/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=gear-christmas-tree</link>
		<comments>http://www.artifacturestudios.com/archives/3228/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 02:24:47 +0000</pubDate>
		<dc:creator>shane</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Product Development]]></category>

		<guid isPermaLink="false">http://www.artifacturestudios.com/?p=3228</guid>
		<description><![CDATA[After the doing the Gear invitation, and spending a little time in The Joule, we decided that it would be a good idea to create a Christmas tree that would fit in with the rest of the theme.  After some experimenting and brainstorming, we hit on the idea of counter rotating gears as the tree [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.artifacturestudios.com/archives/3228/_dsc9613/" rel="attachment wp-att-3242"><img class="alignleft size-medium wp-image-3242" title="_DSC9613" src="http://images.artifacturestudios.com/wp-content/uploads/2012/01/DSC9613-259x388.jpg" alt="" width="259" height="388" /></a>After the doing the Gear invitation, and spending a little time in The Joule, we decided that it would be a good idea to create a Christmas tree that would fit in with the rest of the theme.  After some experimenting and brainstorming, we hit on the idea of counter rotating gears as the tree form.</p>
<p>To stay true to the feel of the place ( pictures below ), we elected to make the gears a combination of dark stained wood teeth around an acrylic core.  Since the tree would be moving, we decided against trying to make a set of meshed gears to drive the rotation &#8211; non-metal gears would mark, and would shed material over time even if perfectly meshed, so instead, we created a gear form with a silicone rubber contact surface.  It&#8217;s elegant looking, and simple to fabricate.  More importantly, it&#8217;s easier for the hotel staff to assemble and disassemble, and safer to guests and staff since there are no meshed teeth to create pinch hazards.</p>
<p><iframe width="640" height="480" src="http://www.youtube.com/embed/wcx-Tx_ptOs" frameborder="0" allowfullscreen></iframe></p>
<p>The photos shown are a 1:8 scale model.  The final tree would be approximately 7&#8217;2&#8243; tall with the largest horizontal gear approximately 4&#8242; across.  If we cannot reach an agreement for the Joule installation, we plan to make scale kits available next Christmas &#8211; and potentially full size ones as well.</p>
<p><a href="http://www.artifacturestudios.com/archives/3228/img_1498/" rel="attachment wp-att-3240"><img class=" wp-image-3240 alignright" style="border-style: initial; border-color: initial;" title="IMG_1498" src="http://images.artifacturestudios.com/wp-content/uploads/2012/01/IMG_1498-289x388.jpg" alt="" width="260" height="349" /></a><a href="http://www.artifacturestudios.com/archives/3228/img_1509/" rel="attachment wp-att-3238"><img class="alignleft  wp-image-3238" style="border-style: initial; border-color: initial;" title="IMG_1509" src="http://images.artifacturestudios.com/wp-content/uploads/2012/01/IMG_1509-289x388.jpg" alt="" width="260" height="349" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.artifacturestudios.com/archives/3228/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kinetic Gear Wedding Invitation</title>
		<link>http://www.artifacturestudios.com/archives/2713/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=kinetic-gear-wedding-invitation</link>
		<comments>http://www.artifacturestudios.com/archives/2713/#comments</comments>
		<pubDate>Sun, 01 Jan 2012 04:30:01 +0000</pubDate>
		<dc:creator>shane</dc:creator>
				<category><![CDATA[Client Work]]></category>
		<category><![CDATA[Product Development]]></category>
		<category><![CDATA[Die Cut]]></category>
		<category><![CDATA[invitation]]></category>
		<category><![CDATA[Laser Cut]]></category>
		<category><![CDATA[Paper]]></category>
		<category><![CDATA[Vector]]></category>
		<category><![CDATA[Wedding Invitation]]></category>

		<guid isPermaLink="false">http://www.artifacturestudios.com/?p=2713</guid>
		<description><![CDATA[The project began with a time crunch.  One week ( it actually turned out to be 8 days ) from first meeting to final delivery.  However, they were willing to let us go a little nuts, so we signed up. While it&#8217;s not the most complex piece we&#8217;ve done, this is easily one of the [...]]]></description>
			<content:encoded><![CDATA[<p>The project began with a time crunch.  One week ( it actually turned out to be 8 days ) from first meeting to final delivery.  However, they were willing to let us go a little nuts, so we signed up.</p>
<p><span id="more-2713"></span></p>
<p><img class="size-medium wp-image-2711 alignleft" style="border-style: initial; border-color: initial;" title="IMG_0881" src="http://images.artifacturestudios.com/wp-content/uploads/2011/09/IMG_0881-279x388.jpg" alt="" width="279" height="388" /></p>
<p>While it&#8217;s not the most complex piece we&#8217;ve done, this is easily one of the most popular and well received.</p>
<p>The couple is holding their wedding at <a title="The Joule" href="http://www.starwoodhotels.com/luxury/property/overview/index.html?propertyID=3321">The Joule</a>, a high end downtown hotel with a 25 foot kinetic gear sculture as a center piece.  They were looking for something distinctive to suit their personal style, and the uniqueness of the venue.  The bride was already a steampunk fan, so playing on the gear theme was a natural.</p>
<p>We kicked around some printing ideas, but a plain old wedding invitation just was not our speed (and the client was willing), so we started playing with kinetic designs.</p>
<p>We went through a number of designs, but none of them seemed to be quite right until Donna who was brainstorming with us suggested making it a fully functional part of the design instead of just decorative.  With that decision, things came together quickly.  Meshed gears with symmetric openings in the large gear to hide and reveal information about the services and the reception following.</p>
<p>One of the big practical challenges about kinetic cards &#8211; and meshed gears in particular &#8211; is getting the piece rigid enough to make all the moving parts mesh and move correctly.  To that end, the gears are a metallic Bronze cover laminated to 50pt black chip board.  The bronze had a black core that made for a nearly seamless lamination when cut.</p>
<p style="text-align: center;"><img class="size-medium wp-image-2710 aligncenter" title="Geared Invitation" src="http://images.artifacturestudios.com/wp-content/uploads/2011/09/IMG_0942-Version-2-539x388.jpg" alt="" width="539" height="388" /></p>
<p>&nbsp;</p>
<p>To maintain the period/steampunk aesthetic, the back sheet is a brown columned cover stock, and the printed piece is a columned vellum cover laminated to 25pt black cover for rigidity.</p>
<p>The client really wanted letterpress printing, but since we only had a week to do the project from start to finish, there just was not enough time to make the arrangements.  However, we were able to meet her half way and have it thermographically printed.</p>
<p>Even though the chipboard segments were added for purely practical considerations, they also ended up giving the card a weight and substance that was very pleasing, and worked well with the theme.</p>
<p>Finally, a big thank you to Donna Hawk for helping us get to the final design in world record time.  We could not have done it without you.</p>
<p><strong>The technical stuff:</strong></p>
<p>The Bronze cover is Cordenons Stardream Bronze.</p>
<p>The back sheet is Neenah Classic Columns Canyon Brown cover laminated to 25pt black chip board.</p>
<p>The printed sheet is Neenah Ultra II Columns vellum cover, also laminated to 25pt black chipboard. This had the happy side benefit of of rendering the vellum opaque, so that we did not have to obsess over keeping the columns aligned on the base and printed stock.</p>
<p>The vellum was printed with photo registration dots, and cut down in house on our laser to permit precision placement of the gear mounting holes.  The columned back sheets were also laser cut to size with the mounting holes.  To prevent marking and discoloration, the chipboard backers were cut separately from the same files and assembled later.</p>
<p>Final assembly used a pin table jig to properly align the pieces.  Since time was short, we used distressed bronze colored metal brads to affix the gears.</p>
<p>&nbsp;</p>
<p><a href="http://www.artifacturestudios.com/?attachment_id=2712" rel="attachment wp-att-2712"><img class="alignleft size-medium wp-image-2712" title="Gear Assembly" src="http://images.artifacturestudios.com/wp-content/uploads/2011/09/IMG_0920-513x388.jpg" alt="" width="513" height="388" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.artifacturestudios.com/archives/2713/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Assembling the Frabjous puzzle/sculpture</title>
		<link>http://www.artifacturestudios.com/archives/3147/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=assembling-the-frabjous-puzzlesculpture</link>
		<comments>http://www.artifacturestudios.com/archives/3147/#comments</comments>
		<pubDate>Sun, 25 Dec 2011 19:27:44 +0000</pubDate>
		<dc:creator>Michael Reilly</dc:creator>
				<category><![CDATA[Client Work]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[Acrylic]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[Laser Cut]]></category>
		<category><![CDATA[Problem solving]]></category>

		<guid isPermaLink="false">http://www.artifacturestudios.com/?p=3147</guid>
		<description><![CDATA[For those who are not into puzzles and would rather just put your Frabjous together, here is a step-by-step video to follow.]]></description>
			<content:encoded><![CDATA[<p><iframe src="http://www.youtube.com/embed/rxfva6t51mI?hd=1" frameborder="0" width="560" height="315"></iframe></p>
<p>For those who are not into puzzles and would rather just put your Frabjous together, here is a step-by-step video to follow.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.artifacturestudios.com/archives/3147/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Frabjous Acrylic Sculpture</title>
		<link>http://www.artifacturestudios.com/archives/2992/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=frabjous-acrylic-sculpture</link>
		<comments>http://www.artifacturestudios.com/archives/2992/#comments</comments>
		<pubDate>Mon, 28 Nov 2011 08:28:28 +0000</pubDate>
		<dc:creator>Michael Reilly</dc:creator>
				<category><![CDATA[Product Development]]></category>
		<category><![CDATA[Acrylic]]></category>
		<category><![CDATA[Design considerations]]></category>
		<category><![CDATA[Laser Cut]]></category>
		<category><![CDATA[MoMath]]></category>
		<category><![CDATA[Plastic]]></category>
		<category><![CDATA[Problem solving]]></category>
		<category><![CDATA[Sculpture]]></category>

		<guid isPermaLink="false">http://www.artifacturestudios.com/?p=2992</guid>
		<description><![CDATA[We have long been fans of George Hart&#8217;s amazing geometric sculptures. One in particular, the Frabjous, was talked about in the Maker community, including an excellent explanation by Evil Mad Scientist Labs on why the pieces fit together the way they do. Naturally, when we got our first laser cutter, we had to make a [...]]]></description>
			<content:encoded><![CDATA[<p>We have long been fans of George Hart&#8217;s amazing <a href="http://www.georgehart.com/sculpture/sculpture.html">geometric sculptures</a>. One in particular, the <a href="http://www.georgehart.com/sculpture/frabjous.html">Frabjous</a>, was talked about in the Maker community, including an <a href="www.evilmadscientist.com/article.php/frabjous">excellent explanation</a> by Evil Mad Scientist Labs on why the pieces fit together the way they do.</p>
<p>Naturally, when we got our first laser cutter, we had to make a Frabjous. When George made his, he sanded the edges and glued the pieces together. While I have a lot of patience, that seemed like a lot of work! But at the time, we happened to be exploring the use of <a href="http://en.wikipedia.org/wiki/Finger_joint">finger joints</a> for assembling boxes and thought perhaps it could be applied here. Sure enough, it could!</p>
<p>After a lot of refinement, we approached George about licensing the design for production. He was in the process of putting together content for the Museum of Mathematics (<a href="http://momath.org">MoMath</a>) opening in NYC in 2012, and agreed that we could produce it for MoMath. We are ramping up production so soon you will see it at a museum gift shop near you. In the meantime, you can purchase it through <a href="http://www.etsy.com/listing/87292191/frabjous-geometric-puzzlesculpture-aqua">our Etsy shop</a>. MoMath receives a portion of each sale.</p>
<p><a href="http://www.artifacturestudios.com/archives/2992/img_1634/" rel="attachment wp-att-2995"><img class="alignleft size-L wp-image-2995" title="IMG_1634" src="http://images.artifacturestudios.com/wp-content/uploads/2011/11/IMG_1634-574x383.jpg" alt="" width="574" height="383" /></a></p>
<p><a href="http://www.artifacturestudios.com/archives/2992/img_1635/" rel="attachment wp-att-2994"><img class="alignleft size-L wp-image-2994" title="IMG_1635" src="http://images.artifacturestudios.com/wp-content/uploads/2011/11/IMG_1635-574x383.jpg" alt="" width="574" height="383" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.artifacturestudios.com/archives/2992/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Eiffel Towers go retail!</title>
		<link>http://www.artifacturestudios.com/archives/2972/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=eiffel-towers-go-retail</link>
		<comments>http://www.artifacturestudios.com/archives/2972/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 06:50:57 +0000</pubDate>
		<dc:creator>shane</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Laser Cut]]></category>
		<category><![CDATA[Paper]]></category>
		<category><![CDATA[Vector]]></category>

		<guid isPermaLink="false">http://www.artifacturestudios.com/?p=2972</guid>
		<description><![CDATA[We are very excited to announce two new outlets for our Eiffel tower model.  In the US, the 6&#8243; and 12&#8243; versions can now be found in the gift shop at the Dallas Museum of Art (DMA). The DMA online store currently offers the 12&#8243; version, with the 6&#8243; soon to follow. The 12&#8243; tower [...]]]></description>
			<content:encoded><![CDATA[<p>We are very excited to announce two new outlets for our Eiffel tower model.  In the US, the 6&#8243; and 12&#8243; versions can now be found in the gift shop at the Dallas Museum of Art (DMA). The DMA <a href="http://store.shopdma.org/eitolacutpa.html" target="_blank">online store</a> currently offers the 12&#8243; version, with the 6&#8243; soon to follow.</p>
<p>The 12&#8243; tower has also just appeared in the online and print edition of the <a href="http://www.grand-illusions.com/acatalog/Paper_Eiffel_Tower.html" target="_blank">Grand Illusions holiday catalog</a>.</p>
<p>Grand illusions is a specialty retailer that deals in elegant, ingenious and beautiful items, from time honored illusions to mind bending science toys. A number of of our favorite things on our toy shelf have come from them, and we are genuinely honored to be included in such an amazing collection.</p>
<p>Here, Grand Illusions founder Hendrik Ball shows off the tower:</p>
<p><iframe src="http://www.youtube.com/embed/BWUB-Br6mEE" frameborder="0" width="420" height="315"></iframe></p>
<p>This is a double first for us &#8211; our first time in a print catalog, and since they are a UK based firm &#8211; our first international distribution.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.artifacturestudios.com/archives/2972/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Most Romantic Marriage Proposal Ever</title>
		<link>http://www.artifacturestudios.com/archives/2829/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-most-romantic-marriage-proposal-ever</link>
		<comments>http://www.artifacturestudios.com/archives/2829/#comments</comments>
		<pubDate>Fri, 07 Oct 2011 23:44:41 +0000</pubDate>
		<dc:creator>shane</dc:creator>
				<category><![CDATA[Client Work]]></category>
		<category><![CDATA[Just Because]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.artifacturestudios.com/?p=2829</guid>
		<description><![CDATA[First, I want to offer our deepest and most heartfelt congratulations to Chris and Elida.  I cannot think of a better way to start off your life together, and may it be a long and very happy one.  I also have to say thank you again for letting us be a part of it.  It [...]]]></description>
			<content:encoded><![CDATA[<p>First, I want to offer our deepest and most heartfelt congratulations to Chris and Elida.  I cannot think of a better way to start off your life together, and may it be a long and very happy one.  I also have to say thank you again for letting us be a part of it.  It was an honor, and a privilege.<br />
&nbsp;<br />
Now, on to why we are congratulating them.  Every once in a while, a project comes along that you are just honored to be part of.  If I have a complaint about this one, it&#8217;s that this client has made life more difficult for every poor schlub who has yet to propose to their girlfriend.  Is it really fair to raise the bar *that* high?</p>
<p><span id="more-2829"></span></p>
<p><img class="alignleft size-medium wp-image-2871" style="border-style: initial; border-color: initial;" title="proposal_puzzle4" src="http://images.artifacturestudios.com/wp-content/uploads/2011/10/proposal_puzzle4-291x388.jpg" alt="" width="291" height="388" /></p>
<p>Here&#8217;s the short version.  Chris ( the Client ) created an 9 piece puzzle based on the shape of the engagement ring.  He had us cut each panel of the puzzle, and then etch a drawing and a poem or verse about a significant moment in their relationship onto the piece .  This was not second rate drivel, either &#8211; this was the genuine article. (  The man made snails romantic, people.  Snails!  )</p>
<p>He distributed the pieces around Dallas at locations that were important to both of them, and sent her on a scavenger hunt.  Each piece had a clue with it that lead to the next.  The final clue lead to the Lakewood theatre, where you can see the marquee below.</p>
<p>&nbsp;</p>
<p>In case there was any doubt, she did say yes.</p>
<p><img class="alignleft size-medium wp-image-2884" style="border-style: initial; border-color: initial;" title="proposal_puzzle5" src="http://images.artifacturestudios.com/wp-content/uploads/2011/10/proposal_puzzle5-432x388.jpg" alt="" width="432" height="388" />&nbsp;</p>
<p>&nbsp;</p>
<div><a href="http://www.artifacturestudios.com/archives/2829/proposal_puzzle4/" rel="attachment wp-att-2871"><img class="alignleft size-medium wp-image-2869" title="proposal_puzzle2" src="http://images.artifacturestudios.com/wp-content/uploads/2011/10/proposal_puzzle2-548x388.jpg" alt="" width="548" height="388" /></a><img class="size-medium wp-image-2870 alignleft" style="border-style: initial; border-color: initial;" title="proposal_puzzle3" src="http://images.artifacturestudios.com/wp-content/uploads/2011/10/proposal_puzzle3-521x388.jpg" alt="" width="365" height="272" />&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;<br />
&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.artifacturestudios.com/archives/2829/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>DSVC Braille Ink Invitation</title>
		<link>http://www.artifacturestudios.com/archives/2018/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=dsvc-braille-ink-invitation</link>
		<comments>http://www.artifacturestudios.com/archives/2018/#comments</comments>
		<pubDate>Mon, 26 Sep 2011 04:34:58 +0000</pubDate>
		<dc:creator>shane</dc:creator>
				<category><![CDATA[Client Work]]></category>
		<category><![CDATA[Community]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Die Cut]]></category>
		<category><![CDATA[Laser Cut]]></category>
		<category><![CDATA[Marketing PIece]]></category>
		<category><![CDATA[Paper]]></category>
		<category><![CDATA[Vector]]></category>

		<guid isPermaLink="false">http://www.artifacturestudios.com/?p=2018</guid>
		<description><![CDATA[This is a construction piece we did in conjunction with Padgett Printing and Register Marks.  The invitation is for a Casino themed event benefiting Braille Ink,  folds into a conventional square format for mailing.  The piece was printed by Padgett using PMS colors, with a silver and gray grid pattern on the inner face.  On [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.artifacturestudios.com/archives/2018/img_2604/" rel="attachment wp-att-2020"><img class="alignleft size-medium wp-image-2020" title="IMG_2604" src="http://images.artifacturestudios.com/wp-content/uploads/2011/05/IMG_2604-300x273.jpg" alt="" width="300" height="273" /></a><a href="http://www.artifacturestudios.com/archives/2018/img_2617/" rel="attachment wp-att-2023"><img class="size-medium wp-image-2023 alignright" title="IMG_2617" src="http://images.artifacturestudios.com/wp-content/uploads/2011/05/IMG_2617-300x202.jpg" alt="" width="300" height="202" /></a>This is a construction piece we did in conjunction with Padgett Printing and Register Marks.  The invitation is for a Casino themed event benefiting Braille Ink,  folds into a conventional square format for mailing.  The piece was printed by Padgett using PMS colors, with a silver and gray grid pattern on the inner face.  On receipt, the piece can be folded into a cube.  The laser cut voids in the face expose the patterning on the inner surface, reenforcing the dimensional feel of the piece.</p>
<p>Since the piece would have to be folded and unfolded multiple times, laser scoring was not an acceptable solution.  To achieve a stable mechanical score, the piece was scored and perimeter cut by Register Marks using a traditional steel rule die.  We took the perimeter cut pieces, and cut the detail elements, using dots printed in the drop areas as registration marks for the vision system.</p>
<p><a href="http://www.artifacturestudios.com/archives/2018/img_2614/" rel="attachment wp-att-2022"><img class="alignleft size-medium wp-image-2022" title="IMG_2614" src="http://images.artifacturestudios.com/wp-content/uploads/2011/05/IMG_2614-290x300.jpg" alt="" width="290" height="300" /></a>While not as elaborate as some of our other dimensional pieces, it is an excellent use of the form, and makes for an interesting piece that is likely to garner a place on the recipient&#8217;s desk or shelf long after the event.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.artifacturestudios.com/archives/2018/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Laser Cut Old Red Court House Card</title>
		<link>http://www.artifacturestudios.com/archives/2810/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=laser-cut-old-red-court-house-card</link>
		<comments>http://www.artifacturestudios.com/archives/2810/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 19:31:57 +0000</pubDate>
		<dc:creator>shane</dc:creator>
				<category><![CDATA[Product Development]]></category>
		<category><![CDATA[Laser Cut]]></category>
		<category><![CDATA[Paper]]></category>
		<category><![CDATA[Vector]]></category>

		<guid isPermaLink="false">http://www.artifacturestudios.com/?p=2810</guid>
		<description><![CDATA[This card is based on the iconic Old Red Courthouse in downtown Dallas.  This is the second in the &#8220;Dallas Landmarks&#8221; series that began with the Dallas Skyline Cards.  This one was cut on 105# red metallic cover with a citrine metallic insert (tip-in).]]></description>
			<content:encoded><![CDATA[<p>This card is based on the iconic <a href="http://www.oldred.org/">Old Red Courthouse</a> in downtown Dallas.  This is the second in the &#8220;Dallas Landmarks&#8221; series that began with the Dallas Skyline Cards.  This one was cut on 105# red metallic cover with a citrine metallic insert (tip-in).<span id="more-2810"></span></p>
<p><a href="http://www.artifacturestudios.com/archives/2810/dallasmanseyeviewoldredcourthousecdewuansimmons306/" rel="attachment wp-att-2814"><img class="alignleft size-full wp-image-2814" title="DallasMansEyeViewOldRedCourthouseCDeWuanSimmons306" src="http://images.artifacturestudios.com/wp-content/uploads/2011/09/DallasMansEyeViewOldRedCourthouseCDeWuanSimmons306.jpg" alt="" width="400" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.artifacturestudios.com/archives/2810/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The New Site is Live</title>
		<link>http://www.artifacturestudios.com/archives/2691/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-new-site-is-live</link>
		<comments>http://www.artifacturestudios.com/archives/2691/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 00:26:36 +0000</pubDate>
		<dc:creator>shane</dc:creator>
				<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://www.artifacturestudios.com/?p=2691</guid>
		<description><![CDATA[The new website is live.  It&#8217;s still a work in progress, but we&#8217;ve been sitting on a good bit of new content until the launch, and we decided it needs to go up.  So here she is, and we can also announce that we have moved to a new web host.  We&#8217;re extremely pleased with [...]]]></description>
			<content:encoded><![CDATA[<p>The new website is live.  It&#8217;s still a work in progress, but we&#8217;ve been sitting on a good bit of new content until the launch, and we decided it needs to go up.  So here she is, and we can also announce that we have moved to a new web host.  We&#8217;re extremely pleased with them so far, and the site is almost 10x as fast in our benchmarks.  For those who had to endure the old one, we sincerely thank you for your patience, and you should find the new site and server a much less painful experience to deal with.</p>
<p>Special thanks to our designer Veronica Ramos for working so hard to get it into a launchable condition.  Also a shout out to <a href="http://cutlasercut.com">CutLaserCut</a>.  Their brilliant &#8220;How it works section&#8221; is (obviously) the inspiration for our Process page.  They are a great shop in the UK that makes stuff that is at least as interesting and ( <em>almost</em> :o) as cool as what we do.</p>
<p>That&#8217;s it.  Next up is the stuff that is actually interesting.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.artifacturestudios.com/archives/2691/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using apc
Database Caching using apc
Object Caching 690/836 objects using apc

Served from: www.artifacturestudios.com @ 2012-02-22 18:20:52 -->
