<?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>[mck] &#187; Urban papercraft</title>
	<atom:link href="http://www.matthijskamstra.nl/blog/index.php/tag/urban-papercraft/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.matthijskamstra.nl/blog</link>
	<description>a polymath zapper</description>
	<lastBuildDate>Tue, 07 Sep 2010 19:05:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Twitter rss reader in Flash as3</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2009/12/30/twitter-rss-reader-in-flash-as3/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2009/12/30/twitter-rss-reader-in-flash-as3/#comments</comments>
		<pubDate>Wed, 30 Dec 2009 08:00:16 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Urban papercraft]]></category>
		<category><![CDATA[Papercraft]]></category>
		<category><![CDATA[PaperToy]]></category>
		<category><![CDATA[PaperToys]]></category>
		<category><![CDATA[Urban]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/?p=1196</guid>
		<description><![CDATA[Update #1: must read this post, otherwise this code will fail when you place it on your server! I recently started my own company (eMCeeKay.nl) and I need to make a website for it&#8230;. Not really a problem besides that I don&#8217;t have any time to create a design. So I was thinking about a [...]]]></description>
			<content:encoded><![CDATA[<div class="update"><strong>Update #1:</strong> <a href="http://www.matthijskamstra.nl/blog/index.php/2010/01/06/twitter-rss-reader-part-2/">must read this post</a>, otherwise this code will fail when you place it on your server!</div>
<p>I recently started my own company (<a href="http://www.eMCeeKay.nl">eMCeeKay.nl</a>) and I need to make a website for it&#8230;. Not really a problem besides that I don&#8217;t have any time to create a design.</p>
<p>So I was thinking about a easy way to update this website without spending extra time on that.</p>
<p>Because the main focus of the company is papertoys (urban papertoys), I need design or papertoy related info in my my new website ().</p>
<p>And I came with two ways to update it without extra effort: <a href="http://www.twitter.com/matthijskamstra">twitter</a> (I tweet about a lot of stuff but primarily about papertoys) and this the content on this blog (category: <a href="http://www.matthijskamstra.nl/blog/index.php/category/design/urban-papercraft/">urban-papercraft</a>).</p>
<p>I started with the Twitter part.<br />
There are two Twitter AS3 libraries that &#8220;speak&#8221; to the Twitter API: <a href="http://code.google.com/p/twitterscript/">twitterscript/</a> and <a href="http://code.google.com/p/tweetr/">tweetr/</a>.<br />
But after reading the source I concluded that it was a little bit to much: I don&#8217;t want to tweet from emceekay.nl or do searches, so that was not the way to go.</p>
<p>A little google search gave me the solution: <a href="http://www.theflashlogs.org/flash/displaying-twitter-feeds-in-flash-with-rss/">http://www.theflashlogs.org/flash/displaying-twitter-feeds-in-flash-with-rss/</a>, simple using the standard rss from Twitter (in my case: <a href="http://twitter.com/statuses/user_timeline/27657030.rss" title="Matthijs Kamstra - Twitter - rss" rel="alternate" type="application/rss+xml">Matthijs Kamstra &#8211; Twitter &#8211; rss</a>).</p>
<p>The code on theflashlogs.org is pritty simple, and very easy to use.<br />
So my code is a little addition to that, I need some stuff done to the rss feed:</p>
<ul>
<li>remove &#8220;MatthijsKamstra:&#8221; form the title</li>
<li>convert <strong>@paperkraft</strong> to a link</li>
<li>convert <strong>#Mecha6</strong> to a link</li>
<li>convert <strong>http://</strong> to a link</li>
</ul>
<p>Here is my code:</p>
<pre class="brush: as3; light: false; wrap-lines: false;">
package nl.emceekay.twttr
{
	import flash.display.MovieClip;
	import flash.events.Event;
	import flash.net.URLLoader;
	import flash.net.URLRequest;
	import flash.text.TextField;
	/**
	 * // nl.emceekay.twttr.TwttrExample
	 * ...
	 * @author Matthijs Kamstra aka [mck]
	 */
	public class TwttrExample extends MovieClip
	{
		//default: http://twitter.com/matthijskamstra
		private var url:String = &quot;http://twitter.com/statuses/user_timeline/27657030.rss&quot;; 

		private var _txt:TextField;

		public function TwttrExample()
		{
			stage.scaleMode = &quot;noScale&quot;;
			stage.align = &quot;TL&quot;;

			// generate textfield
			_txt = new TextField()
			_txt.x = 10;
			_txt.y = 10;
           		 _txt.width = stage.stageWidth - 20;
           		_txt.height =  stage.stageHeight - 20;
			_txt.wordWrap = true;
			_txt.multiline = true;
			_txt.autoSize = &quot;left&quot;;
			addChild(_txt);

			// start
			getFeed(url);
		}

		//////////////////////////////////////// loading rss / show rss ////////////////////////////////////////

		private function getFeed (inURL:String) : void
		{
			_txt.htmlText = &quot;getting tweets&quot;;

			var loader:URLLoader = new URLLoader();
			loader.addEventListener(Event.COMPLETE, onFeedHandler);
			loader.load(new URLRequest(inURL));
		}

		private function onFeedHandler (e:Event):void
		{
			_txt.htmlText = &quot;&quot;;
			var _feed:XML = new XML(e.target.data);
			var _item:XMLList = _feed.channel.item;
			for each (var feedItem:XML in _item){
				var _title		:String = feedItem.title;
				var _pubDate	:String = feedItem.pubDate;
				var _link		:String = feedItem.link;

				_title = convertTweet(_title);

				_txt.htmlText += _title + &quot;&lt;br&gt;&lt;i&gt;&quot; + _pubDate + &quot;&lt;/i&gt;&lt;br&gt;&lt;br&gt;&quot;;
			}
		}

		//////////////////////////////////////// twitter specific ////////////////////////////////////////

		// one place to convert the tweet
		private function convertTweet (inString:String):String
		{
			var _str:String = inString;
			_str = twttrStripName(_str);
			_str = twttrConvertHTTP(_str);
			_str = twttrConvertMention(_str);
			_str = twttrConvertHashtag(_str);
			_str = twttrConvertSmileys(_str);
			return _str;
		}

		// remove the writers name from the tweet
		private function twttrStripName (inString:String):String
		{
			var _str:String = inString;
			var _charNumber:Number = _str.indexOf(&quot;:&quot;);
			return _str.substr(_charNumber + 2);
		}

		// convert http-strings to links
		private function twttrConvertHTTP(inString:String):String
		{
			var _str:String = inString;
			var _array:Array = _str.split(&quot; &quot;);
			for (var i:int = 0; i &lt; _array.length; i++)
			{
				var _str2:String = twttrStripChar(_array[i]);
				if (_array[i].indexOf(&quot;http&quot;) != -1)
				{
					_array[i] = &quot;&lt;u&gt;&lt;a href='&quot; + _str2 + &quot;' target='_blank'&gt;&quot; +_array[i] + &quot;&lt;/a&gt;&lt;/u&gt;&quot;;
				}
			}
			return _array.join(&quot; &quot;);
		}

		// convert mentions (@) to links
		private function twttrConvertMention(inString:String):String
		{
			var _str:String = inString;
			var _array:Array = _str.split(&quot; &quot;);
			for (var i:int = 0; i &lt; _array.length; i++)
			{
				var _str2:String = twttrStripChar(_array[i]);
				if (_array[i].substr(0, 1) == &quot;@&quot;)
				{
					_array[i] = &quot;&lt;u&gt;&lt;a href='http://www.twitter.com/&quot; + _str2.split(&quot;@&quot;)[1] + &quot;' target='_blank'&gt;&quot; +_array[i] + &quot;&lt;/a&gt;&lt;/u&gt;&quot;;
				}
			}
			return _array.join(&quot; &quot;);
		}

		// convert hashtags (#) to links
		private function twttrConvertHashtag(inString:String):String
		{
			var _str:String = inString;
			var _array:Array = _str.split(&quot; &quot;);
			for (var i:int = 0; i &lt; _array.length; i++)
			{
				var _str2:String = twttrStripChar(_array[i]);
				if (_array[i].substr(0, 1) == &quot;#&quot;)
				{
					_array[i] = &quot;&lt;u&gt;&lt;a href='http://twitter.com/search?q=%23&quot; + _str2.split(&quot;#&quot;)[1] + &quot;' target='_blank'&gt;&quot; +_array[i] + &quot;&lt;/a&gt;&lt;/u&gt;&quot;;
				}
			}
			return _array.join(&quot; &quot;);
		}		

		// TODO: [mck] convert <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  to a smiley image
		private function twttrConvertSmileys(inString:String):String
		{
			var _str:String = inString;
			return _str;
		}

		// remove &quot;strange&quot; characters from the end of the string
		private function twttrStripChar(inString:String):String
		{
			var _str:String = inString;
			var _charArray:Array = [',', ';', ':', ' ', '-', '_'];
			for (var i:int = 0; i &lt; _charArray.length; i++)
			{
				if (_str.charAt(_str.length - 1) == _charArray[i]) {
					_str = _str.substr(0, _str.length - 1);
				}
			}
			return _str;
		}

	} // end class

} // end package
</pre>
<p>Currently I have only this proof of concept, but soon I will post the example on <a href="http://www.emceekay.nl">emceekay.nl</a>&#8230;</p>
<p>Because this is part one of what I want to do, and don&#8217;t want to search for every link again, I&#8217;m posting also the WordPress link here (it&#8217;s just because I&#8217;m lazy).</p>
<p>So here the feeds I will be using:</p>
<ul>
<li><a href="http://twitter.com/statuses/user_timeline/27657030.rss" title="Matthijs Kamstra - Twitter - rss" rel="alternate" type="application/rss+xml">Matthijs Kamstra &#8211; Twitter &#8211; rss</a></li>
<li><a href="http://www.matthijskamstra.nl/blog/wp-rss2.php?cat=11" title="[mck] Urban papercraft RSS feed" rel="alternate" type="application/rss+xml">All Urban papercraft posts</a></li>
</ul>

	<h4 class='swf-title'>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2006/07/09/why-do-i-need-metadata/" title="Why do I need MetaData? (July 9, 2006)">Why do I need MetaData?</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/09/03/what-a-flash-actionscript-developer-needs-to-know/" title="What a Flash / ActionScript Developer needs to know (September 3, 2009)">What a Flash / ActionScript Developer needs to know</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/09/10/urban-paper-tokyo-show/" title="Urban Paper Tokyo Show (September 10, 2009)">Urban Paper Tokyo Show</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2008/07/16/upgrading-wordpress-26/" title="Upgrading WordPress 2.6 (July 16, 2008)">Upgrading WordPress 2.6</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2007/07/11/uncomment-trace-jsfl/" title="Uncomment trace JSFL (July 11, 2007)">Uncomment trace JSFL</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2009/12/30/twitter-rss-reader-in-flash-as3/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>II LOVE mag &#8211; YEBOMAYCU</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2009/12/23/ii-love-mag-yebomaycu/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2009/12/23/ii-love-mag-yebomaycu/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 15:14:56 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Urban papercraft]]></category>
		<category><![CDATA[Grumm]]></category>
		<category><![CDATA[Papercraft]]></category>
		<category><![CDATA[PaperToy]]></category>
		<category><![CDATA[PaperToys]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/?p=1204</guid>
		<description><![CDATA[I&#8217;m in the latest edition of the II LOVE magazine from Marko Zubak In this issue we will remain on the first phase of creation, the form. Here the accent is put on the sculptural aspect of denuded paper toys, giving an impression that each one of them represents it’s own species. Here is shown [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m in the latest edition of the <a href="http://www.yebomaycu.com/">II LOVE magazine</a> from <a href="http://www.markozubak.com/">Marko Zubak</a></p>
<p><a href="http://www.yebomaycu.com/2.LOVE/IILOVE_04.pdf"><img alt="" src="http://www.yebomaycu.com/images/IILove04.jpg" title="II LOVE Blank issue #4" class="alignnone" width="320" height="430" /></a></p>
<blockquote><p>In this issue we will remain on the first phase of creation, the form. Here the accent is put on the sculptural aspect of denuded paper toys, giving an impression that each one of them represents it’s own species.<br />
Here is shown a selection of more than 50 paper toys, but of course, there are lot of other different kinds of paper toys out there. Many great designs are left out because of various reasons and I feel really sorry for some of them.</p></blockquote>
<p><em>by Marko Zubak, creator of II LOVE magazine</em></p>
<p><img src="http://www.matthijskamstra.nl/blog/wp-content/uploads/IILOVE_overzicht.jpg" alt="" title="II LOVE overzicht" width="500" height="885" class="alignnone size-full wp-image-1207" /></p>
<p>Download <a href="http://www.yebomaycu.com/">II LOVE magazine</a> from YEBOMAYCU.</p>

	<h4 class='swf-title'>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2010/03/31/what-about-svg-files/" title="What about SVG files? (March 31, 2010)">What about SVG files?</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/08/05/urban-paper-show-lo-slungg/" title="Urban paper show &#8211; Lo Slungg (August 5, 2009)">Urban paper show &#8211; Lo Slungg</a> (5)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2010/06/01/straat-papier-holland-klik-workshop-promo/" title="Straat Papier Holland Klik &#8211; Workshop promo (June 1, 2010)">Straat Papier Holland Klik &#8211; Workshop promo</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2008/01/16/son-of-a-grumm-part-2/" title="Son of a Grumm &#8211; part 2 (January 16, 2008)">Son of a Grumm &#8211; part 2</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2010/01/20/puma-first-round-urban-paper-sneaker/" title="PUMA &#8211; First Round &#8211; urban paper sneaker (January 20, 2010)">PUMA &#8211; First Round &#8211; urban paper sneaker</a> (41)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2009/12/23/ii-love-mag-yebomaycu/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Interview for AD.nl &#8211; Liefdewerk &#8216;Oud Papier&#8217;</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2009/07/15/interview-for-ad-nl-liefdewerk-oud-papier/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2009/07/15/interview-for-ad-nl-liefdewerk-oud-papier/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 08:22:00 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Drukk]]></category>
		<category><![CDATA[Urban papercraft]]></category>
		<category><![CDATA[AD]]></category>
		<category><![CDATA[AD.nl]]></category>
		<category><![CDATA[Algemeen Dagblad]]></category>
		<category><![CDATA[Interview]]></category>
		<category><![CDATA[newspaper]]></category>
		<category><![CDATA[PaperToys]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/?p=1066</guid>
		<description><![CDATA[A dutch newspaper (AD.nl) interviewed me about Papertoys. They also made a movie about it. It&#8217;s an article in Dutch: AD.nl &#8211; Cultuur en media &#8211; Liefdewerk &#8216;Oud Papier&#8217;. (a rude and crude translation by Google to English: click here) Some free publicity for the exhibit in Subwalk (Arnhem &#8211; the Netherlands). Related posts Urban [...]]]></description>
			<content:encoded><![CDATA[<p>A dutch newspaper (<a href="www.ad.nl" target="_blank" class="broken_link">AD.nl</a>) interviewed me about Papertoys. They also made a movie about it. <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p><a href="http://www.ad.nl/cultuur/3366959/Liefdewerk_Oud_Papier.html" class="broken_link"><img src="http://www.matthijskamstra.nl/blog/wp-content/uploads/ad_snapshot.jpg" alt="Part of the article in ad.nl" title="Part of the article in ad.nl" width="483" height="362" class="alignnone size-full wp-image-1068" border="1px" /></a></p>
<p>It&#8217;s an article in Dutch: <a href="http://www.ad.nl/cultuur/3366959/Liefdewerk_Oud_Papier.html" class="broken_link">AD.nl &#8211; Cultuur en media &#8211; Liefdewerk &#8216;Oud Papier&#8217;</a>.<br />
(a rude and crude translation by Google to English: <a href="http://translate.google.com/translate?u=http%3A//www.ad.nl/cultuur/3366959/Liefdewerk_Oud_Papier.html&#038;hl=en&#038;langpair=auto|en&#038;tbb=1&#038;ie=ISO-8859-1">click here</a>)</p>
<p>Some free publicity for the exhibit in <a href="http://www.subwalk.nl/exhibitions/future/316-urban-paper.html" class="broken_link">Subwalk (Arnhem &#8211; the Netherlands)</a>.		</p>

	<h4 class='swf-title'>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2007/04/07/urban-papercraft-we-hate-glue/" title="Urban papercraft: We hate glue (April 7, 2007)">Urban papercraft: We hate glue</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2008/03/23/urban-papercraft-spiky-baby-deluxe-series-part-2/" title="Urban papercraft: Spiky Baby Deluxe series &#8211; part 2 (March 23, 2008)">Urban papercraft: Spiky Baby Deluxe series &#8211; part 2</a> (11)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2008/01/28/urban-papercraft-spiky-baby-deluxe-series/" title="Urban papercraft: Spiky Baby Deluxe series (January 28, 2008)">Urban papercraft: Spiky Baby Deluxe series</a> (2)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2007/01/31/urban-papercraft-speakerdog/" title="Urban papercraft: Speakerdog (January 31, 2007)">Urban papercraft: Speakerdog</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2007/10/24/urban-papercraft-skull/" title="Urban papercraft: skull (October 24, 2007)">Urban papercraft: skull</a> (3)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2009/07/15/interview-for-ad-nl-liefdewerk-oud-papier/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shameless selfpromotion</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2009/04/08/shameless-selfpromotion/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2009/04/08/shameless-selfpromotion/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 19:13:44 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Urban papercraft]]></category>
		<category><![CDATA[book preview]]></category>
		<category><![CDATA[paper toy]]></category>
		<category><![CDATA[Papercraft]]></category>
		<category><![CDATA[PaperToys]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/?p=924</guid>
		<description><![CDATA[Shameless plug of the book I&#8217;m in: Urban Paper Related posts Urban Paper: 25 Designer Toys to Cut Out and Build (0) Urban Paper Tokyo Show (0) Urban Paper in Kansas City (0) URBAN PAPER book launch paper toy art show (0) Subwalk &#8211; Urban Paper: book launch and papertoy art show (1)]]></description>
			<content:encoded><![CDATA[<p>Shameless plug of the book I&#8217;m in: <b>Urban Paper</b><br/><br />
<iframe src="http://rcm.amazon.com/e/cm?t=mckapolyzapp-20&#038;o=1&#038;p=8&#038;l=as1&#038;asins=1600611230&#038;fc1=000000&#038;IS2=1&#038;lt1=_blank&#038;m=amazon&#038;lc1=FF3399&#038;bc1=000000&#038;bg1=FFFFFF&#038;f=ifr" style="width:120px;height:240px;" scrolling="no" marginwidth="0" marginheight="0" frameborder="0"></iframe></p>

	<h4 class='swf-title'>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2008/10/16/urban-paper-25-designer-toys-to-cut-out-and-build/" title="Urban Paper: 25 Designer Toys to Cut Out and Build (October 16, 2008)">Urban Paper: 25 Designer Toys to Cut Out and Build</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/09/10/urban-paper-tokyo-show/" title="Urban Paper Tokyo Show (September 10, 2009)">Urban Paper Tokyo Show</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/09/23/urban-paper-in-kansas-city/" title="Urban Paper in Kansas City (September 23, 2009)">Urban Paper in Kansas City</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/06/25/urban-paper-book-launch-paper-toy-art-show/" title="URBAN PAPER book launch paper toy art show (June 25, 2009)">URBAN PAPER book launch paper toy art show</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/07/27/subwalk-urban-paper-book-launch-and-papertoy-art-show/" title="Subwalk &#8211; Urban Paper: book launch and papertoy art show (July 27, 2009)">Subwalk &#8211; Urban Paper: book launch and papertoy art show</a> (1)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2009/04/08/shameless-selfpromotion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Urban papercraft: Marshall Alexander</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2008/11/12/urban-papercraft-marshall-alexander/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2008/11/12/urban-papercraft-marshall-alexander/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 07:48:57 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Custom]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Drukk]]></category>
		<category><![CDATA[Urban papercraft]]></category>
		<category><![CDATA[Marshall Alexander]]></category>
		<category><![CDATA[Papercraft]]></category>
		<category><![CDATA[PaperToys]]></category>
		<category><![CDATA[toy designer]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/index.php/2008/07/05/urban-papercraft-marshall-alexander/</guid>
		<description><![CDATA[There are really some great dutch papertoy designers, and Marshall Alexander is one of them! Marshall Alexander is, like me, one of the designers that are invited to contribute to the book made by Matt Hawkins (read more) and proud and active member of Nice Paper Toys! Marshall is one of the most modest people [...]]]></description>
			<content:encoded><![CDATA[<p>There are really some great dutch papertoy designers, and <a href="http://www.marshallalexander.net/">Marshall Alexander</a> is one of them!</p>
<p><img src="http://api.ning.com/files/t8oueEU5ZFKPZ5UM-ipBIx3g5sBuvJ1*12gDxRfotbk4QHSqwFW5OVeD*cSI9KGwNKVUyD8pw-rrnrYDFpzqmsleeP2S8EZV/projectlimited.jpg" width="510px" rel="flashbox[marshallallexander]" alt="Limi-Ted" /></p>
<p>Marshall Alexander is, like me, one of the designers that are invited to contribute to the book made by Matt Hawkins (<a href="http://www.matthijskamstra.nl/blog/index.php/2008/01/02/paper-toy-book-preview/" >read more</a>) and proud and active member of <a href="http://www.nicepapertoys.com/">Nice Paper Toys</a>!</p>
<p>Marshall is one of the most modest people that I know, but I don&#8217;t have to be&#8230;.<br />
He thought that he needed some practice, so before he launched his own papertoy series (<a href="http://www.flickr.com/photos/marshallalexander/sets/72157605974268492/">Foldskool heroes</a>) he created a series of custom:<br />
A Hedkase by NiceBunny:<br />
<img src="http://api.ning.com/files/Ok5lCDWz4G7LA-579HPI3S*CFEykp*10L4xsMm7gkyE_/hedkase.jpg1" width="510px" rel="flashbox[marshallallexander]" alt="Om mani" /><br />
A SIZZA by Nick Knite:<br />
<img src="http://api.ning.com/files/Ok5lCDWz4G7Xei2yHFwGogBTGz962c*sgMbQKC7xB2s_/sizza.jpg" width="510px" rel="flashbox[marshallallexander]" alt="Supa-catcha-Sizza1" /><br />
A Speakerdog by Ben the Illustrator<br />
<img src="http://api.ning.com/files/Ok5lCDWz4G5Og0ZsGAgLCQsorKGEE1Esty30PK1cCbw_/speakerdog.jpg" width="510px" rel="flashbox[marshallallexander]" alt="Bark to the Future Speakerdog" /></p>
<p>And some of his own papermodels:<br />
<img src="http://api.ning.com/files/9OUfPaQOydA9EOVhMlalnrfHyl6xtrwZ-PiP8jC93Sc_/toxicmyk.jpg" width="510px" rel="flashbox[marshallallexander]" alt="toxicmyk" /><br />
<img src="http://api.ning.com/files/E31qStv4-vJPq5DSuFmWH2KNyQrYm0Jr*nsJ2jMuNWLcTmAA1I1O3pCksivgaOK6UPmBqW88j*sDdRzn3ABXCTeXCUnMvZ*t/retrobot.jpg" width="510px" rel="flashbox[marshallallexander]" alt="Retrobot" /></p>
<p>And after that I found his <em>thing</em>: the one piece papertoy&#8230;<br />
I like this one very much:<strong>projectfatchunk</strong><br />
<img src="http://api.ning.com/files/reQsMycC618UqDpj-gpnWrm0PYH2vDR5kCSi10kcPoKhc9*FWzUvglO7r7fH5DDFzdO4FR-zaBMNvAqXM0Uy8UOqJtZU119C/projectfatchunk.jpg" width="510px" rel="flashbox[marshallallexander]" alt="projectfatchunk" /><br />
and it&#8217;s on a postcard!!!</p>
<p>And then he decided that he had practiced enough: and started with the amazing Foldskool heroes series:<br />
<img src="http://api.ning.com/files/hdC0Rqwh*mz1RUKXztsi8dMu*poCfh2GEZyB3kEelI-LCiyESH0EP*8ncBU2xXHWZi5Z5ejPCtHFV0WEn-R3SFMtNaH5MLK2/3shot.jpg" width="510px" rel="flashbox[marshallallexander]" alt="Foldskool series 1" /><br />
I must confess that I didn&#8217;t took the time to download the Foldskool template when Marshall published it&#8230;. But when I did, I wanted to create one: the template is really very smartly constructed.</p>
<p><img src="http://api.ning.com/files/BGi4JB4bShXUDDi9SUQgcIAJ6EgpIXJad7PNPmtczuNFVW3lZ4yX4eVBmPVVjQtZciwTAEPfNkFVisssqAXqwJ2BmddrrTCy/3shot2.jpg" width="510px" rel="flashbox[marshallallexander]" alt="Foldskool series 2" /></p>
<p>A little quote from Marshall&#8217;s site:</p>
<blockquote><p>&#8230; aiming to make money doing what I liked to do best: graphic design and illustration. So currently I work as a graphic designer at a small company in The Netherlands and spend my spare time illustrating my childhood memories and designing papertoys. Enjoy!</p></blockquote>
<p>I&#8217;m glad that I&#8217;m created a beautiful Foldskool heroes Batmobile, because his reaction was Nukk:<br />
Marshall did a Drukk-custom, which I really love:<br />
<img src="http://api.ning.com/files/2Rc6Wxf40xaFjQH30sNyYo1zQSN8ytn6wxO69IJ5uwSJLhWDCACRYBbngQmCdb7o2exGBI9P50lvRVMuVRmNOZdIs6nX8vBx/nukkpromo.jpg" rel="flashbox[marshallallexander]" alt="Nukk a Marshall Alexander custom" /><br />
Nukk is really the bomb.</p>
<p><a href="http://api.ning.com/files/hdC0Rqwh*mxjkinu9zuNAvEwk569qIGjAn7VZdKZxQDWNK-w4XNVmvQmG8rjkgDa-cJSSlMJUlJFr9svA9jnYuH0FS030w6m/projectfoldskool.jpg" rel="flashbox[marshallallexander]" title="Foldskool series 12">slideshow</a></p>
<div style="display:none">
<a href="http://api.ning.com/files/t8oueEU5ZFKPZ5UM-ipBIx3g5sBuvJ1*12gDxRfotbk4QHSqwFW5OVeD*cSI9KGwNKVUyD8pw-rrnrYDFpzqmsleeP2S8EZV/projectlimited.jpg" width="510px" rel="flashbox[marshallallexander]" title="Limi-Ted" /><br />
<a href="http://api.ning.com/files/Ok5lCDWz4G7LA-579HPI3S*CFEykp*10L4xsMm7gkyE_/hedkase.jpg1" width="510px" rel="flashbox[marshallallexander]" title="Om mani" /><br />
<a href="http://api.ning.com/files/Ok5lCDWz4G7Xei2yHFwGogBTGz962c*sgMbQKC7xB2s_/sizza.jpg" width="510px" rel="flashbox[marshallallexander]" title="Supa-catcha-Sizza1" /><br />
<a href="http://api.ning.com/files/Ok5lCDWz4G5Og0ZsGAgLCQsorKGEE1Esty30PK1cCbw_/speakerdog.jpg" width="510px" rel="flashbox[marshallallexander]" title="Bark to the Future Speakerdog" /><br />
<a href="http://api.ning.com/files/9OUfPaQOydA9EOVhMlalnrfHyl6xtrwZ-PiP8jC93Sc_/toxicmyk.jpg" width="510px" rel="flashbox[marshallallexander]" title="toxicmyk" /><br />
<a href="http://api.ning.com/files/E31qStv4-vJPq5DSuFmWH2KNyQrYm0Jr*nsJ2jMuNWLcTmAA1I1O3pCksivgaOK6UPmBqW88j*sDdRzn3ABXCTeXCUnMvZ*t/retrobot.jpg" width="510px" rel="flashbox[marshallallexander]" title="Retrobot" /><br />
<a href="http://api.ning.com/files/reQsMycC618UqDpj-gpnWrm0PYH2vDR5kCSi10kcPoKhc9*FWzUvglO7r7fH5DDFzdO4FR-zaBMNvAqXM0Uy8UOqJtZU119C/projectfatchunk.jpg" width="510px" rel="flashbox[marshallallexander]" title="projectfatchunk" /><br />
<a href="http://api.ning.com/files/hdC0Rqwh*mz1RUKXztsi8dMu*poCfh2GEZyB3kEelI-LCiyESH0EP*8ncBU2xXHWZi5Z5ejPCtHFV0WEn-R3SFMtNaH5MLK2/3shot.jpg" width="510px" rel="flashbox[marshallallexander]" title="Foldskool series 1" /><br />
<a href="http://api.ning.com/files/BGi4JB4bShXUDDi9SUQgcIAJ6EgpIXJad7PNPmtczuNFVW3lZ4yX4eVBmPVVjQtZciwTAEPfNkFVisssqAXqwJ2BmddrrTCy/3shot2.jpg" width="510px" rel="flashbox[marshallallexander]" title="Foldskool series 2" /><br />
<a href="http://api.ning.com/files/2Rc6Wxf40xaFjQH30sNyYo1zQSN8ytn6wxO69IJ5uwSJLhWDCACRYBbngQmCdb7o2exGBI9P50lvRVMuVRmNOZdIs6nX8vBx/nukkpromo.jpg" rel="flashbox[marshallallexander]" title="Nukk a Marshall Alexander custom" />
</div>

	<h4 class='swf-title'>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2008/10/16/urban-paper-25-designer-toys-to-cut-out-and-build/" title="Urban Paper: 25 Designer Toys to Cut Out and Build (October 16, 2008)">Urban Paper: 25 Designer Toys to Cut Out and Build</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/08/05/urban-paper-show-lo-slungg/" title="Urban paper show &#8211; Lo Slungg (August 5, 2009)">Urban paper show &#8211; Lo Slungg</a> (5)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/09/23/urban-paper-in-kansas-city/" title="Urban Paper in Kansas City (September 23, 2009)">Urban Paper in Kansas City</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/07/27/subwalk-urban-paper-book-launch-and-papertoy-art-show/" title="Subwalk &#8211; Urban Paper: book launch and papertoy art show (July 27, 2009)">Subwalk &#8211; Urban Paper: book launch and papertoy art show</a> (1)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2010/06/01/straat-papier-holland-klik-workshop-promo/" title="Straat Papier Holland Klik &#8211; Workshop promo (June 1, 2010)">Straat Papier Holland Klik &#8211; Workshop promo</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2008/11/12/urban-papercraft-marshall-alexander/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Urban papercraft: Jins Studio22</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2008/09/08/urban-papercraft-jins-studio22/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2008/09/08/urban-papercraft-jins-studio22/#comments</comments>
		<pubDate>Mon, 08 Sep 2008 09:20:18 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Urban papercraft]]></category>
		<category><![CDATA[Blank template]]></category>
		<category><![CDATA[Blank Version]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[free version]]></category>
		<category><![CDATA[Paper Model]]></category>
		<category><![CDATA[Papercraft]]></category>
		<category><![CDATA[papermodel]]></category>
		<category><![CDATA[PaperToy]]></category>
		<category><![CDATA[Urban]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/?p=398</guid>
		<description><![CDATA[This is a strange entry in the Urban papercraft series: jins studio22cool pet rangeland paper model and toy design I normally would write about this project: you can adopt a papermodel for the right amount of cash. Especially the fact that you have to pay for a papermodel is something that I don&#8217;t like, but [...]]]></description>
			<content:encoded><![CDATA[<p>This is a strange entry in the Urban papercraft series:<br />
<strong><a href="http://www.jins-studio22.com/english/home.htm" alt"" >jins studio22</a></strong>cool pet rangeland <em>paper model and toy design</em></p>
<p>I normally would write about this project: you can adopt a papermodel for the right amount of cash. Especially the fact that you have to pay for a papermodel is something that I don&#8217;t like, but there is are free models, and a blank version&#8230;</p>
<div class='float:left;align:top;' width='100%'>
<img src="http://www.jins-studio22.com/pub_image/download/nian/01.jpg" alt="" /><img src="http://www.jins-studio22.com/pub_image/download/nian/02.jpg" alt="" />
</div>
<p>Here is the free version in the <a href="http://www.jins-studio22.com/english/download.htm">download</a> section</p>
<p>Here the examples:<br />
<img src="http://www.jins-studio22.com/pub_image/download/list/jeans_image.jpg" alt="Jeans" /><img src="http://www.jins-studio22.com/pub_image/download/list/pumpkin_image.jpg" alt="Pumpkin" /><img src="http://www.jins-studio22.com/pub_image/download/list/skeletonA_image.jpg" alt="Skeleton A" /><img src="http://www.jins-studio22.com/pub_image/download/list/skeletonB_image.jpg" alt="Skeleton B" /><img src="http://www.jins-studio22.com/pub_image/download/list/xmasA_image.jpg" alt="XMas A" /><img src="http://www.jins-studio22.com/pub_image/download/list/xmasB_image.jpg" alt="XMas B" /><img src="http://www.jins-studio22.com/pub_image/download/list/xmasC_image.jpg" alt="XMas C" /><img src="http://www.jins-studio22.com/pub_image/download/list/sakura_image.jpg" alt="Sakura" /><br />
and my personal favorite <strong>Nian</strong>:<br />
<img src="http://www.jins-studio22.com/pub_image/download/list/nian_image.jpg" alt="Nian" /></p>
<p>and of course a blank template named P.I.Y.:<br />
<img src="http://www.jins-studio22.com/pub_image/download/list/piy_image.jpg" alt="P.I.Y." /></p>
<p> <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>[via <a href="http://paperkraft.blogspot.com/2008/02/designer-papercraft-toy-series-ii.html">paperkraft.blogspot.com</a>]</p>

	<h4 class='swf-title'>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/07/02/wip-working-title-flowboy/" title="WIP working title flowboy (July 2, 2009)">WIP working title flowboy</a> (5)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2010/03/31/what-about-svg-files/" title="What about SVG files? (March 31, 2010)">What about SVG files?</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/09/10/urban-paper-tokyo-show/" title="Urban Paper Tokyo Show (September 10, 2009)">Urban Paper Tokyo Show</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2006/05/20/slideshow-v10/" title="SlideShow v1.0 (May 20, 2006)">SlideShow v1.0</a> (1)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2010/07/21/papertoys-monsters/" title="Papertoys Monsters (July 21, 2010)">Papertoys Monsters</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2008/09/08/urban-papercraft-jins-studio22/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Urban papercraft: Macula</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2008/04/12/urban-papercraft-macula/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2008/04/12/urban-papercraft-macula/#comments</comments>
		<pubDate>Sat, 12 Apr 2008 00:00:34 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Urban papercraft]]></category>
		<category><![CDATA[Blank Version]]></category>
		<category><![CDATA[Custom]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Papercraft]]></category>
		<category><![CDATA[PaperToy]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/?p=396</guid>
		<description><![CDATA[Another artist in the PaperToy book created by Matt Hawkins is Macula Macula = Christopher Bonnette and he has a fascination for mythology and folklore. Inspired by these myths/folklore, he create some paintings: But he created not only paintings but also a paperToy series named: Squealer This model is called Krampus: There are different kind [...]]]></description>
			<content:encoded><![CDATA[<p>Another artist in the <a href="http://www.matthijskamstra.nl/blog/index.php/2008/01/02/paper-toy-book-preview/">PaperToy book created by Matt Hawkins</a> is <a href="http://www.macula.tv/main.htm">Macula</a></p>
<p>Macula = <a href="http://www.macula.tv/bio_set.htm">Christopher Bonnette</a> and he has a fascination for mythology and folklore.<br />
Inspired by these myths/folklore, he create some paintings:<br />
<img src="http://www.macula.tv/gallery/Illustration/gallery/krampus/small.jpg" alt="Krampus Painting" /></p>
<p>But he created not only paintings but also a paperToy series named: <strong>Squealer</strong><br />
This model is called <strong>Krampus</strong>:<br />
<img src="http://www.macula.tv/downloads/papertoys/gallery/krampus/small.jpg" alt="Krampus"  /></p>
<p>There are different kind of skins:</p>
<div class='float:left'><img src="http://www.macula.tv/downloads/papertoys/gallery/krampus/small.jpg" alt="Krampus" width="100px" /><img src="http://www.macula.tv/downloads/papertoys/gallery/santa/small.jpg" alt="Krampus" width="100px" /><img src="http://www.macula.tv/downloads/papertoys/gallery/swine/small.jpg" alt="Krampus" width="100px" /><img src="http://www.macula.tv/downloads/papertoys/gallery/vikingdwarf/small.jpg" alt="Krampus" width="100px" /></div>
<p><em>(you can&#8217;t click on these images and download: visit the <a href="http://www.macula.tv/downloads/papertoys/gallery/squealer/gallery.htm">site</a> yourself)</em></p>
<p>But has created some other models to:</p>
<div class='float:left'><img src="http://www.macula.tv/downloads/papertoys/gallery/tikibox/small.jpg" alt="tikibox"  width="100px"/><img src="http://www.macula.tv/downloads/papertoys/gallery/yeti/small.jpg" alt="yeti"  width="100px"/></div>
<p>You can see the complete <strong>Squealer</strong> series in the <a href="http://www.macula.tv/downloads/papertoys/gallery/squealer/gallery.htm">Squealer gallery</a> (of view <a href="http://www.macula.tv/downloads/papertoys/gallery/krampus/main.htm">Krampus directly</a>).</p>
<p>And there is also a blank version to customize:<br />
<a href="http://www.macula.tv/downloads/papertoys/gallery/squealer/squealer%20blank.pdf"><img src="http://www.macula.tv/downloads/papertoys/gallery/squealer/small.jpg" alt="squealer" /></a></p>
<p>Just visit the site and click on the blank squealer, or follow this <a href="http://www.macula.tv/downloads/papertoys/gallery/squealer/gallery.htm">link</a>.<br />
There are also some building instruction.</p>

	<h4 class='swf-title'>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2010/03/31/what-about-svg-files/" title="What about SVG files? (March 31, 2010)">What about SVG files?</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2008/10/16/urban-paper-25-designer-toys-to-cut-out-and-build/" title="Urban Paper: 25 Designer Toys to Cut Out and Build (October 16, 2008)">Urban Paper: 25 Designer Toys to Cut Out and Build</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/08/05/urban-paper-show-lo-slungg/" title="Urban paper show &#8211; Lo Slungg (August 5, 2009)">Urban paper show &#8211; Lo Slungg</a> (5)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/09/23/urban-paper-in-kansas-city/" title="Urban Paper in Kansas City (September 23, 2009)">Urban Paper in Kansas City</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2010/06/01/straat-papier-holland-klik-workshop-promo/" title="Straat Papier Holland Klik &#8211; Workshop promo (June 1, 2010)">Straat Papier Holland Klik &#8211; Workshop promo</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2008/04/12/urban-papercraft-macula/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Urban papercraft: Spiky Baby Deluxe series &#8211; part 2</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2008/03/23/urban-papercraft-spiky-baby-deluxe-series-part-2/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2008/03/23/urban-papercraft-spiky-baby-deluxe-series-part-2/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 21:23:32 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Urban papercraft]]></category>
		<category><![CDATA[deluxe series]]></category>
		<category><![CDATA[Paper Model]]></category>
		<category><![CDATA[Papercraft]]></category>
		<category><![CDATA[Shin Tanaka]]></category>
		<category><![CDATA[toy designers]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/index.php/2008/03/24/urban-papercraft-spiky-baby-deluxe-series-part-2/</guid>
		<description><![CDATA[Update #1: I’m sorry: it seems that the deluxe series is no longer available. Ric pointed out to me that there is an update on the SPIKY BABY DELUXE SERIES from Shin Tanaka: This is a special one, you don&#8217;t want to mis this series: the master himself is giving some new models away in [...]]]></description>
			<content:encoded><![CDATA[<div class="update"><strong>Update #1:</strong> I’m sorry: it seems that the deluxe series is no longer available.</div>
<p><a href="http://www.flickr.com/photos/rizomatik/">Ric</a> <a href="http://www.matthijskamstra.nl/blog/index.php/2008/01/28/urban-papercraft-spiky-baby-deluxe-series/#comment-11218">pointed out</a> to me that there is an update on the SPIKY BABY DELUXE SERIES from <a href="http://www.ohashi-lab.bio.kyutech.ac.jp/~shin/">Shin Tanaka</a>:<br />
<a href="http://www.ohashi-lab.bio.kyutech.ac.jp/~shin/SB_DELUXE/index.html"><img src="http://www.ohashi-lab.bio.kyutech.ac.jp/~shin/SB_DELUXE/pic/EMERGENCY.jpg" alt="SPIKY BABY DELUXE SERIES" width='500px' /></a></p>
<p>This is a special one, you don&#8217;t want to mis this series: the master himself is giving some new models away in this download.<br />
Of course the SPIKY BABY are designed by some very talented designers, and you should check them out (see the links below), but I&#8217;m a fan, and the models Shin makes are really cool.</p>
<p>So lets take a look at this SPIKE BABY custom:</p>
<p>Don&#8217;t know how they are called but the link is called &#8220;SMN&#8221; and the image &#8220;SNKR&#8221; (sneaker?)<br />
<img src="http://www.ohashi-lab.bio.kyutech.ac.jp/~shin/SB_DELUXE/pic/SNKR_M.jpg" alt="???"  width='500px' /></p>
<p>Link and image is called &#8220;TTB&#8221;<br />
<img src="http://www.ohashi-lab.bio.kyutech.ac.jp/~shin/SB_DELUXE/pic/TTB.jpg" alt="???"  width='500px' /></p>
<p>As other SPIKY BABY series you can download all models at random, but I don&#8217;t have the patience to download them all that way.<br />
So I hacked it a little and give you all the links at once:</p>
<div class="update"><strong>Update #2:</strong> I removed the links, they don&#8217;t work: you are too late for the download</div>
<ol>
<li>460 374</li>
<li>akira 385</li>
<li>Akishi Nishida 376</li>
<li>BARON UEDA 126</li>
<li>BOUNCE 965</li>
<li>BOX 026</li>
<li>David Horvath 279</li>
<li>DavidFlores 396</li>
<li>eshimasa 854</li>
<li>gumliens 553</li>
<li>HARIKEN 525</li>
<li>HYPER CORE 128</li>
<li>KAIJIN 339</li>
<li>KAZUHIRO HINO 944</li>
<li>KIMA 962</li>
<li>koraters 204</li>
<li>MOCHIWO 541</li>
<li>mori chack 559</li>
<li>mori chack heavy blood 195</li>
<li>mori chack instinctive 519</li>
<li>NO23 Tomohiro 391</li>
<li>REACH2 828</li>
<li>REACH 609</li>
<li>SHIN 813</li>
<li>T9G 394</li>
<li>Terry 207</li>
<li>TOUMA2 924</li>
<li>TOUMA 107</li>
<li>NEKONOKO 546</li>
<li>CUPCO 1 864</li>
<li>CUPCO 2 956</li>
<li>CUPCO 3 128</li>
<li>CUPCO 4 454</li>
<li>devilrobots 246</li>
<li>MAD 697</li>
<li>DavidFlores blue 769</li>
<li>DavidFlores green 857</li>
<li>MAD BARBARIANS 465</li>
<li>VFDR</li>
<li>TTB</li>
<li>SMN G</li>
<li>SMN P</li>
<li>SMN M</li>
<li>BSHITT 754</li>
</ol>

	<h4 class='swf-title'>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/01/28/shin-tanaka-x-giant-robot-x-scion/" title="Shin Tanaka x Giant Robot x Scion (January 28, 2009)">Shin Tanaka x Giant Robot x Scion</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2010/02/24/puma-statessuedeclyde-urban-paper-sneaker-part2/" title="PUMA – States/Suede/Clyde – urban paper sneaker &#8211; part2 (February 24, 2010)">PUMA – States/Suede/Clyde – urban paper sneaker &#8211; part2</a> (5)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2010/01/20/puma-first-round-urban-paper-sneaker/" title="PUMA &#8211; First Round &#8211; urban paper sneaker (January 20, 2010)">PUMA &#8211; First Round &#8211; urban paper sneaker</a> (41)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/04/22/pre-post-about-urban-paper-toy-tutorials/" title="Pre-post about Urban Paper Toy tutorials (April 22, 2009)">Pre-post about Urban Paper Toy tutorials</a> (1)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/07/08/papertoy-design-the-basics/" title="Papertoy design &#8211; The basics (July 8, 2009)">Papertoy design &#8211; The basics</a> (6)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2008/03/23/urban-papercraft-spiky-baby-deluxe-series-part-2/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Urban papercraft: Jerom</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2008/03/12/urban-papercraft-jerom/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2008/03/12/urban-papercraft-jerom/#comments</comments>
		<pubDate>Wed, 12 Mar 2008 09:20:00 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Urban papercraft]]></category>
		<category><![CDATA[Blank template]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[french artist]]></category>
		<category><![CDATA[Matt Hawkins]]></category>
		<category><![CDATA[Papercraft]]></category>
		<category><![CDATA[PaperToy]]></category>
		<category><![CDATA[PaperToys]]></category>
		<category><![CDATA[sketchup]]></category>
		<category><![CDATA[Templates]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/index.php/2008/03/12/urban-papercraft-jerom/</guid>
		<description><![CDATA[One of the artist in the PaperToy book created by Matt Hawkins is Jerom. Jerom is a French artist, which makes it very hard for me to follow his blog: it&#8217;s in French which I don&#8217;t speak&#8230;. But Google is nice to help me a little: translate Jerom&#8217;s blog. Jerom uses his blog not only [...]]]></description>
			<content:encoded><![CDATA[<p>One of the artist in the <a href="http://www.matthijskamstra.nl/blog/index.php/2008/01/02/paper-toy-book-preview/">PaperToy book created by Matt Hawkins</a> is <a href="http://jerom-bd.blogspot.com/">Jerom</a>.</p>
<p>Jerom is a French artist, which makes it very hard for me to follow his blog: it&#8217;s in French which I don&#8217;t speak&#8230;.<br />
But Google is nice to help me a little: <a href="http://www.google.com/translate?u=http%3A%2F%2Fjerom-bd.blogspot.com%2F&#038;langpair=fr%7Cen&#038;hl=en&#038;ie=UTF8">translate Jerom&#8217;s blog</a>.</p>
<p>Jerom uses his blog not only for papercraft (as I do: Flash and Papertoys), so here a link to separate the paperToy on the blog from the rest: <a href="http://jerom-bd.blogspot.com/search/label/papertoy?max-results=1000">papertoy</a>.</p>
<p>Oke but why am I writing about Jerom? I &#8220;<a href="http://www.matthijskamstra.nl/blog/index.php/2008/03/05/urban-papercraft-papertoys-book-artists/">promised</a>&#8221; to feature all the participating artists of the book by Matt Hawkins on my blog! But Jerom is also part of the <a href="http://www.nicepapertoys.com/profile/Jerom">Nice Paper Toys</a> social network where I also can be found.</p>
<p>The first time I saw work from Jerom I noticed that the template he created where very simple, with cool designs.<br />
For example:<br />
<img src="http://bp2.blogger.com/_vtj7vl9wBzM/RmynoL0EJgI/AAAAAAAAADs/7ZySIZPTb0U/s1600-h/sushibox.jpg" alt="" /><br />
<img src="http://bp0.blogger.com/_vtj7vl9wBzM/RpDwLaI9EcI/AAAAAAAAAJI/4Mu69BFQzQk/s400/Papertoy_Kobal.jpg" alt="" /><br />
<img src="http://bp0.blogger.com/_vtj7vl9wBzM/RrJeyf9nA3I/AAAAAAAAAKo/U-3nS0qgmi8/s400/Paper_MrLombric.jpg" alt="" /></p>
<p>But recently he started a experiment with <a href="http://sketchup.google.com/index.html">Google Sketchup </a>and <a href="http://www.tamasoft.co.jp/pepakura-en/">Pepakura</a> (read my <a href="http://www.matthijskamstra.nl/blog/index.php/2007/03/21/how-to-create-your-own-papercraft/">tutorial about creating papermodels</a> with these 2) which are very cool.</p>
<p><a href="http://www.matthijskamstra.nl/blog/index.php/2007/01/03/urban-papercraft-definition-of-urban-papercraft/">Technical I&#8217;m cheating</a>: there are no download templates, or blank templates of these models (at the time of writing this post), but I&#8217;m guessing that there will be (in the nearby future).</p>
<p>There are 3 models which can be found <a href="http://jerom-bd.blogspot.com/2008/03/diablotin-pingouin-ou-kappa.html">here</a> (or <a href="http://www.nicepapertoys.com/profiles/blog/show?id=1905839%3ABlogPost%3A9363">read the Nice Paper Toys post from Jerom</a>).</p>
<p>And I&#8217;m only showing the coolest:<br />
<strong>Diabolito</strong><br />
<img src="http://bp1.blogger.com/_vtj7vl9wBzM/R8da_XBHGvI/AAAAAAAABWc/7N8w-8MOUWs/s320/diabolito+preview.gif" alt="diabolito" /></p>
<p>Just check the rest on <a href="http://jerom-bd.blogspot.com/">Jerom&#8217;s blog</a></p>

	<h4 class='swf-title'>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2010/03/31/what-about-svg-files/" title="What about SVG files? (March 31, 2010)">What about SVG files?</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/08/05/urban-paper-show-lo-slungg/" title="Urban paper show &#8211; Lo Slungg (August 5, 2009)">Urban paper show &#8211; Lo Slungg</a> (5)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2010/06/01/straat-papier-holland-klik-workshop-promo/" title="Straat Papier Holland Klik &#8211; Workshop promo (June 1, 2010)">Straat Papier Holland Klik &#8211; Workshop promo</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2006/05/20/slideshow-v10/" title="SlideShow v1.0 (May 20, 2006)">SlideShow v1.0</a> (1)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2010/07/28/papertoy-diamond-ring/" title="Papertoy diamond ring (July 28, 2010)">Papertoy diamond ring</a> (2)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2008/03/12/urban-papercraft-jerom/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Urban papercraft: PaperToys book Artists</title>
		<link>http://www.matthijskamstra.nl/blog/index.php/2008/03/05/urban-papercraft-papertoys-book-artists/</link>
		<comments>http://www.matthijskamstra.nl/blog/index.php/2008/03/05/urban-papercraft-papertoys-book-artists/#comments</comments>
		<pubDate>Wed, 05 Mar 2008 08:02:47 +0000</pubDate>
		<dc:creator>Matthijs Kamstra</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Urban papercraft]]></category>
		<category><![CDATA[3 eyed bear]]></category>
		<category><![CDATA[Blank template]]></category>
		<category><![CDATA[E440]]></category>
		<category><![CDATA[Grumm]]></category>
		<category><![CDATA[Illectronics]]></category>
		<category><![CDATA[Jonny Chiba]]></category>
		<category><![CDATA[Ken Munk]]></category>
		<category><![CDATA[lou lou]]></category>
		<category><![CDATA[Marshall Alexander]]></category>
		<category><![CDATA[Matt Hawkins]]></category>
		<category><![CDATA[Papercraft]]></category>
		<category><![CDATA[PaperToy]]></category>
		<category><![CDATA[PaperToys]]></category>
		<category><![CDATA[Phil]]></category>
		<category><![CDATA[Shin Tanaka]]></category>
		<category><![CDATA[Sizza]]></category>
		<category><![CDATA[Sjors Trimbach]]></category>
		<category><![CDATA[toy designers]]></category>

		<guid isPermaLink="false">http://www.matthijskamstra.nl/blog/index.php/2008/03/05/urban-papercraft-papertoys-book-artists/</guid>
		<description><![CDATA[Update #1: I have written a post about Jerom Update #2: Read about Macula I have written about the paperToys book from Matt Hawkins before: it&#8217;s a book about the most talented paperToy designers in the world! (and I&#8217;m part of that group ) Because the list is so impressive I should write about these [...]]]></description>
			<content:encoded><![CDATA[<div class="update"><strong>Update #1:</strong> I have written a post about <a href="http://www.matthijskamstra.nl/blog/index.php/2008/03/12/urban-papercraft-jerom/">Jerom</a></div>
<div class="update"><strong>Update #2:</strong> Read about <a href="http://www.matthijskamstra.nl/blog/index.php/2008/04/12/urban-papercraft-maculaurban-papercraft-macula/" class="broken_link">Macula</a></div>
<p>I have written about the <a href="http://www.matthijskamstra.nl/blog/index.php/2008/01/02/paper-toy-book-preview/">paperToys book from Matt Hawkins</a> before: it&#8217;s a book about the most talented paperToy designers in the world!</p>
<p><em>(and I&#8217;m part of that group <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )</em></p>
<p>Because the list is so impressive I should write about these people&#8230;..<br />
And I already did that: a lot of these paperToy designers are part of my <a href="http://www.matthijskamstra.nl/blog/index.php/category/design/urban-papercraft/">Urban papercraft series</a></p>
<p>But there are some where I will not write about: not because they are not talented, but they don&#8217;t meet the requirements for my <a href="http://www.matthijskamstra.nl/blog/index.php/2007/01/03/urban-papercraft-definition-of-urban-papercraft/">definition of Urban Papercraft</a>. So I hope I don&#8217;t offend someone, but this group of designers will be striked out (<strike>like this</strike>)</p>
<ol>
<li><a href="http://shin.co.nr/">Shin Tanaka</a> &#8212; <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://www.matthijskamstra.nl/blog/?s=shin+tanaka&#038;searchsubmit=Find">read my posts</a> yes, wrote about him more then once&#8230;</li>
<li><a href="http://www.3eyedbear.com">3eyed Bear</a> &#8212; <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://www.matthijskamstra.nl/blog/index.php/2007/11/07/urban-papercraft-3eyedbear/">read my post</a></li>
<li><a href="http://www.bentheillustrator.com/speakerdog_index.html">Speaker Dog</a> &#8212; <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://www.matthijskamstra.nl/blog/index.php/2007/01/31/urban-papercraft-speakerdog/">read my post</a></li>
<li><a href="http://www.toypaper.co.uk/">Toypaper</a> &#8212; <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://www.matthijskamstra.nl/blog/index.php/2007/03/07/urban-papercraft-toypaper/">read my post</a> I love papercraft/Flash</li>
<li><a href="http://www.sjorstrimbach.com">Sjors Trimbach</a> &#8212; <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://www.matthijskamstra.nl/blog/index.php/2006/10/11/urban-papercraft-sjors-trimbach/">read my post</a> one of the first paperToy designers a wrote about.</li>
<li><a href="http://www.antlor.net/">Ken Munk</a> &#8212; <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://www.matthijskamstra.nl/blog/index.php/2006/10/25/urban-papercraft-ken-munk/">read my post</a> I really like the idea of hunting trophies </li>
<li><strike><a  href="http://carlogiovani.com/">Carlo Giovani</a></strike> &#8212; <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  very talented though</li>
<li><a href="http://alle440.blog.com/">E440</a> &#8212; <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://www.matthijskamstra.nl/blog/index.php/2007/05/30/urban-papercraft-e440-squirrels/">read my post</a></li>
<li><a  href="http://www.illectronics.com/work/misc/misc.html">Illectronics</a> &#8212; <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://www.matthijskamstra.nl/blog/index.php/2007/04/18/urban-papercraft-crossville/">read my post</a></li>
<li><a href="http://www.jonnychiba.blogspot.com/">Jonny Chiba</a> &#8212; <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://www.matthijskamstra.nl/blog/index.php/2007/10/17/urban-papercraft-chiba/trackback/">read my post</a></li>
<li><a href="http://www.myspace.com/philtoys">PHILL</a> &#8212; <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://www.matthijskamstra.nl/blog/index.php/2007/07/28/urban-papercraft-phil-toyz/">read my post</a></li>
<li><a href="http://www.marshallalexander.net/">Marshall Alexander</a></li>
<li><a href="http://www.nicebunny.com/">Nice Bunny</a> &#8212; <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://www.matthijskamstra.nl/blog/index.php/2008/02/13/urban-papercraft-nice-bunny/">read my post</a> very recently</li>
<li><a href="http://www.nickknite.com/blog/">SIZZA</a> &#8212; <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <a href="http://www.matthijskamstra.nl/blog/index.php/2007/10/03/urban-papercraft-sizza/">read my post</a></li>
<li><a href="http://www.100loading.com/">P.P. Bear 100% loading </a></li>
<li><a href="http://think.bigchief.it/toys">Big Chief</a></li>
<li><strike><a href="http://www.echslectir.com/loulou/">Lou Lou</a></strike></li>
<li><a href="http://youdontseeus.blogspot.com/">Bryan Rollins</a></li>
<li><a href="http://www.flickr.com/photos/macula1/sets/72157603506573129/">Christopher Bonnette </a>  &#8212; <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <strong>Update #2:</strong> <a href="http://www.matthijskamstra.nl/blog/index.php/2008/04/12/urban-papercraft-maculaurban-papercraft-macula/" class="broken_link">read my post</a></li>
<li><a href="http://www.matthijskamstra.nl/blog/index.php/grumm/">Grumm</a> &#8212; nice dude! <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  </li>
<li><a href="http://www.flickr.com/photos/11176587@N06/sets/72157603321627858/">Jerom</a> &#8212; <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  <strong>Update #1:</strong> <a href="http://www.matthijskamstra.nl/blog/index.php/2008/03/12/urban-papercraft-jerom/">read my post</a></li>
<li><strike><a href="http://burlabox.altervista.org/">Burlabox</a></strike></li>
<li><strike><a href="http://rommy.kamimodel.com/index_e.html">Rommy</a></strike> very, very, very cute, but no blank template</li>
<li><strike><a href="http://cubotoy.blogspot.com/">Cubotoy</a></strike> &#8212; very beautyfull, can&#8217;t find blank template, pitty <img src='http://www.matthijskamstra.nl/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  </li>
<li><a  href="http://www.custompapertoys.com">Matt Hawkins</a></li>
</ol>
<p>I see I have my work cut out for me&#8230;.</p>

	<h4 class='swf-title'>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2010/03/31/what-about-svg-files/" title="What about SVG files? (March 31, 2010)">What about SVG files?</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2008/01/16/son-of-a-grumm-part-2/" title="Son of a Grumm &#8211; part 2 (January 16, 2008)">Son of a Grumm &#8211; part 2</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2009/01/28/shin-tanaka-x-giant-robot-x-scion/" title="Shin Tanaka x Giant Robot x Scion (January 28, 2009)">Shin Tanaka x Giant Robot x Scion</a> (0)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2010/07/28/papertoy-diamond-ring/" title="Papertoy diamond ring (July 28, 2010)">Papertoy diamond ring</a> (2)</li>
	<li><a href="http://www.matthijskamstra.nl/blog/index.php/2010/04/28/papertoy-bizz-part-3/" title="Papertoy bizz &#8211; part 3 (April 28, 2010)">Papertoy bizz &#8211; part 3</a> (0)</li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://www.matthijskamstra.nl/blog/index.php/2008/03/05/urban-papercraft-papertoys-book-artists/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
