<?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>marioDesign</title>
	<atom:link href="http://mario-design.info/page/feed/" rel="self" type="application/rss+xml" />
	<link>http://mario-design.info/page</link>
	<description>21 years old freelance designer and web applications developer</description>
	<lastBuildDate>Wed, 22 Sep 2010 08:18:36 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Useful PHP tips</title>
		<link>http://mario-design.info/page/useful-php-tips/</link>
		<comments>http://mario-design.info/page/useful-php-tips/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 13:35:38 +0000</pubDate>
		<dc:creator>Mario Ropič</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Active Server Pages]]></category>
		<category><![CDATA[Apache Tomcat]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[array data]]></category>
		<category><![CDATA[arrays]]></category>
		<category><![CDATA[article title]]></category>
		<category><![CDATA[CGI]]></category>
		<category><![CDATA[clarity]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[Common Gateway Interface]]></category>
		<category><![CDATA[Cross Site Scripting]]></category>
		<category><![CDATA[CSRF]]></category>
		<category><![CDATA[defense in depth]]></category>
		<category><![CDATA[distinction]]></category>
		<category><![CDATA[EA]]></category>
		<category><![CDATA[FALSE]]></category>
		<category><![CDATA[FIEO]]></category>
		<category><![CDATA[forgeries]]></category>
		<category><![CDATA[fundamental rule]]></category>
		<category><![CDATA[goo]]></category>
		<category><![CDATA[good security]]></category>
		<category><![CDATA[href]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTTP]]></category>
		<category><![CDATA[Injection Cheat Sheet]]></category>
		<category><![CDATA[look]]></category>
		<category><![CDATA[MVC]]></category>
		<category><![CDATA[naming conventions]]></category>
		<category><![CDATA[NEW]]></category>
		<category><![CDATA[ORM]]></category>
		<category><![CDATA[OUTPUT]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[root cause]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[security practice]]></category>
		<category><![CDATA[security practices]]></category>
		<category><![CDATA[SELECT]]></category>
		<category><![CDATA[simplicity]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[sql injection]]></category>
		<category><![CDATA[sql query]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[tenet]]></category>
		<category><![CDATA[title]]></category>
		<category><![CDATA[vulnerability]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[Web Applications]]></category>
		<category><![CDATA[works]]></category>
		<category><![CDATA[World Wide Web]]></category>
		<category><![CDATA[XSS]]></category>
		<category><![CDATA[Zend Framework]]></category>

		<guid isPermaLink="false">http://mario-design.info/page/?p=742</guid>
		<description><![CDATA[Use an SQL Injection Cheat Sheet XSS (Cross-Site Scripting) and CSRF (Cross-Site Request Forgeries), are at least as common and at least as dangerous. We can provide some much-needed context, but because we don’t want to focus too much on one attack, we’ll first take a step back. Every developer should be familiar with good ...]]></description>
			<content:encoded><![CDATA[<h2>Use an SQL Injection Cheat Sheet</h2>
<p><a href="http://en.wikipedia.org/wiki/Cross-site_scripting" target="_blank">XSS (Cross-Site Scripting)</a> and <a href="http://en.wikipedia.org/wiki/Cross-site_request_forgery" target="_blank">CSRF (Cross-Site Request Forgeries)</a>, are at least as common and at least as dangerous.</p>
<p>We  can provide some much-needed context, but because we don’t want to  focus too much on one attack, we’ll first take a step back. Every  developer should be familiar with good security practices, and <a href="http://mario-design.info/page/tag/apps/" class="st_tag internal_tag" rel="tag" title="Posts tagged with apps">apps</a>  should be designed with these practices in mind. A <a href="http://mario-design.info/page/tag/fundamental-rule/" class="st_tag internal_tag" rel="tag" title="Posts tagged with fundamental rule">fundamental rule</a> is  to never trust data you receive from somewhere else. Another rule is to  escape data before you send it somewhere else. Combined, these rules can  be simplified to make up a basic <a href="http://mario-design.info/page/tag/tenet/" class="st_tag internal_tag" rel="tag" title="Posts tagged with tenet">tenet</a> of security: filter input,  escape output (FIEO).</p>
<p>The root cause of SQL injection is a failure  to escape output. More specifically, it is when the distinction between  the format of an SQL query and the data used by the SQL query is not  carefully maintained. This is common in PHP <a href="http://mario-design.info/page/tag/apps/" class="st_tag internal_tag" rel="tag" title="Posts tagged with apps">apps</a> that construct queries  as follows:</p>
<pre name="code" class="php">$query = "SELECT * FROM articles WHERE  title = '$_GET['article_title']'";</pre>
<p>The value of <em>$_GET['article_title']</em> is provided by another source, the user, but it is neither filtered or escaped.</p>
<p>Escaping preserves data in a new context. The emphasis on escaping output is a reminder that data used outside of your Web app needs to be escaped, else it might be misinterpreted. By contrast, filtering ensures that data is valid before it’s used.</p>
<p>Assuming we&#8217;re using MySQL, the SQL injection vulnerability can be mitigated by escaping the name with mysql_real_escape_string(). If the name is also filtered, there is an additional layer of security. (Implementing multiple layers of security is called &#8220;defense in depth&#8221; and is a very good security practice.) The following example demonstrates filtering input and escaping output, with naming conventions used for code clarity:</p>
<pre name="code" class="php">// Initialize arrays for filtered and escaped data, respectively.
$data_clean = array();
$data_sql    = array();

// Filter the article title. (For simplicity, we require alphabetic names.)
if (ctype_alpha($_GET['article_title'])) {
    $data_clean['article_title'] = $_GET['article_title'];
} else {
    // The article title is invalid.. Bla bla
}

// Escape the article title.
$data_sql['article_title'] = mysql_real_escape_string($data_clean['article_title']); 

// Construct the query.
$query = "SELECT * FROM articles WHERE  title = '$data_sql['article_title']'";</pre>
<h2>Difference Between Comparison Operators</h2>
<p>This is a good tip, but it is missing a practical example that demonstrates when a non-strict comparison can cause problems.</p>
<p>If you use <em><strong>strpos()</strong></em> to determine whether a substring exists within a string (it returns FALSE if the substring is not found), the results can be misleading:</p>
<pre name="code" class="php">$author = 'mario &amp; Design';

if (strpos($title, 'mario')) {
    echo 'mario is an author.';
} else {
    echo 'mario is not an author.';
}</pre>
<p>Because the substring mario occurs at the very beginning of mario &amp; Design, strpos() correctly returns 0, indicating the first position in the string. Because the conditional statement treats this as a Boolean, it evaluates to FALSE, and the condition fails. In other words, it looks like mario is not an author, but he is!</p>
<p>This can be corrected with a strict comparison:</p>
<pre name="code" class="php">if (strpos($author, 'mario') !== FALSE) {
    echo 'mario is an author.';
} else {
    echo 'mario is not an author.';
}</pre>
<h2>Use an MVC Framework</h2>
<p>As the design of the World Wide Web was not inherently dynamic, early hypertext consisted of hand-coded HTML that was published on web servers. Any modifications to published pages needed to be performed by the pages&#8217; author. To provide a dynamic web page that reflected user inputs, the Common Gateway Interface (CGI) standard was introduced for interfacing external applications with web servers.<sup id="cite_ref-1">[2]</sup> CGI could adversely affect server load, though, since each request had to start a separate process.</p>
<p>Programmers wanted tighter integration with the web server to enable high traffic web applications. The Apache <a href="http://mario-design.info/page/tag/http/" class="st_tag internal_tag" rel="tag" title="Posts tagged with HTTP">HTTP</a> Server, for example, supports modules that can extend the web server with arbitrary code executions (such as mod perl) or forward specific requests to a web server that can handle dynamic content (such as mod jk). Some web servers (such as Apache Tomcat) were specifically designed to handle dynamic content by executing code written in some languages, such as Java.</p>
<p>Around the same time, new languages were being developed specifically for use in the web, such as ColdFusion, PHP and Active Server Pages.</p>
<p>While the vast majority of languages available to programmers to use in creating dynamic web pages have libraries to help with common tasks, web applications often require specific libraries that are useful in web applications, such as creating HTML (for example, JavaServer Faces).</p>
<p>Eventually, mature, &#8220;full stack&#8221; frameworks appeared, that often gathered multiple libraries useful for web development into a single cohesive software stack for web developers to use. Examples of this include JavaEE (Servlets), WebObjects, OpenACS, Catalyst, Ruby on Rails, Django, and Zend Framework.</p>
<h3>The Pros of using an MVC Framework</h3>
<p>The best part about using an MVC framework is that everything in the web application has a standard structure and it is compartmentalized. If you ever have any bugs that need fixing, they are very easy to track down. It&#8217;s also great if you ever need to update the code, as changing one piece won&#8217;t affect anything on the site. The MVC structure is also very handy for large scale projects that have several people working on them. The design department could be making the views while the programming department is working on the models, and nobody would be stepping on anybody&#8217;s toes.</p>
<h3>The Cons of using an MVC Framework</h3>
<p>One of the problems is that MVC frameworks can be incredibly bulky. They require a lot of files for everything to work properly. Ruby on Rails generates several files before you even enter your first line of code! Also, sometimes MVC applications can become compartmentalized to a fault. In addition to the models, views, and controllers, you can also have templates (sort of a global view), and helper files (which when there are complex views that can&#8217;t be handled by a typical controller). Now one web page could require up to 5 files just for it. If you are not careful, MVC projects can get out of hand pretty quickly. This can also end up affecting performance.<br />
</p>
]]></content:encoded>
			<wfw:commentRss>http://mario-design.info/page/useful-php-tips/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google URL Shortener by Goo.gl with Firefox Addon</title>
		<link>http://mario-design.info/page/google-url-shortener-by-goo-gl-with-firefox-addon/</link>
		<comments>http://mario-design.info/page/google-url-shortener-by-goo-gl-with-firefox-addon/#comments</comments>
		<pubDate>Sun, 19 Sep 2010 10:56:01 +0000</pubDate>
		<dc:creator>Mario Ropič</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[alignnone]]></category>
		<category><![CDATA[alt]]></category>
		<category><![CDATA[blockquote]]></category>
		<category><![CDATA[class]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[clipboard]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[core]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[Drag]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[goo]]></category>
		<category><![CDATA[goo.gl]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Graphic Software]]></category>
		<category><![CDATA[height]]></category>
		<category><![CDATA[href]]></category>
		<category><![CDATA[icon]]></category>
		<category><![CDATA[img]]></category>
		<category><![CDATA[Install]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[lite]]></category>
		<category><![CDATA[look]]></category>
		<category><![CDATA[malware]]></category>
		<category><![CDATA[nofollow]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[rel]]></category>
		<category><![CDATA[resolution]]></category>
		<category><![CDATA[section]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[service]]></category>
		<category><![CDATA[short url]]></category>
		<category><![CDATA[Shortener]]></category>
		<category><![CDATA[Speed]]></category>
		<category><![CDATA[src]]></category>
		<category><![CDATA[Stability]]></category>
		<category><![CDATA[Tag]]></category>
		<category><![CDATA[target]]></category>
		<category><![CDATA[title]]></category>
		<category><![CDATA[Toolbar]]></category>
		<category><![CDATA[tweet]]></category>
		<category><![CDATA[uptime]]></category>
		<category><![CDATA[URL]]></category>
		<category><![CDATA[URLs]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[width]]></category>

		<guid isPermaLink="false">http://mario-design.info/page/?p=719</guid>
		<description><![CDATA[Goo.gl is a service that takes long URLs and squeezes them into fewer characters to make a link that is easier to share, tweet, or email to friends. The core goals of Goo.gl service are: Stability – ensuring that the service has very good uptime Security – protecting users from malware and phishing pages Speed ...]]></description>
			<content:encoded><![CDATA[<p><a title="goo.gl" rel="nofollow" href="http://goo.gl/" target="_blank"><strong><em>Goo</em>.<em>gl</em></strong></a> is a service that takes long URLs and squeezes them into fewer  characters to make a link that is easier to share, tweet, or email to  friends.</p>
<blockquote><p>The core goals of <strong><em><a title="goo.gl" rel="nofollow" href="http://goo.gl/" target="_blank">Goo.gl</a></em></strong> service are:</p>
<ul>
<li><strong>Stability</strong> – ensuring that the service has very good uptime</li>
<li><strong>Security</strong> – protecting users from malware and phishing pages</li>
<li><strong>Speed</strong> – fast <a href="http://mario-design.info/page/tag/resolution/" class="st_tag internal_tag" rel="tag" title="Posts tagged with resolution">resolution</a> of short URLs</li>
</ul>
</blockquote>
<p>To use <a title="goo.gl" rel="nofollow" href="http://goo.gl/" target="_blank"><strong><em>Goo</em>.<em>gl</em></strong></a>, you must install the <a title="Google Toolbar" href="http://toolbar.google.com" target="_blank">Google toolbar</a> on your computer.  But, if you are using <a title="Tag: Firefox" href="http://mario-design.info/page/tag/firefox/" target="_blank">Firefox</a>, you can use a <a title="Tag: Firefox" href="http://mario-design.info/page/tag/firefox/" target="_blank">Firefox</a> addon to shortened  link in <a title="Tag: Goo.gl" href="http://mario-design.info/page/tag/goo.gl/">goo.gl</a> with your <a title="Tag: Firefox" href="../tag/firefox/" target="_blank">Firefox</a> without installing the toolbar.</p>
<h2>Install:</h2>
<ol>
<li>The first, you need install addon <a rel="nofollow" href="https://addons.mozilla.org/en-US/firefox/addon/55308" target="_blank"><strong>goo.gl lite</strong></a> for your <a title="Tag: Firefox" href="../tag/firefox/" target="_blank">Firefox</a>.<br />
<a href="http://mario-design.info/page/wp-content/uploads/2010/09/addon.png" target="_blank"><img class="alignnone size-medium wp-image-723" title="goo.gl Addon" src="http://mario-design.info/page/wp-content/uploads/2010/09/addon-300x102.png" alt="goo.gl Addon" width="300" height="102" /></a></li>
<li>After installed this addon, restart <a title="Tag: Firefox" href="../tag/firefox/" target="_blank">Firefox</a> and right <a href="http://mario-design.info/page/tag/click/" class="st_tag internal_tag" rel="tag" title="Posts tagged with click">click</a> in above section to open <a href="http://mario-design.info/page/tag/customize/" class="st_tag internal_tag" rel="tag" title="Posts tagged with customize">customize</a>.<br />
<a href="http://mario-design.info/page/wp-content/uploads/2010/09/addon_2.png" target="_blank"><img class="alignnone size-full wp-image-725" title="goo.gl Addon 2" src="http://mario-design.info/page/wp-content/uploads/2010/09/addon_2.png" alt="goo.gl Addon 2" width="202" height="97" /></a></li>
<li>Drag the <a title="Tag: Goo.gl" href="../tag/goo.gl/">Goo.gl</a> icon to <a title="Tag: Firefox" href="../tag/firefox/" target="_blank">Firefox</a> toolbar.</li>
<li>Now, it&#8217;s look like this<br />
<a href="http://mario-design.info/page/wp-content/uploads/2010/09/addon_3.png" target="_blank"><img class="alignnone size-full wp-image-726" title="Goo.gl Addon 3" src="http://mario-design.info/page/wp-content/uploads/2010/09/addon_3.png" alt="Goo.gl Addon 3" width="394" height="122" /></a></li>
<li>Go to the web page need to shorten and <a href="http://mario-design.info/page/tag/click/" class="st_tag internal_tag" rel="tag" title="Posts tagged with click">click</a> to <strong>Goo.gl</strong> icon, the link will be shorten and copied to clipboard.</li>
</ol>
<p>And thats all!</p>
<p>Goo.gl URL: <a title="Short current URL" href="http://goo.gl/UXmD" target="_blank">http://goo.gl/UXmD</a><br />
</p>
]]></content:encoded>
			<wfw:commentRss>http://mario-design.info/page/google-url-shortener-by-goo-gl-with-firefox-addon/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Worst Crimes by Web Designers &amp; Developers</title>
		<link>http://mario-design.info/page/the-worst-crimes-by-web-designers-developers/</link>
		<comments>http://mario-design.info/page/the-worst-crimes-by-web-designers-developers/#comments</comments>
		<pubDate>Sun, 19 Sep 2010 09:40:58 +0000</pubDate>
		<dc:creator>Mario Ropič</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Building Findable Websites Aarron Walter]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[NEW]]></category>
		<category><![CDATA[OK]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[URL]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://mario-design.info/page/?p=707</guid>
		<description><![CDATA[Web designers &#38; developers often focus on web standards, table-less layouts or CSS effects like styled lists or sidebars etc. All these things are perfectly OK unless they are executed at the expense of findability. Findability is a seemingly new term that has become a buzzword recently due to a book called Building Findable Websites ...]]></description>
			<content:encoded><![CDATA[<p>Web designers &amp; developers often focus on web standards, table-less layouts or CSS effects like styled lists or sidebars etc. All these things are perfectly OK unless they are executed at the expense of findability.</p>
<blockquote><p>Findability is a seemingly new term that has become a buzzword recently due to a book called <a href="http://buildingfindablewebsites.com/" target="_blank">Building Findable Websites by Aarron Walter</a>.</p></blockquote>
<p><strong>Here are collected the 5 worst findability crimes committed By web designers &amp; developers you should avoid:</strong></p>
<h2>1. Links</h2>
<p>Why tell anybody what you do when you can make them guess? “Profile”,  “projects” is much more mysterious than just writing “web design”,  “graphic design” or “programming”. Let them <a href="http://mario-design.info/page/tag/click/" class="st_tag internal_tag" rel="tag" title="Posts tagged with click">click</a> to find out or bounce  if they are not patient enough.</p>
<h2>2. HTML titles</h2>
<p>For years web designers used “cool” HTML titles for their websites, the  more special characters, the less decriptive keywords the better:  —===###/\Cool Title/\###===— Also imagine a book cover with only the  author’s name but with no title, many web designers won’t disclose what  they do or offer. Some obviously only offer portfolios. Many sell “work”  or “projects”.</p>
<h2>3. Cool Menus</h2>
<p>Since at least 1999, the more complicated JavaScript menus you used, the  better, many of them are still not crawlable by search engines, also  most people won’t <a href="http://mario-design.info/page/tag/click/" class="st_tag internal_tag" rel="tag" title="Posts tagged with click">click</a> hidden menu items.</p>
<h2>4. URL structure</h2>
<p>Many high profile websites still use URL structures that are unstable, seemingly random and  unreadable for both humans and robots. They probably never heard of the  term URL design.</p>
<h2>5. Pagination</h2>
<p>Do you think people <a href="http://mario-design.info/page/tag/click/" class="st_tag internal_tag" rel="tag" title="Posts tagged with click">click</a> 1, 2, 3, 5, 10 pages just to see some images? Some  do, but you lose a large part of your audience with each <a href="http://mario-design.info/page/tag/click/" class="st_tag internal_tag" rel="tag" title="Posts tagged with click">click</a>. Also  those who only scan the page will leave instantly.</p>
<p>If you want people to buy  your services, they must find you first. Let people find you!<br />
</p>
]]></content:encoded>
			<wfw:commentRss>http://mario-design.info/page/the-worst-crimes-by-web-designers-developers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PES 2011 vs. FIFA 11</title>
		<link>http://mario-design.info/page/pes-2011-vs-fifa-11/</link>
		<comments>http://mario-design.info/page/pes-2011-vs-fifa-11/#comments</comments>
		<pubDate>Fri, 17 Sep 2010 09:06:44 +0000</pubDate>
		<dc:creator>Mario Ropič</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[FIFA]]></category>
		<category><![CDATA[PES]]></category>

		<guid isPermaLink="false">http://mario-design.info/page/?p=690</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="full_video_frame"><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/-mbF5zsgUgc"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://www.youtube.com/v/-mbF5zsgUgc" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="425" height="344" flashvars=""></embed></object></div><br />

]]></content:encoded>
			<wfw:commentRss>http://mario-design.info/page/pes-2011-vs-fifa-11/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FIFA 2011 Demo</title>
		<link>http://mario-design.info/page/fifa-2011-demo/</link>
		<comments>http://mario-design.info/page/fifa-2011-demo/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 10:32:43 +0000</pubDate>
		<dc:creator>Mario Ropič</dc:creator>
				<category><![CDATA[FIFA 2011]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[core]]></category>
		<category><![CDATA[EA]]></category>
		<category><![CDATA[FIFA]]></category>
		<category><![CDATA[PC]]></category>
		<category><![CDATA[Photo Game Face]]></category>
		<category><![CDATA[TRUE]]></category>

		<guid isPermaLink="false">http://mario-design.info/page/?p=681</guid>
		<description><![CDATA[The EA SPORTS soccer engine that drives the award-winning FIFA franchise on Xbox 360 and PS3 has arrived on PC, delivering next generation console-quality gameplay, game modes and graphics. The physics-based, data-driven technology delivers true freedom on the pitch with individuality of player control and movement, sophisticated ball touches, and physical interaction between players. It ...]]></description>
			<content:encoded><![CDATA[<p>The EA SPORTS soccer engine that drives the award-winning FIFA franchise  on Xbox 360 and PS3 has arrived on PC, delivering next generation  console-quality gameplay, game modes and graphics. The physics-based,  data-driven technology delivers true freedom on the pitch with  individuality of player control and movement, sophisticated ball  touches, and physical interaction between players. It is the most  complete simulation of football on PC.</p>
<p>The market-leading true 360° Dribbling system gives players precise  control of the ball and next generation animation technology delivers  Skilled Dribbling, enabling skilled players to face defenders and use  highly responsive lateral dribbling to skip past them. Plus, Physical  Play has been improved using collision sharing, creating a varied, less  predictable, and extended fight for possession between players.</p>
<p>Live out the fantasy of playing as a professional player in Virtual Pro.  Put yourself in the game using Photo Game Face and then embark on a  career with 230 accomplishments to master across all games modes. Begin  in the Practice Arena where players can perfect their skills before  stepping onto the pitch. Utilize Customizable Set Pieces to create your  very own free kicks and corners from up to 32 different dead ball  situations for use on match day. Record and test plays before taking  them onto the pitch.</p>
<p>FIFA Soccer 11 delivers stunning player renders for every player, 62  different stadiums and front end menus with mouse and keyboard support  for fast and easy navigation.</p>
<div class="info_box">Operating System : Microsoft Windows XP / Windows Vista / Windows 7<br />
Processor : Intel Dual Core at 2.4 GHz<br />
Video Card : 256 MB VRAM – NVIDIA GeForce 8800 or better<br />
Memory : 1 GB RAM<br />
Hard Disk : -<br />
Sound Card: DirectX Compatible<br />
Direct X : 9.0c<br />
Controls : Keyboard &amp; Mouse<br />
Installation : DVD-ROM Drive</div>
<div class="download_box">EA: <a href="http://static.cdn.ea.com/fifa/u/f/fifa11_pc_demo_EU.zip" target="_blank">download</a> (1,2Gb)<br />
Letitbit: <a href="http://letitbit.net/download/1525508/31500.3e1ea05ddec3a2493fe499f29232af5a/FIFA_2011_Demo_www.LIVEPORTAL.ORG.UA.zip.html" target="_blank">download</a> (1,2Gb)<br />
IsoHunt: <a href="http://isohunt.com/torrent_details/213320177/fifa+2011?tab=summary" target="_blank">torrent</a> (1,2Gb)<br />
</div><br />

]]></content:encoded>
			<wfw:commentRss>http://mario-design.info/page/fifa-2011-demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FIFA 2011 Trailer</title>
		<link>http://mario-design.info/page/fifa-2011-trailer/</link>
		<comments>http://mario-design.info/page/fifa-2011-trailer/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 10:31:07 +0000</pubDate>
		<dc:creator>Mario Ropič</dc:creator>
				<category><![CDATA[FIFA 2011]]></category>
		<category><![CDATA[Games]]></category>
		<category><![CDATA[FIFA]]></category>

		<guid isPermaLink="false">http://mario-design.info/page/?p=678</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div class="full_video_frame"><object width="560" height="340"><param name="movie" value="http://www.youtube.com/v/akPV5qmJANI"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="never"></param><param name="allownetworking" value="internal"></param><param name="flashvars" value="" /><embed src="http://www.youtube.com/v/akPV5qmJANI" type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" allowfullscreen="true" width="560" height="340" flashvars=""></embed></object></div><br />

]]></content:encoded>
			<wfw:commentRss>http://mario-design.info/page/fifa-2011-trailer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP backup DB</title>
		<link>http://mario-design.info/page/php-backup-db/</link>
		<comments>http://mario-design.info/page/php-backup-db/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 10:53:07 +0000</pubDate>
		<dc:creator>Mario Ropič</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[works]]></category>

		<guid isPermaLink="false">http://mario-design.info/page/?p=669</guid>
		<description><![CDATA[backupDB() is a PHP script that backs up MySQL tables and databases to a gzip&#8217;d file for easy daily backup. Can back up a single database and/or table, or all tables. Structure-only, complete-inserts optional. Can be called interactively or run as a cron job. Works well with doSQL() (also available on this site).]]></description>
			<content:encoded><![CDATA[<p>backupDB() is a PHP script that backs up MySQL tables and databases to a gzip&#8217;d file for easy daily backup. Can back up a single database and/or table, or all tables. Structure-only, complete-inserts optional. Can be called interactively or run as a cron job. Works well with doSQL() (also available on this site).</p>
<div class="download_box"><img src="http://mario-design.info/page/wp-includes/images/fileicons/zip.png" style="float:left;" /> <small><a href="http://mario-design.info/page/download/php_scripts/backupDB.zip" onclick="wpfilebase_dlclick(10, 'download/php_scripts/backupDB.zip')" title="Download PHP backup DB">PHP backup DB</a> (17.1 KiB)</small><br /><br />
Hotfile: <a href="http://hotfile.com/dl/69506979/792d723/backupDB.zip.html" target="_blank">download</a><br />
MediaFire: <a href="http://www.mediafire.com/file/rp99lm1dakrfixw/backupDB.zip" target="_blank">download</a></div><br />

]]></content:encoded>
			<wfw:commentRss>http://mario-design.info/page/php-backup-db/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Widget: Related Posts</title>
		<link>http://mario-design.info/page/widget-related-posts/</link>
		<comments>http://mario-design.info/page/widget-related-posts/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 10:24:43 +0000</pubDate>
		<dc:creator>Mario Ropič</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Related Posts]]></category>

		<guid isPermaLink="false">http://mario-design.info/page/?p=648</guid>
		<description><![CDATA[I&#8217;ve created a simple Related Posts widget for WordPress. It showing posts from the same category as the current post is.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve created a simple Related Posts widget for WordPress. It showing posts from the same category as the current post is.</p>
<div class="download_box"><img src="http://mario-design.info/page/wp-includes/images/fileicons/zip.png" style="float:left;" /> <small><a href="http://mario-design.info/page/download/wordpress_widget/related-posts.zip" onclick="wpfilebase_dlclick(9, 'download/wordpress_widget/related-posts.zip')" title="Download Widget: Related Posts">Widget: Related Posts</a> (18.3 KiB)</small><br /><br />
<a href="http://hotfile.com/dl/69504242/c0adb55/related-posts.zip.html" target="_blank">Hotfile.com</a><br />
<a href="http://www.zshare.net/download/804227746bff4dc6/" target="_blank">zSHARE.net</a><br />
</div><br />

]]></content:encoded>
			<wfw:commentRss>http://mario-design.info/page/widget-related-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PES 2011 Screenshots</title>
		<link>http://mario-design.info/page/pes-2011screenshots/</link>
		<comments>http://mario-design.info/page/pes-2011screenshots/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 08:23:51 +0000</pubDate>
		<dc:creator>Mario Ropič</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Pro Evolution Soccer]]></category>
		<category><![CDATA[PES]]></category>

		<guid isPermaLink="false">http://mario-design.info/page/?p=640</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[
<div class="ngg-galleryoverview" id="ngg-gallery-3-640">

	<!-- Slideshow link -->
	<div class="slideshowlink">
		<a class="slideshowlink" href="http://mario-design.info/page/pes-2011screenshots/?show=slide">
			[Show as slideshow]		</a>
	</div>

	
	<!-- Thumbnails -->
		
	<div id="ngg-image-11" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/e3_argentina_vs_italy_bmp_jpgcopy.jpg" title=" " class="shutterset_set_3" >
								<img title="e3_argentina_vs_italy_bmp_jpgcopy" alt="e3_argentina_vs_italy_bmp_jpgcopy" src="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/thumbs/thumbs_e3_argentina_vs_italy_bmp_jpgcopy.jpg" width="268" height="151" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-12" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/e3_estudiantes_vs_corinthians_bmp_jpgcopy.jpg" title=" " class="shutterset_set_3" >
								<img title="e3_estudiantes_vs_corinthians_bmp_jpgcopy" alt="e3_estudiantes_vs_corinthians_bmp_jpgcopy" src="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/thumbs/thumbs_e3_estudiantes_vs_corinthians_bmp_jpgcopy.jpg" width="268" height="151" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-13" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/e3_gameplan_bmp_jpgcopy.jpg" title=" " class="shutterset_set_3" >
								<img title="e3_gameplan_bmp_jpgcopy" alt="e3_gameplan_bmp_jpgcopy" src="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/thumbs/thumbs_e3_gameplan_bmp_jpgcopy.jpg" width="268" height="151" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-14" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/e3_internacional_vs_cruzeiro_bmp_jpgcopy.jpg" title=" " class="shutterset_set_3" >
								<img title="e3_internacional_vs_cruzeiro_bmp_jpgcopy" alt="e3_internacional_vs_cruzeiro_bmp_jpgcopy" src="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/thumbs/thumbs_e3_internacional_vs_cruzeiro_bmp_jpgcopy.jpg" width="268" height="151" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-15" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/e3_libertacup_source_bmp_jpgcopy.jpg" title=" " class="shutterset_set_3" >
								<img title="e3_libertacup_source_bmp_jpgcopy" alt="e3_libertacup_source_bmp_jpgcopy" src="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/thumbs/thumbs_e3_libertacup_source_bmp_jpgcopy.jpg" width="268" height="151" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-16" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/game_screenshot1_bmp_jpgcopy.jpg" title=" " class="shutterset_set_3" >
								<img title="game_screenshot1_bmp_jpgcopy" alt="game_screenshot1_bmp_jpgcopy" src="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/thumbs/thumbs_game_screenshot1_bmp_jpgcopy.jpg" width="268" height="151" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-17" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/game_screenshot2_bmp_jpgcopy.jpg" title=" " class="shutterset_set_3" >
								<img title="game_screenshot2_bmp_jpgcopy" alt="game_screenshot2_bmp_jpgcopy" src="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/thumbs/thumbs_game_screenshot2_bmp_jpgcopy.jpg" width="268" height="151" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-18" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/game_screenshot3_bmp_jpgcopy.jpg" title=" " class="shutterset_set_3" >
								<img title="game_screenshot3_bmp_jpgcopy" alt="game_screenshot3_bmp_jpgcopy" src="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/thumbs/thumbs_game_screenshot3_bmp_jpgcopy.jpg" width="268" height="151" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-19" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/pes2011_bal_manager001_bmp_jpgcopy.jpg" title=" " class="shutterset_set_3" >
								<img title="pes2011_bal_manager001_bmp_jpgcopy" alt="pes2011_bal_manager001_bmp_jpgcopy" src="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/thumbs/thumbs_pes2011_bal_manager001_bmp_jpgcopy.jpg" width="268" height="151" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-20" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/pes2011_kickoff_bmp_jpgcopy.jpg" title=" " class="shutterset_set_3" >
								<img title="pes2011_kickoff_bmp_jpgcopy" alt="pes2011_kickoff_bmp_jpgcopy" src="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/thumbs/thumbs_pes2011_kickoff_bmp_jpgcopy.jpg" width="268" height="151" />
							</a>
		</div>
	</div>
	
		
 		
	<div id="ngg-image-21" class="ngg-gallery-thumbnail-box"  >
		<div class="ngg-gallery-thumbnail" >
			<a href="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/prev_1_pes2011_title.jpg" title=" " class="shutterset_set_3" >
								<img title="prev_1_pes2011_title" alt="prev_1_pes2011_title" src="http://mario-design.info/page/wp-content/gallery/pes_2011_screenshots/thumbs/thumbs_prev_1_pes2011_title.jpg" width="268" height="151" />
							</a>
		</div>
	</div>
	
		
 	 	
	<!-- Pagination -->
 	<div class='ngg-clear'></div>
 	
</div>

<br />

]]></content:encoded>
			<wfw:commentRss>http://mario-design.info/page/pes-2011screenshots/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Official PES 2011 website</title>
		<link>http://mario-design.info/page/official-pes-2011-website/</link>
		<comments>http://mario-design.info/page/official-pes-2011-website/#comments</comments>
		<pubDate>Tue, 14 Sep 2010 07:50:14 +0000</pubDate>
		<dc:creator>Mario Ropič</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Pro Evolution Soccer]]></category>
		<category><![CDATA[NEW]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[PES]]></category>

		<guid isPermaLink="false">http://mario-design.info/page/?p=628</guid>
		<description><![CDATA[You can check new page at www.pes2011.com !]]></description>
			<content:encoded><![CDATA[</p>
<p>You can check new page at <a href="http://www.pes2011.com" target="_blank">www.pes2011.com</a> !<br />
</p>
]]></content:encoded>
			<wfw:commentRss>http://mario-design.info/page/official-pes-2011-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/


Served from: mario-design.info @ 2012-02-22 20:50:12 -->
