<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Calvin Freitas</title>
	
	<link>http://calvinf.com</link>
	<description>Web Consulting, Development, and Marketing Services for Your Small Business</description>
	<lastBuildDate>Mon, 22 Feb 2010 06:20:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/CalvinFreitas" /><feedburner:info uri="calvinfreitas" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>CalvinFreitas</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Installing, Configuring, and Using the XHP PHP Extension by Facebook</title>
		<link>http://feedproxy.google.com/~r/CalvinFreitas/~3/SSWXGLhuc8s/</link>
		<comments>http://calvinf.com/blog/2010/installing-configuring-and-using-the-xhp-php-extension-by-facebook/#comments</comments>
		<pubDate>Thu, 11 Feb 2010 00:07:08 +0000</pubDate>
		<dc:creator>Calvin Freitas</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Apache]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[XHP]]></category>

		<guid isPermaLink="false">http://calvinf.com/?p=262</guid>
		<description><![CDATA[Facebook announced the release of XHP yesterday.  It is an extension for PHP which provides enhancements to the PHP language syntax and gives the language some convenient capabilities.
In this post I will provide you links to the essential sources of information about XHP, show some XHP sample code, and discuss the installation process for [...]]]></description>
			<content:encoded><![CDATA[<p>Facebook <a href="http://www.facebook.com/notes/facebook-engineering/xhp-a-new-way-to-write-php/294003943919">announced the release of XHP</a> yesterday.  It is an extension for PHP which provides enhancements to the PHP language syntax and gives the language some convenient capabilities.</p>
<p>In this post I will provide you links to the essential sources of information about XHP, show some XHP sample code, and discuss the installation process for XHP on Ubuntu with Apache and PHP5.</p>
<p><strong>The Essential Information</strong><br />
<a href="http://github.com/facebook/xhp">Download XHP at GitHub</a><br />
<a href="http://wiki.github.com/facebook/xhp/">How XHP Works</a><br />
<a href="http://wiki.github.com/facebook/xhp/building-xhp">Building XHP</a><br />
<a href="http://wiki.github.com/facebook/xhp/configuration">Configuring XHP</a></p>
<p><b>Example XHP Sample Code (<a href="http://xhp.calvinf.com/" target="_blank">View Code in Action</a>):</b></p>
<pre class="brush: php;">&lt;?php
require_once('/home/cal/facebook-xhp-290b185/php-lib/init.php');
$name  = 'Calvin Freitas';
$title = &quot;{$name} loves XHP!&quot;;
$url   = 'http://calvinf.com/';

$permalink = 'http://wp.me/pcoLC-4e';

#create a &lt;head&gt; element
$head =
  &lt;head&gt;
   &lt;title&gt;{$title}&lt;/title&gt;
  &lt;/head&gt;;

#create a div
$div =
  &lt;div id=&quot;header&quot;&gt;
    &lt;h1&gt;{$title}&lt;/h1&gt;
  &lt;/div&gt;;

$body =
  &lt;body&gt;
    {$div}
    &lt;div&gt;
      &lt;p&gt;My name is {$name} and you should go visit &lt;a href={$url}&gt;my website&lt;/a&gt; now.&lt;/p&gt;
      &lt;p&gt;Read my &lt;a href={$permalink}&gt;guide to installing XHP on Ubuntu&lt;/a&gt;. It includes the source code for this page. Comments and corrections are welcome.&lt;/p&gt;
    &lt;/div&gt;
  &lt;/body&gt;;

echo
&lt;html&gt;
  {$head}
  {$body}
&lt;/html&gt;;
?&gt;</pre>
<p><b>A few syntax notes</b><br />
XHP forces you to properly nest tags &#8212; make sure you close them properly or it won&#8217;t compile and it will throw errors.  Because XHP auto-escapes, when you&#8217;re creating a link (such as in an <em>a</em> element), you don&#8217;t need to put quotes around it.</p>
<pre class="brush: php;">&lt;a href={$permalink}&gt;guide to installing XHP on Ubuntu&lt;/a&gt;</pre>
<p><strong>Installing XHP on Ubuntu</strong><br />
Server: Ubuntu 9.10 running on a slice at the Rackspace Cloud.<br />
Web server: Apache 2<br />
<a href="http://articles.slicehost.com/2008/4/25/ubuntu-hardy-installing-apache-and-php5">Apache installation guide</a> (Slicehost article, but generally applicable)</p>
<p>Below I will go into more detail about the installation process.<br />
<span id="more-262"></span><br />
There are packages for all the prerequisites in Ubuntu (installation will be similar on Debian, though package names my vary).</p>
<p><code>sudo apt-get install php5 php5-common php5-cli php5-dev libapache2-mod-php5</code><br />
<code>sudo apt-get install build-essential gcc flex bison re2c</code></p>
<p>The package manager will include other prerequisite packages.</p>
<p>After you&#8217;ve installed these packages, download the <a href="http://github.com/facebook/xhp/downloads">latest tagged release of XHP</a> from GitHub to your server.</p>
<p>Then, you&#8217;ll need to make it.  Unzip/untar the file, go to that directory, and run the following commands. (Use <em>sudo</em> as necessary.)<br />
<code>phpize<br />
./configure<br />
make<br />
make install<br />
</code></p>
<p>Note regarding <span class="code">make test</span>: the tests failed for me because it wasn&#8217;t finding my currently installed PHP5 modules. I ran <span class="code">make install</span> and it worked anyway.  There should be a way to include the modules path in the compilation, but at this time I have not found it.</p>
<p>After installing the module, you must configure Apache to include the XHP module in the php.ini file.  On my system, the file is located in <span class="code">/etc/php5/apache2</span>. Find the line with <span class="code">extension_dir</span> &#8212; mine is the following:<br />
<code>extension_dir = "/usr/lib/php5/20060613/"</code></p>
<p>In /etc/php5/apache2/conf.d, create a file called xhp.ini.<br />
<b>xhp.ini</b><br />
<code>#load xhp<br />
extension=xhp.so</code></p>
<p>Now, at this point everything should work, but some users are reporting <a href="http://github.com/facebook/xhp/issues#issue/2">issues with XHP on Ubuntu</a> systems, but there is a solution &#8211; you may need to include files from the php-lib folder (in the source code folder where you ran make).  See the &#8220;require_once&#8221; function used in the sample code above.</p>
]]></content:encoded>
			<wfw:commentRss>http://calvinf.com/blog/2010/installing-configuring-and-using-the-xhp-php-extension-by-facebook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://calvinf.com/blog/2010/installing-configuring-and-using-the-xhp-php-extension-by-facebook/</feedburner:origLink></item>
		<item>
		<title>Sam Javanrouh: city on ice</title>
		<link>http://feedproxy.google.com/~r/CalvinFreitas/~3/SUjlnM10fNM/</link>
		<comments>http://calvinf.com/blog/2009/sam-javanrouh-city-on-ice/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 17:58:25 +0000</pubDate>
		<dc:creator>Calvin Freitas</dc:creator>
				<category><![CDATA[Media]]></category>
		<category><![CDATA[Sam Javanrouh]]></category>
		<category><![CDATA[Toronto]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://calvinf.com/?p=255</guid>
		<description><![CDATA[Sam Javanrouh is my favorite photographer at present.  He takes incredible photographs and also does the occasional video.  The video below, Toronto on Ice, is one such example.

Visit his website [daily dose of imagery] here.
]]></description>
			<content:encoded><![CDATA[<p>Sam Javanrouh is my favorite photographer at present.  He takes incredible photographs and also does the occasional video.  The video below, Toronto on Ice, is one such example.</p>
<p><object width="500" height="281"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clip_id=8333508&#038;server=vimeo.com&#038;show_title=1&#038;show_byline=1&#038;show_portrait=1&#038;color=00ADEF&#038;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clip_id=8333508&#038;server=vimeo.com&#038;show_title=1&#038;show_byline=1&#038;show_portrait=1&#038;color=00ADEF&#038;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="500" height="281"></embed></object></p>
<p>Visit his website <a href="http://wvs.topleftpixel.com/">[daily dose of imagery] here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://calvinf.com/blog/2009/sam-javanrouh-city-on-ice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://calvinf.com/blog/2009/sam-javanrouh-city-on-ice/</feedburner:origLink></item>
		<item>
		<title>WordPress 2.9 Released</title>
		<link>http://feedproxy.google.com/~r/CalvinFreitas/~3/-fEf1p6jtLk/</link>
		<comments>http://calvinf.com/blog/2009/wordpress-2-9-released/#comments</comments>
		<pubDate>Sat, 19 Dec 2009 23:35:36 +0000</pubDate>
		<dc:creator>Calvin Freitas</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://calvinf.com/?p=248</guid>
		<description><![CDATA[WordPress 2.9 has been released and is available for download.  The most important new features are a new &#8220;trash&#8221; system for deleting posts or comments, a built-in image editor, batch plugin updating, and easier video embedding.
On a related note, Elitwee MyTwitter 3.0.3 is compatible with WordPress 2.9 and is a great way to include [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://wordpress.org/development/2009/12/wordpress-2-9/">WordPress 2.9</a> has been released and is available for <a href="http://wordpress.org/download/">download</a>.  The most important new features are a new &#8220;trash&#8221; system for deleting posts or comments, a built-in image editor, batch plugin updating, and easier video embedding.</p>
<p>On a related note, <a href="http://calvinf.com/projects/elitwee/mytwitter/">Elitwee MyTwitter 3.0.3</a> is compatible with WordPress 2.9 and is a great way to include your tweets as a widget on your WordPress blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://calvinf.com/blog/2009/wordpress-2-9-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://calvinf.com/blog/2009/wordpress-2-9-released/</feedburner:origLink></item>
		<item>
		<title>PHP 5 Library for Posterous API</title>
		<link>http://feedproxy.google.com/~r/CalvinFreitas/~3/HD3rhedJeH8/</link>
		<comments>http://calvinf.com/blog/2009/php-5-library-for-posterous-api/#comments</comments>
		<pubDate>Wed, 09 Dec 2009 08:05:55 +0000</pubDate>
		<dc:creator>Calvin Freitas</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://calvinf.com/?p=217</guid>
		<description><![CDATA[I have written a PHP 5 library for the Posterous API.  It uses the curl extension to query the Posterous API, retrieves the XML, and returns the XML as a SimpleXMLElement.
Read more information about my Posterous API library for PHP 5 or clone the code on GitHub.
]]></description>
			<content:encoded><![CDATA[<p>I have written a <a href="http://php.net/">PHP</a> 5 library for the <a href="http://posterous.com/api">Posterous API</a>.  It uses the <a href="http://us.php.net/curl">curl</a> extension to query the Posterous API, retrieves the XML, and returns the XML as a <a href="http://us.php.net/manual/en/class.simplexmlelement.php">SimpleXMLElement</a>.</p>
<p>Read more information about my <a href="http://calvinf.com/projects/posterous-api-library-php/">Posterous API library for PHP 5</a> or <a href="http://github.com/calvinf/posterous-api-library-php">clone the code on GitHub</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://calvinf.com/blog/2009/php-5-library-for-posterous-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://calvinf.com/blog/2009/php-5-library-for-posterous-api/</feedburner:origLink></item>
		<item>
		<title>Elitwee MyTwitter 3 Plugin for Wordpress Released</title>
		<link>http://feedproxy.google.com/~r/CalvinFreitas/~3/gG4GmzVOF2A/</link>
		<comments>http://calvinf.com/blog/2009/elitwee-mytwitter-3-plugin-for-wordpress-released/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 21:41:36 +0000</pubDate>
		<dc:creator>Calvin Freitas</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://calvinf.com/?p=200</guid>
		<description><![CDATA[The Elitwee MyTwitter 3 Plugin for WordPress has been released and is available for download now from the WordPress Plugins Directory.
Description: Elitwee MyTwitter is a simple tweet widget and status updater for WordPress.
What&#8217;s New?: This new version allows you to easily add one-or-more Twitter widgets to any widget-enabled WordPress theme.  You can also post [...]]]></description>
			<content:encoded><![CDATA[<p>The <a href="/projects/elitwee/mytwitter/">Elitwee MyTwitter 3</a> Plugin for WordPress has been released and is available for <a href="http://wordpress.org/extend/plugins/mytwitter/">download now</a> from the WordPress Plugins Directory.</p>
<p><b>Description:</b> Elitwee MyTwitter is a simple tweet widget and status updater for WordPress.</p>
<p><b>What&#8217;s New?:</b> This new version allows you to easily add one-or-more Twitter widgets to any widget-enabled WordPress theme.  You can also post updates to Twitter directly from the plugin&#8217;s Settings page.  It is compatible with WordPress 2.8 and higher.</p>
<p><b><a href="http://wordpress.org/extend/plugins/mytwitter/">Download</a></b><br />
<b><a href="http://wordpress.org/extend/plugins/mytwitter/screenshots/">View Screenshots</a></b><br />
<b><a href="/projects/elitwee/mytwitter/">View Additional Information</a></b></p>
]]></content:encoded>
			<wfw:commentRss>http://calvinf.com/blog/2009/elitwee-mytwitter-3-plugin-for-wordpress-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://calvinf.com/blog/2009/elitwee-mytwitter-3-plugin-for-wordpress-released/</feedburner:origLink></item>
		<item>
		<title>Updated Design</title>
		<link>http://feedproxy.google.com/~r/CalvinFreitas/~3/2Y-YTBrGd6U/</link>
		<comments>http://calvinf.com/blog/2009/updated-design/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 01:13:22 +0000</pubDate>
		<dc:creator>Calvin Freitas</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://calvinf.com/?p=136</guid>
		<description><![CDATA[I&#8217;ve updated the custom theme for my website!  Look at it now.  
I spent today finishing the code for the custom WordPress theme I use to power the layout and design of the site.  Many thanks to Jason Oxrieder for doing the graphic design work behind the new look!
The new design is [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve updated the custom theme for my website!  <a href="http://calvinf.com/">Look at it now</a>.  </p>
<p>I spent today finishing the code for the custom WordPress theme I use to power the layout and design of the site.  Many thanks to Jason Oxrieder for doing the graphic design work behind the new look!</p>
<p>The new design is just one example of the custom WordPress development I am able to do.  I provide WordPress consulting and can answer questions about topics related to customization, themes, plugins, settings, system administration, and more.</p>
]]></content:encoded>
			<wfw:commentRss>http://calvinf.com/blog/2009/updated-design/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://calvinf.com/blog/2009/updated-design/</feedburner:origLink></item>
		<item>
		<title>Technology, Faith, and Human Shortcomings – Billy Graham at TED</title>
		<link>http://feedproxy.google.com/~r/CalvinFreitas/~3/2IeUHuAB28k/</link>
		<comments>http://calvinf.com/blog/2009/technology-faith-and-human-shortcomings-billy-graham-at-ted/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 21:07:16 +0000</pubDate>
		<dc:creator>Calvin Freitas</dc:creator>
				<category><![CDATA[Thinker]]></category>
		<category><![CDATA[Billy Graham]]></category>
		<category><![CDATA[Faith]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://calvinf.com/?p=121</guid>
		<description><![CDATA[Rev. Billy Graham gave a talk at the TED conference in 1998 regarding Technology, Faith, and Human Shortcomings.  I&#8217;ve embedded it below or you can download the MP3 or video at the TED page.

]]></description>
			<content:encoded><![CDATA[<p>Rev. <a href="http://en.wikipedia.org/wiki/Billy_Graham">Billy Graham</a> gave a talk at the <a href="http://www.ted.com/">TED</a> conference in 1998 regarding <a href="http://www.ted.com/talks/billy_graham_on_technology_faith_and_suffering.html">Technology, Faith, and Human Shortcomings</a>.  I&#8217;ve embedded it below or you can <a href="http://www.ted.com/talks/billy_graham_on_technology_faith_and_suffering.html">download the MP3 or video at the TED page</a>.</p>
<p><object width="334" height="326"><param name="movie" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf"></param><param name="allowFullScreen" value="true" /><param name="wmode" value="transparent"></param><param name="bgColor" value="#ffffff"></param><param name="flashvars" value="vu=http://video.ted.com/talks/dynamic/BillyGraham_1998-medium.flv&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/BillyGraham-1998.embed_thumbnail.jpg&#038;vw=320&#038;vh=240&#038;ap=0&#038;ti=308&#038;introDuration=16500&#038;adDuration=4000&#038;postAdDuration=2000&#038;adKeys=talk=billy_graham_on_technology_faith_and_suffering;year=1998;theme=bold_predictions_stern_warnings;theme=is_there_a_god;theme=technology_history_and_destiny;theme=what_s_next_in_tech;event=TED1998;&#038;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><embed src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" pluginspace="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" bgColor="#ffffff" width="334" height="326" allowFullScreen="true" flashvars="vu=http://video.ted.com/talks/dynamic/BillyGraham_1998-medium.flv&#038;su=http://images.ted.com/images/ted/tedindex/embed-posters/BillyGraham-1998.embed_thumbnail.jpg&#038;vw=320&#038;vh=240&#038;ap=0&#038;ti=308&#038;introDuration=16500&#038;adDuration=4000&#038;postAdDuration=2000&#038;adKeys=talk=billy_graham_on_technology_faith_and_suffering;year=1998;theme=bold_predictions_stern_warnings;theme=is_there_a_god;theme=technology_history_and_destiny;theme=what_s_next_in_tech;event=TED1998;"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://calvinf.com/blog/2009/technology-faith-and-human-shortcomings-billy-graham-at-ted/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://calvinf.com/blog/2009/technology-faith-and-human-shortcomings-billy-graham-at-ted/</feedburner:origLink></item>
		<item>
		<title>What It’s Like</title>
		<link>http://feedproxy.google.com/~r/CalvinFreitas/~3/M77MOIEoTBU/</link>
		<comments>http://calvinf.com/blog/2009/what-its-like/#comments</comments>
		<pubDate>Mon, 26 Oct 2009 19:01:47 +0000</pubDate>
		<dc:creator>Calvin Freitas</dc:creator>
				<category><![CDATA[Life]]></category>
		<category><![CDATA[Startups]]></category>

		<guid isPermaLink="false">http://calvinf.com/?p=118</guid>
		<description><![CDATA[Paul Graham has an excellent essay entitled &#8220;What Startups are Really Like.&#8221;  Read it here.
I found myself surprised at how often I agreed with the words of PG or the entrepreneurs he quoted within.  My experience working at Athleon has taught me many of the lessons he mentions within his essay.  Particularly, the lesson that entrepreneurs work [...]]]></description>
			<content:encoded><![CDATA[<p>Paul Graham has an excellent essay entitled &#8220;<a href="http://www.paulgraham.com/really.html">What Startups are Really Like</a>.&#8221;  Read it <a href="http://www.paulgraham.com/really.html">here</a>.</p>
<p>I found myself surprised at how often I agreed with the words of PG or the entrepreneurs he quoted within.  My experience working at <a href="http://www.athleon.com/">Athleon</a> has taught me many of the lessons he mentions within his essay.  Particularly, the lesson that entrepreneurs work on a different time-flow than the rest of the world, and the emotional roller coaster a startup can be.</p>
<p>Over the course of the past year, I have loved working with Brent, Ryan, Jason, and Dan on Athleon and I am incredibly proud of the product and how far it has come in a year.  With this  small team of 5 (now 4), we have launched <a href="http://www.allteamapparel.com/">All Team Apparel</a>, the <a href="http://www.athleon.com/features/gamefilm">Game Film beta</a>, an updated version of <a href="http://www.athleon.com/features/playbooks">Playbooks</a>, and rewritten large components of the back-end code (running on Debian Linux, Apache 2, MySQL, and Perl with some features written in Flex/AS3) to prepare the site to scale for future growth.</p>
<p>Nobody says startup life is easy.  The past year has not been, but I wouldn&#8217;t do things differently.  The lessons I&#8217;ve learned have been valuable, hard-earned, and worth it.</p>
]]></content:encoded>
			<wfw:commentRss>http://calvinf.com/blog/2009/what-its-like/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://calvinf.com/blog/2009/what-its-like/</feedburner:origLink></item>
		<item>
		<title>WordCamp Seattle 2009</title>
		<link>http://feedproxy.google.com/~r/CalvinFreitas/~3/vFDkqK5PvuI/</link>
		<comments>http://calvinf.com/blog/2009/wordcamp-seattle-2009/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 17:33:05 +0000</pubDate>
		<dc:creator>Calvin Freitas</dc:creator>
				<category><![CDATA[Events]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordCamp Seattle]]></category>

		<guid isPermaLink="false">http://calvinf.com/?p=114</guid>
		<description><![CDATA[WordCamp is coming to Seattle! Bloggers from all over the Northwest will meet to network, share knowledge and experiences, all while learning from some of the biggest names on the web.
Centered on the world&#8217;s most popular blogging platform &#8211; WordPress &#8211; this is THE event to learn about the blogging tool used by millions of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.wordcampseattle.com/">WordCamp is coming to Seattle</a>! Bloggers from all over the Northwest will meet to network, share knowledge and experiences, all while learning from some of the biggest names on the web.</p>
<p>Centered on the world&#8217;s most popular blogging platform &#8211; <a href="http://www.wordpress.org/">WordPress</a> &#8211; this is THE event to learn about the blogging tool used by millions of consumers and businesses alike. WordPress powers some of the world’s most visited sites and blog networks.</p>
<p><a href="http://www.wordcampseattle.com/">WordCamp Seattle 2009</a> is happening on September 26, and runs from 8:30am to 5:15pm at the Adobe office building in Fremont. Tickets for the event cost $25 and can be bought at <a href="http://wordcampseattle.eventbrite.com/">http://wordcampseattle.eventbrite.com/</a>.</p>
<p>The keynote speakers for the event are Chris Pirillo (<a href="http://www.lockergnome.com/">Lockergnome</a>) and Liz Strauss (<a href="http://www.successful-blog.com/">Successful &#038; Outstanding Bloggers</a>).</p>
]]></content:encoded>
			<wfw:commentRss>http://calvinf.com/blog/2009/wordcamp-seattle-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://calvinf.com/blog/2009/wordcamp-seattle-2009/</feedburner:origLink></item>
		<item>
		<title>Great Men</title>
		<link>http://feedproxy.google.com/~r/CalvinFreitas/~3/WMtd4wACES8/</link>
		<comments>http://calvinf.com/blog/2009/great-men/#comments</comments>
		<pubDate>Fri, 17 Jul 2009 05:45:53 +0000</pubDate>
		<dc:creator>Calvin Freitas</dc:creator>
				<category><![CDATA[Thinker]]></category>
		<category><![CDATA[John Calvin]]></category>
		<category><![CDATA[Quote]]></category>

		<guid isPermaLink="false">http://calvinf.com/?p=110</guid>
		<description><![CDATA[&#8220;Great men would be less great if they were not aware of their own defects and limitations.&#8221; &#8211; John T. McNeill
(This quote is found in the foreword to &#8220;The Humanness of John Calvin&#8221; by Richard Stauffer translated by George Shriver.)
]]></description>
			<content:encoded><![CDATA[<p><strong>&#8220;Great men would be less great if they were not aware of their own defects and limitations.&#8221; &#8211; John T. McNeill</strong></p>
<p><small>(This quote is found in the foreword to &#8220;<a href="http://www.amazon.com/gp/product/1599251558?ie=UTF8&#038;tag=calvfrei-20&#038;linkCode=as2&#038;camp=1789&#038;creative=390957&#038;creativeASIN=1599251558">The Humanness of John Calvin</a>&#8221; by Richard Stauffer translated by George Shriver.)</small></p>
]]></content:encoded>
			<wfw:commentRss>http://calvinf.com/blog/2009/great-men/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://calvinf.com/blog/2009/great-men/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.387 seconds. --><!-- Cached page generated by WP-Super-Cache on 2010-03-22 01:46:58 -->
