<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>shank &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/shank/</link>
	<description>Feed of posts on WordPress.com tagged "shank"</description>
	<pubDate>Sat, 28 Nov 2009 18:11:51 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[A brief introduction to AppStruct]]></title>
<link>http://blog.gahooa.com/2009/11/21/a-brief-introduction-to-appstruct/</link>
<pubDate>Sat, 21 Nov 2009 05:26:45 +0000</pubDate>
<dc:creator>Jason Garber</dc:creator>
<guid>http://blog.gahooa.com/2009/11/21/a-brief-introduction-to-appstruct/</guid>
<description><![CDATA[Have been very busy at work lately.  We made the decision about a month ago to switch (most|all) new]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Have been very busy at work lately.  We made the decision about a month ago to switch (most&#124;all) new projects over to use Python 3 with Apache, mod_wsgi, and AppStruct.  You may know what the first 3 are, but the 4th??</p>
<p style="padding-left:30px;"><em>Special thanks goes to </em><strong><em>Graham Dumpleton</em></strong><em> behind mod_wsgi, and </em><strong><em>James William Pye</em></strong><em> behind Python&#62;&#62;Postgresql.   They are not involved or affiliated with AppCove or AppStruct (aside from great mailing list support) <strong>BUT</strong> if it were not for them, this framework would not exist.</em></p>
<p>AppStruct is a component of Shank, a meta-framework.  A stand-alone component in it&#8217;s own right, it represents the AppCove approach to web-application development.  Most of it is in planning, but the parts that have materialized are really, really cool.</p>
<p>Briefly, I&#8217;ll cover the two emerging areas of interest:</p>
<h1><strong>AppStruct.WSGI</strong></h1>
<p>This is a very pythonic (in my opinion) web application framework targeted toward Python 3.1 (a challenge in itself at this point).  We really wanted to base new development on Python 3.1+, as well as PostgreSQL using the excellent Python3/PostgreSQL library at <a href="http://python.projects.postgresql.org/">http://python.projects.postgresql.org/</a>.  However, none of the popular frameworks that I am aware of support Python 3, and most (if not all) of them have a lot of baggage I do not want to bring to the party.</p>
<p><a href="http://werkzeug.pocoo.org/">Werkzeug</a> was the most promising, but alas, I could not find Python 3 support for it either.  In fact, I intend to utilize a good bit of code from Werkzeug in finishing off AppStruct.WSGI.  (Don&#8217;t you just love good OSS licences?  AppStruct will be released under one of those also).</p>
<p>HTTP is just not that complicated.  It dosen&#8217;t need bundled up into n layers of indecipherable framework upon framework layers.   It doesn&#8217;t need abstracted to death.  I just needs to be streamlined a bit (with regard to request routing, reading headers, etc&#8230;).</p>
<p>Python is an amazing OO language.  It&#8217;s object model (or data model) is one of (if not the) most well conceived of any similar language, ever.  I want to use that to our advantage&#8230;</p>
<p>Inheritance, including multiple inheritance, has very simple rules in Python.  Want to use that as well.</p>
<p>Wish to provide developers with access to the low level guts they need for 2% of the requests, but not make them do extra work for the 98% of requests.</p>
<p>Speed is of the essence.  Servers are not cheap, and if you can increase your throughput by 5x, then that&#8217;s a lot less servers you need to pay for.</p>
<p><strong>So, how does it work?</strong></p>
<p>Well, those details can wait for another post.  But at this point the library is &#60; 1000 lines of code, and does a lot of interesting things.</p>
<ul>
<li>A fully compliant WSGI application object</li>
<li>1 to 1 request routing to Python packages/modules/classes</li>
<li>All request classes derived from AppStruct.WSGI.Request</li>
</ul>
<p>The application maps requests like <strong>/some/path/here</strong> to objects, like <strong>Project.WSGI.some.path.here</strong>.  If there is a trailing slash, then the application assumes that the class is named Index.  The object that is found is verified to be a subclass of AppStruct.WSGI.Request, and then&#8230;</p>
<p>Wait!  What about security?</p>
<p>Yes, yes, very important.  A couple things to point out.  First, the URLs are passed through a regular expression that ensures that they adhere to only the characters that may be used in valid python identifiers (not starting with _), delimited by &#8220;/&#8221;.  Second, the import and attribute lookup verify that any object (eg class) found is a subclass of the right thing.  And so on and so forth&#8230;</p>
<p>But you may say &#8220;wait, what about my/fancy-shmancy/urls/that-i-am-used-to-seeing?  Ever hear of mod_rewrite?  Yep.  Not trying to re-invent the wheel.  Use apache for what it was made for, not just a dumb request handler.</p>
<p><strong>What about these request objects?</strong></p>
<p>They are quite straightforward.  There are several attributes which represent request data, the environment, query string variables, post variables, and more.  There is a .Response attribute which maps to a very lightweight response object.</p>
<p>Speaking of it &#8212; it has only 4 attributes:<strong> [Status, Header, Iterator, Length]</strong>.  As you see, it&#8217;s pretty low-level-wsgi-stuff.  But the developer would rarely interact with it, other than to call a method like .Response.Redirect(&#8216;http://somewhere-else.com&#8217;, 302)</p>
<p>Once the application finds the class responsible for handling the URL, it simply does this (sans exception catching code):</p>
<pre style="padding-left:30px;">RequestObject = Request(...)</pre>
<pre style="padding-left:30px;">with RequestObject:
   RequestObject.Code()
   RequestObject.Data()</pre>
<pre style="padding-left:30px;">return RequestObject.Response</pre>
<p>Wow, that&#8217;s simple.  Let me point out one more detail.  The default implementation of Data() does this:</p>
<pre style="padding-left:30px;">def Data(self):
   self.Response.Iterator = [self.Text()]
   self.Response.Length = len(self.Response.Iterator[0])</pre>
<p>So the only thing really required of this Request class is to override Text() and return some text?  Yep, that simple.</p>
<p>But typically, you would at some point mixin a template class that would do something like this:</p>
<pre style="padding-left:30px;">class GoodLookingLayout:
   def Text(self):
      return ( 
         """&#60;html&#62;&#60;head&#62;...&#60;/head&#62;&#60;body&#62;&#60;menu&#62;""" +
         self.Menu() +
         """&#60;/menu&#62;&#60;div&#62;""" +
         self.Body() +
         """&#60;/div&#62;&#60;/body&#62;&#60;/html&#62;"""
         )</pre>
<p>And then it would be up to the developer to override Menu and Body (each returning the appropriate content for the page).</p>
<p><strong>Ohh</strong>, you may say.  What about templating engine X?  Well, it didn&#8217;t support Python 3, and I probabally didn&#8217;t want it anyway (for 9 reasons)&#8230;  If it&#8217;s really, really good and fits this structure, drop me a line, please.</p>
<p><strong>What about that Code() method?</strong></p>
<p>Yeah, that&#8217;s the place that any &#8220;logic&#8221; of UI interaction should go.  I&#8217;m not advocating mixing logic and content here, but you could do that if you wanted.  You will find in our code, a seperate package for application business logic and data access that the request classes will call upon.  But again, if you are writing a one page wonder, why go to all the trouble?</p>
<p>The only requirement for the Code() method is that it calls <strong>super().Code()</strong> at the top.  Since the idea is that the class <strong>.Foo.Bar.Baz.Index</strong> will inherit from the class <strong>.Foo.Bar.Index</strong>, this gives you a very flexible point of creating .htaccess style initialization/access-control code in one place.  So in /Admin/Index, you could put a bit of code in Code() which ensures the user is logged in.  This code will be run by all sub-pages, therefore ensuring that access control is maintained.  Relative imports are important for this task.</p>
<pre style="padding-left:30px;">from .. import Index as <span style="color:#ff0000;">PARENT</span>
from AppStruct.WSGI.Util import *</pre>
<pre style="padding-left:30px;">class Index(<span style="color:#ff0000;">PARENT</span>):
   def Code(self):
      super().Code()
      self.Name = self.Post.FirstName + " " + self.Post.LastName
      # some other init stuff
   def Body(self):
      return "Hello there " + HS(self.Name) + "!"</pre>
<p><strong>Summary of AppStruct.WSGI&#8230;</strong></p>
<p>To get up and running with a web-app using this library:</p>
<ol>
<li>A couple mod_wsgi lines in httpd.conf</li>
<li>A .wsgi file that has 1 import and 1 line of code</li>
<li>A request class in a package that matches an expected URI (myproject.wsgi.admin.foo ==  /admin/foo)</li>
</ol>
<p><strong>Speed?</strong></p>
<p>With no database calls, it&#8217;s pushing over 2,000 requests per second on a dev server.  With a couple PostgreSQL calls, it is pushing out ~ 800 per second.</p>
<h1>AppStruct.Database.PostgreSQL</h1>
<p>This is not nearly as deep as the WSGI side of AppStruct, but still really cool.  To start off, I&#8217;d like to say that James William Pye has created an amazing Postgresql connection library in Python 3.  I mean just amazing.  In fact, almost so amazing that I didn&#8217;t want to change it (but then again&#8230;)</p>
<p>What we did here was subclass the <strong>Connection</strong>, <strong>PreparedStatement</strong>, and <strong>Row </strong>classes.  (well, actually replaced the Row class).</p>
<p>Once these were subclassed, we simply added a couple useful features.  Keep in mind that all of the great functionality of the underlying library is retained.</p>
<p><strong>Connection.CachePrepare(SQL)<br />
Connection._PS_Cache</strong></p>
<p>Simply a dictionary of {SQL: PreparedStatementObject} that resides on the connection object.  When you directly or indirectly invoke CachePrepare, it says &#8220;if this SQL is in the cache, return the associated object.  Otherwise, prepare it, cache it, and return it&#8221;.  This approach really simplifies the storing of prepared statement objects in a multi-threaded environment, where there is really no good place to store them (and be thread safe, connection-failure safe, etc&#8230;)</p>
<p><strong>Connection.Value(SQL, *args, **kwargs)<br />
Connection.Row(SQL, *args, **kwargs)</strong></p>
<p><strong></strong>These simple functions take (SQL, *args, **kwargs) and return either a single value or a single row.  They will raise an exception is != 1 row is found.  They make use of CachePrepare(), so you get the performance benefits of prepared statements without the hassle.  More on *args, **kwargs later under PrePrepare()</p>
<p><strong>Connection.ValueList(SQL, *args, **kwargs)<br />
Connection.RowList(SQL, *args, **kwargs)</strong></p>
<p><strong></strong>Same as above, except returns an iterator (or list, not sure) of  zero or more values or rows.</p>
<p><strong>Row class</strong></p>
<p>Simply a dictionary that also supports attribute style access of items.  After evaluating the Tuple that behaves like a mapping, I decided for our needs, a simple dict would be a better representation of a row.</p>
<p><strong>Connection.PrePreprepare(SQL, args, kwargs) -&#62; (SQL, args)</strong></p>
<p>Ok, so what&#8217;s the big deal?  Well, the big deal is that we don&#8217;t like positional parameters.  They are confusing to write, read, analyze, and see what the heck is going on when you get about 30 fields in an insert statement.  Feel free to argue, but maybe I&#8217;m not as young as I once was.</p>
<p>We do like keyword parameters.  But postgresql prepared statement api uses numeric positional parameters.  Not changing that&#8230;</p>
<p>The most simple use case is to pass SQL and keyword arguments.</p>
<pre style="padding-left:30px;">"SELECT a,b,c FROM table WHERE id = $id AND name = $name"
dict(id=100, name='joe')</pre>
<p>It returns</p>
<pre style="padding-left:30px;">"SELECT a,b,c FROM table WHERE id = $1 AND name = $2"
(100, "joe")</pre>
<p>Which is suitable for passing directly into the Connection.prepare() method that came with the underlying library.</p>
<p>I don&#8217;t know about you, but we find this to be very, very useful.</p>
<p>If you pass tuples of (field, value) as positional arguments, then they will replace <strong>[Field]</strong>, <strong>[Value]</strong>, and <strong>[Field=Value]</strong> (in the SQL) with lists of fields, lists of values (eg $1, $2), or lists of field=values (eg name=$1, age=$2).  That really takes the verbosity out of INSERT and UPDATE statements with long field lists.</p>
<h1>Conclusion</h1>
<p>This is just in the early stages, and has a good deal of polishing to be done (especially on the WSGI side).  My purpose here was to introduce you to what you can expect to get with AppStruct, some of the rationale behind it, and that it&#8217;s really not that hard to take the bull by the horns and make software do what you want it to (especially if you use python).</p>
<p>Feel free to comment.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[You want to what?!]]></title>
<link>http://kitschcache.wordpress.com/2009/11/18/you-want-to-what/</link>
<pubDate>Wed, 18 Nov 2009 02:29:40 +0000</pubDate>
<dc:creator>Token Effort</dc:creator>
<guid>http://kitschcache.wordpress.com/2009/11/18/you-want-to-what/</guid>
<description><![CDATA[Please…may I sniff your Klompen Kloggen?  What?  Here, right in front of everyone?  I&#8217;ve got m]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Please…may I sniff your Klompen Kloggen?  What?  Here, right in front of everyone?  I&#8217;ve got my Klompen Kloggen pouched at the moment, but I&#8217;ll take it out and roll it between my fingers, before I firmly massage it into that small bowl of yours.  The shank will need to be necked before you bring it to your lips and inhale deeply, because the stem is still a little moist.  Who would have thought that pipe smoking was so complex?   </p>
<div id="attachment_127" class="wp-caption aligncenter" style="width: 415px"><a href="http://kitschcache.wordpress.com/files/2009/11/klompen1.jpg"><img class="size-full wp-image-127 " title="klompen[1]" src="http://kitschcache.wordpress.com/files/2009/11/klompen1.jpg" alt="" width="405" height="521" /></a><p class="wp-caption-text">She wants my Klompen Kloggen</p></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ Don't touch my dick, don't touch my knife.]]></title>
<link>http://theblogofdishes.wordpress.com/2009/11/17/dont-touch-my-dick-dont-touch-my-knife/</link>
<pubDate>Mon, 16 Nov 2009 18:28:30 +0000</pubDate>
<dc:creator>recipedude</dc:creator>
<guid>http://theblogofdishes.wordpress.com/2009/11/17/dont-touch-my-dick-dont-touch-my-knife/</guid>
<description><![CDATA[The best kitchen investment I ever made were my knives. I purchased the Shun Classic Series 8&#8243;]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The best kitchen investment I ever made were my knives. I purchased the Shun Classic Series</p>
<p>8&#8243; chefs knife  <a href="http://www.kershawknives.com/productdetails.php?id=253&#38;brand=shun">http://www.kershawknives.com/productdetails.php?id=253&#38;brand=shun</a></p>
<p>3 1/2 in. Paring kife  <a href="http://www.kershawknives.com/productdetails.php?id=244&#38;brand=shun">http://www.kershawknives.com/productdetails.php?id=244&#38;brand=shun</a></p>
<p>honing steel   <a href="http://www.cheftools.com/Shun-Classic-Honing-Steel-9-inch/productinfo/12-0884/">http://www.cheftools.com/Shun-Classic-Honing-Steel-9-inch/productinfo/12-0884/</a></p>
<p>I really dont have a need for anything else, actually I could do just fine with only my chef&#8217;s and steel, the steel is a must I use it all the time.</p>
<p><img class="aligncenter size-full wp-image-34" title="shunimage1" src="http://theblogofdishes.wordpress.com/files/2009/11/shunimage1.jpg" alt="shunimage1" width="600" height="193" /></p>
<p>I&#8217;ve used my chef knife almost daily for the last 2 years without a sharpening and the blade is still sharp, although I&#8217;m feeling like it might be ready for one soon.  Im not good with a stone (the only way I&#8217;ll have it sharpened) so I need to find me someone who is a badass with one.</p>
<p>The feel of these knives are amazing but what actually sold me on them, well at least for the chefs knife is their &#8220;D&#8221; shaped handle.  While I am left handed and these knives are designed for the right handed  the unique design molds to my hand perfectly how I hold it, if you are in the market and especially left handed you should check these out.</p>
<p>&#8220;Don&#8217;t touch my dick, don&#8217;t touch my knife.&#8221;<br />
— Anthony Bourdain (Kitchen Confidential: Adventures in the Culinary Underbelly)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[New hip-hop/rap release by Shank]]></title>
<link>http://musrel.wordpress.com/2009/11/13/new-hip-hoprap-release-by-shank/</link>
<pubDate>Fri, 13 Nov 2009 04:18:05 +0000</pubDate>
<dc:creator>moozone</dc:creator>
<guid>http://musrel.wordpress.com/2009/11/13/new-hip-hoprap-release-by-shank/</guid>
<description><![CDATA[&nbsp;King Kong by Shank 2009 (17 tracks, 58:52) hip-hop/rap]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://moozone.com/album/MNID32915029/King_Kong" title="King Kong by Shank"><img src='http://images.musicnet.com/albums/032/915/029/m.jpeg' width='130' height='130' align='left' border='0' style='margin-right:5px;'></a>&#160;<a href="http://moozone.com/album/MNID32915029/King_Kong" title="King Kong by Shank">King Kong</a> by <a href="http://moozone.com/artist/MNID170227/Shank" title="Shank"><b>Shank</b></a></p>
<p>2009 (17 tracks, 58:52)</p>
<p><a href="http://moozone.com/member?qb=tags%3Ahip-hop%2Crap">hip-hop/rap</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Man Shanked at 22nd and Bartlett]]></title>
<link>http://missionmission.wordpress.com/2009/10/27/man-shanked-at-22nd-and-bartlett/</link>
<pubDate>Tue, 27 Oct 2009 17:04:47 +0000</pubDate>
<dc:creator>Kevin Montgomery</dc:creator>
<guid>http://missionmission.wordpress.com/2009/10/27/man-shanked-at-22nd-and-bartlett/</guid>
<description><![CDATA[CBS is all over the news that someone was stabbed at 1am this morning.  I guess the new froyo place ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-8340" title="bear-grylls-knife-1-286" src="http://missionmission.wordpress.com/files/2009/10/bear-grylls-knife-1-286.jpg" alt="bear-grylls-knife-1-286" width="313" height="293" /></p>
<p><a href="http://cbs5.com/local/san.francisco.stabbing.2.1273279.html">CBS is all over the news that someone was stabbed at 1am this morning</a>.  I guess <a href="http://missionmission.wordpress.com/2009/07/19/coming-soon-yotopia/">the new froyo place</a> is not keeping away the crime.  <a href="http://missionmission.wordpress.com/2009/07/19/coming-soon-yotopia/">Whoops</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[In Golf - It's the Little Things that Often Count the Most]]></title>
<link>http://chiroted.wordpress.com/2009/10/16/in-golf-its-the-little-things-that-often-count-the-most/</link>
<pubDate>Fri, 16 Oct 2009 04:16:09 +0000</pubDate>
<dc:creator>Dr Ted Edwards</dc:creator>
<guid>http://chiroted.wordpress.com/2009/10/16/in-golf-its-the-little-things-that-often-count-the-most/</guid>
<description><![CDATA[Over the past few months I&#8217;ve been enjoying a rebirth of my golf swing and thus my game under ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Over the past few months I&#8217;ve been enjoying a rebirth of my golf swing and thus my game under the mentorship and tutelage of <a href="http://www.peakperformancegolfswing.com/free-golf-swing-training-videos/"><span style="text-decoration:underline;"><strong>Don Trahan and his wonderful Peak Performance Golf Swing.</strong></span></a></p>
<p>I now have a set of clubs (Tour Edge &#8211; Wide Soles) that I can hit well from LW to 3i. This has enabled me to improve my GIR stat.</p>
<p>Everything was going along smoothly when all of sudden I couldn&#8217;t make solid contact with the ball. The dreaded Sh&#8230;.&#8217;s appeared. What was I doing wrong? I wondered. I went to the range. No help. I found a practice area where I could hit full 9&#8217;s &#8211; oh no, what the heck is going on?</p>
<p>To go from feeling powerful and in control of my swing and game to this &#8211; oh the emotional  roller coaster ride of golf.</p>
<p>Don Trahan has drilled into me that the problem was most likely to be found in my set up.</p>
<p>Today was my day off and I wanted to play badly. It was a dry, but threatening fall Seattle day. I decided I&#8217;d best go to the range and find out where the balls were going. Oh no! Not that again. I finished the bucket without figuring anything out and decided to go to another range near-by that I felt more comfortable at.</p>
<p>I started off poorly. Wham, I hit a good shot. I checked my set up to see if I could discern what had changed. It was my GRIP! My thumb was rolled over to the right further. A shift of only 1pm to 2pm. A shift from a weak grip to a slightly stronger one.</p>
<p>This tiny, simple change made all the difference in the world. All of a sudden the balls were flying staight and the distances I&#8217;d been used to albeit 5 yrds less due to the colder temperature.</p>
<p>I was really shocked to realize that this minor adjustment could cause shot an improvement. I found myself thinking, &#8220;How can I mark my grips so I&#8217;ll make sure to put my thumb in the right place.&#8221;</p>
<p>Guess Don is right when he says, if you&#8217;re not hitting it well there&#8217;s probably a problem with your grip, stance, or alignment &#8211; your set-up!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Shank - My Future Best. Game. Ever]]></title>
<link>http://dpaddependency.wordpress.com/2009/10/10/shank-my-future-best-game-ever/</link>
<pubDate>Sat, 10 Oct 2009 23:16:24 +0000</pubDate>
<dc:creator>dpaddependency</dc:creator>
<guid>http://dpaddependency.wordpress.com/2009/10/10/shank-my-future-best-game-ever/</guid>
<description><![CDATA[Shank is the second game from Klei, makers of XBLA hit a few years back Eets: Chowdown. They also ha]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignleft" title="shank" src="http://www.britishgaming.co.uk/wp-content/uploads/2009/09/digital_shank.jpg" alt="" width="244" height="216" />Shank is the second game from Klei, makers of XBLA hit a few years back Eets: Chowdown. They also had a hand in N+, also for XBLA. This time around Klei are going down the road of scrolling beat em up and boy are they doing it in style! The amazing graphic novel visuals combined with violence the likes of which would make John Rambo blush to make an action game to beat all others. The game strikes me as the bastard son of Metal Slug and Castle Crashers and that sure makes for a pretty baby!</p>
<p><a href="http://www.youtube.com/watch?v=UgXdG0J_9fI">http://www.youtube.com/watch?v=UgXdG0J_9fI</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[NEW MUSIC VIDEO: Donaeo Ft. Fr3e + More - Don't Shank, Just Skank ]]></title>
<link>http://musicgeek.tv/2009/10/04/new-music-video-donaeo-ft-fr3e-more-dont-shank-just-skank/</link>
<pubDate>Sun, 04 Oct 2009 17:27:11 +0000</pubDate>
<dc:creator>musicgeektv</dc:creator>
<guid>http://musicgeek.tv/2009/10/04/new-music-video-donaeo-ft-fr3e-more-dont-shank-just-skank/</guid>
<description><![CDATA[MG]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/drledtyCuJ8&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/drledtyCuJ8&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p><strong>MG</strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Big SORRRRY]]></title>
<link>http://kittaykat.wordpress.com/2009/09/25/big-sorrrry/</link>
<pubDate>Fri, 25 Sep 2009 12:31:45 +0000</pubDate>
<dc:creator>kittaykat</dc:creator>
<guid>http://kittaykat.wordpress.com/2009/09/25/big-sorrrry/</guid>
<description><![CDATA[I haven&#8217;t updated this blog for weeks! I&#8217;m really sorry. I&#8217;ve been in Germany for ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I haven&#8217;t updated this blog for weeks! I&#8217;m really sorry. I&#8217;ve been in Germany for 2 weeks, then been busy with filming (SHANK &#8211; in cinemas May 2010) and now I&#8217;m preparing myself for my California holiday with my bestie Sab plus we gonna film another music video next Sunday.</p>
<p>Busy beee&#8230;oh yesh!</p>
<p>Just thought I&#8217;d give you a bit of a BEST OF the stuff I found within the last few weeks &#8230;..</p>
<h4>The 13 Most Unintentionally Disturbing Children&#8217;s Toys</h4>
<p><a class="alignleft" href="http://www.cracked.com/article_17493_13-most-unintentionally-disturbing-childrens-toys.html" target="_blank">http://www.cracked.com/article_17493_13-most-unintentionally-disturbing-childrens-toys.html</a></p>
<p>reeeeeeally digging the yodeling lederhosen by the way!!</p>
<p><strong><br />
</strong></p>
<h4><strong> Baby dancing to Beyonce</strong></h4>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/ikTxfIDYx6Q&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/ikTxfIDYx6Q&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/mk42wSXXGq8&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/mk42wSXXGq8&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p><span style="color:#ff0000;">Oh and let&#8217;s add some CHOOOOOOOOOOOONS =)</span></p>
<p>BASHY</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/0k8naOsMHNM&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/0k8naOsMHNM&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>AKALA</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/l5OqGY5FkeA&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/l5OqGY5FkeA&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>MR SHAODOW</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/O9_1QHTZneM&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/O9_1QHTZneM&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>THE BASEBALLS<br />
<span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/DM2177pHMT0&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/DM2177pHMT0&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>THE PRODIGY</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/unhvmkhQgZ8&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/unhvmkhQgZ8&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[(B)raising the baahhh]]></title>
<link>http://tastestopping.wordpress.com/2009/09/25/braising-the-baahhh/</link>
<pubDate>Fri, 25 Sep 2009 12:00:53 +0000</pubDate>
<dc:creator>Casey</dc:creator>
<guid>http://tastestopping.wordpress.com/2009/09/25/braising-the-baahhh/</guid>
<description><![CDATA[Tastespotting: unflattering composition. low contrast not sharp]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="attachment_2619" class="wp-caption aligncenter" style="width: 490px"><a href="http://oz-gochisousama.blogspot.com/2009/09/braised-lamb-shank-ragu.html"><img class="size-full wp-image-2619" title="lamb_ragu_(sm)[1]" src="http://tastestopping.wordpress.com/files/2009/09/lamb_ragu_sm1.jpg" alt="Tastespotting: unflattering composition. low contrast not sharp" width="480" height="360" /></a><p class="wp-caption-text">Tastespotting: unflattering composition. low contrast not sharp</p></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Want to be in a film with Bashy?]]></title>
<link>http://itsbashy.wordpress.com/2009/09/24/want-to-be-in-a-film-with-bashy/</link>
<pubDate>Thu, 24 Sep 2009 17:39:21 +0000</pubDate>
<dc:creator>bashy</dc:creator>
<guid>http://itsbashy.wordpress.com/2009/09/24/want-to-be-in-a-film-with-bashy/</guid>
<description><![CDATA[If you want to get involved and see your face on the big screen alongside Bashy,  Adam Deacon (Kidul]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-3288" title="shank cast" src="http://itsbashy.wordpress.com/files/2009/09/shank-cast.png" alt="shank cast" width="400" height="300" /></p>
<p><span style="font-size:large;"><span style="font-family:Georgia,Times New Roman;"><span style="font-size:12pt;">If you want to get involved and see your face on the big screen alongside Bashy,  Adam Deacon (Kidulthood), Kaya Scodelario (Skins) and D Double E, email your name(s) to <span style="text-decoration:underline;">CastingForShank@googlemail.com</span>, then turn up tomorrow morning.</span></span></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Day 52. OJ is this yours? ]]></title>
<link>http://1iphonepictureaday.wordpress.com/2009/09/21/day-52-oj-is-this-yours/</link>
<pubDate>Mon, 21 Sep 2009 18:48:44 +0000</pubDate>
<dc:creator>josephholguin</dc:creator>
<guid>http://1iphonepictureaday.wordpress.com/2009/09/21/day-52-oj-is-this-yours/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img src="http://1iphonepictureaday.wordpress.com/files/2009/09/img_0254.jpg" alt="IMG_0254" title="IMG_0254" width="600" height="800" class="alignnone size-full wp-image-262" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Setiembre on the Farm]]></title>
<link>http://winegirlwines.wordpress.com/2009/09/17/setiembre-on-the-farm/</link>
<pubDate>Thu, 17 Sep 2009 20:35:56 +0000</pubDate>
<dc:creator>winegirl</dc:creator>
<guid>http://winegirlwines.wordpress.com/2009/09/17/setiembre-on-the-farm/</guid>
<description><![CDATA[Ten days ago, I arrived back to the farm, jolly, clean and eager to do some damage to some apple suc]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ten days ago, I arrived back to the farm, jolly, clean and eager to do some damage to some apple suckers. Oo, oo, it was a quick start to the dirt as a visit to the rental shop brought us this little beauty.</p>
<div id="attachment_748" class="wp-caption alignnone" style="width: 235px"><a href="http://winegirlwines.wordpress.com/files/2009/09/img_0317.jpg"><img class="size-medium wp-image-748" title="The newest Deere in my life. " src="http://winegirlwines.wordpress.com/files/2009/09/img_0317.jpg?w=225" alt="The newest Deere in my life. " width="225" height="300" /></a><p class="wp-caption-text">The newest Deere in my life. </p></div>
<p>Our new toy came equipped with an earth moving bucket in the front and 2, 2 foot shanks in the back. Oh my, what a marvel! So, it was done, and the John Deere 450 was to be delivered that afternoon. We departed the rental shop to the words &#8220;Good luck. You&#8217;ll find things you never knew you had.&#8221; Hmm. I thought I heard that one somewhere before. No matter. Off, to the site.</p>
<p>With the intention to shank all ten acres our first day ended by carefully staying to the west side of the <a href="http://winegirlwines.wordpress.com/2009/06/09/long-week-day-2/">new road made in July</a>. Why? Well, &#8220;you&#8217;ll find things you didn&#8217;t even know you had&#8221; turned up a six inch water main, we didn&#8217;t, well, even know we had. Darnit. All that work tracking down information about the previous orchard water system in July certainly didn&#8217;t prepare us for this mondo pipe! It was as if it had been born from the stars and birthed from the earth beneath our eyes.</p>
<div id="attachment_750" class="wp-caption alignnone" style="width: 310px"><a href="http://winegirlwines.wordpress.com/files/2009/09/img_0348.jpg"><img class="size-medium wp-image-750" title="What was that?" src="http://winegirlwines.wordpress.com/files/2009/09/img_0348.jpg?w=300" alt="What was that?" width="300" height="196" /></a><p class="wp-caption-text">What was that?</p></div>
<div id="attachment_749" class="wp-caption alignnone" style="width: 235px"><a href="http://winegirlwines.wordpress.com/files/2009/09/img_0349.jpg"><img class="size-medium wp-image-749" title="Zoiks!" src="http://winegirlwines.wordpress.com/files/2009/09/img_0349.jpg?w=225" alt="Zoiks!" width="225" height="300" /></a><p class="wp-caption-text">Zoiks!</p></div>
<p>So, our first eager day of shanking ended with sun down at seven. Phew!</p>
<p>WineGirl,<br />
<div id="attachment_788" class="wp-caption alignnone" style="width: 199px"><a href="http://winegirlwines.wordpress.com/files/2009/09/img_3227.jpg"><img src="http://winegirlwines.wordpress.com/files/2009/09/img_3227.jpg?w=189" alt="WG" title="WG" width="189" height="300" class="size-medium wp-image-788" /></a><p class="wp-caption-text">WG</p></div></p>
<div id="attachment_761" class="wp-caption alignleft" style="width: 122px"><a href="http://winegirlwines.wordpress.com/files/2009/09/img_0319.jpg"><img class="size-thumbnail wp-image-761" title="John Deere 450" src="http://winegirlwines.wordpress.com/files/2009/09/img_0319.jpg?w=112" alt="John Deere 450" width="112" height="150" /></a><p class="wp-caption-text">John Deere 450</p></div>
<div id="attachment_769" class="wp-caption alignright" style="width: 122px"><a href="http://winegirlwines.wordpress.com/files/2009/09/img_0325.jpg"><img class="size-thumbnail wp-image-769" title="The Challenge" src="http://winegirlwines.wordpress.com/files/2009/09/img_0325.jpg?w=112" alt="The Challenge" width="112" height="150" /></a><p class="wp-caption-text">The Challenge</p></div>
<div id="attachment_754" class="wp-caption alignleft" style="width: 122px"><a href="http://winegirlwines.wordpress.com/files/2009/09/img_0352.jpg"><img class="size-thumbnail wp-image-754" title="The Enemy" src="http://winegirlwines.wordpress.com/files/2009/09/img_0352.jpg?w=112" alt="The Enemy" width="112" height="150" /></a><p class="wp-caption-text">The Enemy</p></div>
<div id="attachment_772" class="wp-caption alignright" style="width: 122px"><a href="http://winegirlwines.wordpress.com/files/2009/09/img_0355.jpg"><img class="size-thumbnail wp-image-772" title="Lunchtime" src="http://winegirlwines.wordpress.com/files/2009/09/img_0355.jpg?w=112" alt="Lunchtime" width="112" height="150" /></a><p class="wp-caption-text">Lunchtime</p></div>
<div id="attachment_756" class="wp-caption alignleft" style="width: 160px"><a href="http://winegirlwines.wordpress.com/files/2009/09/img_0334.jpg"><img class="size-thumbnail wp-image-756" title="The Challenger" src="http://winegirlwines.wordpress.com/files/2009/09/img_0334.jpg?w=150" alt="The Challenger" width="150" height="112" /></a><p class="wp-caption-text">The Challenger</p></div>
<div id="attachment_766" class="wp-caption alignright" style="width: 160px"><a href="http://winegirlwines.wordpress.com/files/2009/09/img_0343.jpg"><img class="size-thumbnail wp-image-766" title="Lowering the Shanks" src="http://winegirlwines.wordpress.com/files/2009/09/img_0343.jpg?w=150" alt="Lowering the Shanks" width="150" height="112" /></a><p class="wp-caption-text">Lowering the Shanks</p></div>
<div id="attachment_755" class="wp-caption alignleft" style="width: 122px"><a href="http://winegirlwines.wordpress.com/files/2009/09/img_0347.jpg"><img class="size-thumbnail wp-image-755" title="Future of Chelan Terroir" src="http://winegirlwines.wordpress.com/files/2009/09/img_0347.jpg?w=112" alt="Future of Chelan Terroir" width="112" height="150" /></a><p class="wp-caption-text">Future of Chelan Terroir</p></div>
<div id="attachment_771" class="wp-caption alignright" style="width: 122px"><a href="http://winegirlwines.wordpress.com/files/2009/09/img_0354.jpg"><img class="size-thumbnail wp-image-771" title="Nothing's too big for the Shanker!" src="http://winegirlwines.wordpress.com/files/2009/09/img_0354.jpg?w=112" alt="Nothing's too big for the Shanker!" width="112" height="150" /></a><p class="wp-caption-text">Nothing&#39;s too big for the Shanker!</p></div>
<div id="attachment_764" class="wp-caption alignleft" style="width: 160px"><a href="http://winegirlwines.wordpress.com/files/2009/09/img_0356.jpg"><img class="size-thumbnail wp-image-764" title="What a tangled web we weave." src="http://winegirlwines.wordpress.com/files/2009/09/img_0356.jpg?w=150" alt="What a tangled web we weave." width="150" height="112" /></a><p class="wp-caption-text">A tangled web we weave.</p></div>
<div id="attachment_768" class="wp-caption alignright" style="width: 160px"><a href="http://winegirlwines.wordpress.com/files/2009/09/img_0357.jpg"><img class="size-thumbnail wp-image-768" title="Getting Rid of Junk" src="http://winegirlwines.wordpress.com/files/2009/09/img_0357.jpg?w=150" alt="Getting Rid of Junk" width="150" height="112" /></a><p class="wp-caption-text">Getting Rid of Junk</p></div>
<div id="attachment_767" class="wp-caption alignleft" style="width: 122px"><a href="http://winegirlwines.wordpress.com/files/2009/09/img_0360.jpg"><img class="size-thumbnail wp-image-767" title="Can we list &#34;old iron pipe&#34; on Craigslist?" src="http://winegirlwines.wordpress.com/files/2009/09/img_0360.jpg?w=112" alt="Can we list &#34;old iron pipe&#34; on Craigslist?" width="112" height="150" /></a><p class="wp-caption-text">Can we list &#34;old iron pipe&#34; on Craigslist?</p></div>
<div id="attachment_786" class="wp-caption alignright" style="width: 122px"><a href="http://winegirlwines.wordpress.com/files/2009/09/img_0353.jpg"><img src="http://winegirlwines.wordpress.com/files/2009/09/img_0353.jpg?w=112" alt="The Damages" title="The Damages" width="112" height="150" class="size-thumbnail wp-image-786" /></a><p class="wp-caption-text">The Super Shank Damages</p></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Shank]]></title>
<link>http://savenload.wordpress.com/2009/09/16/shank/</link>
<pubDate>Wed, 16 Sep 2009 12:29:40 +0000</pubDate>
<dc:creator>Philly Breaks</dc:creator>
<guid>http://savenload.wordpress.com/2009/09/16/shank/</guid>
<description><![CDATA[Shank, the side-scrolling beat-em up that made me renown fate in the genre. Back in the 90&#8217;s, ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-164" title="1680x1050_3_color" src="http://savenload.wordpress.com/files/2009/09/1680x1050_3_color.jpg" alt="1680x1050_3_color" width="497" height="310" /></p>
<p>Shank, the side-scrolling beat-em up that made me renown fate in the genre.</p>
<p>Back in the 90&#8217;s, I used to change controllers on my NES regularly. The Ninja Turtles and Double Dragon were just a few of the causes. Can&#8217;t have a beat-em up without beating-up those buttons.</p>
<p><!--more--></p>
<p>Buttons to buttons and dust to dust. There seems to be a lot of it in the demo (grenade dust, that is).  And guns, lots of guns. Chainsaws too.  All of them to backup the main weapon, which is the SHANK.</p>
<p>Besides the killer arsenal, there is a combo system as well that produces endless amounts of eye candy, lots of bad guys and bosses and an impressive visual style that &#8217;s almost like playing through a comic book&#8217;s pages.</p>
<p>More info to come about Shank, that&#8217;s for sure. Keep in touch.</p>

<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/Ynq4TJ5JMsI&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/Ynq4TJ5JMsI&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Baaaahhd lighting]]></title>
<link>http://tastestopping.wordpress.com/2009/09/15/baaaahhd-lighting/</link>
<pubDate>Tue, 15 Sep 2009 18:00:22 +0000</pubDate>
<dc:creator>Casey</dc:creator>
<guid>http://tastestopping.wordpress.com/2009/09/15/baaaahhd-lighting/</guid>
<description><![CDATA[tastespotting: dark. not sharp]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="attachment_2186" class="wp-caption aligncenter" style="width: 490px"><a href="http://2frugalfoodies.com/recipes/dinner/braised-lamb-shank-ii-with-gorgonzola-crust/"><img class="size-full wp-image-2186" title="lamb" src="http://tastestopping.wordpress.com/files/2009/09/lamb.jpg" alt="tastespotting: dark. not sharp" width="480" height="360" /></a><p class="wp-caption-text">tastespotting: dark. not sharp</p></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Student Kills Intruder With Sick Samurai Combo Fatality]]></title>
<link>http://rocksoft.wordpress.com/2009/09/15/student-kills-intruder-with-sick-samurai-combo-fatality/</link>
<pubDate>Tue, 15 Sep 2009 17:28:31 +0000</pubDate>
<dc:creator>Enrique Enfuego</dc:creator>
<guid>http://rocksoft.wordpress.com/2009/09/15/student-kills-intruder-with-sick-samurai-combo-fatality/</guid>
<description><![CDATA[Those countless hours of Ninja Gaiden finally paid off for one serious gamer. Here is a rule of thum]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter size-full wp-image-3738" title="20090318-ninjagaiden2kz" src="http://rocksoft.wordpress.com/files/2009/09/20090318-ninjagaiden2kz.jpg" alt="20090318-ninjagaiden2kz" width="450" height="321" />Those countless hours of Ninja Gaiden finally paid off for one serious gamer.</p>
<p>Here is a rule of thumb for thieves, don&#8217;t break into a residence of some college kid who owns a sword and wants to put it to real-life use. One burglar disregarded this rule and <a href="http://www.baltimoresun.com/news/maryland/baltimore-city/bal-sword0915,0,4027961.story?track=rss" target="_blank">got his ass shanked</a> to death.</p>
<p>This once again proves that it is truly impossible to defend against the Up, Down, Left, Right, A, B, Select, Start combo move.</p>
<p>Enfuego.</p>
<p style="text-align:center;">Eat, Tweet, Rocksoft. <a href="http://twitter.com/rocksoftblog"><img class="size-thumbnail wp-image-3287 aligncenter" title="rocksoft_r_yellownumber52" src="http://rocksoft.files.wordpress.com/2009/05/rocksoft_r_yellownumber52.jpg?w=75&#038;h=75#38;h=75" alt="rocksoft_r_yellownumber52" width="75" height="75" /></a><a href="http://twitter.com/RocksoftBlog" target="_blank">Visit our Twitter</a></p>
<p><!-- AddThis Button BEGIN --></p>
<div><a title="Bookmark and Share" href="http://www.addthis.com/bookmark.php?pub=rocksoftblog" target="_blank"><img src="http://s7.addthis.com/static/btn/sm-share-en.gif" alt="Bookmark and Share" width="83" height="16" /></a></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Who Do I Have To Shank To Get Some Solitary Confinement?!]]></title>
<link>http://basicallyawesome.wordpress.com/2009/09/13/who-do-i-have-to-shank-to-get-some-solitary-confinement/</link>
<pubDate>Sun, 13 Sep 2009 14:36:27 +0000</pubDate>
<dc:creator>basicallyawesome</dc:creator>
<guid>http://basicallyawesome.wordpress.com/2009/09/13/who-do-i-have-to-shank-to-get-some-solitary-confinement/</guid>
<description><![CDATA[Sometimes I just want to be left alone with my thoughts. Is that so wrong? I love my family, I do. B]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Sometimes I just want to be left alone with my thoughts. Is that so wrong? I love my family, I do. But can I have a moment? Please! I know I&#8217;m basically awesome, but surely, they can function without me for a wee bit. Gee whiz, just some time alone every now and then, that&#8217;s all I ask! Plus, last time I checked, they all had opposable thumbs and an ounce of smarts, so I know they could rustle up some dinner on their own if they tried. I&#8217;m just saying.</p>
<p>Otherwise, I may have to go to prison, so I can finally enjoy my quiet time &#8211; alone in my cell for hours on end. I think I can make that happen. I have some ideas&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Mais Shank, estou a adorar este jogo!]]></title>
<link>http://xbloxpt.wordpress.com/2009/09/11/mais-shank-estou-a-adorar-este-jogo/</link>
<pubDate>Fri, 11 Sep 2009 16:50:03 +0000</pubDate>
<dc:creator>ruicarrico</dc:creator>
<guid>http://xbloxpt.wordpress.com/2009/09/11/mais-shank-estou-a-adorar-este-jogo/</guid>
<description><![CDATA[more about &quot;Mais Shank, estou a adorar este jogo!&quot;, posted with vodpod]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="display:block;width:425px;margin:0 auto;">  <embed src='http://widgets.vodpod.com/w/video_embed/Groupvideo.3398023' type='application/x-shockwave-flash' AllowScriptAccess='always' pluginspage='http://www.macromedia.com/go/getflashplayer' wmode='transparent' flashvars='' />
<div style="font-size:10px;">     more about &#34;<a href="http://vodpod.com/watch/2178967-untitled?pod=glorioso">Mais Shank, estou a adorar este jogo!</a>&#34;, posted with <a href="http://vodpod.com?r=wp">vodpod</a>  </div>
<p></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Entrevista sobre Shank]]></title>
<link>http://xbloxpt.wordpress.com/2009/09/10/entrevista-sobre-shank/</link>
<pubDate>Thu, 10 Sep 2009 11:48:09 +0000</pubDate>
<dc:creator>ruicarrico</dc:creator>
<guid>http://xbloxpt.wordpress.com/2009/09/10/entrevista-sobre-shank/</guid>
<description><![CDATA[Detalhes sobre mais esta bomba para o XBLA]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h1>Detalhes sobre mais esta bomba para o XBLA</h1>
<p><embed src='http://widgets.vodpod.com/w/video_embed/Groupvideo.3389339' type='application/x-shockwave-flash' AllowScriptAccess='always' pluginspage='http://www.macromedia.com/go/getflashplayer' wmode='transparent' flashvars='' /></p>
<p><span style="display:block;width:425px;margin:0 auto;"></p>
<div style="font-size:10px;"><a href="http://vodpod.com?r=wp"><br />
</a></div>
<p></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Shank (PC gameplay trailer)]]></title>
<link>http://kamealex.wordpress.com/2009/09/09/shank-pc-gameplay-trailer/</link>
<pubDate>Wed, 09 Sep 2009 19:57:18 +0000</pubDate>
<dc:creator>.:: KamE ::.</dc:creator>
<guid>http://kamealex.wordpress.com/2009/09/09/shank-pc-gameplay-trailer/</guid>
<description><![CDATA[MADRE!! De éste juego no sabía nada y ya se ha convertido en una necesidad vital para un servidor. E]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>MADRE!! De éste juego no sabía nada y ya se ha convertido en una necesidad vital para un servidor. Espectacular realización. Dibujos animados de alta calidad en formato jugable 2d. La acción pocas veces ha tenido tan buen aspecto.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/-uQv6blO350&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/-uQv6blO350&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[ PAX 2009]]></title>
<link>http://deewayne.wordpress.com/2009/09/08/pax-2009/</link>
<pubDate>Tue, 08 Sep 2009 16:56:55 +0000</pubDate>
<dc:creator>deewayne</dc:creator>
<guid>http://deewayne.wordpress.com/2009/09/08/pax-2009/</guid>
<description><![CDATA[My first time going to PAX and my first time blogging. I guess you could say video games inspired me]]></description>
<content:encoded><![CDATA[My first time going to PAX and my first time blogging. I guess you could say video games inspired me]]></content:encoded>
</item>
<item>
<title><![CDATA[Shank - Продължението на кежуал гейминга !]]></title>
<link>http://vault365.wordpress.com/2009/09/08/shank-%d0%bf%d1%80%d0%be%d0%b4%d1%8a%d0%bb%d0%b6%d0%b5%d0%bd%d0%b8%d0%b5%d1%82%d0%be-%d0%bd%d0%b0-%d0%ba%d0%b5%d0%b6%d1%83%d0%b0%d0%bb-%d0%b3%d0%b5%d0%b9%d0%bc%d0%b8%d0%bd%d0%b3%d0%b0/</link>
<pubDate>Tue, 08 Sep 2009 14:40:08 +0000</pubDate>
<dc:creator>ke1n</dc:creator>
<guid>http://vault365.wordpress.com/2009/09/08/shank-%d0%bf%d1%80%d0%be%d0%b4%d1%8a%d0%bb%d0%b6%d0%b5%d0%bd%d0%b8%d0%b5%d1%82%d0%be-%d0%bd%d0%b0-%d0%ba%d0%b5%d0%b6%d1%83%d0%b0%d0%bb-%d0%b3%d0%b5%d0%b9%d0%bc%d0%b8%d0%bd%d0%b3%d0%b0/</guid>
<description><![CDATA[Днес както си се рових в &#8220;GameTrailers&#8221; реших да вида какво ли интересно има в новия ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/-uQv6blO350&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/-uQv6blO350&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>Днес както си се рових в &#8220;GameTrailers&#8221; реших да вида какво ли интересно има в новия &#8220;PAX&#8221;.Разгледах, и да попаднах на изключително добрия трейлър на &#8220;Uncharted 2&#8243; но за жалост той няма да се появи на нашите персонални компютри.Затова се загледах като цяло за нещо PC и открих &#8220;Shank&#8221;, игра която на първо четене не ми говори нищо но то винаги е така.След изглеждане на трейлъра обаче желанието ми да знам повече за играта нарастна !</p>
<p><!--more&#60;&#60; Продължава след Клика &#62;&#62;--></p>
<p>Играта не е от онези със супер графика, а тя е по скоро от онези кежуал игри които те взимат и не те оставят докато не приключиш с тях.Напоследък има доста голям инвазия на такива игри като последния и най-пресен пример е &#8220;Shadow Complex&#8221; от &#8220;Epic Games&#8221;(създателите на &#8220;Gears Of War 1,2), и той също се оказа със супер позитивни оценки и чувства сред феновете.Преди това пък и &#8220;Bionic Commando Rearmed&#8221; също се хареса на доста хора,  дори повече от по &#8211; добре графически способното продължение на поредицата.И ето сега се намесва и &#8220;Shank&#8221; първоначално с нищо не излъчваща жажда за борба с големите заглавия, но всъщност именно този геймплей който не те задължава и те разтоварва е ключа към играта.Все пак за това игрите са забавление нали ?</p>
<p>Още нищо не може да се каже за играта, защото сме видяли само един трейлър но до сега той говори супер добре за нея.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Shank to bring back action and chainsaws]]></title>
<link>http://donttellmetheending.com/2009/09/07/shank-to-bring-back-action-and-chainsaws/</link>
<pubDate>Mon, 07 Sep 2009 15:01:13 +0000</pubDate>
<dc:creator>phokal</dc:creator>
<guid>http://donttellmetheending.com/2009/09/07/shank-to-bring-back-action-and-chainsaws/</guid>
<description><![CDATA[From Klei Entertainment (guys who made Eets), they just revealed Shank at PAX09.  Here&#8217;s the f]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/ZiOQyNt2aQ4&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/ZiOQyNt2aQ4&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>From Klei Entertainment (guys who made Eets), they just revealed Shank at PAX09.  Here&#8217;s the first trailer.  This game looks very fun.  Will probably be available for PC, and maybe XBLA and PSN (cross your fingers).</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Shank annunciato !]]></title>
<link>http://consoleplanet.wordpress.com/2009/09/07/shank-annunciato/</link>
<pubDate>Mon, 07 Sep 2009 07:37:50 +0000</pubDate>
<dc:creator>ShadowX24</dc:creator>
<guid>http://consoleplanet.wordpress.com/2009/09/07/shank-annunciato/</guid>
<description><![CDATA[Durante il Penny Arcade Expo, che si è tenuto nella giornata di ieri a Seattle, Klei Entertainment h]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="aligncenter size-medium wp-image-932" title="Immagine" src="http://consoleplanet.wordpress.com/files/2009/09/immagine1.png?w=300" alt="Immagine" width="300" height="193" /></p>
<p>Durante il <strong>Penny Arcade Expo</strong>, che si è tenuto nella giornata di ieri a <strong>Seattle, Klei Entertainment</strong> ha annunciato lo sviluppo di <strong>Shank</strong>, un platform game a scorrimento orizzontale che arriverè su <strong>PC </strong>e sul <strong>Live Arcade</strong>.</p>
<p>Di seguito un video di dimostrazione :</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/-uQv6blO350&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/-uQv6blO350&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Shank: porradaria horizontal!]]></title>
<link>http://gamesupra.wordpress.com/2009/09/06/shank-porradaria-horizontal/</link>
<pubDate>Sun, 06 Sep 2009 22:49:56 +0000</pubDate>
<dc:creator>Julio</dc:creator>
<guid>http://gamesupra.wordpress.com/2009/09/06/shank-porradaria-horizontal/</guid>
<description><![CDATA[Se tem um gênero que está esquecido na indústria atualmente, mas que já deu muito o que falar (sem c]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Se tem um gênero que está esquecido na indústria atualmente, mas que já deu muito o que falar (sem contar os shooters de nave), esse gênero é o beat-em-up, ou, em outras palavras, o andapradireita-bate-andapradireita-bate-comeohosbife-andapradireita&#8230;</p>
<p>Porém alguém decidiu ouvir as preces dos jogadores ao redor do mundo que, como eu, passaram tardes inteiras no fliperama, jogando Tartarugas Ninja, Cadillacs and Dinossaurs, Final Fight, Sengoku Basara, entre outros. Trata-se da Klei Entertainment.</p>
<p>Recentemente, foi liberado o Trailer de seu novo projeto, que você confere abaixo.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/Fw36-KU8EVU&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/Fw36-KU8EVU&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>Caramba, como eu gostei deste vídeo! Dá pra ver muitas influências nele, como a de Prince of Persia (quando ele &#8220;anda&#8221; no outdoor) e de Devil May Cry, nos combos que começam com golpes e terminam com tiros. Fora que a parte artística tem recebido cuidado especial, com boa iluminação e closes de câmera dramáticos. Mal posso esperar.</p>
<p>Não há uma plataforma oficial para seu lançamento, mas especula-se que será disponibilizado para compra pelo sistema Live da Microsoft.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
