<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><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:media="http://search.yahoo.com/mrss/" version="2.0">

<channel>
	<title>Black Eternal</title>
	
	<link>http://blacketernal.wordpress.com</link>
	<description>...how abstract thy harvest rose doth fall, consigned to the flames of woe in sweet modesty...</description>
	<pubDate>Fri, 04 Jul 2008 20:02:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>ro</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/blacketernal" type="application/rss+xml" /><item>
		<title>Sieve of Eratosthenes - a pure-tcl implementation</title>
		<link>http://blacketernal.wordpress.com/2008/07/04/sieve-of-eratosthenes-a-pure-tcl-implementation/</link>
		<comments>http://blacketernal.wordpress.com/2008/07/04/sieve-of-eratosthenes-a-pure-tcl-implementation/#comments</comments>
		<pubDate>Fri, 04 Jul 2008 19:59:40 +0000</pubDate>
		<dc:creator>blacketernal</dc:creator>
		
		<category><![CDATA[Random]]></category>

		<category><![CDATA[algorithm]]></category>

		<category><![CDATA[array]]></category>

		<category><![CDATA[eratosthene]]></category>

		<category><![CDATA[lreplace]]></category>

		<category><![CDATA[programming]]></category>

		<category><![CDATA[sieve]]></category>

		<category><![CDATA[tcl]]></category>

		<guid isPermaLink="false">http://blacketernal.wordpress.com/?p=155</guid>
		<description><![CDATA[What caught my attention is the fact that this implementation is about a hundred times slower than a C implementation, mostly because Tcl (without any extensions), lacks an efficient way of handling arrays.
On my machine, a C program finds out all the primes below two million and computes their sum in about 0.3 seconds. The [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>What caught my attention is the fact that this implementation is about a hundred times slower than a C implementation, mostly because Tcl (without any extensions), lacks an efficient way of handling arrays.</p>
<p>On my machine, a C program finds out all the primes below two million and computes their sum in about 0.3 seconds. The Tcl program does the same thing in about 40 seconds. </p>
<p>The main reason behind this performance issue regarding lists in tcl is the fact that the <strong>lreplace</strong> command doesn&#8217;t actually replace. It returns a new list, and does not modify the existing one. The solution is using the so-called &#8220;<a href="http://wiki.tcl.tk/1923">K-combinator</a>&#8221; to make the <strong>lreplace</strong> work in-place. I need to further investigate this, and maybe use some other languages like perl or python for benchmarking purposes against tcl. Anyway, below is my pure-tcl implementation of the &#8220;sieve of eratosthenes&#8221;.</p>
<pre style="font-family:courier;color:#f0f0f0;font-size:1em;background-color:#070604;">
<span style="color:#707070;"> 1 </span><span style="color:#c0c0c0;">#!/usr/bin/tclsh</span>
<span style="color:#707070;"> 2 </span>
<span style="color:#707070;"> 3 </span><span style="color:#c0c0c0;">#Find all primes up to a given number</span>
<span style="color:#707070;"> 4 </span>
<span style="color:#707070;"> 5 </span><span style="color:#dcdc78;">proc</span> K {x y} {<span style="color:#dcdc78;">set</span> x}
<span style="color:#707070;"> 6 </span>
<span style="color:#707070;"> 7 </span><span style="color:#dcdc78;">set</span> n [<span style="color:#dcdc78;">lindex</span> <span style="color:#40f8f8;">$argv</span> <span style="color:#92d4ff;">0</span>]
<span style="color:#707070;"> 8 </span><span style="color:#dcdc78;">set</span> garbage [<span style="color:#dcdc78;">list</span>]
<span style="color:#707070;"> 9 </span><span style="color:#dcdc78;">set</span> flags [<span style="color:#dcdc78;">list</span>]
<span style="color:#707070;">10 </span>
<span style="color:#707070;">11 </span><span style="color:#dcdc78;">for</span> {<span style="color:#dcdc78;">set</span> i <span style="color:#92d4ff;">0</span>} {<span style="color:#40f8f8;">$i</span> &lt;= [<span style="color:#dcdc78;">expr</span> {<span style="color:#40f8f8;">$n</span>-<span style="color:#92d4ff;">1</span>}]} {<span style="color:#dcdc78;">incr</span> i} {
<span style="color:#707070;">12 </span>    <span style="color:#dcdc78;">lappend</span> flags <span style="color:#92d4ff;">1</span>
<span style="color:#707070;">13 </span>}
<span style="color:#707070;">14 </span>
<span style="color:#707070;">15 </span><span style="color:#dcdc78;">set</span> flags [<span style="color:#dcdc78;">lreplace</span> [K <span style="color:#40f8f8;">$flags</span> [<span style="color:#dcdc78;">set</span> flags {}]] <span style="color:#92d4ff;">0</span> <span style="color:#92d4ff;">0</span> <span style="color:#92d4ff;">0</span>]
<span style="color:#707070;">16 </span>
<span style="color:#707070;">17 </span><span style="color:#dcdc78;">set</span> p <span style="color:#92d4ff;">2</span>
<span style="color:#707070;">18 </span>
<span style="color:#707070;">19 </span><span style="color:#dcdc78;">while</span> {[<span style="color:#dcdc78;">expr</span> {<span style="color:#40f8f8;">$p</span>*<span style="color:#40f8f8;">$p</span>}] &lt; <span style="color:#40f8f8;">$n</span> } {
<span style="color:#707070;">20 </span>    <span style="color:#dcdc78;">set</span> j [<span style="color:#dcdc78;">expr</span> {int(pow(<span style="color:#40f8f8;">$p</span>,<span style="color:#92d4ff;">2</span>))-<span style="color:#92d4ff;">1</span>}]
<span style="color:#707070;">21 </span>
<span style="color:#707070;">22 </span>    <span style="color:#dcdc78;">while</span> {<span style="color:#40f8f8;">$j</span> &lt; <span style="color:#40f8f8;">$n</span>} {
<span style="color:#707070;">23 </span>        <span style="color:#dcdc78;">set</span> flags [<span style="color:#dcdc78;">lreplace</span> [K <span style="color:#40f8f8;">$flags</span> [<span style="color:#dcdc78;">set</span> flags {}]] <span style="color:#40f8f8;">$j</span> <span style="color:#40f8f8;">$j</span> <span style="color:#92d4ff;">0</span>]
<span style="color:#707070;">24 </span>        <span style="color:#dcdc78;">incr</span> j <span style="color:#40f8f8;">$p</span>
<span style="color:#707070;">25 </span>    }
<span style="color:#707070;">26 </span>
<span style="color:#707070;">27 </span>    <span style="color:#dcdc78;">while</span> { <span style="color:#92d4ff;">1</span> } {
<span style="color:#707070;">28 </span>        <span style="color:#dcdc78;">incr</span> p
<span style="color:#707070;">29 </span>        <span style="color:#dcdc78;">if</span> {[<span style="color:#dcdc78;">lindex</span> <span style="color:#40f8f8;">$flags</span> [<span style="color:#dcdc78;">expr</span> {<span style="color:#40f8f8;">$p</span>-<span style="color:#92d4ff;">1</span>}]] == <span style="color:#92d4ff;">1</span>} { <span style="color:#dcdc78;">break</span> }
<span style="color:#707070;">30 </span>    }
<span style="color:#707070;">31 </span>}
<span style="color:#707070;">32 </span>
<span style="color:#707070;">33 </span><span style="color:#dcdc78;">set</span> sum <span style="color:#92d4ff;">0</span>
<span style="color:#707070;">34 </span>
<span style="color:#707070;">35 </span><span style="color:#dcdc78;">for</span> {<span style="color:#dcdc78;">set</span> i <span style="color:#92d4ff;">0</span>} {<span style="color:#40f8f8;">$i</span> &lt; <span style="color:#40f8f8;">$n</span>} {<span style="color:#dcdc78;">incr</span> i} {
<span style="color:#707070;">36 </span>    <span style="color:#dcdc78;">if</span> {[<span style="color:#dcdc78;">lindex</span> <span style="color:#40f8f8;">$flags</span> <span style="color:#40f8f8;">$i</span>] == <span style="color:#92d4ff;">1</span>} {
<span style="color:#707070;">37 </span>        <span style="color:#dcdc78;">lappend</span> garbage [<span style="color:#dcdc78;">expr</span> {<span style="color:#40f8f8;">$i</span>+<span style="color:#92d4ff;">1</span>}]
<span style="color:#707070;">38 </span>    }
<span style="color:#707070;">39 </span>}
<span style="color:#707070;">40 </span>
<span style="color:#707070;">41 </span><span style="color:#dcdc78;">set</span> length [<span style="color:#dcdc78;">llength</span> <span style="color:#40f8f8;">$garbage</span>]
<span style="color:#707070;">42 </span>
<span style="color:#707070;">43 </span><span style="color:#dcdc78;">for</span> {<span style="color:#dcdc78;">set</span> i <span style="color:#92d4ff;">0</span>} {<span style="color:#40f8f8;">$i</span> &lt; <span style="color:#40f8f8;">$length</span>} {<span style="color:#dcdc78;">incr</span> i} {
<span style="color:#707070;">44 </span>    <span style="color:#dcdc78;">incr</span> sum [<span style="color:#dcdc78;">lindex</span> <span style="color:#40f8f8;">$garbage</span> <span style="color:#40f8f8;">$i</span>]
<span style="color:#707070;">45 </span>}
<span style="color:#707070;">46 </span>
<span style="color:#707070;">47 </span><span style="color:#dcdc78;">puts</span> <span style="color:#92d4ff;">&quot;sum = $sum&quot;</span>
</pre>
<p><a href="http://www.vim.org"><br />
VIM</a> is absolutely wonderful when it comes to saving code into html. :)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/blacketernal.wordpress.com/155/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/blacketernal.wordpress.com/155/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacketernal.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacketernal.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacketernal.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacketernal.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacketernal.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacketernal.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacketernal.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacketernal.wordpress.com/155/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacketernal.wordpress.com/155/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacketernal.wordpress.com/155/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacketernal.wordpress.com&blog=2998125&post=155&subd=blacketernal&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blacketernal.wordpress.com/2008/07/04/sieve-of-eratosthenes-a-pure-tcl-implementation/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/frozenshade-128.jpg" medium="image">
			<media:title type="html">blacketernal</media:title>
		</media:content>
	</item>
		<item>
		<title>Rivers frozen and mischosen</title>
		<link>http://blacketernal.wordpress.com/2008/06/21/rivers-frozen-and-mischosen/</link>
		<comments>http://blacketernal.wordpress.com/2008/06/21/rivers-frozen-and-mischosen/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 19:24:50 +0000</pubDate>
		<dc:creator>blacketernal</dc:creator>
		
		<category><![CDATA[Random]]></category>

		<category><![CDATA[arcane rain fell]]></category>

		<category><![CDATA[death]]></category>

		<category><![CDATA[death come near me]]></category>

		<category><![CDATA[draconian]]></category>

		<category><![CDATA[video]]></category>

		<category><![CDATA[youtube]]></category>

		<guid isPermaLink="false">http://blacketernal.wordpress.com/?p=143</guid>
		<description><![CDATA[Am început să ascult draconian prin 2004, cred&#8230; eram în anul I de facultate, deja începeam să-mi dau seama că nu tot ce zboară se mănîncă şi că în realitate dacă nu eşti pregătit să faci compromisuri, nu vei avea parte decît de dezamăgiri. Ascult şi acum draconian, sunt la fel de încăpăţînat, nu fac [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Am început să ascult draconian prin 2004, cred&#8230; eram în anul I de facultate, deja începeam să-mi dau seama că nu tot ce zboară se mănîncă şi că în realitate dacă nu eşti pregătit să faci compromisuri, nu vei avea parte decît de dezamăgiri. Ascult şi acum draconian, sunt la fel de încăpăţînat, nu fac compromisuri, iar acest videoclip e superb&#8230; gothic doom at it&#8217;s best. </p>
<p><span style="text-align:center; display: block;"><a href="http://blacketernal.wordpress.com/2008/06/21/rivers-frozen-and-mischosen/"><img src="http://img.youtube.com/vi/6R7jSfLpk7Y/2.jpg" alt="" /></a></span></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/blacketernal.wordpress.com/143/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/blacketernal.wordpress.com/143/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacketernal.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacketernal.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacketernal.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacketernal.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacketernal.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacketernal.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacketernal.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacketernal.wordpress.com/143/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacketernal.wordpress.com/143/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacketernal.wordpress.com/143/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacketernal.wordpress.com&blog=2998125&post=143&subd=blacketernal&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blacketernal.wordpress.com/2008/06/21/rivers-frozen-and-mischosen/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/frozenshade-128.jpg" medium="image">
			<media:title type="html">blacketernal</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/6R7jSfLpk7Y/2.jpg" medium="image" />
	</item>
		<item>
		<title>Observaţii şi comentarii</title>
		<link>http://blacketernal.wordpress.com/2008/06/18/observatii-si-comentarii/</link>
		<comments>http://blacketernal.wordpress.com/2008/06/18/observatii-si-comentarii/#comments</comments>
		<pubDate>Wed, 18 Jun 2008 20:41:37 +0000</pubDate>
		<dc:creator>blacketernal</dc:creator>
		
		<category><![CDATA[Random]]></category>

		<category><![CDATA[iasi]]></category>

		<category><![CDATA[observatii]]></category>

		<guid isPermaLink="false">http://blacketernal.wordpress.com/?p=142</guid>
		<description><![CDATA[Chestii, trestii, wake up and hate. Cu ce să încep? Ah, desigur&#8230;

*

 microbiştii lu&#8217; peşte habar n-aveţi ce înseamnă psihologia unui meci important, cu miză mare, comentaţi şi înjuraţi ca proştii haha aţi luat ţeapă, vai ce dezamăgire, atîtea speranţe şi vise năruite =&#62; e numai vina voastră. Totul e numai vina voastră. 

*

 mă [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Chestii, trestii, wake up and hate. Cu ce să încep? Ah, desigur&#8230;</p>
<div style="text-align:center;">
<h1>*</h1>
</div>
<p> microbiştii lu&#8217; peşte habar n-aveţi ce înseamnă psihologia unui meci important, cu miză mare, comentaţi şi înjuraţi ca proştii haha aţi luat ţeapă, vai ce dezamăgire, atîtea speranţe şi vise năruite =&gt; e numai vina voastră. Totul e numai vina voastră. </p>
<div style="text-align:center;">
<h1>*</h1>
</div>
<p> mă urc în maxi taxi vreau să-mi cumpăr bilet şoferu mă întreabă &#8220;da&#8217; unde mergi băietu&#8217;?&#8221; &#8220;mă duc acasă. bilet, vă rog&#8221;. Nu ştiu cum e în alte oraşe dar aici în Iaşi fenomenul ăsta e exasperant. Noroc că mi-am făcut abonament pe toate liniile. </p>
<div style="text-align:center;">
<h1>*</h1>
</div>
<p> vacile &#8220;cul&#8221; care urlă în telefon în locuri publice ca să arate că au personalitate, howdy do missy, du-te şi behăie undeva pe cîmp de unde-ai venit. chiar zilele astea am întîlnit o personalitate din asta puternică, pînă să vină maxi taxi-le mi-am imaginat peste 50 de metode să-i fac praf cutia craniană. da, stiu, sunt foarte de treaba. nu, nu exagerez. &#8220;pentru că meritaţi&#8221;. </p>
<div style="text-align:center;">
<h1>*</h1>
</div>
<p> femeilor cu copchii mici care se urcă cu respectivele maimuţe în mijloace de transport ultra-aglomerate, sunteţi mai mult decît proaste, sunteţi iresponsabile şi inconştiente, iar apoi ajungeţi cu odraslele la veterinar. Ce stupid. Dar de fapt&#8230; selecţia naturală ar trebui să funcţioneze: cel mai nespălat cîştigă. </p>
<p>I&#8217;m sad coz&#8217; my cat turned into a zombie. Beware!!</p>
<p><img src="http://farm4.static.flickr.com/3096/2591150036_55c6d888a6_o.jpg" alt="" /></p>
<p>Să nu ziceţi că nu v-am avertizat.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/blacketernal.wordpress.com/142/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/blacketernal.wordpress.com/142/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacketernal.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacketernal.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacketernal.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacketernal.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacketernal.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacketernal.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacketernal.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacketernal.wordpress.com/142/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacketernal.wordpress.com/142/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacketernal.wordpress.com/142/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacketernal.wordpress.com&blog=2998125&post=142&subd=blacketernal&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blacketernal.wordpress.com/2008/06/18/observatii-si-comentarii/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/frozenshade-128.jpg" medium="image">
			<media:title type="html">blacketernal</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3096/2591150036_55c6d888a6_o.jpg" medium="image" />
	</item>
		<item>
		<title>Desiderata</title>
		<link>http://blacketernal.wordpress.com/2008/06/15/desiderata/</link>
		<comments>http://blacketernal.wordpress.com/2008/06/15/desiderata/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 20:32:05 +0000</pubDate>
		<dc:creator>blacketernal</dc:creator>
		
		<category><![CDATA[Poetry]]></category>

		<category><![CDATA[desiderata]]></category>

		<category><![CDATA[ehrmann]]></category>

		<category><![CDATA[poezie]]></category>

		<guid isPermaLink="false">http://blacketernal.wordpress.com/?p=141</guid>
		<description><![CDATA[Go placidly amid the noise and the haste,
and remember what peace there may be in silence.
As far as possible, without surrender,
be on good terms with all persons.
Speak your truth quietly and clearly;
and listen to others,
even to the dull and the ignorant;
they too have their story.
Avoid loud and aggressive persons;
they are vexatious to the spirit.
If you [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Go placidly amid the noise and the haste,<br />
and remember what peace there may be in silence.</p>
<p>As far as possible, without surrender,<br />
be on good terms with all persons.<br />
Speak your truth quietly and clearly;<br />
and listen to others,<br />
even to the dull and the ignorant;<br />
they too have their story.<br />
Avoid loud and aggressive persons;<br />
they are vexatious to the spirit.</p>
<p>If you compare yourself with others,<br />
you may become vain or bitter,<br />
for always there will be greater and lesser persons than yourself.<br />
Enjoy your achievements as well as your plans.<br />
Keep interested in your own career, however humble;<br />
it is a real possession in the changing fortunes of time.</p>
<p>Exercise caution in your business affairs,<br />
for the world is full of trickery.<br />
But let this not blind you to what virtue there is;<br />
many persons strive for high ideals,<br />
and everywhere life is full of heroism.<br />
Be yourself. Especially do not feign affection.<br />
Neither be cynical about love,<br />
for in the face of all aridity and disenchantment,<br />
it is as perennial as the grass.</p>
<p>Take kindly the counsel of the years,<br />
gracefully surrendering the things of youth.<br />
Nurture strength of spirit to shield you in sudden misfortune.<br />
But do not distress yourself with dark imaginings.<br />
Many fears are born of fatigue and loneliness.</p>
<p>Beyond a wholesome discipline,<br />
be gentle with yourself.<br />
You are a child of the universe<br />
no less than the trees and the stars;<br />
you have a right to be here.<br />
And whether or not it is clear to you,<br />
no doubt the universe is unfolding as it should.</p>
<p>Therefore be at peace with God,<br />
whatever you conceive Him to be.<br />
And whatever your labors and aspirations,<br />
in the noisy confusion of life,<br />
keep peace in your soul.</p>
<p>With all its sham, drudgery, and broken dreams,<br />
it is still a beautiful world.<br />
Be cheerful. Strive to be happy.</p>
<p><strong><em>&#8212; Max Ehrmann</em></strong></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/blacketernal.wordpress.com/141/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/blacketernal.wordpress.com/141/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacketernal.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacketernal.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacketernal.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacketernal.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacketernal.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacketernal.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacketernal.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacketernal.wordpress.com/141/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacketernal.wordpress.com/141/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacketernal.wordpress.com/141/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacketernal.wordpress.com&blog=2998125&post=141&subd=blacketernal&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blacketernal.wordpress.com/2008/06/15/desiderata/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/frozenshade-128.jpg" medium="image">
			<media:title type="html">blacketernal</media:title>
		</media:content>
	</item>
		<item>
		<title>În ce sens se învîrte?</title>
		<link>http://blacketernal.wordpress.com/2008/06/15/in-ce-sens-se-invirte/</link>
		<comments>http://blacketernal.wordpress.com/2008/06/15/in-ce-sens-se-invirte/#comments</comments>
		<pubDate>Sun, 15 Jun 2008 10:00:35 +0000</pubDate>
		<dc:creator>blacketernal</dc:creator>
		
		<category><![CDATA[Random]]></category>

		<category><![CDATA[creier]]></category>

		<category><![CDATA[emisfera cerebrela]]></category>

		<category><![CDATA[iluzie]]></category>

		<guid isPermaLink="false">http://blacketernal.wordpress.com/?p=138</guid>
		<description><![CDATA[
Dacă o vezi învîrtindu-se spre dreapta, înseamnă că îţi foloseşti (predominant) emisfera dreaptă a creierului, dacă o vezi învîrtindu-se spre stînga, îţi foloseşti emisfera stîngă. E posibil sa poti sa o vezi invartindu-se in ambele sensuri (evident nu simultan :P). In cazul asta te numeri printre &#8220;the select few&#8221; :).
Left brain functions: sequential, analytical, verbal, [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://blacketernal.files.wordpress.com/2008/06/123241.gif"><img src="http://blacketernal.files.wordpress.com/2008/06/123241.gif?w=300&h=400" alt="" width="300" height="400" class="aligncenter size-full wp-image-139" /></a></p>
<p>Dacă o vezi învîrtindu-se spre dreapta, înseamnă că îţi foloseşti (predominant) emisfera dreaptă a creierului, dacă o vezi învîrtindu-se spre stînga, îţi foloseşti emisfera stîngă. E posibil sa poti sa o vezi invartindu-se in ambele sensuri (evident nu simultan :P). In cazul asta te numeri printre &#8220;the select few&#8221; :).</p>
<p><strong>Left brain functions:</strong> sequential, analytical, verbal, logical, linear algorithmic processing, mathematics: perception of counting/measurement, present and past, language: grammar/words, pattern perception, literal.</p>
<p><strong>Right brain functions: </strong> simultaneous, holistic, imagistic, intuitive, holistical algorithm processing, mathematics: perception of shapes/motions, present and future, 	language: intonation/emphasis, prosody, pragmatic, contextual.</p>
<p><a href="http://en.wikipedia.org/wiki/Cerebral_hemispheres">http://en.wikipedia.org/wiki/Cerebral_hemispheres</a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/blacketernal.wordpress.com/138/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/blacketernal.wordpress.com/138/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacketernal.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacketernal.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacketernal.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacketernal.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacketernal.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacketernal.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacketernal.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacketernal.wordpress.com/138/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacketernal.wordpress.com/138/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacketernal.wordpress.com/138/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacketernal.wordpress.com&blog=2998125&post=138&subd=blacketernal&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blacketernal.wordpress.com/2008/06/15/in-ce-sens-se-invirte/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/frozenshade-128.jpg" medium="image">
			<media:title type="html">blacketernal</media:title>
		</media:content>

		<media:content url="http://blacketernal.files.wordpress.com/2008/06/123241.gif" medium="image" />
	</item>
		<item>
		<title>Walking today</title>
		<link>http://blacketernal.wordpress.com/2008/06/14/walking-today/</link>
		<comments>http://blacketernal.wordpress.com/2008/06/14/walking-today/#comments</comments>
		<pubDate>Sat, 14 Jun 2008 16:30:14 +0000</pubDate>
		<dc:creator>blacketernal</dc:creator>
		
		<category><![CDATA[Random]]></category>

		<category><![CDATA[death]]></category>

		<category><![CDATA[man]]></category>

		<category><![CDATA[mum]]></category>

		<guid isPermaLink="false">http://blacketernal.wordpress.com/?p=136</guid>
		<description><![CDATA[I was walking today, enjoying just being in motion, lost in thought, when suddenly somebody caught my arm, countering my inertia till my body came to a full halt. As I stopped, waiting patiently, curious about everything, I saw a man in his thirties or forties, staring at me with a madman&#8217;s gaze. Completely still. [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I was walking today, enjoying just being in motion, lost in thought, when suddenly somebody caught my arm, countering my inertia till my body came to a full halt. As I stopped, waiting patiently, curious about everything, I saw a man in his thirties or forties, staring at me with a madman&#8217;s gaze. Completely still. Frozen&#8230; he thought about the words he should speak, he did not know how, how to begin, how to say it, it was a secret hidden in his eyes. &#8220;My mum died&#8221;, said the man, as he trembled and wept like a little child, &#8220;could you please give me some directions?&#8221;. &#8220;Sure&#8221;, I said, looking at him, wondering how this must feel, and why he chose to share with me his great loss. &#8220;Where do you wish to go?&#8221;. My senses were telling me that the man had lost every notion of space and time and the world. I knew the place he told me about. &#8220;You should walk&#8221;, I said, &#8220;it&#8217;s not far&#8221;. I figured a walk would help him clear his mind. Completely calm and unemotional, I waited some seconds for him to let go and be on his way. And then, a moment of compassion&#8230;&#8221;I&#8217;m sorry&#8221;. I watched him walk away, his movement was almost seamless, he was in perfect balance with gravity. Where was he going? What is he going to do? Time will heal everything perhaps&#8230; humans are so strange. I should enjoy meeting that man again. I resumed my motion but my steps could never be as perfectly balanced as his. Not until&#8230;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/blacketernal.wordpress.com/136/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/blacketernal.wordpress.com/136/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacketernal.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacketernal.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacketernal.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacketernal.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacketernal.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacketernal.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacketernal.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacketernal.wordpress.com/136/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacketernal.wordpress.com/136/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacketernal.wordpress.com/136/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacketernal.wordpress.com&blog=2998125&post=136&subd=blacketernal&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blacketernal.wordpress.com/2008/06/14/walking-today/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/frozenshade-128.jpg" medium="image">
			<media:title type="html">blacketernal</media:title>
		</media:content>
	</item>
		<item>
		<title>Ain’t never enough time</title>
		<link>http://blacketernal.wordpress.com/2008/06/13/never-enough-time/</link>
		<comments>http://blacketernal.wordpress.com/2008/06/13/never-enough-time/#comments</comments>
		<pubDate>Fri, 13 Jun 2008 19:00:00 +0000</pubDate>
		<dc:creator>blacketernal</dc:creator>
		
		<category><![CDATA[Random]]></category>

		<category><![CDATA[all this time]]></category>

		<category><![CDATA[ataraxie]]></category>

		<category><![CDATA[music]]></category>

		<category><![CDATA[nepasare]]></category>

		<category><![CDATA[rage]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://blacketernal.wordpress.com/?p=135</guid>
		<description><![CDATA[No time, no more time&#8230;ain&#8217;t never enough time&#8230; I&#8217;m sick&#8230; I dream myself away. 
Am examen mîine şi eu frec menta pe net&#8230; n-ar fi explus să-l pic&#8230; nu e un deznodămînd probabil dar cu siguranţă e foarte posibil. Ataraxie? Sau cum naiba să denumesc starea asta de somnolenţă şi nepăsare? Planificarea nu-ţi ajută cu [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>No time, no more time&#8230;ain&#8217;t never enough time&#8230; I&#8217;m sick&#8230; I dream myself away. </p>
<p>Am examen mîine şi eu frec menta pe net&#8230; n-ar fi explus să-l pic&#8230; nu e un deznodămînd probabil dar cu siguranţă e foarte posibil. Ataraxie? Sau cum naiba să denumesc starea asta de somnolenţă şi nepăsare? Planificarea nu-ţi ajută cu nimic dacă nu eşti capabil de un singur impuls, o oarecare manifestare de voinţă şi ambiţie. Am conştiinţă? E încărcată? E vinovată? Nu. Fuck it, ce contează&#8230; I shall sleep. Dreaming power ballads :)</p>
<p><span style="text-align:center; display: block;"><a href="http://blacketernal.wordpress.com/2008/06/13/never-enough-time/"><img src="http://img.youtube.com/vi/NL4DMzKAxL0/2.jpg" alt="" /></a></span></p>
<p><strong>Rage - All this time</strong></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/blacketernal.wordpress.com/135/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/blacketernal.wordpress.com/135/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacketernal.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacketernal.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacketernal.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacketernal.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacketernal.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacketernal.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacketernal.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacketernal.wordpress.com/135/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacketernal.wordpress.com/135/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacketernal.wordpress.com/135/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacketernal.wordpress.com&blog=2998125&post=135&subd=blacketernal&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blacketernal.wordpress.com/2008/06/13/never-enough-time/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/frozenshade-128.jpg" medium="image">
			<media:title type="html">blacketernal</media:title>
		</media:content>

		<media:content url="http://img.youtube.com/vi/NL4DMzKAxL0/2.jpg" medium="image" />
	</item>
		<item>
		<title>I’m not crazy!</title>
		<link>http://blacketernal.wordpress.com/2008/06/10/im-not-crazy/</link>
		<comments>http://blacketernal.wordpress.com/2008/06/10/im-not-crazy/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 18:53:09 +0000</pubDate>
		<dc:creator>blacketernal</dc:creator>
		
		<category><![CDATA[Random]]></category>

		<category><![CDATA[carpenter]]></category>

		<category><![CDATA[crazy]]></category>

		<category><![CDATA[in the mouth of madness]]></category>

		<guid isPermaLink="false">http://blacketernal.wordpress.com/?p=134</guid>
		<description><![CDATA[
My reality is just different than yours! &#8220;In the mouth of madness&#8220;.
       ]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><img src="http://img167.imageshack.us/img167/1538/shot0006co0.jpg" alt="" /></p>
<p>My reality is just different than yours! &#8220;<a href="http://www.imdb.com/title/tt0113409/">In the mouth of madness</a>&#8220;.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/blacketernal.wordpress.com/134/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/blacketernal.wordpress.com/134/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacketernal.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacketernal.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacketernal.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacketernal.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacketernal.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacketernal.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacketernal.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacketernal.wordpress.com/134/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacketernal.wordpress.com/134/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacketernal.wordpress.com/134/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacketernal.wordpress.com&blog=2998125&post=134&subd=blacketernal&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blacketernal.wordpress.com/2008/06/10/im-not-crazy/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/frozenshade-128.jpg" medium="image">
			<media:title type="html">blacketernal</media:title>
		</media:content>

		<media:content url="http://img167.imageshack.us/img167/1538/shot0006co0.jpg" medium="image" />
	</item>
		<item>
		<title>I’d like to live with You</title>
		<link>http://blacketernal.wordpress.com/2008/06/07/id-like-to-live-with-you/</link>
		<comments>http://blacketernal.wordpress.com/2008/06/07/id-like-to-live-with-you/#comments</comments>
		<pubDate>Sat, 07 Jun 2008 21:15:01 +0000</pubDate>
		<dc:creator>blacketernal</dc:creator>
		
		<category><![CDATA[Poetry]]></category>

		<category><![CDATA[eternal]]></category>

		<category><![CDATA[I'd like to live with you]]></category>

		<category><![CDATA[love]]></category>

		<category><![CDATA[marina tsvetaeva]]></category>

		<category><![CDATA[poezie]]></category>

		<category><![CDATA[twilight]]></category>

		<guid isPermaLink="false">http://blacketernal.wordpress.com/?p=132</guid>
		<description><![CDATA[I&#8217;d like to live with You
In a small town,
Where there are eternal twilights
And eternal bells.
And in a small village inn—
The faint chime
Of ancient clocks—like droplets of time.
And sometimes, in the evenings, from some garret—
A flute,
And the flautist himself in the window.
And big tulips in the window-sills.
And maybe, You would not even love me&#8230;
In the middle [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;d like to live with You<br />
In a small town,<br />
Where there are eternal twilights<br />
And eternal bells.<br />
And in a small village inn—<br />
The faint chime<br />
Of ancient clocks—like droplets of time.<br />
And sometimes, in the evenings, from some garret—<br />
A flute,<br />
And the flautist himself in the window.<br />
And big tulips in the window-sills.<br />
And maybe, You would not even love me&#8230;</p>
<p>In the middle of the room—a huge tiled oven,<br />
On each tile—a small picture:<br />
A rose—a heart—a ship.—<br />
And in the one window—<br />
Snow, snow, snow.</p>
<p>You would lie—thus I love You: idle,<br />
Indifferent, carefree.<br />
Now and then the sharp strike<br />
Of a match.</p>
<p>The cigarette glows and burns down,<br />
And trembles for a long, long time on its edge<br />
In a gray brief pillar—of ash.<br />
You&#8217;re too lazy even to flick it—<br />
And the whole cigarette flies into the fire.</p>
<p><em><strong>&#8212; Marina Tsvetaeva</strong></em></p>
<p>Versuri superbe, destin tragic &#8212; <a href="http://english.tsvetayeva.com/biography">http://english.tsvetayeva.com/biography</a>. Timpul mutilează, apoi ucide.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/blacketernal.wordpress.com/132/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/blacketernal.wordpress.com/132/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacketernal.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacketernal.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacketernal.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacketernal.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacketernal.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacketernal.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacketernal.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacketernal.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacketernal.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacketernal.wordpress.com/132/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacketernal.wordpress.com&blog=2998125&post=132&subd=blacketernal&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blacketernal.wordpress.com/2008/06/07/id-like-to-live-with-you/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/frozenshade-128.jpg" medium="image">
			<media:title type="html">blacketernal</media:title>
		</media:content>
	</item>
		<item>
		<title>To Whom Shall I Speak Today?</title>
		<link>http://blacketernal.wordpress.com/2008/06/06/to-whom-shall-i-speak-today/</link>
		<comments>http://blacketernal.wordpress.com/2008/06/06/to-whom-shall-i-speak-today/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 19:34:39 +0000</pubDate>
		<dc:creator>blacketernal</dc:creator>
		
		<category><![CDATA[Poetry]]></category>

		<category><![CDATA[death]]></category>

		<category><![CDATA[ehypt]]></category>

		<category><![CDATA[longing]]></category>

		<category><![CDATA[suicide]]></category>

		<guid isPermaLink="false">http://blacketernal.wordpress.com/?p=130</guid>
		<description><![CDATA[To whom shall I speak today?
&#160;&#160;&#160;&#160;I am laden with misery
 &#160;&#160;&#160;&#160;Through lack of an intimate &#8230;
Death is in my sight today
&#160;&#160;&#160;&#160;Like the clearing of the sky,
&#160;&#160;&#160;&#160;Like a man attracted thereby to
&#160;&#160;&#160;&#160;What he knows not. 
Death is in my sight today,
&#160;&#160;&#160;&#160;Like the longing of a man to see home
&#160;&#160;&#160;&#160;When he has spent many years held in
&#160;&#160;&#160;&#160;captivity. [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>To whom shall I speak today?<br />
&nbsp;&nbsp;&nbsp;&nbsp;I am laden with misery<br />
 &nbsp;&nbsp;&nbsp;&nbsp;Through lack of an intimate &#8230;<br />
Death is in my sight today<br />
&nbsp;&nbsp;&nbsp;&nbsp;Like the clearing of the sky,<br />
&nbsp;&nbsp;&nbsp;&nbsp;Like a man attracted thereby to<br />
&nbsp;&nbsp;&nbsp;&nbsp;What he knows not. </p>
<p>Death is in my sight today,<br />
&nbsp;&nbsp;&nbsp;&nbsp;Like the longing of a man to see home<br />
&nbsp;&nbsp;&nbsp;&nbsp;When he has spent many years held in<br />
&nbsp;&nbsp;&nbsp;&nbsp;captivity. </p>
<p><strong><em>&#8212; Anonymous (a dispute over suicide, Egypt, before 2000 BC) </em></strong></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/blacketernal.wordpress.com/130/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/blacketernal.wordpress.com/130/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/blacketernal.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/blacketernal.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/blacketernal.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/blacketernal.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/blacketernal.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/blacketernal.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/blacketernal.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/blacketernal.wordpress.com/130/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/blacketernal.wordpress.com/130/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/blacketernal.wordpress.com/130/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blacketernal.wordpress.com&blog=2998125&post=130&subd=blacketernal&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://blacketernal.wordpress.com/2008/06/06/to-whom-shall-i-speak-today/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/frozenshade-128.jpg" medium="image">
			<media:title type="html">blacketernal</media:title>
		</media:content>
	</item>
	</channel>
</rss>
