<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>Be Studios - blog</title>
	<link>http://www.be-studios.com/blog</link>
	<description>design, life and mixed stuff</description>
	<pubDate>Thu, 02 Sep 2010 20:37:41 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>
	<language>en</language>
			<item>
		<title></title>
		<link>http://www.be-studios.com/blog/2010/09/02/92/</link>
		<comments>http://www.be-studios.com/blog/2010/09/02/92/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 20:37:41 +0000</pubDate>
		<dc:creator>jorge</dc:creator>
		
	<dc:subject>Personal</dc:subject><dc:subject>cita</dc:subject>
		<guid isPermaLink="false">http://www.be-studios.com/blog/2010/09/02/92/</guid>
		<description><![CDATA[Los niños muy pequeños gustan mucho de cuentos y relatos y los piden, y  pueden entender cuestiones complejas expuestas como cuentos y fábulas,  cuando su capacidad para captar conceptos generales, paradigmas, es casi  inexistente. Esta capacidad simbólica o narrativa es la que aporta un sentido del mundo  (una realidad concreta en [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>Los niños muy pequeños gustan mucho de cuentos y relatos y los piden, y  pueden entender cuestiones complejas expuestas como cuentos y fábulas,  cuando su capacidad para captar conceptos generales, paradigmas, es casi  inexistente. Esta capacidad simbólica o narrativa es la que aporta un <em>sentido del mundo</em>  (una realidad concreta en la forma imaginativa de símbolo y relato)  cuando el pensamiento abstracto no puede proporcionar ninguno. <strong>El niño sigue la Biblia antes de seguir a Euclides.</strong></p></blockquote>
<p><small><a href="http://es.wikipedia.org/wiki/Oliver_Sacks">Oliver Sacks</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.be-studios.com/blog/2010/09/02/92/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress: get page link by ID</title>
		<link>http://www.be-studios.com/blog/2010/07/29/wordpress-get-page-link-by-id/</link>
		<comments>http://www.be-studios.com/blog/2010/07/29/wordpress-get-page-link-by-id/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 20:43:09 +0000</pubDate>
		<dc:creator>jorge</dc:creator>
		
	<dc:subject>Wordpress</dc:subject>
	<dc:subject>Resources</dc:subject><dc:subject>custom function</dc:subject><dc:subject>PHP</dc:subject><dc:subject>Wordpress</dc:subject>
		<guid isPermaLink="false">http://www.be-studios.com/blog/2010/07/29/wordpress-get-page-link-by-id/</guid>
		<description><![CDATA[This function is used to get the_permalink() of a certain page using it&#8217;s ID (outside the loop). To use it within a theme, just:

function getPageLink($pageId){
   if(!is_numeric($pageId)) {
      return;
   }
   global $wpdb;
   $sql_query = &#8216;SELECT DISTINCT * FROM &#8216; . $wpdb->posts . &#8216; [...]]]></description>
			<content:encoded><![CDATA[<p>This function is used to get the_permalink() of a certain page using it&#8217;s ID (outside the loop). To use it within a theme, just:</p>
<pre><?php getPageLink(ID); ?></pre>
<pre>function getPageLink($pageId){
   if(!is_numeric($pageId)) {
      return;
   }
   global $wpdb;
   $sql_query = &#8216;SELECT DISTINCT * FROM &#8216; . $wpdb->posts . &#8216; WHERE &#8216; . $wpdb->posts . &#8216;.ID=&#8217; . $pageId;
   $posts = $wpdb->get_results($sql_query);
   if(!empty($posts)) {
      foreach($posts as $post) {
         return nl2br($post->guid);
      }
   }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.be-studios.com/blog/2010/07/29/wordpress-get-page-link-by-id/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress: get page title by ID</title>
		<link>http://www.be-studios.com/blog/2010/07/29/wordpress-get-page-title-by-id/</link>
		<comments>http://www.be-studios.com/blog/2010/07/29/wordpress-get-page-title-by-id/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 20:14:13 +0000</pubDate>
		<dc:creator>jorge</dc:creator>
		
	<dc:subject>Wordpress</dc:subject>
	<dc:subject>Resources</dc:subject><dc:subject>custom function</dc:subject><dc:subject>PHP</dc:subject><dc:subject>Wordpress</dc:subject>
		<guid isPermaLink="false">http://www.be-studios.com/blog/2010/07/29/wordpress-get-page-title-by-id/</guid>
		<description><![CDATA[This function is used to get the title(); of a certain page using it&#8217;s ID (outside the loop). To use it within a theme, just:
&#60;?php getPageTitle(ID); ?&#62;
function getPageTitle($pageId){
	if(!is_numeric($pageId)) {
		return;
	}
	global $wpdb;
	$sql_query = &#8216;SELECT DISTINCT * FROM &#8216; . $wpdb-&#62;posts . &#8216; WHERE &#8216; . $wpdb-&#62;posts . &#8216;.ID=&#8217; . $pageId;
	$posts = $wpdb-&#62;get_results($sql_query);
	if(!empty($posts)) {
		foreach($posts as $post) {
			return nl2br($post-&#62;post_title);
		}
	}
}

]]></description>
			<content:encoded><![CDATA[<p>This function is used to get the title(); of a certain page using it&#8217;s ID (outside the loop). To use it within a theme, just:</p>
<pre>&lt;?php getPageTitle(ID); ?&gt;</pre>
<pre>function getPageTitle($pageId){
	if(!is_numeric($pageId)) {
		return;
	}
	global $wpdb;
	$sql_query = &#8216;SELECT DISTINCT * FROM &#8216; . $wpdb-&gt;posts . &#8216; WHERE &#8216; . $wpdb-&gt;posts . &#8216;.ID=&#8217; . $pageId;
	$posts = $wpdb-&gt;get_results($sql_query);
	if(!empty($posts)) {
		foreach($posts as $post) {
			return nl2br($post-&gt;post_title);
		}
	}
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.be-studios.com/blog/2010/07/29/wordpress-get-page-title-by-id/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress: better breadcrumb function</title>
		<link>http://www.be-studios.com/blog/2010/07/29/wordpress-better-breadcrumb-function/</link>
		<comments>http://www.be-studios.com/blog/2010/07/29/wordpress-better-breadcrumb-function/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 20:00:18 +0000</pubDate>
		<dc:creator>jorge</dc:creator>
		
	<dc:subject>Wordpress</dc:subject>
	<dc:subject>Resources</dc:subject>
		<guid isPermaLink="false">http://www.be-studios.com/blog/2010/07/29/wordpress-better-breadcrumb-function/</guid>
		<description><![CDATA[This function is used to construct breadcrumbs of pages, posts and archives within Wordpress. Put this on functions.php inside yout theme and call anywhere you need (single.php, page.php) using:
]]></description>
			<content:encoded><![CDATA[<p>This function is used to construct breadcrumbs of pages, posts and archives within Wordpress. Put this on functions.php inside yout theme and call anywhere you need (single.php, page.php) using:</p>
<p> <a href="http://www.be-studios.com/blog/2010/07/29/wordpress-better-breadcrumb-function/#more-89" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.be-studios.com/blog/2010/07/29/wordpress-better-breadcrumb-function/feed/</wfw:commentRss>
		</item>
		<item>
		<title>My new home: WebCard</title>
		<link>http://www.be-studios.com/blog/2009/11/21/my-new-home-webcard/</link>
		<comments>http://www.be-studios.com/blog/2009/11/21/my-new-home-webcard/#comments</comments>
		<pubDate>Sun, 22 Nov 2009 02:06:00 +0000</pubDate>
		<dc:creator>jorge</dc:creator>
		
	<dc:subject>Design</dc:subject>
	<dc:subject>Personal</dc:subject>
	<dc:subject>Link</dc:subject><dc:subject>inspiration</dc:subject><dc:subject>portfolio</dc:subject><dc:subject>showcase</dc:subject><dc:subject>webdesign</dc:subject>
		<guid isPermaLink="false">http://www.be-studios.com/blog/2009/11/21/my-new-home-webcard/</guid>
		<description><![CDATA[October is a catastrophic month for me (financially): I must pay the server and a lot of my domains&#8230; and 2 months before Xmas I have to pay a sustancial ammount on my creditcard&#8230; anyway, this year I&#8217;ve added a new domain: jorgeepunan.info. It was only US$1 and I wanted for long time to do [...]]]></description>
			<content:encoded><![CDATA[<p>October is a catastrophic month for me (financially): I must pay the server and a lot of my domains&#8230; and 2 months before Xmas I have to pay a sustancial ammount on my creditcard&#8230; anyway, this year I&#8217;ve added a new domain: jorgeepunan.info. It was only US$1 and I wanted for long time to do a website on my own and for me as a personal card&#8230; so this webcard represents the way that anyone can contacts me for anything, and it shows what I&#8217;ve done as a professional.</p>
<p>.</p>
<p>I&#8217;m always open for feedback, and hope you enjoy the experience.</p>
<p><a href="http://www.jorgeepunan.info" title="Jorge Epuñan - Web Standards Specialist">http://www.jorgeepunan.info</a></p>
<p><img src="http://www.be-studios.com/blog/wp-content/uploads/2009/11/picture-1.png" alt="Jorge Epu&ntilde;an WebCard" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.be-studios.com/blog/2009/11/21/my-new-home-webcard/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Cita 8</title>
		<link>http://www.be-studios.com/blog/2009/08/20/cita-8/</link>
		<comments>http://www.be-studios.com/blog/2009/08/20/cita-8/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 14:13:41 +0000</pubDate>
		<dc:creator>jorge</dc:creator>
		
	<dc:subject>Personal</dc:subject><dc:subject>cita</dc:subject><dc:subject>inspiration</dc:subject>
		<guid isPermaLink="false">http://www.be-studios.com/blog/2009/08/20/cita-8/</guid>
		<description><![CDATA[Cuando estoy trabajando en un problema nunca pienso sobre su belleza, únicamente pienso en cómo resolverlo. Pero cuando he terminado, si la solución no es bella, sé que está equivocada.
Richard Buckminster Fuller
]]></description>
			<content:encoded><![CDATA[<blockquote style="font-size: 18px; font-weight: bold; letter-spacing: -1px; text-shadow: 0px 0px 3px #000000"><p>Cuando estoy trabajando en un problema nunca pienso sobre su belleza, únicamente pienso en cómo resolverlo. Pero cuando he terminado, si la solución no es bella, sé que está equivocada.</p></blockquote>
<p><a href="http://es.wikipedia.org/wiki/Buckminster_Fuller" title="Link to Wikipedia.org">Richard Buckminster Fuller</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.be-studios.com/blog/2009/08/20/cita-8/feed/</wfw:commentRss>
		</item>
		<item>
		<title>diseño social</title>
		<link>http://www.be-studios.com/blog/2009/04/22/diseno-social/</link>
		<comments>http://www.be-studios.com/blog/2009/04/22/diseno-social/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 03:06:21 +0000</pubDate>
		<dc:creator>jorge</dc:creator>
		
	<dc:subject>Design</dc:subject>
		<guid isPermaLink="false">http://www.be-studios.com/blog/2009/04/22/diseno-social/</guid>
		<description><![CDATA[design in social es un proyecto que pretende aportar a pequeños empresarios, a tener mejores productos o servicios  través del diseño gráfico profesional, de forma gratuita. Con ello, podrían optar por tener mejores espectativas valorando lo que el diseño puede aportarle en su negocio.

Conformamos este proyecto un grupo de diseñadores con ganas y visión [...]]]></description>
			<content:encoded><![CDATA[<p><strong>design in social</strong> es un proyecto que pretende aportar a pequeños empresarios, a tener mejores productos o servicios  través del diseño gráfico profesional, de forma gratuita. Con ello, podrían optar por tener mejores espectativas valorando lo que el diseño puede aportarle en su negocio.</p>
<p><img src="http://www.be-studios.com/blog/wp-content/uploads/2009/04/dis3.gif" alt="dis3.gif" /></p>
<p>Conformamos este proyecto un grupo de diseñadores con ganas y visión de mejorar aspectos que podamos manipular. No pretendemos cambiar el mundo, pero sí hacer un poco más por el que nos rodea. Regalamos nuestro tiempo y talento para que otros valoren y mejoren sus sueños a través del diseño gráfico, sea éste de identidad, web ó de envases.</p>
<p>link: <a href="http://www.designinsocial.com " title="Design in Social">designinsocial.com </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.be-studios.com/blog/2009/04/22/diseno-social/feed/</wfw:commentRss>
		</item>
		<item>
		<title>17 Metal-Bands and their awesome Cover-Design</title>
		<link>http://www.be-studios.com/blog/2008/10/21/17-metal-bands-and-their-awesome-cover-design/</link>
		<comments>http://www.be-studios.com/blog/2008/10/21/17-metal-bands-and-their-awesome-cover-design/#comments</comments>
		<pubDate>Tue, 21 Oct 2008 19:07:06 +0000</pubDate>
		<dc:creator>jorge</dc:creator>
		
	<dc:subject>music</dc:subject>
	<dc:subject>Design</dc:subject><dc:subject>design</dc:subject><dc:subject>inspiration</dc:subject><dc:subject>mp3</dc:subject><dc:subject>music</dc:subject>
		<guid isPermaLink="false">http://www.be-studios.com/blog/2008/10/21/17-metal-bands-and-their-awesome-cover-design/</guid>
		<description><![CDATA[Some years ago I started to notice the change on design-style of the covers of the new metal bands. While the tendence is to merge sounds to achieve new kinds of harmony (even if for some common people, metal is just noise), the bands are playing more with the new tendences of design and showing [...]]]></description>
			<content:encoded><![CDATA[<p>Some years ago I started to notice the change on design-style of the covers of the new metal bands. While the tendence is to merge sounds to achieve new kinds of harmony (even if for some common people, metal is just noise), the bands are playing more with the new tendences of design and showing high levels of quality in graphic compositions. Remember those skulls, galons of blood, reverted-crosses and humans-suffering-almost-dying? Not any more, the level of abstraction has increased and the public is perceiving that.</p>
<p>I&#8217;d like to share 17 bands that I&#8217;m listening on my <em>iPod</em>, with 1 song and the cover of the album. I hope you can appreciate the sound and the art that they put on this.</p>
<p> <a href="http://www.be-studios.com/blog/2008/10/21/17-metal-bands-and-their-awesome-cover-design/#more-82" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.be-studios.com/blog/2008/10/21/17-metal-bands-and-their-awesome-cover-design/feed/</wfw:commentRss>
<enclosure url="http://www.be-studios.com/blog/wp-content/uploads/audio/a_textbook_tragedy-dude_im_on_alesse.mp3" length="4528787" type="audio/mpeg" />
<enclosure url="http://www.be-studios.com/blog/wp-content/uploads/audio/Achilles-Ivory.mp3" length="4851720" type="audio/mpeg" />
<enclosure url="http://www.be-studios.com/blog/wp-content/uploads/audio/Attack_Attack-The_Peoples_Elbow.mp3" length="3885314" type="audio/mpeg" />
<enclosure url="http://www.be-studios.com/blog/wp-content/uploads/audio/Benea_Reach-Dominion.mp3" length="11538319" type="audio/mpeg" />
<enclosure url="http://www.be-studios.com/blog/wp-content/uploads/audio/Confide-If_We_Were_A_Sinking_Ship.mp3" length="4763753" type="audio/mpeg" />
<enclosure url="http://www.be-studios.com/blog/wp-content/uploads/audio/Fear_Before_the_March-of-Flames-A_Gift_For_Fiction.mp3" length="3370123" type="audio/mpeg" />
<enclosure url="http://www.be-studios.com/blog/wp-content/uploads/audio/Gojira-adoration_for_none.mp3" length="5304196" type="audio/mpeg" />
<enclosure url="http://www.be-studios.com/blog/wp-content/uploads/audio/Norma_Jean-Birth_of_the_Anti_Mother.mp3" length="6793128" type="audio/mpeg" />
<enclosure url="http://www.be-studios.com/blog/wp-content/uploads/audio/Once_Nothing-then_there_were_nine.mp3" length="9097025" type="audio/mpeg" />
<enclosure url="http://www.be-studios.com/blog/wp-content/uploads/audio/Opposition_of_One-Screaming_Without_Lungs.mp3" length="7329941" type="audio/mpeg" />
<enclosure url="http://www.be-studios.com/blog/wp-content/uploads/audio/The_Chariot-Then_Came_To_Kill.mp3" length="8528821" type="audio/mpeg" />
<enclosure url="http://www.be-studios.com/blog/wp-content/uploads/audio/The_Human_Abstract-breathing_life_into_devices.mp3" length="8591360" type="audio/mpeg" />
<enclosure url="http://www.be-studios.com/blog/wp-content/uploads/audio/The_Reptilian_Complex-To_Oppose.mp3" length="9988501" type="audio/mpeg" />
<enclosure url="http://www.be-studios.com/blog/wp-content/uploads/audio/Transistor_Transistor-letter_of_resignation.mp3" length="3313801" type="audio/mpeg" />
<enclosure url="http://www.be-studios.com/blog/wp-content/uploads/audio/Trenches-Trip_the_Landmine.mp3" length="6084970" type="audio/mpeg" />
<enclosure url="http://www.be-studios.com/blog/wp-content/uploads/audio/Turns_to_Ashes-I_Survived_Cremation.mp3" length="3459072" type="audio/mpeg" />
		</item>
		<item>
		<title>Cita 7</title>
		<link>http://www.be-studios.com/blog/2008/09/03/cita-7/</link>
		<comments>http://www.be-studios.com/blog/2008/09/03/cita-7/#comments</comments>
		<pubDate>Thu, 04 Sep 2008 01:45:42 +0000</pubDate>
		<dc:creator>jorge</dc:creator>
		
	<dc:subject>Personal</dc:subject><dc:subject>cita</dc:subject>
		<guid isPermaLink="false">http://www.be-studios.com/blog/2008/09/03/cita-7/</guid>
		<description><![CDATA[Un proyecto web se sustenta en la sintonía de los miembros del equipo más que en documentos de especificaciones, cartas Gantt o fechas de entrega.
Ismael Celis
]]></description>
			<content:encoded><![CDATA[<blockquote style="font-size: 18px; font-weight: bold; letter-spacing: -1px; text-shadow: #000000 0px 0px 3px"><p>Un proyecto web se sustenta en la sintonía de los miembros del equipo más que en documentos de especificaciones, cartas Gantt o fechas de entrega.</p></blockquote>
<p><a href="http://www.estadobeta.com/" title="Link to EstadoBeta.com">Ismael Celis</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.be-studios.com/blog/2008/09/03/cita-7/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Code Master [vid]</title>
		<link>http://www.be-studios.com/blog/2008/08/11/code-master-vid/</link>
		<comments>http://www.be-studios.com/blog/2008/08/11/code-master-vid/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 17:18:09 +0000</pubDate>
		<dc:creator>jorge</dc:creator>
		
	<dc:subject>Personal</dc:subject>
	<dc:subject>Link</dc:subject><dc:subject>stuff</dc:subject><dc:subject>video</dc:subject>
		<guid isPermaLink="false">http://www.be-studios.com/blog/2008/08/11/code-master-vid/</guid>
		<description><![CDATA[Sometimes, when I&#8217;m coding some website, I just feel like Jim Carrey on this scene from Bruce Almighty, when he tipes like a demon (more than a god)&#8230;



]]></description>
			<content:encoded><![CDATA[<p>Sometimes, when I&#8217;m coding some website, I just feel like <em>Jim Carrey</em> on this scene from <em>Bruce Almighty</em>, when he tipes like a demon (more than a god)&#8230;</p>
<p><object height="344" width="425">
<param value="http://www.youtube.com/v/u9d2xnR0f40&amp;hl=en&amp;fs=1" name="movie"></param>
<param value="true" name="allowFullScreen"></param><embed src="http://www.youtube.com/v/u9d2xnR0f40&amp;hl=en&amp;fs=1" height="344" width="425" allowfullscreen="true" type="application/x-shockwave-flash"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.be-studios.com/blog/2008/08/11/code-master-vid/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
