<?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>Luis Diego</title>
	<atom:link href="http://luisdiego.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://luisdiego.com</link>
	<description>Wordpress &#124; Jquery &#124; .NET &#124; Photoshop &#124; Action Script 3.0</description>
	<lastBuildDate>Fri, 18 May 2012 17:33:47 +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>New design</title>
		<link>http://luisdiego.com/design/</link>
		<comments>http://luisdiego.com/design/#comments</comments>
		<pubDate>Fri, 18 May 2012 01:18:17 +0000</pubDate>
		<dc:creator>Diogo15</dc:creator>
				<category><![CDATA[Design]]></category>

		<guid isPermaLink="false">http://luisdiego.com/?p=315</guid>
		<description><![CDATA[I know there is a lot to improve, but&#8230;. at least it looks original.. <a href="http://luisdiego.com/design/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I know there is a lot to improve, but&#8230;. at least it looks original..</p>
<p><img src="http://luisdiego.com/wp-content/uploads/2012/05/web-luis-diego.jpg" alt="" title="web-luis-diego" width="900" height="675" class="alignnone size-full wp-image-318" /></p>
]]></content:encoded>
			<wfw:commentRss>http://luisdiego.com/design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get url paramentes in Actionscript3 from swf</title>
		<link>http://luisdiego.com/url-paramentes-actionscript3-swf/</link>
		<comments>http://luisdiego.com/url-paramentes-actionscript3-swf/#comments</comments>
		<pubDate>Thu, 17 May 2012 18:43:49 +0000</pubDate>
		<dc:creator>Diogo15</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Action Script]]></category>

		<guid isPermaLink="false">http://luisdiego.com/?p=304</guid>
		<description><![CDATA[I always use flashvar params, but i find out there is another way to do it! var paramObj:Object = LoaderInfo(this.root.loaderInfo).parameters; trace(paramObj["youparamname"]); All you have to do is add parameters into the movie url! &#60;object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,0,0" id="flash_x01" width="500" height="500"&#62; &#60;param &#8230; <a href="http://luisdiego.com/url-paramentes-actionscript3-swf/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I always use flashvar params, but i find out there is another way to do it!</p>
<pre>var paramObj:Object = LoaderInfo(this.root.loaderInfo).parameters;
trace(paramObj["youparamname"]);</pre>
<p>All you have to do is add parameters into the movie url!</p>
<pre>&lt;object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,0,0"
id="flash_x01" width="500" height="500"&gt;

&lt;param name="movie" value="vars.swf?youparamname=xxxx;
&lt;param name="menu" value="false"&gt;
&lt;param name="quality" value="high"&gt;

&lt;embed src="vars.swf?youparamname=xxxx" width="500" height="500" menu="false" quality="high"
swliveconnect="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"&gt;
&lt;/embed&gt;
&lt;/object&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://luisdiego.com/url-paramentes-actionscript3-swf/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List posts in categories from wp_list_categories()</title>
		<link>http://luisdiego.com/list-posts-categories-wp_list_categories/</link>
		<comments>http://luisdiego.com/list-posts-categories-wp_list_categories/#comments</comments>
		<pubDate>Mon, 14 May 2012 19:29:33 +0000</pubDate>
		<dc:creator>Diogo15</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://luisdiego.com/?p=295</guid>
		<description><![CDATA[//USAGE: //wp_list_categories( array( 'title_li' =&#62; '', 'echo' =&#62; false , 'walker' =&#62; new PCWalker() ) ) . class PCWalker extends Walker_Category { function end_el(&#38;$output, $page, $depth, $args) { global $wpdb; $output .= "called with: " . $page-&#62;term_id; $posts = $wpdb-&#62;get_results("select &#8230; <a href="http://luisdiego.com/list-posts-categories-wp_list_categories/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><code>//USAGE:<br />
//wp_list_categories( array( 'title_li' =&gt; '', 'echo' =&gt; false , 'walker' =&gt; new PCWalker() ) ) .</p>
<p>class PCWalker extends Walker_Category {</p>
<p>function end_el(&amp;$output, $page, $depth, $args) {<br />
global $wpdb;<br />
$output .= "called with: " . $page-&gt;term_id;<br />
$posts = $wpdb-&gt;get_results("select object_id as ID from wp_term_relationships r "<br />
. "join wp_posts p on r.object_id = p.ID where p.post_status = 'publish' and r.term_taxonomy_id = "<br />
. "(SELECT term_taxonomy_id FROM wp_term_taxonomy WHERE taxonomy = 'category' and term_id = " . $page-&gt;term_id . ")");<br />
if($posts) :<br />
$output .= '&lt;ul&gt;'; foreach($posts as $post) { $output .= '<br />
&lt;li&gt;'; $output .= '&lt;a title="link to ' . get_the_title($post-&gt;ID) . '" href="' . get_permalink($post-&gt;ID) . '"&gt;' . get_the_title($post-&gt;ID) . '&lt;/a&gt;'; $output .= '&lt;/li&gt;<br />
'; } $output .= '&lt;/ul&gt;<br />
';<br />
endif;<br />
parent::end_el(&amp;$output, $page, $depth, $args);<br />
}<br />
}</code></p>
<p>
Source: <a href="http://cselian.com/blog/tech/apps/wp-cats-n-posts-in-a-tree/">www.cselian.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://luisdiego.com/list-posts-categories-wp_list_categories/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Youtube link on WordPress CustomField</title>
		<link>http://luisdiego.com/youtube-link-wordpress-customfield/</link>
		<comments>http://luisdiego.com/youtube-link-wordpress-customfield/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 16:18:26 +0000</pubDate>
		<dc:creator>Diogo15</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[CustomFields]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://luisdiego.com/?p=276</guid>
		<description><![CDATA[So your client just have to copy and paste the url into the custom field named &#8220;video&#8221; And this code will diplay the iframe. &#60;?php $meta_value = get_post_meta($post-&#62;ID, 'video', true); if($meta_value){ $url = parse_url($meta_value); $id = 0; if($url['host'] == 'youtu.be'){$id &#8230; <a href="http://luisdiego.com/youtube-link-wordpress-customfield/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>So your client just have to copy and paste the url into the custom field named &#8220;video&#8221; And this code will diplay the iframe.</p>
<pre>&lt;?php
$meta_value = get_post_meta($post-&gt;ID, 'video', true);
if($meta_value){
$url = parse_url($meta_value);
$id = 0;
if($url['host'] == 'youtu.be'){$id = ltrim($url['path'],'/');}
else if(strpos($url['path'],'embed') == 1){$id = end(explode('/',$url['path']));}
else{parse_str($url['query']);$id = $v;}
echo '&lt;p&gt;&lt;iframe width="230" height="150" frameborder="0" allowfullscreen="" src="http://www.youtube.com/embed/'.$id.
'?version=3&amp;amp;wmode=transparent&amp;amp;rel=0&amp;amp;modestbranding=1&amp;amp;loop=0&amp;amp;controls=0&amp;amp;autoplay=0&amp;amp;showsearch=0&amp;amp;iv_load_policy=o"&gt;
&lt;/iframe&gt;&lt;/p&gt;';
}
?&gt;</pre>
]]></content:encoded>
			<wfw:commentRss>http://luisdiego.com/youtube-link-wordpress-customfield/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Search by author in WordPress</title>
		<link>http://luisdiego.com/search-author-wordpress/</link>
		<comments>http://luisdiego.com/search-author-wordpress/#comments</comments>
		<pubDate>Wed, 07 Mar 2012 20:30:06 +0000</pubDate>
		<dc:creator>Diogo15</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://luisdiego.com/?p=265</guid>
		<description><![CDATA[&#60;?php if(!is_search()){ get_template_part( 'loop', 'index' ); }else{ echo '&#60;div&#62;&#60;h1&#62;Resultados de B&#38;uacute;squeda:&#60;/h1&#62;&#60;/div&#62;'; if(isset($_GET['author'])){ $postsAuthor =''; $searchAuthor = $_GET['author']; $postsAuthor = $wpdb-&#62;get_col( $wpdb-&#62;prepare( "SELECT id FROM $wpdb-&#62;users    WHERE display_name LIKE %s", '%'.like_escape($searchAuthor).'%' ) ); if($postsAuthor){ query_posts(array( 'author'=&#62;implode (',',$postsAuthor),'post_type' =&#62; array( 'fotos', 'videos'), &#8230; <a href="http://luisdiego.com/search-author-wordpress/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><code>&lt;?php</p>
<p>if(!is_search()){</p>
<p>get_template_part( 'loop', 'index' );</p>
<p>}else{</p>
<p>echo '&lt;div&gt;&lt;h1&gt;Resultados de B&amp;uacute;squeda:&lt;/h1&gt;&lt;/div&gt;';</p>
<p>if(isset($_GET['author'])){</p>
<p>$postsAuthor ='';</p>
<p>$searchAuthor = $_GET['author'];</p>
<p>$postsAuthor = $wpdb-&gt;get_col( $wpdb-&gt;prepare( "SELECT id FROM $wpdb-&gt;users    WHERE display_name LIKE %s", '%'.like_escape($searchAuthor).'%' ) );</p>
<p>if($postsAuthor){<br />
query_posts(array( 'author'=&gt;implode (',',$postsAuthor),'post_type' =&gt; array( 'fotos', 'videos'), 'paged' =&gt; get_query_var('paged') ) );</p>
<p>get_template_part( 'loop', 'search' );</p>
<p>if(function_exists('wp_pagenavi')) wp_pagenavi();</p>
<p>wp_reset_query();</p>
<p>echo '&lt;div&gt;&lt;/div&gt;';</p>
<p>}else{<br />
echo 'No se encontraron fotos ni videos de este autor: '.$searchAuthor;<br />
}</p>
<p>}else{</p>
<p>get_template_part( 'loop', 'search' );<br />
if(function_exists('wp_pagenavi')) wp_pagenavi();<br />
echo '&lt;div&gt;&lt;/div&gt;';</p>
<p>}</p>
<p>}</p>
<p>?&gt;<br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://luisdiego.com/search-author-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good way to be a master with wordpress CPT</title>
		<link>http://luisdiego.com/good-master-wordpress-cpt/</link>
		<comments>http://luisdiego.com/good-master-wordpress-cpt/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 19:52:48 +0000</pubDate>
		<dc:creator>Diogo15</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://luisdiego.com/?p=259</guid>
		<description><![CDATA[An awesome tutorial, it shows up an excelent workflow about the steps you need to follow to create CUSTOM POST TYPES&#8230; and how to integrate more the CPT to wordpress back-end. http://wp.tutsplus.com/tutorials/widgets/using-custom-post-types-to-create-a-killer-portfolio/]]></description>
			<content:encoded><![CDATA[<p>An awesome tutorial, it shows up an excelent workflow about the steps you need to follow to create CUSTOM POST TYPES&#8230; and how to integrate more the CPT to wordpress back-end.</p>
<p>http://wp.tutsplus.com/tutorials/widgets/using-custom-post-types-to-create-a-killer-portfolio/</p>
]]></content:encoded>
			<wfw:commentRss>http://luisdiego.com/good-master-wordpress-cpt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Squares Music Box, would be cooler in android app.</title>
		<link>http://luisdiego.com/squares-music-box-cooler-android-app/</link>
		<comments>http://luisdiego.com/squares-music-box-cooler-android-app/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 19:27:10 +0000</pubDate>
		<dc:creator>Diogo15</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://luisdiego.com/?p=251</guid>
		<description><![CDATA[Anyway, enjoy it! http://asteptaticumva.blogspot.com/2012/02/click-squares-game-from-am-laboratory.html]]></description>
			<content:encoded><![CDATA[<p>Anyway, enjoy it!</p>
<p><a href="http://asteptaticumva.blogspot.com/2012/02/click-squares-game-from-am-laboratory.html">http://asteptaticumva.blogspot.com/2012/02/click-squares-game-from-am-laboratory.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://luisdiego.com/squares-music-box-cooler-android-app/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Always a good way to create ajax loaders</title>
		<link>http://luisdiego.com/good-create-ajax-loaders/</link>
		<comments>http://luisdiego.com/good-create-ajax-loaders/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 21:16:33 +0000</pubDate>
		<dc:creator>Diogo15</dc:creator>
				<category><![CDATA[Development]]></category>

		<guid isPermaLink="false">http://luisdiego.com/?p=248</guid>
		<description><![CDATA[http://www.ajaxload.info/]]></description>
			<content:encoded><![CDATA[<p>http://www.ajaxload.info/</p>
]]></content:encoded>
			<wfw:commentRss>http://luisdiego.com/good-create-ajax-loaders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding places to google places in unavailable country</title>
		<link>http://luisdiego.com/adding-places-google-places-unavailable-country/</link>
		<comments>http://luisdiego.com/adding-places-google-places-unavailable-country/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 22:52:05 +0000</pubDate>
		<dc:creator>Diogo15</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[google]]></category>

		<guid isPermaLink="false">http://luisdiego.com/?p=244</guid>
		<description><![CDATA[Well, you cannot, but you can make a trick, add your local to google Map Marker, and thats all you have to do! http://goo.gl/3Qeg7]]></description>
			<content:encoded><![CDATA[<p>Well, you cannot, but you can make a trick, add your local to google Map Marker, and thats all you have to do!<br />
<a href="http://goo.gl/3Qeg7">http://goo.gl/3Qeg7</a></p>
]]></content:encoded>
			<wfw:commentRss>http://luisdiego.com/adding-places-google-places-unavailable-country/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jquery Plugins i love..</title>
		<link>http://luisdiego.com/jquery-plugins-love/</link>
		<comments>http://luisdiego.com/jquery-plugins-love/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 18:54:22 +0000</pubDate>
		<dc:creator>Diogo15</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://luisdiego.com/?p=239</guid>
		<description><![CDATA[jQuery Supersized Comes bundle with 2 versions:&#160;http://buildinternet.com/project/supersized/ Javascript Games Check out some demos:&#160;http://craftyjs.com Javascript googlemaps http://leaflet.cloudmade.com/index.html Caroufredsel Cuztomizable Jquery carousel, you should always use it, lots of options and RESPONSIVE!&#8230; Try it here. Pajination Really Flexible, easy to use and &#8230; <a href="http://luisdiego.com/jquery-plugins-love/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>jQuery Supersized<br class="aloha-end-br"></h2>
<p>Comes bundle with 2 versions:&nbsp;<a style="" class="" href="http://buildinternet.com/project/supersized/download.html">http://buildinternet.com/project/supersized/</a></p>
<h2>Javascript Games</h2>
<p>Check out some demos:&nbsp;<a class="" href="http://craftyjs.com/">http://craftyjs.com</a></p>
<h2>Javascript googlemaps</h2>
<p><a class="" href="http://leaflet.cloudmade.com/index.html">http://leaflet.cloudmade.com/index.html</a></p>
<h2>Caroufredsel</h2>
<p>Cuztomizable Jquery carousel, you should always use it, lots of options and <strong>RESPONSIVE</strong>!&#8230; Try it <a title="Carousel" href="http://caroufredsel.frebsite.nl/">here</a>.</p>
<h2>Pajination</h2>
<p>Really Flexible, <strong>easy</strong> to use and lots of customization options, go ahead and take a look:</p>
<p>http://th3silverlining.com/2010/04/15/pajination-a-jquery-pagination-plugin/</p>
<h2>NivoSlider</h2>
<p>Definitely <a href="http://nivo.dev7studios.com/" target="_blank">NIVO SLIDER</a> is one of the best choices of jquery slider, and of course my favorite!, i want to encourage you to try it, it&#8217;s really flexible, easy to customize code and css styles, and it is available for <a href="http://nivo.dev7studios.com/wordpress/" target="_blank">WORDPRESS</a> too!.. Amazing!</p>
<h2>Jquery Flip!</h2>
<p>A heavy but beatifull solution to make <a title="Jquery Flip" href="http://lab.smashup.it/flip/" target="_blank">flip</a> content.. Visit <a title="Jquery Flip" href="http://lab.smashup.it/flip/" target="_blank">Here</a>. If you would like something ligther you may want to use <a title="Quickflip 2" href="http://jonraasch.com/blog/quickflip-2-jquery-plugin">QuickFlip 2</a>.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://luisdiego.com/jquery-plugins-love/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

