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

<channel>
	<title>ScoringCriticals</title>
	<atom:link href="http://scoringcriticals.com/feed" rel="self" type="application/rss+xml" />
	<link>http://scoringcriticals.com</link>
	<description>A little piece of my mind</description>
	<lastBuildDate>Thu, 25 Feb 2010 18:43:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Cakephp Relations Bug</title>
		<link>http://scoringcriticals.com/programming/cakephp-relations-bug</link>
		<comments>http://scoringcriticals.com/programming/cakephp-relations-bug#comments</comments>
		<pubDate>Thu, 25 Feb 2010 18:41:39 +0000</pubDate>
		<dc:creator>Derick</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[cakephp]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web developer]]></category>
		<category><![CDATA[webapps]]></category>

		<guid isPermaLink="false">http://scoringcriticals.com/?p=340</guid>
		<description><![CDATA[
So, you are a PHP programmer and you like Cake framework. There are some things you need to know.
Let&#8217;s say you are doing a very very VERY simple blog app, with just two tables in your database.

Fig. 1 Posts table
Fig. 2 Comments table
Then you run the bake script in order to create the app. Bake [...]]]></description>
			<content:encoded><![CDATA[
<p>So, you are a PHP programmer and you like Cake framework. There are some things you need to know.<span id="more-340"></span></p>
<p>Let&#8217;s say you are doing a very very VERY simple blog app, with just two tables in your database.</p>
<p style="text-align: center;">
<h6 style="text-align: center;"><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/posts.png" rel="lightbox[340]"><img class="aligncenter size-full wp-image-346" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/posts.png" alt="posts table" width="535" height="120" /></a>Fig. 1 Posts table</h6>
<h6 style="text-align: center;"><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/comments.png" rel="lightbox[340]"><img class="aligncenter size-full wp-image-345" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/comments.png" alt="" width="546" height="127" /></a>Fig. 2 Comments table</h6>
<p>Then you run the bake script in order to create the app. Bake the models first, in this part the Bake script will ask you about the relations of the model and the other tables.<br />
<a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/postRelations.png" rel="lightbox[340]"><img class="aligncenter size-full wp-image-348" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/postRelations.png" alt="Post Model" width="581" height="121" /></a></p>
<h6 style="text-align: center;">Fig. 3 Post Model relations</h6>
<p><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/commentsRelations.png" rel="lightbox[340]"><img class="aligncenter size-full wp-image-347" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/commentsRelations.png" alt="" width="574" height="115" /></a></p>
<h6 style="text-align: center;">Fig. 4 Comment Model relations</h6>
<p>Then you create the controllers of each model, normally you would bake a scaffold controller in order to see that the relations are ok, but as you are a GREAT web developer, you ARE sure that the relations are OK and you bake the controller without scaffold and create the basic class methods (index, edit, view and delete). Then, create the views for each model and soon you are on your way to be a great blogger. You create the first post and then you will try to do a comment on that post just to be sure everything is ok. This is the out come:</p>
<h6 style="text-align: center;"><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/postView.png" rel="lightbox[340]"><img class="aligncenter size-medium wp-image-349" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/postView-300x153.png" alt="" width="300" height="153" /></a>Fig. 5 Post View (app/posts/view/1)</h6>
<p>Where are the related comments section? well, maybe you need to create a comment on this post to see it. You go then to add a comment (<span style="color: #0000ff;">app/comments/add</span>). SURPRISE! you don&#8217;t have a drop down input showing all the posts in the system, instead you get a simple input box.</p>
<h6 style="text-align: center;"><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/commentsAdd.png" rel="lightbox[340]"><img class="aligncenter size-medium wp-image-350" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/commentsAdd-258x300.png" alt="app/comments/add" width="258" height="300" /></a>Fig. 6 Add Comment View (app/comments/add)</h6>
<p>You run and see the Comments controller to verify this and you noticed that there&#8217;re some lines missing:</p>
<p style="text-align: center;">
<p style="text-align: center;"><em>$posts = $this-&gt;Comment-&gt;Post-&gt;find(&#8216;list&#8217;);</em></p>
<p style="text-align: center;"><em>$this-&gt;set(&#8216;posts&#8217;, $posts);</em></p>
<p style="text-align: center;">
<p style="text-align: center;"><em><br />
</em></p>
<p>The lack of these lines will create the simple input text instead of the drop down input you expected to see. And now you are wondering, what the hell happened with CakePhp? it was so perfect, now the &#8220;relationship&#8221; is broken! (get it? Relationship! As relation between tables? &#8230; Oh please <strong>geek</strong> it up!) Ok, so you found a small bug in Cakephp 1.2.6 and 1.3 beta. How do we fix this?</p>
<h1><strong><span style="text-decoration: underline;">The Workaround</span></strong></h1>
<p>Ok, it took me a lot of time but with a little help from my friends at irc.freenode.net #cakephp. You need to bake the controllers using scaffolding, then bake the views, verify that everything is ok and then bake the controllers again without using scaffolding this will fix all the relation problems. <strong>Please beware NOT to bake the views again so you&#8217;ll end up with the same problem.</strong></p>
<p><strong><br />
</strong></p>
<p>After this workaround you&#8217;ll end up with this:</p>
<h6 style="text-align: center;"><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/commentsAddFixed.png" rel="lightbox[340]"><img class="aligncenter size-medium wp-image-351" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/commentsAddFixed-269x300.png" alt="" width="269" height="300" /></a>Fig. 7 Now you have a nice drop down input</h6>
<h6 style="text-align: center;"><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/postsViewFixed.png" rel="lightbox[340]"><img class="aligncenter size-medium wp-image-352" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/postsViewFixed-252x300.png" alt="" width="252" height="300" /></a>Fig. 8 Now you have all the relations in order</h6>
<p>So, it maybe look like a silly bug but believe me, if you don&#8217;t know the answer and you have a ton of relations in your app and you are just about to make all the changes without using the Bake script, you will seriously consider using other framework cause it&#8217;s a hell of a job. As of today, this bug is not closed and you will have to wait for a new version to close this up. I still love CakePhp to develop new apps and I understand that there&#8217;s a lot of room to improve, so I hope this post help you understand this bug and maybe the way CakePhp works. Have a great day!</p>
<p>Thanks to:</p>
<p>IRC #cakephp on irc.freenode.net</p>
<p>dehuman @ #cakephp on irc.freenode.net</p>
<p><a href="http://www.cakephp.org" target="_blank">Cakephp</a></p>

]]></content:encoded>
			<wfw:commentRss>http://scoringcriticals.com/programming/cakephp-relations-bug/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Record here on ScoringCriticals</title>
		<link>http://scoringcriticals.com/blogging/new-record-here-on-scoringcriticals</link>
		<comments>http://scoringcriticals.com/blogging/new-record-here-on-scoringcriticals#comments</comments>
		<pubDate>Wed, 17 Feb 2010 23:31:11 +0000</pubDate>
		<dc:creator>Aldar</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[new record]]></category>
		<category><![CDATA[stumbleupon]]></category>

		<guid isPermaLink="false">http://scoringcriticals.com/?p=326</guid>
		<description><![CDATA[
I&#8217;m glad to announce that we just hit a new record here on ScoringCriticals! Today is officially our busiest day with 56 views! It may not sound like much to all those head honcho bloggers out there but to us well&#8230;it&#8217;s a new record!!!
I would like to thank all of you who have contributed to [...]]]></description>
			<content:encoded><![CDATA[
<p>I&#8217;m glad to announce that we just hit a new record here on ScoringCriticals! Today is officially our busiest day with 56 views! It may not sound like much to all those head honcho bloggers out there but to us well&#8230;it&#8217;s a new record!!!<span id="more-326"></span></p>
<p>I would like to thank all of you who have contributed to this community I like to call ScoringCriticals, this is your blog also where you are free to post your opinions and comments on the different subjects that are portrayed here.</p>
<p>I would like to thank Derick for contributing as a guest author, cheers mate! We all are looking forward to reading more of your posts!</p>
<p>Thanks to StumbleUpon for bringing us all those cool readers and keep on stumblin&#8217;!</p>
<p>Don&#8217;t forget to rate our posts and comment.</p>
<p>Cheers,</p>
<p>Aldar @ ScoringCriticals</p>

]]></content:encoded>
			<wfw:commentRss>http://scoringcriticals.com/blogging/new-record-here-on-scoringcriticals/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Season is Over</title>
		<link>http://scoringcriticals.com/nfl/season-is-over</link>
		<comments>http://scoringcriticals.com/nfl/season-is-over#comments</comments>
		<pubDate>Fri, 12 Feb 2010 17:45:18 +0000</pubDate>
		<dc:creator>Aldar</dc:creator>
				<category><![CDATA[NFL]]></category>
		<category><![CDATA[Indianapolis Colts]]></category>
		<category><![CDATA[New Orleans Saints]]></category>
		<category><![CDATA[Peyton Manning]]></category>
		<category><![CDATA[SuperBowl 44]]></category>

		<guid isPermaLink="false">http://scoringcriticals.com/?p=313</guid>
		<description><![CDATA[

Well it&#8217;s that time of the year again when the NFL season comes to a soul crushing end. The Indianapolis Colts lose the big game, oh those dreaded words i really did not want to hear. Both teams played great football but in the end the Saints delivered and the Colts didn&#8217;t there really isn&#8217;t [...]]]></description>
			<content:encoded><![CDATA[
<p style="text-align: center;">
<div id="attachment_316" class="wp-caption aligncenter" style="width: 370px"><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/100212.jpg" rel="lightbox[313]"><img class="size-full wp-image-316 " title="SB44" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/100212.jpg" alt="Colts" width="360" height="290" /></a><p class="wp-caption-text">Colts @ SuperBowl 44</p></div>
<p>Well it&#8217;s that time of the year again when the NFL season comes to a soul crushing end. The Indianapolis Colts lose the big game, oh those dreaded words i really did not want to hear. Both teams played great football but in the end the Saints delivered and the Colts didn&#8217;t there really isn&#8217;t much more to it.<span id="more-313"></span></p>
<p>I really do hate it though that people start talking about a carreer going down the drain because they lost the big game. Headlines like &#8220;Manning&#8217;s Legacy Broken&#8221; really piss me off. I think that Peyton Manning is ( very arguably) one of the best QB in NFL history , I think he had an outstanding season and I firmly believe that one loss, even a superbowl loss, will send all of the work he has done down the drain. I&#8217;m trying very hard no to sound like a fanboy here but I really do believe that a single action or a single game or a single bad call can end anyone&#8217;s carrer or rep.  There are far too many variables playing out there that it would be foolish to pin the loss on one specific decision/person/pass. Football is played as a team so you win as a team and you lose as a team, there is no individual glory.</p>
<p>Congratulations to the New Orleans Saints on winning they really did deserve it. They also played an outstanding season. Congratulations to the Indianapolis Colts on getting to the SB and giving the best out there. I&#8217;m still proud of you guys.</p>
<p>GO COLTS!</p>

]]></content:encoded>
			<wfw:commentRss>http://scoringcriticals.com/nfl/season-is-over/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fallout New Vegas Teaser is out!</title>
		<link>http://scoringcriticals.com/video-games/fallout-new-vegas-teaser-is-out</link>
		<comments>http://scoringcriticals.com/video-games/fallout-new-vegas-teaser-is-out#comments</comments>
		<pubDate>Fri, 05 Feb 2010 20:45:22 +0000</pubDate>
		<dc:creator>Aldar</dc:creator>
				<category><![CDATA[Video Games]]></category>
		<category><![CDATA[Bethesda]]></category>
		<category><![CDATA[Fallout New Vegas]]></category>
		<category><![CDATA[FPS]]></category>
		<category><![CDATA[trailer]]></category>

		<guid isPermaLink="false">http://scoringcriticals.com/?p=304</guid>
		<description><![CDATA[
Well looks like the folks over at Bethesda are at it again thise time with the new addition to the Fallout Franchise: Fallout New Vegas. Not much info has been let ot to the public other than this teaser trailer. 


 
 
It does leave some questions lingering in the air.
Why does New Vegas have [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/games_falloutnvfeature.jpg" rel="lightbox[304]"><img class="aligncenter size-full wp-image-305" title="fallout_new_vegas" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/02/games_falloutnvfeature.jpg" alt="" width="360" height="200" /></a>Well looks like the folks over at <a href="http://www.bethsoft.com/eng/index.php" target="_blank">Bethesda</a> are at it again thise time with the new addition to the Fallout Franchise: Fallout New Vegas. Not much info has been let ot to the public other than this teaser trailer. <span id="more-304"></span></p>
<p><object id="gtembed" width="480" height="409">
<param name="movie" value="http://www.gametrailers.com/remote_wrap.php?mid=61576"/>
<param name="quality" value="high" /> 
<embed src="http://www.gametrailers.com/remote_wrap.php?mid=61576" name="gtembed" align="middle" allowScriptAccess="sameDomain" quality="high"  type="application/x-shockwave-flash" width="480" height="409"></embed> </object></p>
<p>It does leave some questions lingering in the air.</p>
<p>Why does New Vegas have all the lights on? Well i guess not even nuclear apocalypse can stop Vegas.</p>
<p>Who is that guy and what does A7 on his back mean?</p>
<p>Why the whole angry/scary cowboy on the robot?</p>
<p>I guess we&#8217;ll have to wait until they decide to release a gameplay video or something. Oh yeah! they also give a release date: Fall 2010. I really enjoyed playing Fallout 3 and i still do sometimes. If they improve on the Fallout 3 experience and put to good use the things that they&#8217;ve learned from the previous Fallouts this promises to be yet another GOTY. I really can&#8217;t wait to get my hands on this game. Fallou t3 has been one of the best games I have ever played, hopefully New Vegas will  be just that.</p>

]]></content:encoded>
			<wfw:commentRss>http://scoringcriticals.com/video-games/fallout-new-vegas-teaser-is-out/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brink Screenshots</title>
		<link>http://scoringcriticals.com/video-games/brink-screenshots</link>
		<comments>http://scoringcriticals.com/video-games/brink-screenshots#comments</comments>
		<pubDate>Mon, 25 Jan 2010 06:01:54 +0000</pubDate>
		<dc:creator>Aldar</dc:creator>
				<category><![CDATA[Video Games]]></category>
		<category><![CDATA[Bethesda]]></category>
		<category><![CDATA[Brink]]></category>
		<category><![CDATA[FPS]]></category>
		<category><![CDATA[PS3]]></category>
		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://scoringcriticals.com/?p=297</guid>
		<description><![CDATA[

I&#8217;ll just leave here a few screenshots that I found on their BRINK webpage.

]]></description>
			<content:encoded><![CDATA[
<p><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/brink_logotype-black.png" rel="lightbox[297]"><img class="aligncenter size-full wp-image-265" title="brink_logotype-black" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/brink_logotype-black.png" alt="" width="507" height="112" /></a></p>
<p>I&#8217;ll just leave here a few screenshots that I found on their <a title="Brink" href="http://www.brinkthegame.com/#/videos/freedom_of_movement/" target="_blank">BRINK</a> webpage.</p>
<div id="attachment_298" class="wp-caption alignleft" style="width: 160px"><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/crane_operator.jpg" rel="lightbox[297]"><img class="size-thumbnail wp-image-298" title="crane_operator" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/crane_operator-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Brink Crane Operator</p></div>
<div id="attachment_299" class="wp-caption alignleft" style="width: 160px"><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/leap_of_faith.jpg" rel="lightbox[297]"><img class="size-thumbnail wp-image-299" title="leap_of_faith" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/leap_of_faith-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Leap of Faith</p></div>
<div id="attachment_300" class="wp-caption alignleft" style="width: 160px"><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/monorail_ambush.jpg" rel="lightbox[297]"><img class="size-thumbnail wp-image-300" title="monorail_ambush" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/monorail_ambush-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Monorail Ambush</p></div>

]]></content:encoded>
			<wfw:commentRss>http://scoringcriticals.com/video-games/brink-screenshots/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Brink, Bethesda&#8217;s new FPS experience.</title>
		<link>http://scoringcriticals.com/video-games/brink-bethesdas-new-fps-experience</link>
		<comments>http://scoringcriticals.com/video-games/brink-bethesdas-new-fps-experience#comments</comments>
		<pubDate>Sat, 23 Jan 2010 00:32:19 +0000</pubDate>
		<dc:creator>Aldar</dc:creator>
				<category><![CDATA[Video Games]]></category>
		<category><![CDATA[Bethesda]]></category>
		<category><![CDATA[Brink]]></category>
		<category><![CDATA[Fallout 3]]></category>
		<category><![CDATA[FPS]]></category>
		<category><![CDATA[Halo]]></category>
		<category><![CDATA[Nintendo]]></category>
		<category><![CDATA[PS3]]></category>
		<category><![CDATA[Xbox 360]]></category>

		<guid isPermaLink="false">http://scoringcriticals.com/?p=264</guid>
		<description><![CDATA[

I love videogames! I grew up with the NES and from then on to the Super Nintendo, after that came the PS1, Xbox, then the PS2 and finally 360 and PS3. I&#8217;ve played great games over the years like Legend of Zelda for the Super Nintendo, Final Fantasy 7 for the PS1 was another great [...]]]></description>
			<content:encoded><![CDATA[
<p><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/brink_logotype-black.png" rel="lightbox[264]"><img class="aligncenter size-full wp-image-265" title="brink_logotype-black" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/brink_logotype-black.png" alt="" width="507" height="112" /></a></p>
<p>I love videogames! I grew up with the NES and from then on to the Super Nintendo, after that came the PS1, Xbox, then the PS2 and finally 360 and PS3. I&#8217;ve played great games over the years like Legend of Zelda for the Super Nintendo, Final Fantasy 7 for the PS1 was another great game that has managed to catch my attention for 80+ hours. I&#8217;ve enjoyed all types of games: RTS, RPG&#8217;s, FPS 3rd person shooters etc etc. The shooter games are the ones that I personally enjoy the most, easy to get the hang of, just point and click and off you go. Actually FPS even inspired the name of this blog ScoringCriticals, you shoot a bad guy in the head, you score a critial&#8230;easy enough!  Among the most enjoyable games I&#8217;ve had the chance to play is Fallout 3 which is, in my book, the single best game I&#8217;ve played.<span id="more-264"></span></p>
<p>Brink is Bethesda&#8217;s and Splash Damage&#8217;s next shooter and they claim that it will revolutionize FPS (much like Halo did back with Halo: Combat Evolved, another awesome game BTW). There is not much info out there so I&#8217;ll just go ahead and quote what they say on their FanKit.</p>
<p>Anyhow, I&#8217;m gonna shut up and let you enjoy these fine videos&#8230;</p>
<p><object id="gtembed" width="480" height="409">
<param name="movie" value="http://www.gametrailers.com/remote_wrap.php?mid=49785"/>
<param name="quality" value="high" /> 
<embed src="http://www.gametrailers.com/remote_wrap.php?mid=49785" name="gtembed" align="middle" allowScriptAccess="sameDomain" quality="high"  type="application/x-shockwave-flash" width="480" height="409"></embed> </object></p>
<p><object id="gtembed" width="480" height="409">
<param name="movie" value="http://www.gametrailers.com/remote_wrap.php?mid=59704"/>
<param name="quality" value="high" /> 
<embed src="http://www.gametrailers.com/remote_wrap.php?mid=59704" name="gtembed" align="middle" allowScriptAccess="sameDomain" quality="high"  type="application/x-shockwave-flash" width="480" height="409"></embed> </object></p>
<p><object id="gtembed" width="480" height="409">
<param name="movie" value="http://www.gametrailers.com/remote_wrap.php?mid=59706"/>
<param name="quality" value="high" /> 
<embed src="http://www.gametrailers.com/remote_wrap.php?mid=59706" name="gtembed" align="middle" allowScriptAccess="sameDomain" quality="high"  type="application/x-shockwave-flash" width="480" height="409"></embed> </object></p>
<p><object id="gtembed" width="480" height="409">
<param name="movie" value="http://www.gametrailers.com/remote_wrap.php?mid=59708"/>
<param name="quality" value="high" /> 
<embed src="http://www.gametrailers.com/remote_wrap.php?mid=59708" name="gtembed" align="middle" allowScriptAccess="sameDomain" quality="high"  type="application/x-shockwave-flash" width="480" height="409"></embed> </object></p>
<blockquote><p>Description:</p>
<p><strong>Brink™</strong> is an immersive shooter that blends single-player, co-op, and multiplayer gameplay into one seamless experience, allowing you to develop your character across all modes of play. You decide the role you want to assume in the world of <strong>Brink</strong> as you fight to save yourself and mankind’s last refuge for humanity. <strong>Brink</strong> offers a compelling mix of dynamic battlefields, extensive customization options, and an innovative control system that will keep you coming back for more.</p>
<p>Story:</p>
<p>A man-made floating city called the Ark, made up of hundreds of separate floating islands, is on the brink of all-out civil war. Originally built as an experimental self-sufficient and 100% “green” habitat, the reported rapid rise of the Earth’s oceans has forced the Ark to become a refuge for humanity.  Crammed with the original Ark founders, their descendants, as well as tens of thousands of refugees, the Ark exists in total isolation from the rest of the world. With 25 years of social unrest, the inhabitants of the Ark have reached their breaking point. It’s up to you to decide the future of the Ark and the human race.</p>
<p>Key Features:</p>
<ul>
<li>Blurring the Lines Between Offline and Online &#8211; Advance your character’s development across every gameplay mode: single player, co-op, and multiplayer. Gain experience points that you can spend on customizing and upgrading your skills and abilities, designing an entirely unique look and feel for your character.</li>
</ul>
<ul>
<li>Groundbreaking Kinesthetics &#8211; Brink uses the familiar shooter controls that you’re used to, without frustrating, artificial constraints and takes advantage of a new feature: the SMART button.  When you press the SMART button, the game dynamically evaluates where you’re trying to get to, and makes it happen. No need to perfectly time a jump or vault, the game knows what you want to do.</li>
</ul>
<ul>
<li>Context-Sensitive Goals and Rewards &#8211; Objectives, communications, mission generation, and inventory selection are all dynamically generated based on your role, your status, your location, your squad-mates, and the status of the battle in all gameplay modes.  You’ll always know exactly where to go, what to do when you get there, and what your reward will be for success.Virtual Texturing &#8211; Brink’s proprietary technology,</li>
</ul>
<ul>
<li>Virtual Texturing, breaks new ground on current-gen consoles and PCs with an even greater focus on highly detailed characters, realistic environments, lighting, effects, and atmospherics,. This competitive lead on the squad-combat genre helps thrust players into the gritty reality of the Ark&#8217;s epic secluded arcology.</li>
</ul>
</blockquote>

]]></content:encoded>
			<wfw:commentRss>http://scoringcriticals.com/video-games/brink-bethesdas-new-fps-experience/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Do Want: Mini Countryman</title>
		<link>http://scoringcriticals.com/do-want/mini-countryman</link>
		<comments>http://scoringcriticals.com/do-want/mini-countryman#comments</comments>
		<pubDate>Fri, 22 Jan 2010 19:29:40 +0000</pubDate>
		<dc:creator>Aldar</dc:creator>
				<category><![CDATA[Cars]]></category>
		<category><![CDATA[Do Want]]></category>
		<category><![CDATA[4 wheel drive]]></category>
		<category><![CDATA[awesome]]></category>
		<category><![CDATA[Countryman]]></category>
		<category><![CDATA[Crossover]]></category>
		<category><![CDATA[Mini]]></category>

		<guid isPermaLink="false">http://scoringcriticals.com/?p=247</guid>
		<description><![CDATA[
I&#8217;ve always seen the Mini Cooper as one of the most awesomest cars out there that are reasonably priced, sure you can think of Enzo&#8217;s and Gallardo&#8217;s and all that but the Mini Cooper is realisticly the only car I can buy. The only problem that I had with the Mini was how versatile it [...]]]></description>
			<content:encoded><![CDATA[
<div id="attachment_248" class="wp-caption aligncenter" style="width: 550px"><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/ctrymen_front.jpg" rel="lightbox[247]"><img class="size-full wp-image-248 " title="Mini Countryman" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/ctrymen_front.jpg" alt="" width="540" height="360" /></a><p class="wp-caption-text">Mini Countryman</p></div>
<p>I&#8217;ve always seen the Mini Cooper as one of the most awesomest cars out there that are reasonably priced, sure you can think of Enzo&#8217;s and Gallardo&#8217;s and all that but the Mini Cooper is realisticly the only car I can buy. The only problem that I had with the Mini was how versatile it is. Not enough ground clearance wich is OK if you drive on the Autobahn or down the 5th Avenue. But if you&#8217;re gonna use a Mini here in Mexico where the streets are plagued by speedbumps or more like speed-<em>fuckin-</em>walls and potholes that you could easily fit your Mini in, you are going to need a little more ground clearance. Now if there was only a Mini with a little bit more ground clearance, a liiiittle bit more trunk space&#8230;enter the Mini Countryman, Mini&#8217;s answer to the SUV.<span id="more-247"></span></p>
<div id="attachment_252" class="wp-caption alignleft" style="width: 310px"><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/ctrymen_front_awsm-e1264187077234.jpg" rel="lightbox[247]"><img class="size-medium wp-image-252" title="Awesome!" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/ctrymen_front_awsm-300x200.jpg" alt="Awesome!" width="300" height="200" /></a><p class="wp-caption-text">This is Awesome!!</p></div>
<p>The Countryman is a 4 door, all wheel drive vehicle with slightly more rugged looks  a bit more ground clearance and a bit more spacious but still remaining a Mini at heart. The Countryman will officially debut in March at the Geneva Motor Show. In Europe we can expect the full range of engines including naturally aspirated diesel  as well as turbocharged gasoline engines, the last one producing an output of 184 horse-power.  In Eurpoe the Countryman S will come with variable valve technology and the suspension will be able to be lowerd or lifted and will also be able to be tuned for a tighter ride. Looking at the pictures it seems that the Countryman will be equipped with 4 bucket-style seats  and it will feature a central rail that will enable to configure the central console or a the traditional 3 person bench style seats. Both will be able to folded down to get 41 cubic inches of trunk space.</p>
<p>I don&#8217;t know about you guys but to me this is the answer to all my car prayers. I&#8217;ve always wanted the drinving experience of a Mini with Mini looks but with a little added versatility and this just hits the spot. I understand you&#8217;re not going to pit this up against an FJ-Cruiser or a Jeep Rubicon, but that&#8217;s not what I personally need. And even if I had an FJ or a Rubicon I&#8217;m not gonna drive a $380k+ car into a pile of rocks in God-knows-what-desert. To me this is a keeper! Cheers!</p>
<div id="attachment_256" class="wp-caption aligncenter" style="width: 510px"><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/ctrymen_back.jpg" rel="lightbox[247]"><img class="size-full wp-image-256" title="ctrymen_back" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/ctrymen_back-e1264188356621.jpg" alt="" width="500" height="333" /></a><p class="wp-caption-text">Nice Ass</p></div>

]]></content:encoded>
			<wfw:commentRss>http://scoringcriticals.com/do-want/mini-countryman/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Tether on an iPhone 3G and Telcel</title>
		<link>http://scoringcriticals.com/modding/how-to-tether-on-an-iphone-3g-and-telcel</link>
		<comments>http://scoringcriticals.com/modding/how-to-tether-on-an-iphone-3g-and-telcel#comments</comments>
		<pubDate>Tue, 19 Jan 2010 21:27:37 +0000</pubDate>
		<dc:creator>Derick</dc:creator>
				<category><![CDATA[Modding]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[jailbreak]]></category>
		<category><![CDATA[Telcel]]></category>
		<category><![CDATA[tethering]]></category>

		<guid isPermaLink="false">http://scoringcriticals.com/?p=232</guid>
		<description><![CDATA[
So, you have a brand new iPhone 3G or 3GS, you live in Mexico and you wish that you can share the internet connection with your computer.  You will notice that&#8217;s impossible, although the iPhone has the capability to do that, Telcel decided not to offer that feature and blocked it.
There are two ways to [...]]]></description>
			<content:encoded><![CDATA[
<p>So, you have a brand new iPhone 3G or 3GS, you live in Mexico and you wish that you can share the internet connection with your computer.  You will notice that&#8217;s impossible, although the iPhone has the capability to do that, Telcel decided not to offer that feature and blocked it.<span id="more-232"></span></p>
<p>There are two ways to accomplish this task, pay a lot of money or not. So I&#8217;m going to show you the second option. Before doing something, please make sure that you update your iPhone to 3.1.2. You will NOT loose any information already in your iPhone.</p>
<p><strong>Task</strong>:</p>
<ul>
<li>Tether on an iPhone 3G or 3GS and Telcel. (iPhone OS 3.1.2)</li>
</ul>
<p><span style="color: #ff0000;"> **</span><strong><span style="color: #ff0000;">UPDATE (do NOT upgrade to 3.1.3 check: </span><a href="http://iphonejtag.blogspot.com/" target="_blank"><span style="color: #ff0000;">here</span></a><span style="color: #ff0000;"> for updates)**</span></strong></p>
<p><strong>Materials and requirements</strong>:</p>
<ul>
<li>iPhone 3G, 3GS running OS 3.1.2</li>
<li>Computer (Mac or PC) &lt;- PC sucks! <img src='http://scoringcriticals.com/blog/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> </li>
<li>Internet connection</li>
<li>USB to iPhone connector</li>
<li>Telcel <strong>UNLIMITED</strong> internet plan. (unless you want to be charged a lot of money)</li>
</ul>
<p><strong>Quick Steps</strong>:</p>
<ul>
<li>Jailbreak the iPhone</li>
<li>Unlock the phone for tethering capability</li>
<li>Select Telcel to activate tethering</li>
<li>Activate Tethering</li>
</ul>
<hr /><strong>To Jailbreak the iPhone</strong>:</p>
<ol>
<li>Download BlackRa1n from <a href="http://blackra1n.com/" target="_blank">here</a>. You will have to select your OS, the file is very small.</li>
<li>Connect your iPhone to your computer.</li>
<li>Run the file you downloaded (<em>blackra1n.exe or blackra1n.zip</em>), You should see this.<br />
<a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/rain-300x90.png" rel="lightbox[232]"><img class="aligncenter size-full wp-image-235" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/rain-300x90.png" alt="" width="300" height="90" /></a></li>
<li>Hit the &#8220;<strong>make it ra1n</strong>&#8221; button. Almost immediately the iPhone will reset. The process will take up to 2 minutes. <strong>Do not disconnect!</strong></li>
<li>Once your iPhone has fully reboot, you will have a jailbroken iPhone.</li>
</ol>
<p><strong>To Unlock the phone for tethering capability:</strong></p>
<ol>
<li>On the iPhone, click on the blackra1n app.<br />
<a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/br1.png" rel="lightbox[232]"><img class="aligncenter size-full wp-image-236" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/br1.png" alt="" width="143" height="123" /></a></li>
<li>Tap on the label that reads &#8220;<strong>sn0w</strong>&#8220;.</li>
<li>Click on the &#8220;<strong>Install</strong>&#8221; button on your up right corner. This will enable the iPhone to work on any carrier (Telcel, Movistar, etc) and the possibility to tether.</li>
</ol>
<p><strong>To Use Telcel:</strong></p>
<ol>
<li>Open Safari in your iPhone.</li>
<li>Type <a href="http://www.iphone-notes.de/mobileconfig/" target="_blank">http://www.iphone-notes.de/mobileconfig/</a>.</li>
<li><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/Screen-shot-2010-01-19-at-2.53.51-PM.png" rel="lightbox[232]"><img class="aligncenter size-medium wp-image-237" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/Screen-shot-2010-01-19-at-2.53.51-PM-300x141.png" alt="" width="300" height="141" /></a>On the Carrier drop down menu, select <strong>MX Telcel</strong>. You do not have to provide an e-mail address nor any other info.</li>
<li>Click on the <strong>Download</strong> button.</li>
<li>After a few seconds, the iPhone will run the new download file and will redirect you to a new view. In this view you will be asked to install a new profile to enable tethering, tap the <strong>install</strong> button.</li>
<li>You have now tethering available in your iPhone 3G or 3GS.</li>
</ol>
<p><strong>To Activate Tethering:</strong></p>
<ol>
<li>Go to Settings.<br />
<a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/settingsev4-e1263935362242.png" rel="lightbox[232]"><img class="alignnone size-full wp-image-238" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/settingsev4-e1263935362242.png" alt="" width="50" height="50" /></a></li>
<li>Tap on <strong>General</strong>.</li>
<li>Click on <strong>Network</strong>.</li>
<li>There should be an <strong>Internet Tethering</strong> option now.</li>
<li>Turn on Tethering, you will be asked if you want to use USB or Bluetooth, use the one you like.</li>
<li>Return home on the iPhone and you should see that Tethering is on.<br />
<a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/telcel-3g-tethering.jpg" rel="lightbox[232]"><img class="aligncenter size-full wp-image-240" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/telcel-3g-tethering.jpg" alt="" width="192" height="288" /></a></li>
<li>After a few seconds you will have internet connection on your computer through your iPhone.</li>
</ol>
<hr />
<h1><strong>DISCLAIMER:</strong></h1>
<p><strong><br />
</strong></p>
<p><strong>Scoringcriticals.com is not your mom! <span style="font-weight: normal;">We didn&#8217;t create the software nor recommend to do this. If you do, you are breaking Apple&#8217;s warranty and Telcel&#8217;s contract, so <strong><span style="color: #ff0000;"><span style="text-decoration: underline;">do it at your OWN risk</span></span></strong> and don&#8217;t come crying later.</span></strong></p>
<p>More Info:</p>
<p><a href="http://www.youtube.com/watch?v=WnLk6wiwzk0" target="_blank">http://www.youtube.com/watch?v=WnLk6wiwzk0<br />
</a><a href="http://www.iphone-notes.de/mobileconfig/" target="_blank">http://www.iphone-notes.de/mobileconfig/<br />
</a><a href="http://www.mobilecrunch.com/2009/11/03/tutorial-how-to-tether-on-an-iphone-3g-or-3gs-running-os-3-1-2/" target="_blank">Moblie Crunch</a></p>

]]></content:encoded>
			<wfw:commentRss>http://scoringcriticals.com/modding/how-to-tether-on-an-iphone-3g-and-telcel/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Do Want: Google&#8217;s Phone Nexus One</title>
		<link>http://scoringcriticals.com/do-want/do-want-googles-phone-nexus-one</link>
		<comments>http://scoringcriticals.com/do-want/do-want-googles-phone-nexus-one#comments</comments>
		<pubDate>Thu, 07 Jan 2010 22:56:06 +0000</pubDate>
		<dc:creator>Aldar</dc:creator>
				<category><![CDATA[Do Want]]></category>
		<category><![CDATA[android]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Motorola]]></category>
		<category><![CDATA[nexus one]]></category>
		<category><![CDATA[Palm Pre]]></category>
		<category><![CDATA[Smartphone]]></category>
		<category><![CDATA[Telcel]]></category>

		<guid isPermaLink="false">http://scoringcriticals.com/?p=209</guid>
		<description><![CDATA[
The Google phone was launched earlier this week and it generated quite a bit of buzz on the net. And why not? Most people see this Google Phone as the only one with a real possibility to become an iPhone killer. Looking past the whole techinical specs, i think that the key to this phone&#8217;s [...]]]></description>
			<content:encoded><![CDATA[
<div id="attachment_332" class="wp-caption aligncenter" style="width: 283px"><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/Picture-1.png" rel="lightbox[209]"><img class="size-full wp-image-332" title="Nexus One" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/Picture-1.png" alt="" width="273" height="533" /></a><p class="wp-caption-text">Google&#39;s Nexus One Phone</p></div>
<p>The Google phone was launched earlier this week and it generated quite a bit of buzz on the net. And why not? Most people see this Google Phone as the only one with a real possibility to become an iPhone killer. Looking past the whole techinical specs, i think that the key to this phone&#8217;s success, <em>at least here in México</em>, is the negotiations Google makes with Telcel and the other mexican carriers. I&#8217;ve seen it with the iPhone and the blackberry. iPhone&#8217;s plans are much more expensive than Blackberry&#8217;s and because of that I&#8217;ve seen more and more people using Blackberrys(ies).<span id="more-209"></span></p>
<p>Something that I can&#8217;t quite put my finger on is Google&#8217;s strategy. For what I&#8217;ve seen there are several Android phones out</p>
<div id="attachment_211" class="wp-caption alignright" style="width: 146px"><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/nexus_one.jpg" rel="lightbox[209]"><img class="size-medium wp-image-211" title="nexus_one" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/nexus_one-136x300.jpg" alt="" width="136" height="300" /></a><p class="wp-caption-text">Let&#39;s Compare</p></div>
<p>there, including Motorolas Droid and Dell&#8217;s Mini 3i among others, and isn&#8217;t Google competing directly with these other phones? I understand that Android is open source but, where is the advantage? Isn&#8217;t Google cannibalizing it&#8217;s own supporters?</p>
<p>These are only my thougths I would really appreciate it if you give me your opinions in the comments section.</p>
<p>Cheers!!</p>

]]></content:encoded>
			<wfw:commentRss>http://scoringcriticals.com/do-want/do-want-googles-phone-nexus-one/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Zombie Survival Sheet</title>
		<link>http://scoringcriticals.com/zombies/the-zombie-survival-sheet</link>
		<comments>http://scoringcriticals.com/zombies/the-zombie-survival-sheet#comments</comments>
		<pubDate>Wed, 06 Jan 2010 00:37:33 +0000</pubDate>
		<dc:creator>Aldar</dc:creator>
				<category><![CDATA[Zombies]]></category>
		<category><![CDATA[survival]]></category>
		<category><![CDATA[white zombie]]></category>
		<category><![CDATA[zombie apocalypse]]></category>

		<guid isPermaLink="false">http://scoringcriticals.com/?p=167</guid>
		<description><![CDATA[

Everybody knows that the Zombie Apocalypse is imminent so you need to be ready to fend off the zombie hordes. You should start preparing and for this you should start filling your Zombie Survival Sheet so you know exactly what you need when the Zombie Apocalypse comes. Here is mine:
Cothing (upper): ACU Military uniform. Lightweight, [...]]]></description>
			<content:encoded><![CDATA[
<p style="text-align: center;"><a href="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/zss.jpg" rel="lightbox[167]"><img class="aligncenter size-medium wp-image-202" title="zss" src="http://scoringcriticals.com/blog/wp-content/uploads/2010/01/zss-290x300.jpg" alt="" width="290" height="300" /></a></p>
<p>Everybody knows that the Zombie Apocalypse is imminent so you need to be ready to fend off the zombie hordes. You should start preparing and for this you should start filling your Zombie Survival Sheet so you know exactly what you need when the Zombie Apocalypse comes. Here is mine:<span id="more-167"></span></p>
<p>Cothing (upper): ACU Military uniform. Lightweight, sturdy yet dries quickly. Lots of pockets to keep things in, makes no noise. Camouflage helps also. (If a zombie can&#8217;t see you he can&#8217;t bite you.)</p>
<p>Clothing (lower): ACU Military pants. Same as above.</p>
<p>Headgear: ACU Military cap, great for keeping the sun out of your eyes.</p>
<p>Main weapon: AK-47 Cheap, reliable, and easy to find ammo&#8230;i guess</p>
<p>Secondary weapon: Crowbar. hard-hitting plus you have the advantage that you can pry open things and other uses.</p>
<p>Location: Monterrey, México</p>
<p>Stronghold: Zombie-Proof house in the montains</p>
<p>Vehicle: FJ- Cruiser with spikes on the bumpers</p>
<p>Inventory: Stainless steel canteen, sturdy combat knife, swiss army knife, singal mirror, rope,</p>
<p>Last Words: sumbitch!</p>
<p>Battle anthem: Any song from the cd Astro Creep 2000 by White Zombie&#8230;coincidence?</p>

]]></content:encoded>
			<wfw:commentRss>http://scoringcriticals.com/zombies/the-zombie-survival-sheet/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
