<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Maciej.Matyjas</title>
	<atom:link href="http://maciejmatyjas.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://maciejmatyjas.com</link>
	<description>Software &#38; Sneakers</description>
	<lastBuildDate>Thu, 05 Apr 2012 13:39:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='maciejmatyjas.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Maciej.Matyjas</title>
		<link>http://maciejmatyjas.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://maciejmatyjas.com/osd.xml" title="Maciej.Matyjas" />
	<atom:link rel='hub' href='http://maciejmatyjas.com/?pushpress=hub'/>
		<item>
		<title>Testing Blocking Messages with Akka&#8217;s TestKit</title>
		<link>http://maciejmatyjas.com/2012/02/23/testing-blocking-messages-with-akkas-testkit/</link>
		<comments>http://maciejmatyjas.com/2012/02/23/testing-blocking-messages-with-akkas-testkit/#comments</comments>
		<pubDate>Thu, 23 Feb 2012 14:02:35 +0000</pubDate>
		<dc:creator>matyjas</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Scala]]></category>
		<category><![CDATA[Actor model]]></category>
		<category><![CDATA[Akka]]></category>
		<category><![CDATA[Java Virtual Machine]]></category>

		<guid isPermaLink="false">http://maciejmatyjas.com/?p=600</guid>
		<description><![CDATA[Akka&#8217;s TestKit package is both comprehensive and powerful. It needs to be because some of the properties of the Actor model can make testing awkward. The main culprits are asynchronous events and having no direct access to the internals of &#8230; <a href="http://maciejmatyjas.com/2012/02/23/testing-blocking-messages-with-akkas-testkit/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=600&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/west_point/5485393059/"><img class="alignleft" title="Laura Baranek 11 " src="http://farm6.staticflickr.com/5213/5485393059_d53eb9957b.jpg" alt="Laura Baranek 11 by West Point Public Affairs, on Flickr" width="192" height="134" /></a><a title="Akka" href="http://akka.io/">Akka&#8217;s</a> <a href="http://akka.io/docs/akka/2.0-RC2/scala/testing.html">TestKit</a> package is both comprehensive and powerful. It needs to be because some of the properties of the <a href="http://en.wikipedia.org/wiki/Actor_model">Actor model</a> can make testing awkward. The main culprits are asynchronous events and having no direct access to the internals of an Actor. TestKit addresses both of those issues and makes testing mostly straight forward. Nonetheless, I managed to paint myself into a corner at one point and while this is much harder in the latest version of Akka (2.0-RC2), I still think it is subtle enough to document.<br />
<span id="more-600"></span></p>
<p>The primary mechanism that I use to test my Akka systems is the<a title="Integration Testing with TestKit" href="http://akka.io/docs/akka/2.0-RC2/scala/testing.html#integration-testing-with-testkit"> Integration Testing</a> style of Akka&#8217;s TestKit with <a href="http://www.scalatest.org/">ScalaTest</a>. My approach is to send messages to my Actors and validate the result messages. Here is a basic example:</p>
<p><pre class="brush: scala;">
 &quot;An Events Actor&quot; should &quot;respond to fire and forget messages&quot; in {

      val eventActorRef = system.actorOf(Props[EventsActor])

      eventActorRef ! EventsListQuery(&quot;jboner&quot;,&quot;akka&quot;)
      expectMsgClass( 2 seconds, classOf[List[Event]])
    }
</pre></p>
<p>Everything was good until we needed to add blocking behaviour to support a legacy system. You would think that something like this would work:</p>
<p><pre class="brush: scala;">
ignore should &quot;you would think send and receive eventually would send back a msg&quot; in {

      val eventActorRef = system.actorOf(Props[EventsActor])

      implicit val timeout = Timeout(2 seconds)

      eventActorRef ? EventsListQuery(&quot;jboner&quot;, &quot;akka&quot;)

      expectMsgClass( 2 seconds, classOf[List[Event]])
    }
</pre></p>
<p>But in this case expectMsgClass will never assert true. There are two reasons for this:</p>
<ol>
<li>The Actor under test does in fact reply with a message but that message is received by an anonymous Actor under the covers of the &#8216;ask&#8217; call</li>
<li>The result of the &#8216;ask&#8217; call is actually a <a href="http://en.wikipedia.org/wiki/Futures_and_promises">Future</a> rather than a plain old response</li>
</ol>
<p>The upshot is that you need something like this:</p>
<p><pre class="brush: scala;">
it should &quot;respond indirectly to send and receive messages&quot; in {

      val eventActorRef = system.actorOf(Props[EventsActor])

      implicit val timeout = Timeout(2 seconds)
      val events =
	Await.result(eventActorRef ? EventsListQuery(&quot;jboner&quot;,&quot;akka&quot;),
		     timeout.duration).asInstanceOf[List[Event]]

      events should not be ('empty)
    }
</pre></p>
<p>Originally I ran into this with Akka 1.2 where the API was a little different and I ended up waiting for a message that was never coming until I had to CTRL-c. With 2.0 TestKit forces you to set a timeout for every operation and this works much better. Also the transition from the old !! call to the ? &#8216;ask&#8217; call really clarifies what is going on under the covers and forces you to explicitly work with a Future.</p>
<p>There is a full example on <a href="https://github.com/matyjas/testing-akka">github</a>.</p>
<br />Filed under: <a href='http://maciejmatyjas.com/category/development/'>Development</a>, <a href='http://maciejmatyjas.com/category/programming/'>Programming</a>, <a href='http://maciejmatyjas.com/category/scala/'>Scala</a> Tagged: <a href='http://maciejmatyjas.com/tag/actor-model/'>Actor model</a>, <a href='http://maciejmatyjas.com/tag/akka/'>Akka</a>, <a href='http://maciejmatyjas.com/tag/java-virtual-machine/'>Java Virtual Machine</a>, <a href='http://maciejmatyjas.com/tag/programming/'>Programming</a>, <a href='http://maciejmatyjas.com/tag/scala/'>Scala</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/matyjas.wordpress.com/600/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/matyjas.wordpress.com/600/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/matyjas.wordpress.com/600/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/matyjas.wordpress.com/600/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/matyjas.wordpress.com/600/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/matyjas.wordpress.com/600/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/matyjas.wordpress.com/600/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/matyjas.wordpress.com/600/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/matyjas.wordpress.com/600/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/matyjas.wordpress.com/600/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/matyjas.wordpress.com/600/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/matyjas.wordpress.com/600/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/matyjas.wordpress.com/600/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/matyjas.wordpress.com/600/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=600&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maciejmatyjas.com/2012/02/23/testing-blocking-messages-with-akkas-testkit/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<georss:point>0.000000 0.000000</georss:point>
		<geo:lat>0.000000</geo:lat>
		<geo:long>0.000000</geo:long>
		<media:content url="http://1.gravatar.com/avatar/dc54ca79b9783f89372d4f9e27c1d5fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">matyjas</media:title>
		</media:content>

		<media:content url="http://farm6.staticflickr.com/5213/5485393059_d53eb9957b.jpg" medium="image">
			<media:title type="html">Laura Baranek 11 </media:title>
		</media:content>
	</item>
		<item>
		<title>Good Colors!</title>
		<link>http://maciejmatyjas.com/2012/01/04/good-colors-2/</link>
		<comments>http://maciejmatyjas.com/2012/01/04/good-colors-2/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 09:09:00 +0000</pubDate>
		<dc:creator>matyjas</dc:creator>
				<category><![CDATA[Adidas]]></category>
		<category><![CDATA[Kicks]]></category>
		<category><![CDATA[Sneakers]]></category>

		<guid isPermaLink="false">http://maciejmatyjas.com/?p=249</guid>
		<description><![CDATA[See the full gallery on Posterous Liking these Adidas hi tops. Filed under: Adidas, Kicks, Sneakers<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=583&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class='p_embed p_image_embed'> <img alt="1603901603" height="648" src="http://matyjas.files.wordpress.com/2012/01/1603901603-scaled1000.jpg?w=486&#038;h=648" width="486" /> <img alt="16039016030" height="648" src="http://matyjas.files.wordpress.com/2012/01/16039016030-scaled1000.jpg?w=486&#038;h=648" width="486" />
<div class='p_see_full_gallery'><a href="http://nobobos.com/good-colors">See the full gallery on Posterous</a></div>
</p></div>
</p>
<p>Liking these Adidas hi tops.        </p></div>
<br />Filed under: <a href='http://maciejmatyjas.com/category/sneakers/adidas/'>Adidas</a>, <a href='http://maciejmatyjas.com/category/kicks/'>Kicks</a>, <a href='http://maciejmatyjas.com/category/sneakers/'>Sneakers</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/matyjas.wordpress.com/583/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/matyjas.wordpress.com/583/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/matyjas.wordpress.com/583/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/matyjas.wordpress.com/583/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/matyjas.wordpress.com/583/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/matyjas.wordpress.com/583/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/matyjas.wordpress.com/583/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/matyjas.wordpress.com/583/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/matyjas.wordpress.com/583/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/matyjas.wordpress.com/583/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/matyjas.wordpress.com/583/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/matyjas.wordpress.com/583/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/matyjas.wordpress.com/583/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/matyjas.wordpress.com/583/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=583&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maciejmatyjas.com/2012/01/04/good-colors-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>0.000000 0.000000</georss:point>
		<geo:lat>0.000000</geo:lat>
		<geo:long>0.000000</geo:long>
		<media:content url="http://1.gravatar.com/avatar/dc54ca79b9783f89372d4f9e27c1d5fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">matyjas</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2012/01/1603901603-scaled1000.jpg?w=225" medium="image">
			<media:title type="html">1603901603</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2012/01/16039016030-scaled1000.jpg?w=225" medium="image">
			<media:title type="html">16039016030</media:title>
		</media:content>
	</item>
		<item>
		<title>Designed by the Man in the Shoes</title>
		<link>http://maciejmatyjas.com/2011/11/16/designed-by-the-man-in-the-shoes-2/</link>
		<comments>http://maciejmatyjas.com/2011/11/16/designed-by-the-man-in-the-shoes-2/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 19:17:43 +0000</pubDate>
		<dc:creator>matyjas</dc:creator>
				<category><![CDATA[Nike]]></category>
		<category><![CDATA[Sneakers]]></category>
		<category><![CDATA[Shoe]]></category>

		<guid isPermaLink="false">http://maciejmatyjas.com/2011/11/designed-by-the-man-in-the-shoes/</guid>
		<description><![CDATA[These Nike Blazers are super bad custom jobs designed by the wearer. Filed under: Nike, Sneakers Tagged: Nike, Shoe<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=582&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="posterous_autopost">
<div class="p_embed p_image_embed"><img src="http://matyjas.files.wordpress.com/2011/11/632169151-scaled1000.jpg?w=648&#038;h=388" alt="-632169151" width="648" height="388" /></div>
<p>These Nike Blazers are super bad custom jobs designed by the wearer.</p>
</div>
<br />Filed under: <a href='http://maciejmatyjas.com/category/sneakers/nike/'>Nike</a>, <a href='http://maciejmatyjas.com/category/sneakers/'>Sneakers</a> Tagged: <a href='http://maciejmatyjas.com/tag/nike/'>Nike</a>, <a href='http://maciejmatyjas.com/tag/shoe/'>Shoe</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/matyjas.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/matyjas.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/matyjas.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/matyjas.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/matyjas.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/matyjas.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/matyjas.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/matyjas.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/matyjas.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/matyjas.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/matyjas.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/matyjas.wordpress.com/582/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/matyjas.wordpress.com/582/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/matyjas.wordpress.com/582/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=582&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maciejmatyjas.com/2011/11/16/designed-by-the-man-in-the-shoes-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>0.000000 0.000000</georss:point>
		<geo:lat>0.000000</geo:lat>
		<geo:long>0.000000</geo:long>
		<media:content url="http://1.gravatar.com/avatar/dc54ca79b9783f89372d4f9e27c1d5fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">matyjas</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/11/632169151-scaled1000.jpg?w=300" medium="image">
			<media:title type="html">-632169151</media:title>
		</media:content>
	</item>
		<item>
		<title>Review of #Londroid automated build Meetup</title>
		<link>http://maciejmatyjas.com/2011/11/11/review-of-londroid-automated-build-meetup/</link>
		<comments>http://maciejmatyjas.com/2011/11/11/review-of-londroid-automated-build-meetup/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 11:09:05 +0000</pubDate>
		<dc:creator>matyjas</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Build automation]]></category>
		<category><![CDATA[Build Management]]></category>
		<category><![CDATA[Meetup]]></category>

		<guid isPermaLink="false">http://matyjas.wordpress.com/?p=452</guid>
		<description><![CDATA[Review of Londroid automated build Meetup. Thanks for the positive feedback! BTW: Check the slides and video. Filed under: Development Tagged: Build automation, Build Management, Meetup<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=452&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://wp.me/p196NY-8u">Review of Londroid automated build Meetup</a>.</p>
<p>Thanks for the positive feedback!</p>
<p>BTW: Check the <a href="http://www.slideshare.net/matyjas/distributed-build-services-mippin">slides</a> and <a href="http://skillsmatter.com/podcast/os-mobile-server/build-processes-ci-2833">video</a>.</p>
<br />Filed under: <a href='http://maciejmatyjas.com/category/development/'>Development</a> Tagged: <a href='http://maciejmatyjas.com/tag/build-automation/'>Build automation</a>, <a href='http://maciejmatyjas.com/tag/build-management/'>Build Management</a>, <a href='http://maciejmatyjas.com/tag/meetup/'>Meetup</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/matyjas.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/matyjas.wordpress.com/452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/matyjas.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/matyjas.wordpress.com/452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/matyjas.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/matyjas.wordpress.com/452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/matyjas.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/matyjas.wordpress.com/452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/matyjas.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/matyjas.wordpress.com/452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/matyjas.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/matyjas.wordpress.com/452/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/matyjas.wordpress.com/452/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/matyjas.wordpress.com/452/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=452&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maciejmatyjas.com/2011/11/11/review-of-londroid-automated-build-meetup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>0.000000 0.000000</georss:point>
		<geo:lat>0.000000</geo:lat>
		<geo:long>0.000000</geo:long>
		<media:content url="http://1.gravatar.com/avatar/dc54ca79b9783f89372d4f9e27c1d5fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">matyjas</media:title>
		</media:content>
	</item>
		<item>
		<title>Sneaker Boots</title>
		<link>http://maciejmatyjas.com/2011/09/24/sneaker-boots/</link>
		<comments>http://maciejmatyjas.com/2011/09/24/sneaker-boots/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 21:55:19 +0000</pubDate>
		<dc:creator>matyjas</dc:creator>
				<category><![CDATA[Adidas]]></category>
		<category><![CDATA[Kicks]]></category>
		<category><![CDATA[Sneakers]]></category>
		<category><![CDATA[Leather]]></category>
		<category><![CDATA[Shoelaces]]></category>

		<guid isPermaLink="false">http://matyjas.wordpress.com/2011/09/24/sneaker-boots/</guid>
		<description><![CDATA[Underneath that hard leather and those hiking style laces is a pair of Zx 600s. Somewhere. Filed under: Adidas, Kicks, Sneakers Tagged: Leather, Shoelaces<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=444&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="posterous_autopost">Underneath that hard leather and those hiking style laces is a pair of Zx 600s. Somewhere.</p>
<div class="p_embed p_image_embed"><a href="http://matyjas.files.wordpress.com/2011/09/photo-scaled-1000.jpg"><img src="http://matyjas.files.wordpress.com/2011/09/photo-scaled-1000.jpg?w=895&#038;h=671" alt="Photo" width="895" height="671" /></a></div>
</div>
<br />Filed under: <a href='http://maciejmatyjas.com/category/sneakers/adidas/'>Adidas</a>, <a href='http://maciejmatyjas.com/category/kicks/'>Kicks</a>, <a href='http://maciejmatyjas.com/category/sneakers/'>Sneakers</a> Tagged: <a href='http://maciejmatyjas.com/tag/leather/'>Leather</a>, <a href='http://maciejmatyjas.com/tag/shoelaces/'>Shoelaces</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/matyjas.wordpress.com/444/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/matyjas.wordpress.com/444/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/matyjas.wordpress.com/444/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/matyjas.wordpress.com/444/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/matyjas.wordpress.com/444/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/matyjas.wordpress.com/444/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/matyjas.wordpress.com/444/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/matyjas.wordpress.com/444/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/matyjas.wordpress.com/444/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/matyjas.wordpress.com/444/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/matyjas.wordpress.com/444/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/matyjas.wordpress.com/444/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/matyjas.wordpress.com/444/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/matyjas.wordpress.com/444/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=444&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maciejmatyjas.com/2011/09/24/sneaker-boots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>0.000000 0.000000</georss:point>
		<geo:lat>0.000000</geo:lat>
		<geo:long>0.000000</geo:long>
		<media:content url="http://1.gravatar.com/avatar/dc54ca79b9783f89372d4f9e27c1d5fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">matyjas</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/photo-scaled-1000.jpg?w=300" medium="image">
			<media:title type="html">Photo</media:title>
		</media:content>
	</item>
		<item>
		<title>#CrepeCity &#8211; The London Sneaker Festival</title>
		<link>http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival-2/</link>
		<comments>http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival-2/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 19:03:44 +0000</pubDate>
		<dc:creator>matyjas</dc:creator>
				<category><![CDATA[Sneakers]]></category>
		<category><![CDATA[Athletic shoe]]></category>
		<category><![CDATA[Crepe City]]></category>
		<category><![CDATA[Footwear]]></category>

		<guid isPermaLink="false">http://maciejmatyjas.com/2011/09/crepecity-the-london-sneaker-festival/</guid>
		<description><![CDATA[See the full gallery on Posterous This is the Glastonbury of sneakers and the Reading of kicks. Where footwear goes to see and be seen. This is Crepe City. Some amazing sneakers out today, both on feet and for sale. &#8230; <a href="http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival-2/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=580&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="posterous_autopost">
<div class="p_embed p_image_embed"><img src="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/CcfIvJCuBesqffEBEAGhkCbwJIdkHxojcpcbqEHBjyEgjGCFxzxzqkcHesng/IMG_0033.JPG.scaled1000.jpg" alt="Img_0033" width="1000" height="750" /><a href="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/gHjfuozuwpkIqFFfClAlcpxFHnqHwncgtwqeDnAgJxxneFprsvHChgHxCeCz/IMG_0032.JPG.scaled1000.jpg"><span id="more-580"></span><img src="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/gHjfuozuwpkIqFFfClAlcpxFHnqHwncgtwqeDnAgJxxneFprsvHChgHxCeCz/IMG_0032.JPG.scaled1000.jpg" alt="Img_0032" width="1000" height="750" /></a></p>
<div class="p_see_full_gallery"><a href="http://nobobos.com/crepecity-the-london-sneaker-festival">See the full gallery on Posterous</a></div>
</div>
<div class="p_embed p_image_embed"><a href="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/gDJgEkGkmkAsjgFoyEuxCFfFgvvtibifrgzktghBvgzuqmjnmIvaChFnAfrr/IMG_0035.JPG.scaled1000.jpg"><img src="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/gDJgEkGkmkAsjgFoyEuxCFfFgvvtibifrgzktghBvgzuqmjnmIvaChFnAfrr/IMG_0035.JPG.scaled1000.jpg" alt="Img_0035" width="1000" height="750" /></a></div>
<div class="p_embed p_image_embed"><a href="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/gbyciDpADwtAxpohpsGbiclDoAiwboBJqyuhmvzJHpltHDDnhfamJtEEvbqi/IMG_0032.JPG.scaled1000.jpg"><img src="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/gbyciDpADwtAxpohpsGbiclDoAiwboBJqyuhmvzJHpltHDDnhfamJtEEvbqi/IMG_0032.JPG.scaled1000.jpg" alt="Img_0032" width="1000" height="750" /></a></div>
<div class="p_embed p_image_embed"><a href="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/ipxbuoeEifBmqAADEuIscreCdvIvDiqJlFEdAondnznlrdeconCdlrlGGvtz/IMG_0034.JPG.scaled1000.jpg"><img src="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/ipxbuoeEifBmqAADEuIscreCdvIvDiqJlFEdAondnznlrdeconCdlrlGGvtz/IMG_0034.JPG.scaled1000.jpg" alt="Img_0034" width="1000" height="750" /></a></div>
<div class="p_embed p_image_embed"><a href="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/lEjEuCsqsyAkHejwdFteFDlslwABvujJBbfdotAEaGtsotCmiGzoJlFwolFc/IMG_0036.JPG.scaled1000.jpg"><img src="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/lEjEuCsqsyAkHejwdFteFDlslwABvujJBbfdotAEaGtsotCmiGzoJlFwolFc/IMG_0036.JPG.scaled1000.jpg" alt="Img_0036" width="1000" height="750" /></a></div>
<div class="p_embed p_image_embed"><a href="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/dyjkHerCAtkytegBHFJtFDuGlbsGzpvGHAEarcimhnnHnmumplAJhtornBxw/IMG_0030.JPG.scaled1000.jpg"><img src="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/dyjkHerCAtkytegBHFJtFDuGlbsGzpvGHAEarcimhnnHnmumplAJhtornBxw/IMG_0030.JPG.scaled1000.jpg" alt="Img_0030" width="1000" height="750" /></a></div>
<p>This is the Glastonbury of sneakers and the Reading of kicks. Where footwear goes to see and be seen. This is <a href="http://www.crepe-city.co.uk/">Crepe City</a>.</p>
<p>Some amazing sneakers out today, both on feet and for sale. A few flavors of the LeBron 8 really caught my eye, there was this electric blue and yellow style (see above) as well as a totally psycedelic colorway (for sale). There were perhaps five pairs of Jordan Vs in red suede. I think I saw a pair of David Robinsons. Other notables include</p>
<ul>
<li>Air Trainer 91s</li>
<li>Gel Lyte III in about 5 colorways (for sale)</li>
<li>Adidas teddy bear sneakers</li>
<li>Loads of Jordan 20s (for sale)</li>
</ul>
<p>The Crepe City team was taking photos as well, so I am going to make sure and post a link when those are up.</p>
<p style="font-size:10px;"><a href="http://posterous.com">Posted via email</a> from <a href="http://nobobos.com/crepecity-the-london-sneaker-festival">No Bobos</a></p>
</div>
<br />Filed under: <a href='http://maciejmatyjas.com/category/sneakers/'>Sneakers</a> Tagged: <a href='http://maciejmatyjas.com/tag/athletic-shoe/'>Athletic shoe</a>, <a href='http://maciejmatyjas.com/tag/crepe-city/'>Crepe City</a>, <a href='http://maciejmatyjas.com/tag/footwear/'>Footwear</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/matyjas.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/matyjas.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/matyjas.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/matyjas.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/matyjas.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/matyjas.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/matyjas.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/matyjas.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/matyjas.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/matyjas.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/matyjas.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/matyjas.wordpress.com/580/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/matyjas.wordpress.com/580/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/matyjas.wordpress.com/580/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=580&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc54ca79b9783f89372d4f9e27c1d5fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">matyjas</media:title>
		</media:content>

		<media:content url="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/CcfIvJCuBesqffEBEAGhkCbwJIdkHxojcpcbqEHBjyEgjGCFxzxzqkcHesng/IMG_0033.JPG.scaled1000.jpg" medium="image">
			<media:title type="html">Img_0033</media:title>
		</media:content>

		<media:content url="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/gHjfuozuwpkIqFFfClAlcpxFHnqHwncgtwqeDnAgJxxneFprsvHChgHxCeCz/IMG_0032.JPG.scaled1000.jpg" medium="image">
			<media:title type="html">Img_0032</media:title>
		</media:content>

		<media:content url="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/gDJgEkGkmkAsjgFoyEuxCFfFgvvtibifrgzktghBvgzuqmjnmIvaChFnAfrr/IMG_0035.JPG.scaled1000.jpg" medium="image">
			<media:title type="html">Img_0035</media:title>
		</media:content>

		<media:content url="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/gbyciDpADwtAxpohpsGbiclDoAiwboBJqyuhmvzJHpltHDDnhfamJtEEvbqi/IMG_0032.JPG.scaled1000.jpg" medium="image">
			<media:title type="html">Img_0032</media:title>
		</media:content>

		<media:content url="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/ipxbuoeEifBmqAADEuIscreCdvIvDiqJlFEdAondnznlrdeconCdlrlGGvtz/IMG_0034.JPG.scaled1000.jpg" medium="image">
			<media:title type="html">Img_0034</media:title>
		</media:content>

		<media:content url="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/lEjEuCsqsyAkHejwdFteFDlslwABvujJBbfdotAEaGtsotCmiGzoJlFwolFc/IMG_0036.JPG.scaled1000.jpg" medium="image">
			<media:title type="html">Img_0036</media:title>
		</media:content>

		<media:content url="http://posterous.com/getfile/files.posterous.com/temp-2011-09-18/dyjkHerCAtkytegBHFJtFDuGlbsGzpvGHAEarcimhnnHnmumplAJhtornBxw/IMG_0030.JPG.scaled1000.jpg" medium="image">
			<media:title type="html">Img_0030</media:title>
		</media:content>
	</item>
		<item>
		<title>#CrepeCity &#8211; The London Sneaker Festival</title>
		<link>http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/</link>
		<comments>http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 19:03:41 +0000</pubDate>
		<dc:creator>matyjas</dc:creator>
				<category><![CDATA[Kicks]]></category>

		<guid isPermaLink="false">http://matyjas.wordpress.com/2011/09/18/crepecity-the-london-sneaker-festival/</guid>
		<description><![CDATA[This is the Glastonbury of sneakers and the Reading of kicks. Where footwear goes to see and be seen. This is Crepe City. Some amazing sneakers out today, both on feet and for sale. A few flavors of the LeBron &#8230; <a href="http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=417&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[
<a href='http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/crepecity-the-london-sneaker-festival-2/#main' title='#CrepeCity - The London Sneaker Festival'><img data-attachment-id='419' data-orig-size='1000,750' data-liked='0' width="150" height="112" src="http://matyjas.files.wordpress.com/2011/09/img_0033-scaled1000.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="#CrepeCity - The London Sneaker Festival" title="#CrepeCity - The London Sneaker Festival" /></a>
<a href='http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/crepecity-the-london-sneaker-festival-3/#main' title='#CrepeCity - The London Sneaker Festival'><img data-attachment-id='420' data-orig-size='1000,750' data-liked='0' width="150" height="112" src="http://matyjas.files.wordpress.com/2011/09/img_0032-scaled1000.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="#CrepeCity - The London Sneaker Festival" title="#CrepeCity - The London Sneaker Festival" /></a>
<a href='http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/crepecity-the-london-sneaker-festival-4/#main' title='#CrepeCity - The London Sneaker Festival'><img data-attachment-id='422' data-orig-size='1000,750' data-liked='0' width="150" height="112" src="http://matyjas.files.wordpress.com/2011/09/img_0032-scaled10001.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="#CrepeCity - The London Sneaker Festival" title="#CrepeCity - The London Sneaker Festival" /></a>
<a href='http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/crepecity-the-london-sneaker-festival-5/#main' title='#CrepeCity - The London Sneaker Festival'><img data-attachment-id='423' data-orig-size='1000,750' data-liked='0' width="150" height="112" src="http://matyjas.files.wordpress.com/2011/09/img_0032-scaled100011.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="#CrepeCity - The London Sneaker Festival" title="#CrepeCity - The London Sneaker Festival" /></a>
<a href='http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/crepecity-the-london-sneaker-festival-6/#main' title='#CrepeCity - The London Sneaker Festival'><img data-attachment-id='424' data-orig-size='1000,750' data-liked='0' width="150" height="112" src="http://matyjas.files.wordpress.com/2011/09/img_0034-scaled10001.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="#CrepeCity - The London Sneaker Festival" title="#CrepeCity - The London Sneaker Festival" /></a>
<a href='http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/crepecity-the-london-sneaker-festival-7/#main' title='#CrepeCity - The London Sneaker Festival'><img data-attachment-id='425' data-orig-size='1000,750' data-liked='0' width="150" height="112" src="http://matyjas.files.wordpress.com/2011/09/img_0034-scaled1000.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="#CrepeCity - The London Sneaker Festival" title="#CrepeCity - The London Sneaker Festival" /></a>
<a href='http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/crepecity-the-london-sneaker-festival-7/#main' title='#CrepeCity - The London Sneaker Festival'><img data-attachment-id='426' data-orig-size='1000,750' data-liked='0' width="150" height="112" src="http://matyjas.files.wordpress.com/2011/09/img_0035-scaled1000.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="#CrepeCity - The London Sneaker Festival" title="#CrepeCity - The London Sneaker Festival" /></a>
<a href='http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/crepecity-the-london-sneaker-festival-8/#main' title='#CrepeCity - The London Sneaker Festival'><img data-attachment-id='427' data-orig-size='1000,750' data-liked='0' width="150" height="112" src="http://matyjas.files.wordpress.com/2011/09/img_0036-scaled10001.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="#CrepeCity - The London Sneaker Festival" title="#CrepeCity - The London Sneaker Festival" /></a>
<a href='http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/crepecity-the-london-sneaker-festival-9/#main' title='#CrepeCity - The London Sneaker Festival'><img data-attachment-id='428' data-orig-size='1000,750' data-liked='0' width="150" height="112" src="http://matyjas.files.wordpress.com/2011/09/img_0036-scaled1000.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="#CrepeCity - The London Sneaker Festival" title="#CrepeCity - The London Sneaker Festival" /></a>
<a href='http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/crepecity-the-london-sneaker-festival-10/#main' title='#CrepeCity - The London Sneaker Festival'><img data-attachment-id='429' data-orig-size='1000,750' data-liked='0' width="150" height="112" src="http://matyjas.files.wordpress.com/2011/09/img_0032-scaled10002.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="#CrepeCity - The London Sneaker Festival" title="#CrepeCity - The London Sneaker Festival" /></a>
<a href='http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/crepecity-the-london-sneaker-festival-11/#main' title='#CrepeCity - The London Sneaker Festival'><img data-attachment-id='430' data-orig-size='1000,750' data-liked='0' width="150" height="112" src="http://matyjas.files.wordpress.com/2011/09/img_0030-scaled1000.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="#CrepeCity - The London Sneaker Festival" title="#CrepeCity - The London Sneaker Festival" /></a>
<a href='http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/crepecity-the-london-sneaker-festival-12/#main' title='#CrepeCity - The London Sneaker Festival'><img data-attachment-id='432' data-orig-size='1000,750' data-liked='0' width="150" height="112" src="http://matyjas.files.wordpress.com/2011/09/img_0034-scaled10002.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="#CrepeCity - The London Sneaker Festival" title="#CrepeCity - The London Sneaker Festival" /></a>
<a href='http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/crepecity-the-london-sneaker-festival-13/#main' title='#CrepeCity - The London Sneaker Festival'><img data-attachment-id='433' data-orig-size='1000,750' data-liked='0' width="150" height="112" src="http://matyjas.files.wordpress.com/2011/09/img_0036-scaled10002.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="#CrepeCity - The London Sneaker Festival" title="#CrepeCity - The London Sneaker Festival" /></a>
<a href='http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/crepecity-the-london-sneaker-festival-14/#main' title='#CrepeCity - The London Sneaker Festival'><img data-attachment-id='435' data-orig-size='1000,750' data-liked='0' width="150" height="112" src="http://matyjas.files.wordpress.com/2011/09/img_0030-scaled10001.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="#CrepeCity - The London Sneaker Festival" title="#CrepeCity - The London Sneaker Festival" /></a>
<a href='http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/crepecity-the-london-sneaker-festival-15/#main' title='#CrepeCity - The London Sneaker Festival'><img data-attachment-id='436' data-orig-size='1000,750' data-liked='0' width="150" height="112" src="http://matyjas.files.wordpress.com/2011/09/img_0030-scaled1000.jpg?w=150&#038;h=112" class="attachment-thumbnail" alt="#CrepeCity - The London Sneaker Festival" title="#CrepeCity - The London Sneaker Festival" /></a>
</div>
<div class='p_embed p_image_embed'> <a href="http://matyjas.files.wordpress.com/2011/09/img_0035-scaled1000.jpg?w=300"><img alt="Img_0035" height="750" src="http://matyjas.files.wordpress.com/2011/09/img_0035-scaled1000.jpg?w=1000&#038;h=750" width="1000" /></a> </div>
<div class='p_embed p_image_embed'> <a href="http://matyjas.files.wordpress.com/2011/09/img_0032-scaled10001.jpg?w=300"><img alt="Img_0032" height="750" src="http://matyjas.files.wordpress.com/2011/09/img_0032-scaled10001.jpg?w=1000&#038;h=750" width="1000" /></a> </div>
<div class='p_embed p_image_embed'> <a href="http://matyjas.files.wordpress.com/2011/09/img_0034-scaled1000.jpg?w=300"><img alt="Img_0034" height="750" src="http://matyjas.files.wordpress.com/2011/09/img_0034-scaled1000.jpg?w=1000&#038;h=750" width="1000" /></a> </div>
<div class='p_embed p_image_embed'> <a href="http://matyjas.files.wordpress.com/2011/09/img_0036-scaled10001.jpg?w=300"><img alt="Img_0036" height="750" src="http://matyjas.files.wordpress.com/2011/09/img_0036-scaled10001.jpg?w=1000&#038;h=750" width="1000" /></a> </div>
<div class='p_embed p_image_embed'> <a href="http://matyjas.files.wordpress.com/2011/09/img_0030-scaled1000.jpg?w=300"><img alt="Img_0030" height="750" src="http://matyjas.files.wordpress.com/2011/09/img_0030-scaled1000.jpg?w=1000&#038;h=750" width="1000" /></a> </div>
<p> This is the Glastonbury of sneakers and the Reading of kicks. Where footwear goes to see and be seen. This is <a href="http://www.crepe-city.co.uk/">Crepe City</a>.</p>
<p>Some amazing sneakers out today, both on feet and for sale. A few flavors of the LeBron 8 really caught my eye, there was this electric blue and yellow style (see above) as well as a totally psycedelic colorway (for sale). There were perhaps five pairs of Jordan Vs in red suede. I think I saw a pair of David Robinsons. Other notables include</p>
<ul>
<li>Air Trainer 91s</li>
<li>Gel Lyte III in about 5 colorways (for sale)</li>
<li>Adidas teddy bear sneakers</li>
<li>Loads of Jordan 20s (for sale)</li>
</ul>
<p>The Crepe City team was taking photos as well, so I am going to make sure and post a link when those are up.</p>
</p></div>
<br />Filed under: <a href='http://maciejmatyjas.com/category/kicks/'>Kicks</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/matyjas.wordpress.com/417/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/matyjas.wordpress.com/417/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/matyjas.wordpress.com/417/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/matyjas.wordpress.com/417/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/matyjas.wordpress.com/417/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/matyjas.wordpress.com/417/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/matyjas.wordpress.com/417/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/matyjas.wordpress.com/417/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/matyjas.wordpress.com/417/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/matyjas.wordpress.com/417/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/matyjas.wordpress.com/417/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/matyjas.wordpress.com/417/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/matyjas.wordpress.com/417/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/matyjas.wordpress.com/417/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=417&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maciejmatyjas.com/2011/09/18/crepecity-the-london-sneaker-festival/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc54ca79b9783f89372d4f9e27c1d5fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">matyjas</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0033-scaled1000.jpg?w=150" medium="image">
			<media:title type="html">#CrepeCity - The London Sneaker Festival</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0032-scaled1000.jpg?w=150" medium="image">
			<media:title type="html">#CrepeCity - The London Sneaker Festival</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0032-scaled10001.jpg?w=150" medium="image">
			<media:title type="html">#CrepeCity - The London Sneaker Festival</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0032-scaled100011.jpg?w=150" medium="image">
			<media:title type="html">#CrepeCity - The London Sneaker Festival</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0034-scaled10001.jpg?w=150" medium="image">
			<media:title type="html">#CrepeCity - The London Sneaker Festival</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0034-scaled1000.jpg?w=150" medium="image">
			<media:title type="html">#CrepeCity - The London Sneaker Festival</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0035-scaled1000.jpg?w=150" medium="image">
			<media:title type="html">#CrepeCity - The London Sneaker Festival</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0036-scaled10001.jpg?w=150" medium="image">
			<media:title type="html">#CrepeCity - The London Sneaker Festival</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0036-scaled1000.jpg?w=150" medium="image">
			<media:title type="html">#CrepeCity - The London Sneaker Festival</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0032-scaled10002.jpg?w=150" medium="image">
			<media:title type="html">#CrepeCity - The London Sneaker Festival</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0030-scaled1000.jpg?w=150" medium="image">
			<media:title type="html">#CrepeCity - The London Sneaker Festival</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0034-scaled10002.jpg?w=150" medium="image">
			<media:title type="html">#CrepeCity - The London Sneaker Festival</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0036-scaled10002.jpg?w=150" medium="image">
			<media:title type="html">#CrepeCity - The London Sneaker Festival</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0030-scaled10001.jpg?w=150" medium="image">
			<media:title type="html">#CrepeCity - The London Sneaker Festival</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0030-scaled1000.jpg?w=150" medium="image">
			<media:title type="html">#CrepeCity - The London Sneaker Festival</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0035-scaled1000.jpg?w=300" medium="image">
			<media:title type="html">Img_0035</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0032-scaled10001.jpg?w=300" medium="image">
			<media:title type="html">Img_0032</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0034-scaled1000.jpg?w=300" medium="image">
			<media:title type="html">Img_0034</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0036-scaled10001.jpg?w=300" medium="image">
			<media:title type="html">Img_0036</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/img_0030-scaled1000.jpg?w=300" medium="image">
			<media:title type="html">Img_0030</media:title>
		</media:content>
	</item>
		<item>
		<title>Tourists have the best sneakers</title>
		<link>http://maciejmatyjas.com/2011/09/16/tourists-have-the-best-sneakers-2/</link>
		<comments>http://maciejmatyjas.com/2011/09/16/tourists-have-the-best-sneakers-2/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 20:54:12 +0000</pubDate>
		<dc:creator>matyjas</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://maciejmatyjas.com/2011/09/tourists-have-the-best-sneakers/</guid>
		<description><![CDATA[Spotted these about to spot Big Ben Posted via email from No Bobos Filed under: Uncategorized<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=579&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class='p_embed p_image_embed'> <a href="http://posterous.com/getfile/files.posterous.com/nobobos/bqdczhqGzmxedloscFgJirvEtcezHuztIsuwcJHCsrwCflfbjkctkHlcadJp/p400.jpg.scaled1000.jpg"><img alt="P400" height="375" src="http://posterous.com/getfile/files.posterous.com/nobobos/bqdczhqGzmxedloscFgJirvEtcezHuztIsuwcJHCsrwCflfbjkctkHlcadJp/p400.jpg.scaled500.jpg" width="500" /></a> </div>
</p>
<p>Spotted these about to spot Big Ben
<p style="font-size:10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://nobobos.com/tourists-have-the-best-sneakers">No Bobos</a>  </p>
</p></div>
<br />Filed under: <a href='http://maciejmatyjas.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/matyjas.wordpress.com/579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/matyjas.wordpress.com/579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/matyjas.wordpress.com/579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/matyjas.wordpress.com/579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/matyjas.wordpress.com/579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/matyjas.wordpress.com/579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/matyjas.wordpress.com/579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/matyjas.wordpress.com/579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/matyjas.wordpress.com/579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/matyjas.wordpress.com/579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/matyjas.wordpress.com/579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/matyjas.wordpress.com/579/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/matyjas.wordpress.com/579/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/matyjas.wordpress.com/579/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=579&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maciejmatyjas.com/2011/09/16/tourists-have-the-best-sneakers-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc54ca79b9783f89372d4f9e27c1d5fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">matyjas</media:title>
		</media:content>

		<media:content url="http://posterous.com/getfile/files.posterous.com/nobobos/bqdczhqGzmxedloscFgJirvEtcezHuztIsuwcJHCsrwCflfbjkctkHlcadJp/p400.jpg.scaled500.jpg" medium="image">
			<media:title type="html">P400</media:title>
		</media:content>
	</item>
		<item>
		<title>Tourists have the best sneakers</title>
		<link>http://maciejmatyjas.com/2011/09/16/tourists-have-the-best-sneakers/</link>
		<comments>http://maciejmatyjas.com/2011/09/16/tourists-have-the-best-sneakers/#comments</comments>
		<pubDate>Fri, 16 Sep 2011 20:54:10 +0000</pubDate>
		<dc:creator>matyjas</dc:creator>
				<category><![CDATA[Kicks]]></category>

		<guid isPermaLink="false">http://matyjas.wordpress.com/2011/09/16/tourists-have-the-best-sneakers/</guid>
		<description><![CDATA[Spotted these about to spot Big Ben Filed under: Kicks<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=409&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class='p_embed p_image_embed'> <a href="http://matyjas.files.wordpress.com/2011/09/p400-scaled1000.jpg"><img alt="P400" height="375" src="http://matyjas.files.wordpress.com/2011/09/p400-scaled1000.jpg?w=500&#038;h=375" width="500" /></a> </div>
</p>
<p>Spotted these about to spot Big Ben        </p></div>
<br />Filed under: <a href='http://maciejmatyjas.com/category/kicks/'>Kicks</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/matyjas.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/matyjas.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/matyjas.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/matyjas.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/matyjas.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/matyjas.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/matyjas.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/matyjas.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/matyjas.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/matyjas.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/matyjas.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/matyjas.wordpress.com/409/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/matyjas.wordpress.com/409/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/matyjas.wordpress.com/409/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=409&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maciejmatyjas.com/2011/09/16/tourists-have-the-best-sneakers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc54ca79b9783f89372d4f9e27c1d5fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">matyjas</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/p400-scaled1000.jpg?w=300" medium="image">
			<media:title type="html">P400</media:title>
		</media:content>
	</item>
		<item>
		<title>Strange Lace Savers</title>
		<link>http://maciejmatyjas.com/2011/09/14/strange-lace-savers-2/</link>
		<comments>http://maciejmatyjas.com/2011/09/14/strange-lace-savers-2/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 06:07:16 +0000</pubDate>
		<dc:creator>matyjas</dc:creator>
				<category><![CDATA[Adidas]]></category>
		<category><![CDATA[Superstars]]></category>

		<guid isPermaLink="false">http://maciejmatyjas.com/2011/09/strange-lace-savers/</guid>
		<description><![CDATA[Have a feeling that these Superstars may be a BMX variant. Posted via email from No Bobos Filed under: Adidas Tagged: Superstars<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=578&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class='p_embed p_image_embed'> <a href="http://posterous.com/getfile/files.posterous.com/nobobos/hzlltkftglpBjepgFBGdtpzlsDepweqrkoxpfhjjJJjracmHfpnsfzjavEgn/p173.jpg.scaled1000.jpg"><img alt="P173" height="667" src="http://posterous.com/getfile/files.posterous.com/nobobos/hzlltkftglpBjepgFBGdtpzlsDepweqrkoxpfhjjJJjracmHfpnsfzjavEgn/p173.jpg.scaled500.jpg" width="500" /></a> </div>
</p>
<p>Have a feeling that these Superstars may be a BMX variant.
<p style="font-size:10px;">  <a href="http://posterous.com">Posted via email</a>   from <a href="http://nobobos.com/strange-lace-savers">No Bobos</a>  </p>
</p></div>
<br />Filed under: <a href='http://maciejmatyjas.com/category/sneakers/adidas/'>Adidas</a> Tagged: <a href='http://maciejmatyjas.com/tag/superstars/'>Superstars</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/matyjas.wordpress.com/578/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/matyjas.wordpress.com/578/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/matyjas.wordpress.com/578/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/matyjas.wordpress.com/578/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/matyjas.wordpress.com/578/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/matyjas.wordpress.com/578/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/matyjas.wordpress.com/578/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/matyjas.wordpress.com/578/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/matyjas.wordpress.com/578/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/matyjas.wordpress.com/578/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/matyjas.wordpress.com/578/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/matyjas.wordpress.com/578/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/matyjas.wordpress.com/578/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/matyjas.wordpress.com/578/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=578&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maciejmatyjas.com/2011/09/14/strange-lace-savers-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc54ca79b9783f89372d4f9e27c1d5fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">matyjas</media:title>
		</media:content>

		<media:content url="http://posterous.com/getfile/files.posterous.com/nobobos/hzlltkftglpBjepgFBGdtpzlsDepweqrkoxpfhjjJJjracmHfpnsfzjavEgn/p173.jpg.scaled500.jpg" medium="image">
			<media:title type="html">P173</media:title>
		</media:content>
	</item>
		<item>
		<title>Strange Lace Savers</title>
		<link>http://maciejmatyjas.com/2011/09/14/strange-lace-savers/</link>
		<comments>http://maciejmatyjas.com/2011/09/14/strange-lace-savers/#comments</comments>
		<pubDate>Wed, 14 Sep 2011 06:07:13 +0000</pubDate>
		<dc:creator>matyjas</dc:creator>
				<category><![CDATA[Kicks]]></category>

		<guid isPermaLink="false">http://matyjas.wordpress.com/2011/09/14/strange-lace-savers/</guid>
		<description><![CDATA[Have a feeling that these Superstars may be a BMX variant. Filed under: Kicks<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=402&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'>
<div class='p_embed p_image_embed'> <a href="http://matyjas.files.wordpress.com/2011/09/p173-scaled1000.jpg"><img alt="P173" height="667" src="http://matyjas.files.wordpress.com/2011/09/p173-scaled1000.jpg?w=500&#038;h=667" width="500" /></a> </div>
</p>
<p>Have a feeling that these Superstars may be a BMX variant.        </p></div>
<br />Filed under: <a href='http://maciejmatyjas.com/category/kicks/'>Kicks</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/matyjas.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/matyjas.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/matyjas.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/matyjas.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/matyjas.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/matyjas.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/matyjas.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/matyjas.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/matyjas.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/matyjas.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/matyjas.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/matyjas.wordpress.com/402/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/matyjas.wordpress.com/402/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/matyjas.wordpress.com/402/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=402&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maciejmatyjas.com/2011/09/14/strange-lace-savers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc54ca79b9783f89372d4f9e27c1d5fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">matyjas</media:title>
		</media:content>

		<media:content url="http://matyjas.files.wordpress.com/2011/09/p173-scaled1000.jpg?w=225" medium="image">
			<media:title type="html">P173</media:title>
		</media:content>
	</item>
		<item>
		<title>Beating the Hourglass: My Foundation for Better Time Management (via Bennis Inc)</title>
		<link>http://maciejmatyjas.com/2011/08/24/beating-the-hourglass-my-foundation-for-better-time-management-via-bennis-inc/</link>
		<comments>http://maciejmatyjas.com/2011/08/24/beating-the-hourglass-my-foundation-for-better-time-management-via-bennis-inc/#comments</comments>
		<pubDate>Wed, 24 Aug 2011 11:12:08 +0000</pubDate>
		<dc:creator>matyjas</dc:creator>
				<category><![CDATA[Productivity]]></category>
		<category><![CDATA[advice]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[career]]></category>
		<category><![CDATA[entrepreneur]]></category>
		<category><![CDATA[entrepreneurship]]></category>
		<category><![CDATA[home]]></category>
		<category><![CDATA[knowledge]]></category>
		<category><![CDATA[life]]></category>
		<category><![CDATA[living]]></category>
		<category><![CDATA[organization]]></category>
		<category><![CDATA[secrets]]></category>
		<category><![CDATA[stress]]></category>
		<category><![CDATA[thoughts]]></category>
		<category><![CDATA[time]]></category>
		<category><![CDATA[time-management]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[wisdom]]></category>
		<category><![CDATA[work]]></category>
		<category><![CDATA[world]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://matyjas.wordpress.com/2011/08/24/beating-the-hourglass-my-foundation-for-better-time-management-via-bennis-inc/</guid>
		<description><![CDATA[That is that good advice! I get asked quite frequently about my “secrets” for time management because apparently I seem to look like I have it all together. This couldn’t be further from the truth and even I have moments &#8230; <a href="http://maciejmatyjas.com/2011/08/24/beating-the-hourglass-my-foundation-for-better-time-management-via-bennis-inc/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=401&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>That is that good advice!<br />
<blockquote cite='http://bennisinc.wordpress.com/?p=116' style='overflow:hidden;'>
<p><a href='http://bennisinc.wordpress.com/?p=116' title='Bennis Inc'><img src="http://bennisinc.files.wordpress.com/2011/08/287940_1928947551108_1464780029_31717789_2645668_o.jpg?w=133&#038;h=100&#038;h=100" width="133" height="100" alt="Beating the Hourglass: My Foundation for Better Time Management" class="align-left thumbnail alignleft left" style="max-width:100%;" /></a> I get asked quite frequently about my “secrets” for time management because apparently I seem to look like I have it all together. This couldn’t be further from the truth and even I have moments of stress, panic and sheer exhaustion. But I have established some guidelines that I regard as my foundation for better time management that I’m more than happy to share. They’re not one-size fits all, but they fit perfectly into my life. [caption id=&#8221;att … <a href='http://bennisinc.wordpress.com/?p=116' title='Bennis Inc'>Read More</a></p>
</blockquote>
<p><small>via <a href='http://bennisinc.wordpress.com/?p=116' title='Bennis Inc'>Bennis Inc</a></small></p>
<br />Filed under: <a href='http://maciejmatyjas.com/category/productivity/'>Productivity</a> Tagged: <a href='http://maciejmatyjas.com/tag/advice/'>advice</a>, <a href='http://maciejmatyjas.com/tag/blog/'>blog</a>, <a href='http://maciejmatyjas.com/tag/business/'>business</a>, <a href='http://maciejmatyjas.com/tag/career/'>career</a>, <a href='http://maciejmatyjas.com/tag/entrepreneur/'>entrepreneur</a>, <a href='http://maciejmatyjas.com/tag/entrepreneurship/'>entrepreneurship</a>, <a href='http://maciejmatyjas.com/tag/home/'>home</a>, <a href='http://maciejmatyjas.com/tag/knowledge/'>knowledge</a>, <a href='http://maciejmatyjas.com/tag/life/'>life</a>, <a href='http://maciejmatyjas.com/tag/living/'>living</a>, <a href='http://maciejmatyjas.com/tag/organization/'>organization</a>, <a href='http://maciejmatyjas.com/tag/secrets/'>secrets</a>, <a href='http://maciejmatyjas.com/tag/stress/'>stress</a>, <a href='http://maciejmatyjas.com/tag/thoughts/'>thoughts</a>, <a href='http://maciejmatyjas.com/tag/time/'>time</a>, <a href='http://maciejmatyjas.com/tag/time-management/'>time-management</a>, <a href='http://maciejmatyjas.com/tag/tips/'>tips</a>, <a href='http://maciejmatyjas.com/tag/tricks/'>tricks</a>, <a href='http://maciejmatyjas.com/tag/wisdom/'>wisdom</a>, <a href='http://maciejmatyjas.com/tag/work/'>work</a>, <a href='http://maciejmatyjas.com/tag/world/'>world</a>, <a href='http://maciejmatyjas.com/tag/writing/'>writing</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/matyjas.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/matyjas.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/matyjas.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/matyjas.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/matyjas.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/matyjas.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/matyjas.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/matyjas.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/matyjas.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/matyjas.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/matyjas.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/matyjas.wordpress.com/401/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/matyjas.wordpress.com/401/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/matyjas.wordpress.com/401/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=401&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maciejmatyjas.com/2011/08/24/beating-the-hourglass-my-foundation-for-better-time-management-via-bennis-inc/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc54ca79b9783f89372d4f9e27c1d5fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">matyjas</media:title>
		</media:content>

		<media:content url="http://bennisinc.files.wordpress.com/2011/08/287940_1928947551108_1464780029_31717789_2645668_o.jpg?w=1024?w=133&#38;h=100" medium="image">
			<media:title type="html">Beating the Hourglass: My Foundation for Better Time Management</media:title>
		</media:content>
	</item>
		<item>
		<title>The Droid Kingdom App Now Live In The Android Market (via the droid kingdom)</title>
		<link>http://maciejmatyjas.com/2011/08/19/the-droid-kingdom-app-now-live-in-the-android-market-via-the-droid-kingdom/</link>
		<comments>http://maciejmatyjas.com/2011/08/19/the-droid-kingdom-app-now-live-in-the-android-market-via-the-droid-kingdom/#comments</comments>
		<pubDate>Fri, 19 Aug 2011 16:22:11 +0000</pubDate>
		<dc:creator>matyjas</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[america]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[app]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[best]]></category>
		<category><![CDATA[blackberry]]></category>
		<category><![CDATA[can]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[droid]]></category>
		<category><![CDATA[europe]]></category>
		<category><![CDATA[for]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[goes]]></category>
		<category><![CDATA[i]]></category>
		<category><![CDATA[in]]></category>
		<category><![CDATA[ireland]]></category>
		<category><![CDATA[kingdom]]></category>
		<category><![CDATA[latest]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[market]]></category>
		<category><![CDATA[mippin]]></category>
		<category><![CDATA[new]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[news-2]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[social]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[the]]></category>
		<category><![CDATA[united-kingdom]]></category>
		<category><![CDATA[users]]></category>
		<category><![CDATA[where]]></category>

		<guid isPermaLink="false">http://matyjas.wordpress.com/2011/08/19/the-droid-kingdom-app-now-live-in-the-android-market-via-the-droid-kingdom/</guid>
		<description><![CDATA[It is good to be the King! Question: What do you get when TDK and Mippin get together? Answer: All sorts of fireworks, nuclear, radioactive goodness that not even the merger of HTC and Beats by Dre or the acquisition &#8230; <a href="http://maciejmatyjas.com/2011/08/19/the-droid-kingdom-app-now-live-in-the-android-market-via-the-droid-kingdom/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=400&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It is good to be the King!<br />
<blockquote cite='http://droidkingdom.com/?p=269' style='overflow:hidden;'>
<p><a href='http://droidkingdom.com/?p=269' title='the droid kingdom'><img src="http://droidkingdom.files.wordpress.com/2011/08/droid_platinum_web.jpg?w=169&#038;h=100&#038;h=100" width="169" height="100" alt="The Droid Kingdom App Now Live In The Android Market" class="align-left thumbnail alignleft left" style="max-width:100%;" /></a> Question: What do you get when TDK and Mippin get together? Answer: All sorts of fireworks, nuclear, radioactive goodness that not even the merger of HTC and Beats by Dre or the acquisition of Motorola by Google could bring. That&#039;s right Mippin has allowed TDK to make its way into the Android market by designing a smooth and slick app with all the latest info on Android related news and applications you need. &quot;If it&#039;s not here, you don&#039;t need it. &#8230; <a href='http://droidkingdom.com/?p=269' title='the droid kingdom'>Read More</a></p>
</blockquote>
<p><small>via <a href='http://droidkingdom.com/?p=269' title='the droid kingdom'>the droid kingdom</a></small></p>
<br />Filed under: <a href='http://maciejmatyjas.com/category/uncategorized/'>Uncategorized</a> Tagged: <a href='http://maciejmatyjas.com/tag/america/'>america</a>, <a href='http://maciejmatyjas.com/tag/android/'>android</a>, <a href='http://maciejmatyjas.com/tag/app/'>app</a>, <a href='http://maciejmatyjas.com/tag/apple/'>apple</a>, <a href='http://maciejmatyjas.com/tag/application/'>application</a>, <a href='http://maciejmatyjas.com/tag/applications/'>applications</a>, <a href='http://maciejmatyjas.com/tag/best/'>best</a>, <a href='http://maciejmatyjas.com/tag/blackberry/'>blackberry</a>, <a href='http://maciejmatyjas.com/tag/can/'>can</a>, <a href='http://maciejmatyjas.com/tag/download/'>download</a>, <a href='http://maciejmatyjas.com/tag/droid/'>droid</a>, <a href='http://maciejmatyjas.com/tag/europe/'>europe</a>, <a href='http://maciejmatyjas.com/tag/for/'>for</a>, <a href='http://maciejmatyjas.com/tag/get/'>get</a>, <a href='http://maciejmatyjas.com/tag/goes/'>goes</a>, <a href='http://maciejmatyjas.com/tag/i/'>i</a>, <a href='http://maciejmatyjas.com/tag/in/'>in</a>, <a href='http://maciejmatyjas.com/tag/ireland/'>ireland</a>, <a href='http://maciejmatyjas.com/tag/kingdom/'>kingdom</a>, <a href='http://maciejmatyjas.com/tag/latest/'>latest</a>, <a href='http://maciejmatyjas.com/tag/live/'>live</a>, <a href='http://maciejmatyjas.com/tag/market/'>market</a>, <a href='http://maciejmatyjas.com/tag/mippin/'>mippin</a>, <a href='http://maciejmatyjas.com/tag/new/'>new</a>, <a href='http://maciejmatyjas.com/tag/news/'>news</a>, <a href='http://maciejmatyjas.com/tag/news-2/'>news-2</a>, <a href='http://maciejmatyjas.com/tag/nokia/'>nokia</a>, <a href='http://maciejmatyjas.com/tag/social/'>social</a>, <a href='http://maciejmatyjas.com/tag/technology/'>technology</a>, <a href='http://maciejmatyjas.com/tag/the/'>the</a>, <a href='http://maciejmatyjas.com/tag/united-kingdom/'>united-kingdom</a>, <a href='http://maciejmatyjas.com/tag/users/'>users</a>, <a href='http://maciejmatyjas.com/tag/where/'>where</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/matyjas.wordpress.com/400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/matyjas.wordpress.com/400/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/matyjas.wordpress.com/400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/matyjas.wordpress.com/400/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/matyjas.wordpress.com/400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/matyjas.wordpress.com/400/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/matyjas.wordpress.com/400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/matyjas.wordpress.com/400/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/matyjas.wordpress.com/400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/matyjas.wordpress.com/400/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/matyjas.wordpress.com/400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/matyjas.wordpress.com/400/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/matyjas.wordpress.com/400/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/matyjas.wordpress.com/400/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=400&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maciejmatyjas.com/2011/08/19/the-droid-kingdom-app-now-live-in-the-android-market-via-the-droid-kingdom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc54ca79b9783f89372d4f9e27c1d5fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">matyjas</media:title>
		</media:content>

		<media:content url="http://droidkingdom.files.wordpress.com/2011/08/droid_platinum_web.jpg?w=404&#38;h=240&#38;h=239?w=169&#38;h=100" medium="image">
			<media:title type="html">The Droid Kingdom App Now Live In The Android Market</media:title>
		</media:content>
	</item>
		<item>
		<title>Looking forward to Beats Rhymes and Life the A Tribe Called Quest Documentary</title>
		<link>http://maciejmatyjas.com/2011/07/16/looking-forward-to-beats-rhymes-and-life-the-a-tribe-called-quest-documentary-2/</link>
		<comments>http://maciejmatyjas.com/2011/07/16/looking-forward-to-beats-rhymes-and-life-the-a-tribe-called-quest-documentary-2/#comments</comments>
		<pubDate>Sat, 16 Jul 2011 20:04:46 +0000</pubDate>
		<dc:creator>matyjas</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://maciejmatyjas.com/2011/07/looking-forward-to-beats-rhymes-and-life-the-a-tribe-called-quest-documentary/</guid>
		<description><![CDATA[http://www.pri.org/arts-entertainment/movies/beats-rhymes-and-life4874.html Filed under: Uncategorized<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=577&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><a href="http://www.pri.org/arts-entertainment/movies/beats-rhymes-and-life4874.html">http://www.pri.org/arts-entertainment/movies/beats-rhymes-and-life4874.html</a>


<!-- No posting client link spam, please. -->


</p></div>
<br />Filed under: <a href='http://maciejmatyjas.com/category/uncategorized/'>Uncategorized</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/matyjas.wordpress.com/577/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/matyjas.wordpress.com/577/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/matyjas.wordpress.com/577/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/matyjas.wordpress.com/577/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/matyjas.wordpress.com/577/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/matyjas.wordpress.com/577/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/matyjas.wordpress.com/577/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/matyjas.wordpress.com/577/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/matyjas.wordpress.com/577/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/matyjas.wordpress.com/577/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/matyjas.wordpress.com/577/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/matyjas.wordpress.com/577/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/matyjas.wordpress.com/577/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/matyjas.wordpress.com/577/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=577&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maciejmatyjas.com/2011/07/16/looking-forward-to-beats-rhymes-and-life-the-a-tribe-called-quest-documentary-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc54ca79b9783f89372d4f9e27c1d5fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">matyjas</media:title>
		</media:content>
	</item>
		<item>
		<title>Looking forward to Beats Rhymes and Life the A Tribe Called Quest Documentary</title>
		<link>http://maciejmatyjas.com/2011/07/16/looking-forward-to-beats-rhymes-and-life-the-a-tribe-called-quest-documentary/</link>
		<comments>http://maciejmatyjas.com/2011/07/16/looking-forward-to-beats-rhymes-and-life-the-a-tribe-called-quest-documentary/#comments</comments>
		<pubDate>Sat, 16 Jul 2011 20:04:54 +0000</pubDate>
		<dc:creator>matyjas</dc:creator>
				<category><![CDATA[Music]]></category>

		<guid isPermaLink="false">http://matyjas.wordpress.com/2011/07/16/looking-forward-to-beats-rhymes-and-life-the-a-tribe-called-quest-documentary/</guid>
		<description><![CDATA[http://www.pri.org/arts-entertainment/movies/beats-rhymes-and-life4874.html Filed under: Music<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=389&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class='posterous_autopost'><a href="http://www.pri.org/arts-entertainment/movies/beats-rhymes-and-life4874.html">http://www.pri.org/arts-entertainment/movies/beats-rhymes-and-life4874.html</a>        </div>
<br />Filed under: <a href='http://maciejmatyjas.com/category/music/'>Music</a>  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/matyjas.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/matyjas.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/matyjas.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/matyjas.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/matyjas.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/matyjas.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/matyjas.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/matyjas.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/matyjas.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/matyjas.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/matyjas.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/matyjas.wordpress.com/389/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/matyjas.wordpress.com/389/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/matyjas.wordpress.com/389/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=maciejmatyjas.com&amp;blog=12689887&amp;post=389&amp;subd=matyjas&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://maciejmatyjas.com/2011/07/16/looking-forward-to-beats-rhymes-and-life-the-a-tribe-called-quest-documentary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dc54ca79b9783f89372d4f9e27c1d5fd?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">matyjas</media:title>
		</media:content>
	</item>
	</channel>
</rss>
