<?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>remkocaprio.com</title>
	<atom:link href="http://www.remkocaprio.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.remkocaprio.com</link>
	<description>Thoughts and Expressions on the Meaning of Nihilism</description>
	<lastBuildDate>Sat, 21 Jan 2012 16:14:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Tech Inquiries (1)</title>
		<link>http://www.remkocaprio.com/2012/01/21/tech-inquiries-1/</link>
		<comments>http://www.remkocaprio.com/2012/01/21/tech-inquiries-1/#comments</comments>
		<pubDate>Sat, 21 Jan 2012 16:09:27 +0000</pubDate>
		<dc:creator>rc</dc:creator>
				<category><![CDATA[it]]></category>
		<category><![CDATA[tech inquiries]]></category>

		<guid isPermaLink="false">http://www.remkocaprio.com/?p=3612</guid>
		<description><![CDATA[HTML5 http://dev.w3.org/html5/html4-differences/ http://en.wikipedia.org/wiki/HTML5 http://dev.w3.org/html5/spec/Overview.html NoSql Wikipedia NoSql MongoDB JavaScript node.js Wikipedia Node.js Express JS]]></description>
			<content:encoded><![CDATA[	<p>HTML5</p>
	<p>http://dev.w3.org/html5/html4-differences/</p>
	<p>http://en.wikipedia.org/wiki/HTML5</p>
	<p>http://dev.w3.org/html5/spec/Overview.html</p>
	<p>NoSql<br />
<a href="http://en.wikipedia.org/wiki/NoSQL" target="new">Wikipedia NoSql</a><br />
<a href="http://www.mongodb.org" target="">MongoDB</a></p>
	<p>JavaScript<br />
<a href="http://nodejs.org/" target="new">node.js</a><br />
<a href="http://en.wikipedia.org/wiki/Nodejs" target="new">Wikipedia Node.js</a><br />
<a href="http://expressjs.com/" target="new">Express JS</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.remkocaprio.com/2012/01/21/tech-inquiries-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: Hello World Widget</title>
		<link>http://www.remkocaprio.com/2012/01/13/wordpress-hello-word-widget/</link>
		<comments>http://www.remkocaprio.com/2012/01/13/wordpress-hello-word-widget/#comments</comments>
		<pubDate>Fri, 13 Jan 2012 18:36:06 +0000</pubDate>
		<dc:creator>rc</dc:creator>
				<category><![CDATA[it]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://www.remkocaprio.com/?p=3581</guid>
		<description><![CDATA[Hello World Widget Area To add widgets to your theme, you must have or create a &#8216;widget area&#8217; as a widget placeholder and a widget to add to your widget area. In the functions.php file of your theme, you can create a custom widget area by using the following code. if (function_exists('register_sidebar')) { register_sidebar(array( 'name'=> [...]]]></description>
			<content:encoded><![CDATA[	<h3>Hello World Widget Area</h3>
	<p>To add widgets to your theme, you must have or create a &#8216;widget area&#8217; as a widget placeholder and a widget to add to your widget area. </p>
	<p>In the functions.php file of your theme, you can create a custom widget area by using the following code.</p>
	<pre style="background-color: lightgray;">
if (function_exists('register_sidebar')) {
  register_sidebar(array(
    'name'=> 'Hello World Widget Area',
    'id' => 'hello_world',
    'before_widget' => '&lt;div id=\"%1$s\" class=\"widget %2$s\"&gt;',
    'after_widget' => '&lt;/div&gt;',
    'before_title' => '&lt;div id=\"div_hello_world_title\"&gt;',
    'after_title' => '&lt;/div&gt;',
));}
</pre>
	<h3>Hello World Widget</h3>
	<p>This simple method does not use the extension of the WP_Widget class, which is the preferred method.<br />
In the functions.php file of your theme, add the following code for the HelloWorld Widget.</p>
	<pre style="background-color: lightgray;">
  function widget_helloworld() {
     echo \"Hello World!\";
  }
  if (function_exists('register_sidebar_widget')) {
     register_sidebar_widget(__('Hello World Widget'), 'widget_helloworld');
  }
</pre>
	<p>To add your widget to the dynamic sidebar:<br />
- Go to your WordPress Dashboard > Appearance > Widgets, and<br />
- Drag&#8217;n'drop the Hello World Widget to the dynamic sidebar on the right.</p>
	<h3>Hello World Template</h3>
	<p>Finally, you need a template to include your widget area. Create a helloworld.php file and include the following code.</p>
	<pre style="background-color: lightgray;">
&lt;?php if (!function_exists('dynamic_sidebar') || !dynamic_sidebar('Hello World Widget Area')) : ?&gt;
  &lt;!-- if widgets are not available --&gt;
&lt;?php endif; ?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.remkocaprio.com/2012/01/13/wordpress-hello-word-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Death of Literature</title>
		<link>http://www.remkocaprio.com/2012/01/11/the-death-of-literature/</link>
		<comments>http://www.remkocaprio.com/2012/01/11/the-death-of-literature/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 19:46:21 +0000</pubDate>
		<dc:creator>rc</dc:creator>
				<category><![CDATA[minipost]]></category>

		<guid isPermaLink="false">http://www.remkocaprio.com/?p=3578</guid>
		<description><![CDATA[Death in literature is an elementary metaphor, as the fear of death is one of our Id&#8217;s primal impulses, together with the sexual urge to reproduce and overcome it. The resurrection of our mind is the symbol for the cycle of life, the seasons, birth and death, crucifixion and resurrection, destruction and creation, night and [...]]]></description>
			<content:encoded><![CDATA[Death in literature is an elementary metaphor, as the fear of death is one of our Id&#8217;s primal impulses, together with the sexual urge to reproduce and overcome it. The resurrection of our mind is the symbol for the cycle of life, the seasons, birth and death, crucifixion and resurrection, destruction and creation, night and day, there&#8217;s probably nothing more universal, nothing more primal than death and life. The article in the Guardian <a href="http://www.guardian.co.uk/books/2012/jan/10/in-theory-death-of-literature" target="new">In theory: the death of literature</a> is a great short essay that analyzes the perspective of the Romantics on death in literature as an elementary original perspective that lays at the root of the birth of the modern novel. It&#8217;s a very original view with lots of references in high overview, which makes it easy to make any argument, but it&#8217;s convincing until midway when the argument becomes an old man&#8217;s lamentation on modern times. Here is where the author <a href="http://www.guardian.co.uk/profile/andrewgallix" target="new">Andrew Gallix</a> the other essence of the Romantics in my opinion, namely the overcoming of the fear of death in favor of a naive and blind will for creation, this resurrection of the conscious mind is what represents the true power of the Romantic era. In the face of death we are not afraid to throw ourselves in the abyss and love. 
 ]]></content:encoded>
			<wfw:commentRss>http://www.remkocaprio.com/2012/01/11/the-death-of-literature/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run: 5k – NYSC – 36th st @Madison</title>
		<link>http://www.remkocaprio.com/2012/01/11/run-5k-nysc-36th-st-madison-3/</link>
		<comments>http://www.remkocaprio.com/2012/01/11/run-5k-nysc-36th-st-madison-3/#comments</comments>
		<pubDate>Wed, 11 Jan 2012 18:47:38 +0000</pubDate>
		<dc:creator>rc</dc:creator>
				<category><![CDATA[runs]]></category>

		<guid isPermaLink="false">http://www.remkocaprio.com/?p=3574</guid>
		<description><![CDATA[Duration: 25:30:00 minutes Distance: 3.11 miles; 5.0 km Speed: 8:11 minutes/mile]]></description>
			<content:encoded><![CDATA[	<p>Duration: 25:30:00 minutes<br />
Distance: 3.11 miles; 5.0 km<br />
Speed: 8:11 minutes/mile</p>
]]></content:encoded>
			<wfw:commentRss>http://www.remkocaprio.com/2012/01/11/run-5k-nysc-36th-st-madison-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run: 20mins – NYSC – 36th st @Madison</title>
		<link>http://www.remkocaprio.com/2012/01/09/run-20mins-nysc-36th-st-madison-2/</link>
		<comments>http://www.remkocaprio.com/2012/01/09/run-20mins-nysc-36th-st-madison-2/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 19:23:37 +0000</pubDate>
		<dc:creator>rc</dc:creator>
				<category><![CDATA[runs]]></category>

		<guid isPermaLink="false">http://www.remkocaprio.com/?p=3572</guid>
		<description><![CDATA[Duration: 20:00:00 minutes Distance: 2.37 miles; 3.8 km Speed: 8:26 minutes/mile]]></description>
			<content:encoded><![CDATA[	<p>Duration: 20:00:00 minutes<br />
Distance: 2.37 miles; 3.8 km<br />
Speed: 8:26 minutes/mile</p>
]]></content:encoded>
			<wfw:commentRss>http://www.remkocaprio.com/2012/01/09/run-20mins-nysc-36th-st-madison-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run: 20mins – NYSC – 36th st @Madison</title>
		<link>http://www.remkocaprio.com/2012/01/04/run-20mins-nysc-36th-st-madison/</link>
		<comments>http://www.remkocaprio.com/2012/01/04/run-20mins-nysc-36th-st-madison/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 19:14:44 +0000</pubDate>
		<dc:creator>rc</dc:creator>
				<category><![CDATA[runs]]></category>

		<guid isPermaLink="false">http://www.remkocaprio.com/?p=3554</guid>
		<description><![CDATA[Duration: 20:00:00 minutes Distance: 2.37 miles; 3.8 km Speed: 8:26 minutes/mile]]></description>
			<content:encoded><![CDATA[	<p>Duration: 20:00:00 minutes<br />
Distance: 2.37 miles; 3.8 km<br />
Speed: 8:26 minutes/mile</p>
]]></content:encoded>
			<wfw:commentRss>http://www.remkocaprio.com/2012/01/04/run-20mins-nysc-36th-st-madison/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Philip Roth, Portnoy&#8217;s Complaint (1969)</title>
		<link>http://www.remkocaprio.com/2011/12/08/philip-roth-portnoys-complaint-1969/</link>
		<comments>http://www.remkocaprio.com/2011/12/08/philip-roth-portnoys-complaint-1969/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 20:46:52 +0000</pubDate>
		<dc:creator>rc</dc:creator>
				<category><![CDATA[read]]></category>

		<guid isPermaLink="false">http://www.remkocaprio.com/?p=3532</guid>
		<description><![CDATA[Philip Roth, Portnoy&#8217;s Complaint (1969), 274p.]]></description>
			<content:encoded><![CDATA[	<p><img src="http://www.remkocaprio.com/wp-content/uploads/2011/12/philip-roth-portnoys-complaint-1969.jpg" align="left" />Philip Roth, Portnoy&#8217;s Complaint (1969), 274p.
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.remkocaprio.com/2011/12/08/philip-roth-portnoys-complaint-1969/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Der Zauberberg (1982)</title>
		<link>http://www.remkocaprio.com/2011/12/02/der-zauberberg-1982/</link>
		<comments>http://www.remkocaprio.com/2011/12/02/der-zauberberg-1982/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 23:48:15 +0000</pubDate>
		<dc:creator>rc</dc:creator>
				<category><![CDATA[movies seen]]></category>

		<guid isPermaLink="false">http://www.remkocaprio.com/?p=3528</guid>
		<description><![CDATA[An international production of Thomas Mann&#8217;s 20th century classic about the first world war, Der Zauberberg (1982).]]></description>
			<content:encoded><![CDATA[An international production of Thomas Mann&#8217;s 20th century classic about the first world war, <a href="http://www.youtube.com/watch?v=UqUecXceQqE" target="new">Der Zauberberg (1982)</a>.]]></content:encoded>
			<wfw:commentRss>http://www.remkocaprio.com/2011/12/02/der-zauberberg-1982/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run: 5k – NYSC – 36th st @Madison</title>
		<link>http://www.remkocaprio.com/2011/11/21/run-5k-%e2%80%93-nysc-%e2%80%93-36th-st-madison-3/</link>
		<comments>http://www.remkocaprio.com/2011/11/21/run-5k-%e2%80%93-nysc-%e2%80%93-36th-st-madison-3/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 16:58:37 +0000</pubDate>
		<dc:creator>rc</dc:creator>
				<category><![CDATA[runs]]></category>

		<guid isPermaLink="false">http://www.remkocaprio.com/?p=3525</guid>
		<description><![CDATA[Duration: 26:45:00 minutes Distance: 3.11 miles; 5.00 km Speed: 8.36 minutes/mile]]></description>
			<content:encoded><![CDATA[	<p>Duration: 26:45:00 minutes<br />
Distance: 3.11 miles; 5.00 km<br />
Speed: 8.36 minutes/mile
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.remkocaprio.com/2011/11/21/run-5k-%e2%80%93-nysc-%e2%80%93-36th-st-madison-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Run: 5k – NYSC – 36th st @Madison</title>
		<link>http://www.remkocaprio.com/2011/11/15/run-5k-%e2%80%93-nysc-%e2%80%93-36th-st-madison-2/</link>
		<comments>http://www.remkocaprio.com/2011/11/15/run-5k-%e2%80%93-nysc-%e2%80%93-36th-st-madison-2/#comments</comments>
		<pubDate>Tue, 15 Nov 2011 16:31:54 +0000</pubDate>
		<dc:creator>rc</dc:creator>
				<category><![CDATA[runs]]></category>

		<guid isPermaLink="false">http://www.remkocaprio.com/?p=3522</guid>
		<description><![CDATA[Duration: 26:45:00 minutes Distance: 3.11 miles; 5.00 km Speed: 8.36 minutes/mile]]></description>
			<content:encoded><![CDATA[	<p>Duration: 26:45:00 minutes<br />
Distance: 3.11 miles; 5.00 km<br />
Speed: 8.36 minutes/mile
</p>
]]></content:encoded>
			<wfw:commentRss>http://www.remkocaprio.com/2011/11/15/run-5k-%e2%80%93-nysc-%e2%80%93-36th-st-madison-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

