<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>onn</title>
	<atom:link href="http://onnb.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://onnb.wordpress.com</link>
	<description>me</description>
	<lastBuildDate>Tue, 08 Nov 2011 05:38:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='onnb.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>onn</title>
		<link>http://onnb.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://onnb.wordpress.com/osd.xml" title="onn" />
	<atom:link rel='hub' href='http://onnb.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Donchian System with ThinkOrSwim Strategies</title>
		<link>http://onnb.wordpress.com/2010/07/26/donchian-system-with-thinkorswim-strategies/</link>
		<comments>http://onnb.wordpress.com/2010/07/26/donchian-system-with-thinkorswim-strategies/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 13:04:37 +0000</pubDate>
		<dc:creator>onnb</dc:creator>
				<category><![CDATA[onSoftware]]></category>
		<category><![CDATA[onTrading]]></category>
		<category><![CDATA[thinkorswim]]></category>

		<guid isPermaLink="false">http://onnb.wordpress.com/?p=60</guid>
		<description><![CDATA[i ran across the &#8220;4 week rule&#8221; system developed by Richard Donchian when i first read John J. Murphy&#8217;s book &#8220;Technical Analysis of the Financial Markets&#8221;. personally, i have a sweet spot for simple rules that produce surprising results and &#8230; <a href="http://onnb.wordpress.com/2010/07/26/donchian-system-with-thinkorswim-strategies/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=60&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>i ran across the <a href="http://www.investopedia.com/articles/technical/02/052102.asp">&#8220;4 week rule&#8221;</a> system developed by <a href="http://en.wikipedia.org/wiki/Richard_Donchian">Richard Donchian</a> when i first read <a href="http://stockcharts.com/help/doku.php?id=support:about_john_murphy">John J. Murphy&#8217;s</a> book &#8220;Technical Analysis of the Financial Markets&#8221;. personally, i have a sweet spot for simple rules that produce surprising results and this system is as simple as it gets</p>
<p>the original system had two rules:</p>
<ol>
<li>enter long positions and cover short positions whenever price exceeds the high of the past 4 weeks</li>
<li>enter short positions and cover long positions whenever price falls below the low of the past 4 weeks</li>
</ol>
<p>though simple and does work, the system as it is defined above is in the market, be it long or short, at all times. the result of this is that during periods that the market is moving sideways, the system tends to get &#8220;whipsawed&#8221; pretty badly.</p>
<p>the system below is a modification of the &#8220;4 week rule&#8221; which i picked up from <a href="http://www.seykota.com/tribe/TSP/SR/index.htm">Ed Seykota&#8217;s</a> site. </p>
<p>for the sake of this writing, the system is briefly described here in the following way:</p>
<ul>
<li>The system has two states &#8211; it can either be long or short. when it is long, take signals to the upside. when it is short, take signals to the down</li>
<li>A long term price channel, the slow channel, is used to determine the overall trend &#8211; either up or down. If the price high goes above this channel, the system is long and stays long until price drops below the channel at which time the system is short</li>
<li>A short term price channel, the fast channel, is used to generate trading signals &#8211; both enter and exit. If the system is long and price goes above the short term upper channel a long trade signal is issued. At the same time a stop is place at the short term lower channel (the stop trails as the lower channel moves up)</li>
</ul>
<p>as mentioned, this &#8220;modified&#8221; approach was taken from <a href="http://www.seykota.com/tribe/TSP/SR/index.htm">Ed Seykota</a> &#8211; definitely worth a visit to have a look at what rigorous system development looks like</p>
<p>below is the code in thinkScript for the long side (both entry and exit scripts)</p>
<p><strong>Long_Entry</strong><br />
<code></p>
<p>declare LONG_ENTRY;<br />
input SLOW_LENGTH = 126;<br />
input FAST_LENGTH = 30;<br />
# define system as long or short</p>
<p># N resistance - the highest high over the last N bars<br />
# N support - the lowest low over the last N bars</p>
<p>def longTermResistance = Highest(high, SLOW_LENGTH);<br />
def longTermSupport = Lowest(low, SLOW_LENGTH);</p>
<p>def shortTermResistance = Highest(high, FAST_LENGTH);<br />
def shortTermSupport = Lowest(low, FAST_LENGTH);</p>
<p># system changes from short to long when price moves above long term resistance<br />
# system changes from long to short when price moves below long term support</p>
<p>rec state = compoundValue(1, if state[1] &lt; 1 and high &gt; longTermResistance[1] then 1<br />
    else if state[1] &gt; -1 and low &lt; longTermSupport[1] then -1<br />
    else state[1], 1);</p>
<p>def trigger = if state == 1 and high &gt; shortTermResistance[1] then 1 else 0;<br />
def orderprice = open;</p>
<p>addOrder(trigger, orderprice);</p>
<p>SetColor(color.green);</p>
<p></code></p>
<p><strong>Long Exit</strong><br />
<code><br />
declare LONG_EXIT;<br />
input SLOW_LENGTH=126;<br />
input FAST_LENGTH = 30;</p>
<p># define system as long or short</p>
<p># N resistance - the highest high over the last N bars<br />
# N support - the lowest low over the last N bars</p>
<p>def shortTermResistance = Highest(high, FAST_LENGTH);<br />
def shortTermSupport = Lowest(low, FAST_LENGTH);</p>
<p>addorder(low &lt; shortTermSupport[1]);<br />
setcolor(color.gray);<br />
</code></p>
<p>in order to run the code with ToS, do the following:</p>
<ul>
<li>In ToS, create a new strategy &#8211; call it myLongEntry</li>
<li>Copy/paste the Long_Entry code above and save</li>
<li>Create a second strategy &#8211; call it myLongExit</li>
<li>Copy/paste the Long_Exit code and save</li>
<li>Add both these strategies to any chart</li>
<li>Play around with the input values (fastlength, slowlength) and open the report to see results</li>
</ul>
<p>the short side is left as an exercise for the reader <img src='http://s1.wp.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
feel free to leave me a message if you have comments or need help with any of this</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onnb.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onnb.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onnb.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onnb.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onnb.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onnb.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onnb.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onnb.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onnb.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onnb.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onnb.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onnb.wordpress.com/60/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onnb.wordpress.com/60/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onnb.wordpress.com/60/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=60&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onnb.wordpress.com/2010/07/26/donchian-system-with-thinkorswim-strategies/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b9afb0c90d87f858e5f7f1625cb5dfee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">onnb</media:title>
		</media:content>
	</item>
		<item>
		<title>parting note</title>
		<link>http://onnb.wordpress.com/2009/10/24/parting-note/</link>
		<comments>http://onnb.wordpress.com/2009/10/24/parting-note/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 10:20:28 +0000</pubDate>
		<dc:creator>onnb</dc:creator>
				<category><![CDATA[onEverythingElse]]></category>

		<guid isPermaLink="false">http://onnb.wordpress.com/2009/10/24/parting-note/</guid>
		<description><![CDATA[as a parting note: there are many voices speaking from inside of us. there is the voice of our parents, the voice of our teachers, the voice of our spouse and the voice of our children. there voices speaking from &#8230; <a href="http://onnb.wordpress.com/2009/10/24/parting-note/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=47&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>as a parting note: there are many voices speaking from inside of us. there is the voice of our parents, the voice of our teachers, the voice of our spouse and the voice of our children. there voices speaking from the past in the shape of our ancestors; they speak through our parents, and through our parents parents and so on it goes forever. there are voices from the media and the government, from doctors and friends and the list goes on and on. but there is one voice that is all so important and that voice is us. it is at times the hardest voice to hear. regardless if due to the noise from these other speakers or the fear of hearing what our own voice is telling us or because we have forgotten what this voice sounds like and we cannot recognize it any more &#8211; it is the one true voice that matters in the end&#8230;i can only say that after so many years, i am at last not only hearing this voice clearly again, but am back to acting upon it. and it feels great.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onnb.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onnb.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onnb.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onnb.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onnb.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onnb.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onnb.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onnb.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onnb.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onnb.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onnb.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onnb.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onnb.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onnb.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=47&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onnb.wordpress.com/2009/10/24/parting-note/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b9afb0c90d87f858e5f7f1625cb5dfee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">onnb</media:title>
		</media:content>
	</item>
		<item>
		<title>till when the road</title>
		<link>http://onnb.wordpress.com/2009/10/24/till-when-the-road/</link>
		<comments>http://onnb.wordpress.com/2009/10/24/till-when-the-road/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 09:43:41 +0000</pubDate>
		<dc:creator>onnb</dc:creator>
				<category><![CDATA[onEverythingElse]]></category>

		<guid isPermaLink="false">http://onnb.wordpress.com/2009/10/24/the-road-till-when/</guid>
		<description><![CDATA[till we have shed all barriers and have fused completely with ourselves and with each other till then<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=41&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>till we have shed all barriers and have fused completely with ourselves and with each other</p>
<p>till then</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onnb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onnb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onnb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onnb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onnb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onnb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onnb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onnb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onnb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onnb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onnb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onnb.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onnb.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onnb.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=41&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onnb.wordpress.com/2009/10/24/till-when-the-road/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b9afb0c90d87f858e5f7f1625cb5dfee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">onnb</media:title>
		</media:content>
	</item>
		<item>
		<title>Using Invoice4U API with PHP</title>
		<link>http://onnb.wordpress.com/2009/01/18/using-invoice4u-api-with-php/</link>
		<comments>http://onnb.wordpress.com/2009/01/18/using-invoice4u-api-with-php/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 09:33:48 +0000</pubDate>
		<dc:creator>onnb</dc:creator>
				<category><![CDATA[onSoftware]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://onnb.wordpress.com/?p=33</guid>
		<description><![CDATA[Invoice4U is an Israeli based service for creating invoices and receipts. The documentation does not include an example of how to make the call using PHP. Below is a short example of how to do so for the InvoiceReciept:Create call. &#8230; <a href="http://onnb.wordpress.com/2009/01/18/using-invoice4u-api-with-php/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=33&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.invoice4u.co.il/">Invoice4U </a>is an Israeli based service for creating invoices and receipts.<br />
The documentation does not include an example of how to make the call using PHP.</p>
<p>Below is a short example of how to do so for the InvoiceReciept:Create call. I used the <a href="http://mikolajj.republika.pl/">ConvertCharSet </a>component to make the conversion from UTF-8 to windows-1255 (which is the encoding expected).<br />
<span id="more-33"></span><br />
A note on mandatory fields: the 4 item fields (InvoiceItemCode, InvoiceItemDescription, InvoiceItemPrice, InvoiceItemQuantity) are mandatory. At the time of writing this post, this is not explicit in the <a href="http://www.invoice4u.co.il/site/documentation/documentation.aspx">documentation</a>.<br />
<code><br />
&lt;?php<br />
require_once 'ConvertCharset.class.php';</p>
<p>$cc=new ConvertCharset;</p>
<p>$current_encoding = 'UTF-8';<br />
$new_encoding = 'windows-1255';</p>
<p>$data = '';<br />
$data .= 'TransType=' . $cc-&gt;convert('IR:CREATE', $current_encoding, $new_encoding);<br />
$data .= '&amp;Username=' . $cc-&gt;convert('a4u_heb', $current_encoding, $new_encoding);<br />
$data .= '&amp;InvoiceSubject=' . $cc-&gt;convert('test', $current_encoding, $new_encoding);<br />
$data .= '&amp;InvoiceItemCode=' . $cc-&gt;convert('a1000001a', $current_encoding, $new_encoding);<br />
$data .= '&amp;InvoiceItemDescription=' . $cc-&gt;convert('description', $current_encoding, $new_encoding);<br />
$data .= '&amp;InvoiceItemQuantity=' . $cc-&gt;convert('1', $current_encoding, $new_encoding);<br />
$data .= '&amp;InvoiceItemPrice=' . $cc-&gt;convert('10', $current_encoding, $new_encoding);<br />
$data .= '&amp;CompanyInfo=' . $cc-&gt;convert('און בן-צבי', $current_encoding, $new_encoding);<br />
$data .= '&amp;MailTo=' . $cc-&gt;convert('onn.benzvi@gmail.com', $current_encoding, new_encoding);</p>
<p>$curl_url = 'https://www.invoice4u.co.il/public/HttpPost.aspx';</p>
<p>$cURL = curl_init();<br />
curl_setopt($cURL, CURLOPT_URL, $curl_url);<br />
curl_setopt($cURL, CURLOPT_SSL_VERIFYPEER, 0);   // ignore ssl verification errors<br />
curl_setopt($cURL, CURLOPT_SSL_VERIFYHOST, 0);   // ignore ssl verification errors<br />
curl_setopt($cURL, CURLOPT_HEADER, 1);      // Don't return header info.<br />
curl_setopt($cURL, CURLOPT_RETURNTRANSFER,1);  // Return into a variable.<br />
curl_setopt($cURL, CURLOPT_POST, 1);<br />
curl_setopt($cURL, CURLOPT_POSTFIELDS, $data);//$pnp_post_values);<br />
$val_from_curl = curl_exec($cURL);<br />
?&gt;</p>
<p></code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onnb.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onnb.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onnb.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onnb.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onnb.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onnb.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onnb.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onnb.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onnb.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onnb.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onnb.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onnb.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onnb.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onnb.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=33&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onnb.wordpress.com/2009/01/18/using-invoice4u-api-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b9afb0c90d87f858e5f7f1625cb5dfee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">onnb</media:title>
		</media:content>
	</item>
		<item>
		<title>Zend Studio for Eclipse &#8211; Hebrew</title>
		<link>http://onnb.wordpress.com/2009/01/08/zend-studio-for-eclipse-hebrew/</link>
		<comments>http://onnb.wordpress.com/2009/01/08/zend-studio-for-eclipse-hebrew/#comments</comments>
		<pubDate>Thu, 08 Jan 2009 12:06:09 +0000</pubDate>
		<dc:creator>onnb</dc:creator>
				<category><![CDATA[onSoftware]]></category>
		<category><![CDATA[IDE]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zend]]></category>

		<guid isPermaLink="false">http://onnb.wordpress.com/?p=18</guid>
		<description><![CDATA[Trying out the 6.1 version of the Zend Studio for Eclipse on a project for the Haifa University Faclty of Education. For those of you that are running into problems with saving files in Hebrew, this post describes the issue &#8230; <a href="http://onnb.wordpress.com/2009/01/08/zend-studio-for-eclipse-hebrew/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=18&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Trying out the <a href="http://www.zend.com/products/studio/" target="_self">6.1 version of the Zend Studio for Eclipse</a> on a project for the <a href="http://www.edu.haifa.ac.il/en" target="_self">Haifa University Faclty of Education</a>.<br />
For those of you that are running into problems with saving files in Hebrew, this post describes the issue and what to do about it.</p>
<h3>Issue reproduction</h3>
<ol>
<li>You have an out-of-the-box installation of Zend Studio for Eclipse.</li>
<li>A file is opened with Hebrew characters.</li>
<li>You try to save the file and Eclipse raises the following error message:</li>
</ol>
<p style="text-align:left;">
<p style="text-align:justify;"><span style="color:#ff0000;">save could not be completed.</span></p>
<p style="text-align:justify;"><span style="color:#ff0000;">Reason:</span></p>
<p style="text-align:justify;"><span style="color:#ff0000;">some characters cannot be mapped using &#8220;cp1255&#8243; character encoding.</span></p>
<p style="text-align:justify;"><span style="color:#ff0000;">Either change the encoding or remove the characters which are not supported</span></p>
<p style="text-align:justify;"><span style="color:#ff0000;">by the &#8220;cp1255&#8243; character encoding.</span></p>
<p style="text-align:justify;"><span id="more-18"></span></p>
<h3>So, what to do?</h3>
<p style="text-align:justify;">
Here is a short howto on the subject.</p>
<ol>
<li> Goto project properties</li>
<p><img class="aligncenter size-full wp-image-19" title="eclipse_project_preferences" src="http://onnb.files.wordpress.com/2009/01/eclipse_project_preferences.jpg?w=300&#038;h=336" alt="eclipse_project_preferences" width="300" height="336" /></p>
<li> Select the resources menu item</li>
<p><img class="aligncenter size-full wp-image-21" title="eclipse_project_resources1" src="http://onnb.files.wordpress.com/2009/01/eclipse_project_resources1.jpg?w=500&#038;h=402" alt="eclipse_project_resources1" width="500" height="402" /></p>
<li> In the &#8220;text file encoding&#8221; drop down, select &#8220;UTF-8&#8243;</li>
</ol>
<p style="text-align:justify;">
You should be good to go at this point.</p>
<p>Note: you might need to reopen the file you just tried to save.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onnb.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onnb.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onnb.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onnb.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onnb.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onnb.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onnb.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onnb.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onnb.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onnb.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onnb.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onnb.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onnb.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onnb.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=18&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onnb.wordpress.com/2009/01/08/zend-studio-for-eclipse-hebrew/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b9afb0c90d87f858e5f7f1625cb5dfee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">onnb</media:title>
		</media:content>

		<media:content url="http://onnb.files.wordpress.com/2009/01/eclipse_project_preferences.jpg" medium="image">
			<media:title type="html">eclipse_project_preferences</media:title>
		</media:content>

		<media:content url="http://onnb.files.wordpress.com/2009/01/eclipse_project_resources1.jpg" medium="image">
			<media:title type="html">eclipse_project_resources1</media:title>
		</media:content>
	</item>
		<item>
		<title>in a different time, in a different place, i was a&#8230;</title>
		<link>http://onnb.wordpress.com/2008/05/07/in-a-different-time-in-a-different-place-i-was-a/</link>
		<comments>http://onnb.wordpress.com/2008/05/07/in-a-different-time-in-a-different-place-i-was-a/#comments</comments>
		<pubDate>Wed, 07 May 2008 15:07:11 +0000</pubDate>
		<dc:creator>onnb</dc:creator>
				<category><![CDATA[onEverythingElse]]></category>
		<category><![CDATA[song]]></category>

		<guid isPermaLink="false">http://onnb.wordpress.com/?p=8</guid>
		<description><![CDATA[in a different time, in a different place, I was a kite floating in the wind, stretching in all directions, the wind pushing against me, my colors so bright in a different time, in a different place, I was a &#8230; <a href="http://onnb.wordpress.com/2008/05/07/in-a-different-time-in-a-different-place-i-was-a/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=8&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>in a different time, in</p>
<p style="text-align:left;padding-left:30px;">a different place, I was a</p>
<p style="padding-left:30px;">kite</p>
<p style="padding-left:30px;">floating in the wind, stretching in all directions, the wind pushing against me, my colors so bright</p>
<p>in a different time, in</p>
<p style="padding-left:30px;">a different place, I was a</p>
<p style="padding-left:30px;">dog</p>
<p style="padding-left:30px;">running, barking, chewing, playing, biting, snarling &#8211; grrrrrrrrrr</p>
<p>in a different time, in</p>
<p style="padding-left:30px;">a different place, i</p>
<p>was a monk,</p>
<p>a bird,</p>
<p>a rock,</p>
<p>an ant,</p>
<p>a tree,</p>
<p>a bee,</p>
<p>a lizard,</p>
<p>a dolphin,</p>
<p>a spider,</p>
<p>a king,</p>
<p>a horse,</p>
<p>a pawn,</p>
<p>a-fool-a-wizard-a-warrior-a-doctor-and-priest</p>
<p>now I am me</p>
<p>and tomorrow?</p>
<p>tomorrow what shall i be?</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/onnb.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/onnb.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onnb.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onnb.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onnb.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onnb.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onnb.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onnb.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onnb.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onnb.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onnb.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onnb.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onnb.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onnb.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onnb.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onnb.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=8&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onnb.wordpress.com/2008/05/07/in-a-different-time-in-a-different-place-i-was-a/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b9afb0c90d87f858e5f7f1625cb5dfee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">onnb</media:title>
		</media:content>
	</item>
		<item>
		<title>one hour for planet earth</title>
		<link>http://onnb.wordpress.com/2008/04/25/one-hour-for-planet-earth/</link>
		<comments>http://onnb.wordpress.com/2008/04/25/one-hour-for-planet-earth/#comments</comments>
		<pubDate>Fri, 25 Apr 2008 22:53:40 +0000</pubDate>
		<dc:creator>onnb</dc:creator>
				<category><![CDATA[onEverythingElse]]></category>
		<category><![CDATA[environment]]></category>

		<guid isPermaLink="false">http://onnb.wordpress.com/?p=7</guid>
		<description><![CDATA[Tel-Aviv took part in turning out the lights for 60 minutes. I was there with my wife and kids. The mayor gave a speech to a few hundred and at the count of three, all lights in the city hall &#8230; <a href="http://onnb.wordpress.com/2008/04/25/one-hour-for-planet-earth/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=7&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Tel-Aviv took part in turning out the lights for 60 minutes. I was there with my wife and kids. The mayor gave a speech to a few hundred and at the count of three, all lights in the city hall went out. To be honest, I was expecting a bit more. I was naive enough to think that <strong>all</strong> the lights would go out.</p>
<p><img class="alignleft" style="border:3px solid black;float:left;margin:3px;" src="http://onnb.files.wordpress.com/2008/03/earth-hour_02.jpg?w=300&#038;h=225" border="3" alt="one hour for planet earth" hspace="3" vspace="3" width="300" height="225" /></p>
<p>Apart from the city hall, most of the lights in the area did not go off as expected. A friend of mine said to me a few days ago that Israel has not reached the point where global warming and environmentalism can be taken too seriously. According to him, we are still pretty low on the <a title="maslow's hierarchy of needs" href="http://en.wikipedia.org/wiki/Maslow's_hierarchy_of_needs" target="_self">maslow&#8217;s</a> pyramid; an emerging economy, most of our budget is directed to defense and our school system is deteriorating at a very fast pace &#8211; we are still struggling to survive at a very basic level.</p>
<p>Well, that might be true, and we do have our challenges ahead of us, but for a few minutes on the 27th of March 2008, we joined the rest of the world in celebrating the existence of our lovely planet earth.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/onnb.wordpress.com/7/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/onnb.wordpress.com/7/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onnb.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onnb.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onnb.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onnb.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onnb.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onnb.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onnb.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onnb.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onnb.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onnb.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onnb.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onnb.wordpress.com/7/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onnb.wordpress.com/7/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onnb.wordpress.com/7/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=7&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onnb.wordpress.com/2008/04/25/one-hour-for-planet-earth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b9afb0c90d87f858e5f7f1625cb5dfee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">onnb</media:title>
		</media:content>

		<media:content url="http://onnb.files.wordpress.com/2008/03/earth-hour_02.jpg" medium="image">
			<media:title type="html">one hour for planet earth</media:title>
		</media:content>
	</item>
		<item>
		<title>Go and find it. Go and look behind the Ranges</title>
		<link>http://onnb.wordpress.com/2008/03/22/go-and-find-it-go-and-look-behind-the-ranges/</link>
		<comments>http://onnb.wordpress.com/2008/03/22/go-and-find-it-go-and-look-behind-the-ranges/#comments</comments>
		<pubDate>Sat, 22 Mar 2008 22:19:21 +0000</pubDate>
		<dc:creator>onnb</dc:creator>
				<category><![CDATA[onEverythingElse]]></category>
		<category><![CDATA[song]]></category>

		<guid isPermaLink="false">http://onnb.wordpress.com/?p=5</guid>
		<description><![CDATA[&#8220;Till a voice, as bad as Conscience, rang interminable changes On one everlasting Whisper day and night repeated &#8212; so: &#8216;Something hidden. Go and find it. Go and look behind the Ranges&#8211; &#8216;Something lost behind the Ranges. Lost and waiting &#8230; <a href="http://onnb.wordpress.com/2008/03/22/go-and-find-it-go-and-look-behind-the-ranges/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=5&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><img src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Kiplingcropped.jpg/200px-Kiplingcropped.jpg" border="5" alt="Rudyard Kipling" hspace="5" vspace="5" width="200" height="239" align="left" />&#8220;Till a voice, as bad as Conscience, rang interminable changes</p>
<blockquote><p>On one everlasting Whisper day and night repeated &#8212; so:</p></blockquote>
<p>&#8216;Something hidden. Go and find it. Go and look behind the</p>
<blockquote><p>Ranges&#8211;</p></blockquote>
<p>&#8216;Something lost behind the Ranges. Lost and waiting for you.</p>
<blockquote><p>Go!&#8217;&#8221;</p></blockquote>
<p><strong>- From <a title="Rudyard Kipling - wikipedia" href="http://en.wikipedia.org/wiki/Rudyard_Kipling">Rudyard Kipling&#8217;s </a>&#8220;The Explorer&#8221;  &#8211; 1898</strong></p>
<p>it is a test of one&#8217;s will and conviction to follow one&#8217;s inner voice that quests for that which is lost.</p>
<p>we all start out young pioneers in the world, delighted with all that is new, seeking to learn more with each and every day. as the days go by, we become wiser to the subtleties of life, we carry the scars and memories which are the source of fear.</p>
<p>both internal and external change becomes harder as we loose flexibility. at some point we become &#8220;<a title="comfortably numb" href="http://en.wikipedia.org/wiki/Comfortably_Numb">comfortably numb</a>&#8220;.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/onnb.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/onnb.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onnb.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onnb.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onnb.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onnb.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onnb.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onnb.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onnb.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onnb.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onnb.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onnb.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onnb.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onnb.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onnb.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onnb.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=5&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onnb.wordpress.com/2008/03/22/go-and-find-it-go-and-look-behind-the-ranges/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b9afb0c90d87f858e5f7f1625cb5dfee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">onnb</media:title>
		</media:content>

		<media:content url="http://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Kiplingcropped.jpg/200px-Kiplingcropped.jpg" medium="image">
			<media:title type="html">Rudyard Kipling</media:title>
		</media:content>
	</item>
		<item>
		<title>Terry Pratchett&#8230;.</title>
		<link>http://onnb.wordpress.com/2008/01/24/terry-pratchett/</link>
		<comments>http://onnb.wordpress.com/2008/01/24/terry-pratchett/#comments</comments>
		<pubDate>Thu, 24 Jan 2008 23:47:40 +0000</pubDate>
		<dc:creator>onnb</dc:creator>
				<category><![CDATA[onEverythingElse]]></category>
		<category><![CDATA[song]]></category>

		<guid isPermaLink="false">http://onnb.wordpress.com/?p=4</guid>
		<description><![CDATA[There is a book store near my house that i like to go to. it is owned by a gray haired, middle aged, straight faced Yemen and his wife who looks roughly his age, only with long deep black hair, &#8230; <a href="http://onnb.wordpress.com/2008/01/24/terry-pratchett/">Continue reading <span class="meta-nav">&#8594;</span></a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=4&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>There is a book store near my house that i like to go to. it is owned by a gray haired, middle aged, straight faced Yemen  and his wife who looks roughly his age, only with long deep black hair, a thin face, and a wide smile.</p>
<p>A few weeks ago i dropped in on a friday morning and bought a Terry Pratchett book. it was my forth or fifth.<span id="more-4"></span></p>
<p>Terry Pratchett is my currently most favorite author. The book is called &#8220;thi<img src="http://www.paulkidby.com/images/framed/framed-gothicdeath-1a.jpg" alt="Picture of Death" align="right" border="3" height="251" hspace="8" vspace="8" width="225" />ef of time&#8221;; it is part of the DiscWorld series. The picture to the right, is a picture of Death, who happens to be a character in the book. Actually, his granddaughter Susan is one of the main characters in the book.</p>
<p>While paying for the new book, the Yemen reported that Terry Pratchett has just died.  i was shocked and somewhat taken back. it has been on my mind ever since.</p>
<p>i am looking through the net and i cannot find mention of his death anywhere. there is news on his being <a href="http://books.guardian.co.uk/news/articles/0,,2226306,00.html">diagnosed with a rare form of early-onset Alzheimer&#8217;s disease</a>.</p>
<p><img src="http://www.noreascon.org/photos/pratchett.jpg" align="left" border="4" height="227" hspace="8" vspace="8" width="158" /></p>
<p>some excerpts  taken from Paul kidby&#8217;s site where <a href="http://www.paulkidby.com/news/index.html">Pratchett an</a><a href="http://www.paulkidby.com/news/index.html">nounced this publicly</a> on 11th December 2007</p>
<p>&#8220;I am not dead,&#8221; Pratchett insisted. &#8220;I will, of course, be dead at some future point, as will everybody else.&#8221;</p>
<p>&#8230;</p>
<p>PS  I would just like to draw   attention to everyone reading the above                          that this should be interpreted as   &#8216;I am not dead&#8217;.  I will, of course,                          be dead at some future point, as will   everybody else.  For me, this                          maybe further off than you think &#8211; it&#8217;s too   soon to tell.<br />
I know it&#8217;s a very human thing to say &#8220;Is there anything I   can do&#8221;, but in this case I would only entertain offers from very high-end   experts in brain                          chemistry.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/onnb.wordpress.com/4/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/onnb.wordpress.com/4/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/onnb.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/onnb.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/onnb.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/onnb.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/onnb.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/onnb.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/onnb.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/onnb.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/onnb.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/onnb.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/onnb.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/onnb.wordpress.com/4/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/onnb.wordpress.com/4/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/onnb.wordpress.com/4/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=onnb.wordpress.com&amp;blog=297935&amp;post=4&amp;subd=onnb&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://onnb.wordpress.com/2008/01/24/terry-pratchett/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b9afb0c90d87f858e5f7f1625cb5dfee?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">onnb</media:title>
		</media:content>

		<media:content url="http://www.paulkidby.com/images/framed/framed-gothicdeath-1a.jpg" medium="image">
			<media:title type="html">Picture of Death</media:title>
		</media:content>

		<media:content url="http://www.noreascon.org/photos/pratchett.jpg" medium="image" />
	</item>
	</channel>
</rss>
