<?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>Flavio Muniz</title>
	<atom:link href="http://flaviomuniz.com/blog/feed" rel="self" type="application/rss+xml" />
	<link>http://flaviomuniz.com/blog</link>
	<description>simple thus - fast and agile development</description>
	<lastBuildDate>Wed, 09 May 2012 16:53:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Simple fibonacci with php</title>
		<link>http://flaviomuniz.com/blog/simple-fibonacci-with-php.html</link>
		<comments>http://flaviomuniz.com/blog/simple-fibonacci-with-php.html#comments</comments>
		<pubDate>Wed, 14 Mar 2012 00:24:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[fibonacci]]></category>

		<guid isPermaLink="false">http://flaviomuniz.com/blog/?p=245</guid>
		<description><![CDATA[$a=0; $b=1; $c=0; echo ("$a\n"); echo ("$b\n"); for ($i=0;$i]]></description>
			<content:encoded><![CDATA[<pre class="brush: php;">
  $a=0;
  $b=1;
  $c=0;
  echo ("$a\n");
  echo ("$b\n");
  for ($i=0;$i<=17;$i++){
    $c=$a+$b;
    $a=$b;$b=$c;
    echo ("$c\n");
  }
</pre>
<pre>
Result:
0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597 2584 4181
</pre>
<p><a href="http://en.wikipedia.org/wiki/Fibonacci_number" target="_blank">wikipedia</a>, how it works.</p>
]]></content:encoded>
			<wfw:commentRss>http://flaviomuniz.com/blog/simple-fibonacci-with-php.html/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>My First Game for ipad, soon available on Apple Store</title>
		<link>http://flaviomuniz.com/blog/ipad-game.html</link>
		<comments>http://flaviomuniz.com/blog/ipad-game.html#comments</comments>
		<pubDate>Sun, 11 Mar 2012 03:58:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[ipad]]></category>

		<guid isPermaLink="false">http://flaviomuniz.com/blog/?p=231</guid>
		<description><![CDATA[Wazaaa, after a long time without posting, I decided to return to the blog showing my first game for iphone, it&#8217;s simple, served more as a study but it was pretty cool, soon put the source code of it. In &#8230; <a href="http://flaviomuniz.com/blog/ipad-game.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Wazaaa, after a long time without posting, I decided to return to the blog showing my first game for iphone, it&#8217;s simple, served more as a study but it was pretty cool, soon put the source code of it.<br />
In the meantime, some pictures.<br />
That&#8217;s very simple, but is cool.</p>
<div id="attachment_232" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-232" src="http://flaviomuniz.com/blog/wp-content/uploads/2012/03/Default-Landscapeipad.png" alt="" width="600" height="438" /><p class="wp-caption-text">Landscape</p></div>
<div id="attachment_233" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-233" src="http://flaviomuniz.com/blog/wp-content/uploads/2012/03/Default-Portraitipad.png" alt="" width="600" height="784" /><p class="wp-caption-text">Portrait</p></div>
<div id="attachment_233" class="wp-caption aligncenter" style="width: 610px"><img class=" wp-image-233" src="http://flaviomuniz.com/blog/wp-content/uploads/2012/03/print1.png" alt="" width="600" height="394" /><p class="wp-caption-text">Game test 1</p></div>
<div id="attachment_233" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-233" src="http://flaviomuniz.com/blog/wp-content/uploads/2012/03/print2.png" alt="" width="600" height="450" /><p class="wp-caption-text">Game test 2</p></div>
]]></content:encoded>
			<wfw:commentRss>http://flaviomuniz.com/blog/ipad-game.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Url Shorter Using TinyUrl</title>
		<link>http://flaviomuniz.com/blog/url-shorter-using-tinyurl.html</link>
		<comments>http://flaviomuniz.com/blog/url-shorter-using-tinyurl.html#comments</comments>
		<pubDate>Tue, 23 Aug 2011 00:09:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[tinyurl]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://flaviomuniz.com/blog/?p=179</guid>
		<description><![CDATA[function shorterUrl($url){ $url=file_get_contents("http://tinyurl.com/api-create.php?url={$url}"); return $url; } echo shorterUrl("http://flaviomuniz.com.com/blog/url-shorter-using-tinyurl.html"); Result: http://tinyurl.com/3hruebn]]></description>
			<content:encoded><![CDATA[<pre class="brush: php;">
  function shorterUrl($url){
    $url=file_get_contents("http://tinyurl.com/api-create.php?url={$url}");
    return $url;
  }
  echo shorterUrl("http://flaviomuniz.com.com/blog/url-shorter-using-tinyurl.html");
</pre>
<p>Result:</p>
<p>http://tinyurl.com/3hruebn</p>
]]></content:encoded>
			<wfw:commentRss>http://flaviomuniz.com/blog/url-shorter-using-tinyurl.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>send SMS with php</title>
		<link>http://flaviomuniz.com/blog/send-sms-with-php.html</link>
		<comments>http://flaviomuniz.com/blog/send-sms-with-php.html#comments</comments>
		<pubDate>Wed, 20 Jul 2011 16:22:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[auth]]></category>
		<category><![CDATA[sms]]></category>

		<guid isPermaLink="false">http://flaviomuniz.com/blog/?p=149</guid>
		<description><![CDATA[Simpels developed a class for sending sms, but remember, it&#8217;ll only funcinonar depending on the operator&#8217;s response is not only to test and find that it will work, has a number of rules of the carrier to make it work, but if you need to a project, your company will probably contact the operator and make some sort of contract for use. I will make available for download codes in the &#8220;Free Codes&#8221; Here the &#8230; <a href="http://flaviomuniz.com/blog/send-sms-with-php.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/sms.png"><img src="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/sms.png" alt="" title="sms" width="471" height="232" class="aligncenter size-full wp-image-157" /></a><br />
Simpels developed a class for sending sms, but remember, it&#8217;ll only funcinonar depending on the operator&#8217;s response is not only to test and find that it will work, has a number of rules of the carrier to make it work, but if you need to a project, your company will probably contact the operator and make some sort of contract for use.</p>
<p>I will make available for download codes in the &#8220;Free Codes&#8221;</p>
<p>Here the simple code.<br />
First, let&#8217;s put the class.</p>
<pre class="brush: php;">
	class smsClass {
		public $messages;
		public $from;
		public $carriers;
		public $tryall;

		function __construct($dotry = false){
			$this->carriers = array(
				'att' => 'txt.att.net',
				'claro' => 'clarotorpedo.com.br',
				'nextel' => 'messaging.nextel.com',
				'vivo' => 'torpedoemail.com.br',
				'orange' => 'orange.net'
			);
			$this->tryall = $dotry;
		}

		function message($carrier, $phone, $message) {
			if($phone == '') {
				return FALSE;
			} else if($message == '' || strlen($message) > 140) {
				return FALSE;
			} else if($carrier == '' || !$carrier) {
				if($this->tryall == TRUE) {
					foreach($this->carriers as $carriername => $carrierconnection) {
						$this->messages[] = array($carriername, $phone, $message);
					}
					return TRUE;
				} else {
					return FALSE;
				}
			} else {
				$this->messages[] = array($carrier, $phone, $message);
				return TRUE;
			}
		}

		function send_messages() {
			foreach($this->messages as $message) {
				$carrier = $this->carriers[strtolower(str_replace(array('&#038;', '-', '_'), '', $message[0]))];
				$phone = strtolower(str_replace(array('+', '_', '-'), '', $message[1]));
				$send = $phone . '@' . $carrier;
				$message = $message[2];
				mail($send, null, $message, 'From: ' . $this->from);
			}
			$this->messages = array();
		}

		function from($from){
			$this->from = $from;
		}

	}
</pre>
<p>Now the page where you make the setting for the shipment.</p>
<pre class="brush: php;">
  require_once("smsClass.php");
	$sms = new smsClass();
	$sms->from('support@domain.com');
	$status = $sms->message('carrie', 'number', 'message');
	$sms->send_messages();
</pre>
<p>[fblikebutton]</p>
]]></content:encoded>
			<wfw:commentRss>http://flaviomuniz.com/blog/send-sms-with-php.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The importance of using DEFINE in their projects</title>
		<link>http://flaviomuniz.com/blog/the-importance-of-using-define-in-their-projects.html</link>
		<comments>http://flaviomuniz.com/blog/the-importance-of-using-define-in-their-projects.html#comments</comments>
		<pubDate>Wed, 20 Jul 2011 04:18:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[define]]></category>

		<guid isPermaLink="false">http://flaviomuniz.com/blog/?p=127</guid>
		<description><![CDATA[The use of DEFINE is important for several things, for example: Sites with more than one language. Set the system default url. Url Set the root system. Finally, a number of things we need and always do the worst possible &#8230; <a href="http://flaviomuniz.com/blog/the-importance-of-using-define-in-their-projects.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The use of DEFINE is important for several things, for example:<br />
Sites with more than one language.<br />
Set the system default url.<br />
Url Set the root system.</p>
<p>Finally, a number of things we need and always do the worst possible sites using &#8220;. / Or ../&#8217;.<br />
Anyway, do not need this anymore, if for example, define the default url of the site will be as follows:</p>
<pre class="brush: php;">define ('URL_SITE', "http://localhost/your_project/", true);</pre>
<p>Using <strong>true</strong> you can use your definition in upper or lower case without it, an error will be displayed.</p>
<p>For a system with more than one language or even a language.<br />
in your file name, <strong>e.g: eng.php</strong></p>
<pre class="brush: php;">define ('LABEL_TEST', 'Label example ", true);</pre>
<p>and<br />
in your file name, <strong>e.g: pt_BR.php</strong></p>
<pre class="brush: php;">define ('LABEL_TEST', "Sample Label", true);</pre>
<p>And in your code you only print your label, so</p>
<pre class="brush: php;">echo LABEL_TEST</pre>
<p>it is easier to have a system with several languages.</p>
<p><strong>Pretty soon</strong>, if your system needs to login to be accessed, causes the user to choose a language on edit account, just remember to always leave a default language, you do not need login, you need to use cookies, this is a problem because it has users that do not allow cookies on their computers, you can consider it a problem or not, consider, advise the user that he must allow cookies in your browser, if not a problem, <del datetime="2011-07-20T04:19:57+00:00">fuck it</del> lol.</p>
<p>But anyway, this method is widely used, already used for some years, and today it decided to make a comment.</p>
<p>I hope you make good use of it in their projects.</p>
<p>[fblikebutton]</p>
]]></content:encoded>
			<wfw:commentRss>http://flaviomuniz.com/blog/the-importance-of-using-define-in-their-projects.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Grid system using css</title>
		<link>http://flaviomuniz.com/blog/grid-system-using-css.html</link>
		<comments>http://flaviomuniz.com/blog/grid-system-using-css.html#comments</comments>
		<pubDate>Wed, 20 Jul 2011 03:57:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[grid]]></category>
		<category><![CDATA[sass]]></category>
		<category><![CDATA[scss]]></category>
		<category><![CDATA[project]]></category>

		<guid isPermaLink="false">http://flaviomuniz.com/blog/?p=93</guid>
		<description><![CDATA[Hello, I discovered this some time in css grid system that has helped me a lot in the projects. A simple grid that will help you also in all the projects that can dynamically display columns without breaking the layout and always keeping the same pattern. Below, I &#8230; <a href="http://flaviomuniz.com/blog/grid-system-using-css.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hello, I discovered this some time in css grid system that has helped me a lot in the projects.</p>
<p>A simple grid that will help you also in all the projects that can dynamically display columns<br />
without breaking the layout and always keeping the same pattern.</p>
<p>Below, I will show how simple it is to use this grid system.</p>
<p><a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.32.35-AM.png"><img class="aligncenter size-full wp-image-95" title="Screen shot 2011-07-20 at 12.32.35 AM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.32.35-AM.png" alt="" width="335" height="197" /></a><br />
The result using values ??above this will be clear that the scale of the site, 960px and 940 total area used.<br />
<a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.34.27-AM.png"><img class="aligncenter size-full wp-image-96" title="Screen shot 2011-07-20 at 12.34.27 AM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.34.27-AM.png" alt="" width="977" height="414" /></a><br />
Now the css generated the grid will look like.<br />
<a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.36.06-AM.png"><img class="aligncenter size-full wp-image-98" title="Screen shot 2011-07-20 at 12.36.06 AM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.36.06-AM.png" alt="" width="972" height="436" /></a> The css generated by grid 1</p>
<pre class="brush: css;">body{min-width:960px;}
.container_3{margin-left:auto;margin-right:auto;width:960px;}
.grid_1,.grid_2,.grid_3{display:inline;float:left;position:relative;margin-left:10px;margin-right:10px;}
.push_1,.pull_1,.push_2,.pull_2,.push_3,.pull_3{position:relative;}
.alpha{margin-left:0;}
.omega{margin-right:0;}
.container_3 .grid_1{width:300px;}
.container_3 .grid_2{width:620px;}
.container_3 .grid_3{width:940px;}
.container_3 .prefix_1{padding-left:320px;}
.container_3 .prefix_2{padding-left:640px;}
.container_3 .suffix_1{padding-right:320px;}
.container_3 .suffix_2{padding-right:640px;}
.container_3 .push_1{left:320px;}
.container_3 .push_2{left:640px;}
.container_3 .pull_1{left:-320px;}
.container_3 .pull_2{left:-640px;}
.clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0;}
.clearfix:before,.clearfix:after{content:'\0020';display:block;
overflow:hidden;visibility:hidden;width:0;height:0;}
.clearfix:after{clear:both;}
.clearfix{zoom:1;}</pre>
<p>In the case of a site that will use all the useful area of the monitor had been so.<br />
<a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.37.53-AM.png"><img class="size-full wp-image-100 aligncenter" title="Screen shot 2011-07-20 at 12.37.53 AM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.37.53-AM.png" alt="" width="1768" height="440" /></a><br />
The css generated by grid 2 &#8216;fluid&#8217;</p>
<pre class="brush: css;">.container_3{width:92%;margin-left:4%;margin-right:4%;}
.grid_1,.grid_2,.grid_3{display:inline;float:left;position:relative;margin-left:1%;margin-right:1%;}
.alpha{margin-left:0;}
.omega{margin-right:0;}
.container_3 .grid_1{width:31.333%;}
.container_3 .grid_2{width:64.667%;}
.container_3 .grid_3{width:98%;}
.container_3 .prefix_1{padding-left:33.333%;}
.container_3 .prefix_2{padding-left:66.667%;}
.container_3 .suffix_1{padding-right:33.333%;}
.container_3 .suffix_2{padding-right:66.667%;}
.container_3 .push_1{left:33.333%;}
.container_3 .push_2{left:66.667%;}
.container_3 .pull_1{left:-33.333%;}
.container_3 .pull_2{left:-66.667%;}
.clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0;}
.clearfix:after{clear:both;content:' ';display:block;font-size:0;line-height:0;
visibility:hidden;width:0;height:0;}
.clearfix{display:block;}
* html .clearfix{height:1%;}</pre>
<p><a href="http://960.gs/" target="_blank">960grid</a> | <a href="http://grids.heroku.com/" target="_blank">Custom css Grid</a> | <a href="http://grids.heroku.com/grid?column_width=300&amp;column_amount=3&amp;gutter_width=20" target="_blank">Example 1</a> | <a href="http://grids.heroku.com/fluid_grid?column_amount=3" target="_blank">Example 2</a></p>
<p>Examples of sites using grid system.</p>
<p><a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.52.00-AM.png"><img class="aligncenter size-full wp-image-114" title="Screen shot 2011-07-20 at 12.52.00 AM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.52.00-AM.png" alt="" width="950" height="452" /></a></p>
<p>Highlight grid<br />
<a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.52.08-AM.png"><img class="aligncenter size-full wp-image-115" title="Screen shot 2011-07-20 at 12.52.08 AM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.52.08-AM.png" alt="" width="947" height="452" /></a></p>
<hr />
<p><a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.51.28-AM.png"><img class="aligncenter size-full wp-image-112" title="Screen shot 2011-07-20 at 12.51.28 AM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.51.28-AM.png" alt="" width="946" height="454" /></a></p>
<p>Highlight grid<br />
<a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.51.35-AM.png"><img class="aligncenter size-full wp-image-113" title="Screen shot 2011-07-20 at 12.51.35 AM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/07/Screen-shot-2011-07-20-at-12.51.35-AM.png" alt="" width="933" height="455" /></a></p>
<p>More examples in <a href="http://960.gs" target="_blank">960.gs</a></p>
<p>[fblikebutton]</p>
]]></content:encoded>
			<wfw:commentRss>http://flaviomuniz.com/blog/grid-system-using-css.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Highlight quotes with coffeescript</title>
		<link>http://flaviomuniz.com/blog/how-to-highlight-quotes-with-coffeescript.html</link>
		<comments>http://flaviomuniz.com/blog/how-to-highlight-quotes-with-coffeescript.html#comments</comments>
		<pubDate>Wed, 08 Jun 2011 16:43:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[coffeescript]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ruby on rails]]></category>
		<category><![CDATA[rails]]></category>

		<guid isPermaLink="false">http://flaviomuniz.com/blog/?p=42</guid>
		<description><![CDATA[Hello, I&#8217;ll show you how easy it is to highlight a word in a search using coffeescript, and then I will show the difference in the coffee and use jquery normal, and in the end, the result compiled coffeescript.The code &#8230; <a href="http://flaviomuniz.com/blog/how-to-highlight-quotes-with-coffeescript.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hello, I&#8217;ll show you how easy it is to highlight a word in a search using coffeescript, and then I will show the difference in the coffee and use jquery normal, and in the end, the result compiled coffeescript.<br style="font-size: 19.5px; line-height: 28.5px;" />The code is much more organized and beautiful.</p>
<p>To call the function Search  do as follows:</p>
<p>any_name = new Search();</p>
<p>any_name=highlight(&#8220;your param or quote&#8221;);</p>
<p>in Rails: any_name=highlight(&#8220;&lt;%= params[:search] %&gt;&#8221;);<br />
in PHP: any_name=highlight(&#8220;&lt;?php echo $_POST["search"]?&gt;&#8221;); OR any_name=highlight(&#8220;&lt;?php echo $_GET["search"]?&gt;&#8221;);</p>
<p><strong>Using CoffeeScript.</strong></p>
<p><a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/06/Screen-shot-2011-06-08-at-2.19.30-PM.png"><img class="aligncenter size-full wp-image-57" title="Screen shot 2011-06-08 at 2.19.30 PM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/06/Screen-shot-2011-06-08-at-2.19.30-PM.png" alt="" width="669" height="89" /></a></p>
<p><strong>Using jQuery</strong></p>
<p><a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/06/Screen-shot-2011-06-08-at-1.32.11-PM.png"><img class="aligncenter size-full wp-image-46" title="Screen shot 2011-06-08 at 1.32.11 PM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/06/Screen-shot-2011-06-08-at-1.32.11-PM.png" alt="" width="678" height="120" /></a></p>
<p>&nbsp;</p>
<p><strong>Result Compiled of CoffeeScript</strong></p>
<p><a href="http://flaviomuniz.com/blog/wp-content/uploads/2011/06/Screen-shot-2011-06-08-at-1.32.29-PM.png"><img class="aligncenter size-full wp-image-47" title="Screen shot 2011-06-08 at 1.32.29 PM" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/06/Screen-shot-2011-06-08-at-1.32.29-PM.png" alt="" width="763" height="203" /></a></p>
<p>&nbsp;</p>
<p>CoffeeScript code download <a title="CoffeeScript - Search HighLight" href="http://flaviomuniz.com/code/search.coffee">here</a>.</p>
<p>[fblikebutton]</p>
]]></content:encoded>
			<wfw:commentRss>http://flaviomuniz.com/blog/how-to-highlight-quotes-with-coffeescript.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery vs Flash 2</title>
		<link>http://flaviomuniz.com/blog/jquery-vs-flash-2.html</link>
		<comments>http://flaviomuniz.com/blog/jquery-vs-flash-2.html#comments</comments>
		<pubDate>Sat, 28 May 2011 18:13:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://flaviomuniz.com/blog/?p=23</guid>
		<description><![CDATA[Hi, this is a simple animation using jquery. Some time ago, I worked in an agency that has developed a giant touchscreen panel for a client, took about three months to develop, when I read the documentation, I said, I &#8230; <a href="http://flaviomuniz.com/blog/jquery-vs-flash-2.html">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hi, this is a simple animation using jquery.</p>
<p>Some time ago, I worked in an agency that has developed a giant touchscreen panel for a client, took about three months to develop, when I read the documentation, I said, I can do this with jquery, and not using flash , as the developer was a major flash-known owner of the agency, he decided to do in flash, well, were the nights of sleep lost to development, occurred at the end almost everything right, finally.</p>
<p>I left that agency, and decided to develop the same project using jquery, of course not had the patience to develop 100%, just wanted to show what was possible, did the main part of the project that was user interaction with the virtual beach. As you can see in the example below.</p>
<p>I will still finish the entire project, but that is for a next time.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p style="text-align: center;"><a href="http://flaviomuniz.com/beach"><img class="aligncenter size-full wp-image-24" title="jquervsflash2" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/05/jquervsflash2.jpg" alt="" width="539" height="249" /></a></p>
<p>&nbsp;</p>
<p><!-- p.p1 {margin: 0.0px 0.0px 0.0px 0.0px; font: 16.0px Arial} -->The project in flash was really good, but wanted to show that there are other possibilities.</p>
<p>And congratulations to the agency for this great achievement.</p>
<p>[fblikebutton]</p>
]]></content:encoded>
			<wfw:commentRss>http://flaviomuniz.com/blog/jquery-vs-flash-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery vs Flash</title>
		<link>http://flaviomuniz.com/blog/jquery-vs-flash.html</link>
		<comments>http://flaviomuniz.com/blog/jquery-vs-flash.html#comments</comments>
		<pubDate>Sat, 28 May 2011 18:01:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://flaviomuniz.com/blog/?p=18</guid>
		<description><![CDATA[Hi, this is a simple example that it is possible to create animated applications using jquery and not flash. This was a wedding gift from a friend of mine. [fblikebutton]]]></description>
			<content:encoded><![CDATA[<p>Hi, this is a simple example that it is possible to create animated applications using jquery and not flash.</p>
<p>This was a wedding gift from a friend of mine.</p>
<p><a href="flaviomuniz.com/jquery-vs-flash/" target="blank"><img class="size-full wp-image-19 aligncenter" title="Roberta &amp; Gustavo" src="http://flaviomuniz.com/blog/wp-content/uploads/2011/05/gunassif.jpg" alt="Roberta &amp; Gustavo" width="539" height="249" /></a></p>
<p>[fblikebutton]</p>
]]></content:encoded>
			<wfw:commentRss>http://flaviomuniz.com/blog/jquery-vs-flash.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

