<?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>another stubborn moron</title>
	<atom:link href="http://tolahtoleh.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://tolahtoleh.wordpress.com</link>
	<description>[simplify complex matter corp]</description>
	<lastBuildDate>Mon, 29 Mar 2010 10:11:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='tolahtoleh.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>another stubborn moron</title>
		<link>http://tolahtoleh.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://tolahtoleh.wordpress.com/osd.xml" title="another stubborn moron" />
	<atom:link rel='hub' href='http://tolahtoleh.wordpress.com/?pushpress=hub'/>
		<item>
		<title>phpMyAdmin Authentication method</title>
		<link>http://tolahtoleh.wordpress.com/2010/03/29/phpmyadmin-authentication-method/</link>
		<comments>http://tolahtoleh.wordpress.com/2010/03/29/phpmyadmin-authentication-method/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 10:11:08 +0000</pubDate>
		<dc:creator>tolahtoleh</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://tolahtoleh.wordpress.com/?p=50</guid>
		<description><![CDATA[Authentication Method &#8212; for single-user (root or trusted) environment&#8230; Method 1: Prompt client for MySQL user/password&#8230; $cfg['Servers'][$i]['auth_type'] = 'http'; Method 2: Store MySQL user/password under config.ini.php&#8230; $cfg['Servers'][$i]['auth_type'] = 'config'; $cfg['Servers'][$i]['user'] = 'root'; $cfg['Servers'][$i]['password'] = 'root-password'; [Note password 'root-password'; substitute in set password for MySQL user 'root'; if no password set, leave as is (blank)] Authentication [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=50&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li>Authentication Method &#8212; for single-user (root or trusted)  environment&#8230;
<ul>
<li>Method 1: Prompt client for MySQL user/password&#8230;<br />
<code>$cfg['Servers'][$i]['auth_type'] = 'http';</code></li>
<li>Method 2: Store MySQL user/password under config.ini.php&#8230;<br />
<code>$cfg['Servers'][$i]['auth_type'] = 'config';</code><br />
<code>$cfg['Servers'][$i]['user'] = 'root';</code><br />
<code>$cfg['Servers'][$i]['password'] = 'root-password';</code> [Note password 'root-password'; substitute in set password for  MySQL user 'root'; if no password set, leave as is (blank)]</li>
</ul>
</li>
<li>Authentication Method &#8212; for multi-user (untrusted) environment  (this step is also required for enabling phpMyAdmin&#8217;s relational  features)&#8230;<br />
<code>$cfg['Servers'][$i]['auth_type'] = 'http';</code><br />
<code>$cfg['Servers'][$i]['user'] = '';</code><br />
<code>$cfg['Servers'][$i]['password'] = '';</code><br />
<code>$cfg['Servers'][$i]['controluser'] = 'pma';</code><br />
<code>$cfg['Servers'][$i]['controlpass'] = 'pmapass';</code> [Note password 'pmapass']</li>
<li>Create MySQL controluser user &#8216;pma@localhost&#8217; with password  &#8216;pmapass&#8217;, with the proper permissions set&#8230;<br />
<code>C:\www\mysql\bin&gt; mysql -u root -p</code><br />
<code>mysql&gt; GRANT USAGE ON mysql.* TO 'pma'@'localhost'  IDENTIFIED BY 'pmapass';</code> [Note password 'pmapass']<br />
<code>mysql&gt; GRANT SELECT (Host, User, Select_priv, Insert_priv,  Update_priv, Delete_priv, Create_priv, Drop_priv, Reload_priv,  Shutdown_priv, Process_priv, File_priv, Grant_priv, References_priv,  Index_priv, Alter_priv, Show_db_priv, Super_priv, Create_tmp_table_priv,  Lock_tables_priv, Execute_priv, Repl_slave_priv, Repl_client_priv) ON  mysql.user TO 'pma'@'localhost';</code> [Note that this query is too large to be pasted into the mysql  command line in its entirety; select half, copy/paste, press enter,  copy/paste other half]<br />
<code>mysql&gt; GRANT SELECT ON mysql.db TO 'pma'@'localhost';</code><br />
<code>mysql&gt; GRANT SELECT ON mysql.host TO 'pma'@'localhost';</code><br />
<code>mysql&gt; GRANT SELECT (Host, Db, User, Table_name, Table_priv,  Column_priv) ON mysql.tables_priv TO 'pma'@'localhost';</code><br />
<code>mysql&gt; quit</code></li>
</ul>
<p>regards,</p>
<p>tolahtoleh.com&trade;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tolahtoleh.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tolahtoleh.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tolahtoleh.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tolahtoleh.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tolahtoleh.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tolahtoleh.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tolahtoleh.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tolahtoleh.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tolahtoleh.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tolahtoleh.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tolahtoleh.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tolahtoleh.wordpress.com/50/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tolahtoleh.wordpress.com/50/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tolahtoleh.wordpress.com/50/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=50&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tolahtoleh.wordpress.com/2010/03/29/phpmyadmin-authentication-method/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af66cec4cbd600c4471e8a593821da16?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tolahtoleh</media:title>
		</media:content>
	</item>
		<item>
		<title>554 email error message</title>
		<link>http://tolahtoleh.wordpress.com/2010/03/10/554-email-error-message/</link>
		<comments>http://tolahtoleh.wordpress.com/2010/03/10/554-email-error-message/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 03:49:00 +0000</pubDate>
		<dc:creator>tolahtoleh</dc:creator>
				<category><![CDATA[IT]]></category>

		<guid isPermaLink="false">http://tolahtoleh.wordpress.com/?p=48</guid>
		<description><![CDATA[554 email error message: &#8220;reason: 554 mail server permanently rejected message&#8221;: When you send an email, error message comes back with &#8220;reason: 554 mail server permanently rejected message&#8221;. Why does this happen? Usually, the &#8220;reason: 554 mail server permanently rejected message&#8221; email is received because the mail server thought your email is spam. Did you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=48&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>554 email error message: &#8220;reason: 554 mail server permanently rejected message&#8221;: When you send an email, error message comes back with &#8220;reason: 554 mail server permanently rejected message&#8221;. Why does this happen?  Usually, the &#8220;reason: 554 mail server permanently rejected message&#8221; email is received because the mail server thought your email is spam. Did you send an attachment &#8211; BINGO, that&#8217;s your problem!  Even though the email server return message &#8220;reason: 554 mail server permanently rejected message&#8221; sounds severe, what you should do is change the extension of your attachment. 554 mail error: solution: Let&#8217;s say you sent an &#8216;.htm&#8217; file to a friend. You got a &#8220;reason: 554 mail server permanently rejected message&#8221; error. I&#8217;d suggest using WINZIP to zip the file, therefore changing the extension and sending it again &#8211; and you&#8217;re all set and should not get 554 mail server permanently rejected message (#5.3.0) error again.  sample &#8220;reason: 554 mail server permanently rejected message&#8221;        The original message was received at Mon, 18 Jul 2005 14:10:32 -0400 (EDT)       from xyz.com [***.***.***.***]        &#8212;&#8211; The following addresses had permanent fatal errors &#8212;&#8211;       &lt;***@xyz.com&gt;       (reason: 554 mail server permanently rejected message (#5.3.0))        &#8212;&#8211; Transcript of session follows &#8212;&#8211;       &#8230; while talking to smtp.***.net.:       &gt;&gt;&gt; DATA       &lt;&lt;&lt; 554 mail server permanently rejected message (#5.3.0)       554 5.0.0 Service unavailable</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tolahtoleh.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tolahtoleh.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tolahtoleh.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tolahtoleh.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tolahtoleh.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tolahtoleh.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tolahtoleh.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tolahtoleh.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tolahtoleh.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tolahtoleh.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tolahtoleh.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tolahtoleh.wordpress.com/48/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tolahtoleh.wordpress.com/48/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tolahtoleh.wordpress.com/48/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=48&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tolahtoleh.wordpress.com/2010/03/10/554-email-error-message/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af66cec4cbd600c4471e8a593821da16?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tolahtoleh</media:title>
		</media:content>
	</item>
		<item>
		<title>The entered e-mail domain has no valid MX record</title>
		<link>http://tolahtoleh.wordpress.com/2010/01/06/the-entered-e-mail-domain-has-no-valid-mx-record/</link>
		<comments>http://tolahtoleh.wordpress.com/2010/01/06/the-entered-e-mail-domain-has-no-valid-mx-record/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 09:00:09 +0000</pubDate>
		<dc:creator>tolahtoleh</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://tolahtoleh.wordpress.com/?p=46</guid>
		<description><![CDATA[&#8220;The entered e-mail domain has no valid MX record.&#8221; That is something wroten as an error report on my phpBB3. I use XAMPP, as my webserver. Its easy to install and easy to manage. I install it ad localhost, so I don&#8217;t need any email confirmation. As a new member I use form registration, later [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=46&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>&#8220;The entered e-mail domain has no valid MX record.&#8221;</p>
<p>That is something wroten as an error report on my <a href="http://www.phpbb.com/downloads/">phpBB3</a>. I use <a href="http://www.apachefriends.org/en/xampp.html">XAMPP</a>, as my webserver. Its easy to install and easy to manage.</p>
<p>I install it ad localhost, so I don&#8217;t need any email confirmation. As a new member I use form registration, later I submit it. Error prompted as Title above.</p>
<p>Then I got a good answer from this <a href="http://www.ktuk.net/phpBB3/viewtopic.php?f=32&amp;t=2579">site</a>, they solve it.</p>
<p>here some note:</p>
<p>Cause<br />
phpBB3 by default checks the MX record of all entered email addresses during registration to make sure the email domain is valid. If the domain does not have a valid MX record this error is generated.<br />
Solution<br />
Go to the,</p>
<p><code>Admin control panel -&gt; general tab -&gt; Server configuration -&gt; security</code></p>
<p>Then for the option</p>
<p>Check e-mail domain for valid MX record:<br />
If enabled, the e-mail domain provided on registration and profile changes is checked for a valid MX record.</p>
<p><code>select the 'no' checkbox</code></p>
<p>regards,<br />
tolahtoleh.com&trade;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tolahtoleh.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tolahtoleh.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tolahtoleh.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tolahtoleh.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tolahtoleh.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tolahtoleh.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tolahtoleh.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tolahtoleh.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tolahtoleh.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tolahtoleh.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tolahtoleh.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tolahtoleh.wordpress.com/46/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tolahtoleh.wordpress.com/46/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tolahtoleh.wordpress.com/46/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=46&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tolahtoleh.wordpress.com/2010/01/06/the-entered-e-mail-domain-has-no-valid-mx-record/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af66cec4cbd600c4471e8a593821da16?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tolahtoleh</media:title>
		</media:content>
	</item>
		<item>
		<title>Dear Lord</title>
		<link>http://tolahtoleh.wordpress.com/2010/01/06/dear-lord/</link>
		<comments>http://tolahtoleh.wordpress.com/2010/01/06/dear-lord/#comments</comments>
		<pubDate>Wed, 06 Jan 2010 05:47:22 +0000</pubDate>
		<dc:creator>tolahtoleh</dc:creator>
				<category><![CDATA[curhat]]></category>

		<guid isPermaLink="false">http://tolahtoleh.wordpress.com/?p=43</guid>
		<description><![CDATA[Please Forgive me, I will post more here,&#8230; regards,<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=43&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Please Forgive me, I will post more here,&#8230;</p>
<p>regards,</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tolahtoleh.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tolahtoleh.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tolahtoleh.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tolahtoleh.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tolahtoleh.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tolahtoleh.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tolahtoleh.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tolahtoleh.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tolahtoleh.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tolahtoleh.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tolahtoleh.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tolahtoleh.wordpress.com/43/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tolahtoleh.wordpress.com/43/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tolahtoleh.wordpress.com/43/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=43&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tolahtoleh.wordpress.com/2010/01/06/dear-lord/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af66cec4cbd600c4471e8a593821da16?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tolahtoleh</media:title>
		</media:content>
	</item>
		<item>
		<title>Cannot load mcrypt extension. Please check your PHP configuration</title>
		<link>http://tolahtoleh.wordpress.com/2009/03/23/cannot-load-mcrypt-extension-please-check-your-php-configuration/</link>
		<comments>http://tolahtoleh.wordpress.com/2009/03/23/cannot-load-mcrypt-extension-please-check-your-php-configuration/#comments</comments>
		<pubDate>Mon, 23 Mar 2009 05:21:00 +0000</pubDate>
		<dc:creator>tolahtoleh</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://tolahtoleh.wordpress.com/?p=41</guid>
		<description><![CDATA[Having mYSql and PHP installed, looking great if it works fine and no errors, no one would expect thus errors. But an error means everything, you could learn something new, just like me. My problem is written on the title,. This problem solved based on my OS, you may config/modify it, make it suit through [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=41&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Having mYSql and PHP installed, looking great if it works fine and no errors, no one would expect thus errors. But an error means everything, you could learn something new, just like me.</p>
<p>My problem is written on the title,.<br />
This problem solved based on my OS, you may config/modify it, make it suit through your OS.<br />
Basically you need to install several package, and its dependencies, then restart your apache if your instalation complete. You may get your source of rpm from internet (means you download it) or you got it from your Linux installation DVD,.. my case, I took from its DVD &#8230;..</p>
<p>Have a nice day,..</p>
<p><code>site:/media/SU1100.001/suse/i586 # rpm -ivh php5-mcrypt-5.2.5-66.1.i586.rpm<br />
error: Failed dependencies:<br />
libmcrypt.so.4 is needed by php5-mcrypt-5.2.5-66.1.i586<br />
site:/media/SU1100.001/suse/i586 # ls -l |grep libmcrypt.so.4<br />
site:/media/SU1100.001/suse/i586 # ls -l |grep libmcr<br />
-r--r--r--  6 xxxxx root    68879 Jun  7  2008 libmcrypt-2.5.8-67.1.i586.rpm<br />
<strong> site:/media/SU1100.001/suse/i586 # rpm -ivh libmcrypt-2.5.8-67.1.i586.rpm</strong><br />
Preparing...                ########################################### [100%]<br />
1:libmcrypt              ########################################### [100%]<br />
<strong> site:/media/SU1100.001/suse/i586 # rpm -ivh php5-mcrypt-5.2.5-66.1.i586.rpm</strong><br />
Preparing...                ########################################### [100%]<br />
1:php5-mcrypt            ########################################### [100%]<br />
site:/media/SU1100.001/suse/i586 # ls -l |grep mbstring<br />
-r--r--r--  6 </code><code>xxxxx </code><code>root   434373 Jun  7  2008 php5-mbstring-5.2.5-66.1.i586.rpm<br />
<strong> site:/media/SU1100.001/suse/i586 # rpm -ivh php5-mbstring-5.2.5-66.1.i586.rpm</strong><br />
Preparing...                ########################################### [100%]<br />
1:php5-mbstring          ########################################### [100%]<br />
<strong>site:/media/SU1100.001/suse/i586 # /etc/init.d/apache2 restart</strong><br />
Syntax OK<br />
Shutting down httpd2 (waiting for all children to terminate)          done<br />
Starting httpd2 (prefork)                                             done<br />
</code></p>
<p>regards,<br />
<a href="http://tolahtoleh.com/">tolahtoleh.com™</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tolahtoleh.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tolahtoleh.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tolahtoleh.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tolahtoleh.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tolahtoleh.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tolahtoleh.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tolahtoleh.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tolahtoleh.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tolahtoleh.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tolahtoleh.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tolahtoleh.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tolahtoleh.wordpress.com/41/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tolahtoleh.wordpress.com/41/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tolahtoleh.wordpress.com/41/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=41&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tolahtoleh.wordpress.com/2009/03/23/cannot-load-mcrypt-extension-please-check-your-php-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af66cec4cbd600c4471e8a593821da16?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tolahtoleh</media:title>
		</media:content>
	</item>
		<item>
		<title>I am surrender,</title>
		<link>http://tolahtoleh.wordpress.com/2008/08/15/i-am-surrender/</link>
		<comments>http://tolahtoleh.wordpress.com/2008/08/15/i-am-surrender/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 01:10:42 +0000</pubDate>
		<dc:creator>tolahtoleh</dc:creator>
				<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://tolahtoleh.wordpress.com/?p=39</guid>
		<description><![CDATA[I am surrender, bear me, I am lost in thus pathetic fate, alone, around roaring wisdom. I have dreamed of joy departed surrender —v. 1 hand over; relinquish. 2 submit, esp. to an enemy. 3 refl. (foll. by to) yield to a habit, emotion, influence, etc. 4 give up rights under (a life-insurance policy) in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=39&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I am surrender,<br />
bear me,<br />
I am lost in thus pathetic fate,<br />
alone, around roaring wisdom.</p>
<p>I have dreamed of joy departed</p>
<p>surrender  —v. 1 hand over; relinquish. 2 submit, esp. to an enemy. 3 refl. (foll. by to) yield to a habit, emotion, influence, etc. 4  give up rights under (a life-insurance policy) in return for a smaller sum received immediately. 5 abandon (hope etc.). —n. act of surrendering.  surrender to bail duly appear in court after release on bail. [Anglo-French: related to *sur-1]</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tolahtoleh.wordpress.com/39/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tolahtoleh.wordpress.com/39/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tolahtoleh.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tolahtoleh.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tolahtoleh.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tolahtoleh.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tolahtoleh.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tolahtoleh.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tolahtoleh.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tolahtoleh.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tolahtoleh.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tolahtoleh.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tolahtoleh.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tolahtoleh.wordpress.com/39/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tolahtoleh.wordpress.com/39/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tolahtoleh.wordpress.com/39/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=39&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tolahtoleh.wordpress.com/2008/08/15/i-am-surrender/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af66cec4cbd600c4471e8a593821da16?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tolahtoleh</media:title>
		</media:content>
	</item>
		<item>
		<title>moment angle lighting</title>
		<link>http://tolahtoleh.wordpress.com/2008/06/20/moment-angle-lighting/</link>
		<comments>http://tolahtoleh.wordpress.com/2008/06/20/moment-angle-lighting/#comments</comments>
		<pubDate>Fri, 20 Jun 2008 18:45:09 +0000</pubDate>
		<dc:creator>tolahtoleh</dc:creator>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[Writing]]></category>
		<category><![CDATA[angle]]></category>
		<category><![CDATA[lighting]]></category>
		<category><![CDATA[moment]]></category>

		<guid isPermaLink="false">http://tolahtoleh.wordpress.com/?p=38</guid>
		<description><![CDATA[When I decide to take any photo I will consider this three aspect, You might find this is silly, OK I take it, it just my opinion, you have yours, sorry, hope it could increase my pagerank 1. Moment 2. Angle 3. Lighting (source) Relax, once you find a AWB button, you could start it [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=38&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<div class="entry">
<p>When I decide to take any photo I will consider this three aspect,<br />
You might find this is silly, OK I take it, it just my opinion, you have yours, sorry, hope it could increase my pagerank <img src="http://tolahtoleh.com/wp-content/uploads/2008/05/img4821de647e407.gif" alt="" /></p>
<p>1. Moment<br />
2. Angle<br />
3. Lighting (source)</p>
<p>Relax, once you find a AWB button, you could start it <img src="http://tolahtoleh.com/wp-content/uploads/2008/02/img47b6c9d90a7b9.gif" alt="" />.<br />
Those three component are equal, they play their own part in order to address your camera capture your event/object.</p>
<p><strong>1.</strong> Moment, Why do we need a moment?,.. Hm,.. You need it, it shows how your intention, passion and your feeling, otherwise your object’s. Sure you need learn from a Famous fotographer, but you have to find your own style, you have your own way to create your own photography, I said, “even a great photographer never capture your moment, why? they don’t even there where/when you capture it,. haha,..”. Trust me, even they said your picture is a miss-conduct of any photographic technique, still they couldn’t seize yours, I mean your moment</p>
<p><strong>2. </strong>Angle, Hm,.. angle yeah, angle I mean How you serve/order you object through your camera. You may take it above, below, or behind the object. The space between your camera and your object will describe how Your <strong>creativity </strong>to reserve a great ingredients of your camera ability &#8211; name it F-stop, shutter speed, DOF (depth of field), Focal length, etc.</p>
<p><strong>3. </strong>Lighting , You need a light to take a photo, otherwise you paint it black or white, no more color <img src="http://tolahtoleh.com/wp-content/uploads/2008/02/img47b6c9d90a7b9.gif" alt="" />. Light source define your color. You need to understand how your camera works over the light source. Some [digital] camera produce more green, blue, or red than others, I mean for each camera has a tendency to proudce thus color. To obtain better color, sometimes photographer using a filter, attached to their lenses. Sorry I have no idea about filter, you have to search it by yourself.<br />
Further explanation about lighting source, you must try it by yourself,</p>
<p>Any suggestion to complete the definition above? contact me, angus@tolahtoleh.com</p>
<p><strong>Your camera didn’t take the picture, You did,..!!!  work with what you got. you might amaze yourself. <img src="http://tolahtoleh.com/wp-content/uploads/2008/02/img47b6c9d90a7b9.gif" alt="" /></strong></p>
<p>Some people find themselves feeling more artistic when wearing a beret and smoking clove cigarettes. <strong>I doubt</strong> the clothing changes the paint around on the canvas. <img src="http://tolahtoleh.com/wp-content/uploads/2008/02/img47b6c9d90a7b9.gif" alt="" />, But using a camera type <strong>obsessively </strong>out of some dislike for other sorts doesn’t make much sense,.. <img src="http://tolahtoleh.com/wp-content/uploads/2008/02/img47b6c9d90a7b9.gif" alt="" /> see you soon,..</p>
<p>_____________<img src="http://tolahtoleh.com/wp-content/uploads/2008/02/img47b6ca7fe0217.gif" alt="" /></p>
<p>regards,<br />
tolahtoleh.com™</p></div>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tolahtoleh.wordpress.com/38/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tolahtoleh.wordpress.com/38/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tolahtoleh.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tolahtoleh.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tolahtoleh.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tolahtoleh.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tolahtoleh.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tolahtoleh.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tolahtoleh.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tolahtoleh.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tolahtoleh.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tolahtoleh.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tolahtoleh.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tolahtoleh.wordpress.com/38/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tolahtoleh.wordpress.com/38/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tolahtoleh.wordpress.com/38/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=38&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tolahtoleh.wordpress.com/2008/06/20/moment-angle-lighting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af66cec4cbd600c4471e8a593821da16?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tolahtoleh</media:title>
		</media:content>

		<media:content url="http://tolahtoleh.com/wp-content/uploads/2008/05/img4821de647e407.gif" medium="image" />

		<media:content url="http://tolahtoleh.com/wp-content/uploads/2008/02/img47b6c9d90a7b9.gif" medium="image" />

		<media:content url="http://tolahtoleh.com/wp-content/uploads/2008/02/img47b6c9d90a7b9.gif" medium="image" />

		<media:content url="http://tolahtoleh.com/wp-content/uploads/2008/02/img47b6c9d90a7b9.gif" medium="image" />

		<media:content url="http://tolahtoleh.com/wp-content/uploads/2008/02/img47b6c9d90a7b9.gif" medium="image" />

		<media:content url="http://tolahtoleh.com/wp-content/uploads/2008/02/img47b6c9d90a7b9.gif" medium="image" />

		<media:content url="http://tolahtoleh.com/wp-content/uploads/2008/02/img47b6ca7fe0217.gif" medium="image" />
	</item>
		<item>
		<title>dump-restore postgre sql</title>
		<link>http://tolahtoleh.wordpress.com/2008/05/21/dump-restore-postgre-sql/</link>
		<comments>http://tolahtoleh.wordpress.com/2008/05/21/dump-restore-postgre-sql/#comments</comments>
		<pubDate>Wed, 21 May 2008 10:06:25 +0000</pubDate>
		<dc:creator>tolahtoleh</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[Tutorial]]></category>

		<guid isPermaLink="false">http://tolahtoleh.wordpress.com/?p=36</guid>
		<description><![CDATA[As a newbie, I write this tips, as I did earlier. It work on my postgtre sql. DUMP DATA ============================ &#124; DUMP DATA &#124; ============================ pg_dump -U userName -d db_bonus &#62; db_bonus.sql &#8212;1&#8212;&#8211;2&#8212;3&#8212;&#8212;4&#8212;-5&#8212;&#8212;&#8211;6&#8211; 1. pg_dump= function from postgresql 2. -U = Option for Username in data base 3. userName= username, use your active user on [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=36&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>As a newbie, I write this tips, as I did earlier. It work on my postgtre sql.</p>
<p>DUMP DATA</p>
<p>============================<br />
|         DUMP DATA        |<br />
============================</p>
<p>pg_dump -U userName -d db_bonus &gt; db_bonus.sql</p>
<p>&#8212;1&#8212;&#8211;2&#8212;3&#8212;&#8212;4&#8212;-5&#8212;&#8212;&#8211;6&#8211;</p>
<p>1. pg_dump=  function from postgresql<br />
2. -U = Option for Username in data base<br />
3. userName= username, use your active user on postgresql<br />
4. -d = Option for dump database<br />
5. db_bonus= here my database name is db_bonus<br />
6. db_bonus.sql = filename, as result from dump</p>
<p>============================<br />
|      RESTORE DATA        |<br />
============================<br />
psql -U bonususr -d db_bonus -f backup_3.sql</p>
<p>1&#8212;2&#8212;3&#8212;&#8212;4&#8212;5&#8212;&#8212;6&#8212;-7&#8212;-</p>
<p>1. psql= function from postgreSql<br />
2. -U = Option for Username in data base<br />
3. userName= username, use your active user on postgresql<br />
4. -d = option for database<br />
5. db_bonus= here my database name is db_bonus<br />
6. -f = from file<br />
7. backup_3.sql = file name. Ypu may locate your filename fro its path, eg. /home/angus/backup_3.sql</p>
<p>note:</p>
<p>I am using PostgreSQL 8.1.11. Runing on linux Ubuntu</p>
<p>psql  only works smoothly with servers of the same version. That does<br />
not mean other combinations will fail outright, but subtle  and  not-<br />
so-subtle problems might come up. Backslash commands are particularly<br />
likely to fail if the server is of a different version.</p>
<p>regards,<br />
tolahtoleh™</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tolahtoleh.wordpress.com/36/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tolahtoleh.wordpress.com/36/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tolahtoleh.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tolahtoleh.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tolahtoleh.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tolahtoleh.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tolahtoleh.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tolahtoleh.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tolahtoleh.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tolahtoleh.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tolahtoleh.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tolahtoleh.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tolahtoleh.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tolahtoleh.wordpress.com/36/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tolahtoleh.wordpress.com/36/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tolahtoleh.wordpress.com/36/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=36&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tolahtoleh.wordpress.com/2008/05/21/dump-restore-postgre-sql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af66cec4cbd600c4471e8a593821da16?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tolahtoleh</media:title>
		</media:content>
	</item>
		<item>
		<title>blog walking</title>
		<link>http://tolahtoleh.wordpress.com/2008/05/17/blog-walking/</link>
		<comments>http://tolahtoleh.wordpress.com/2008/05/17/blog-walking/#comments</comments>
		<pubDate>Sat, 17 May 2008 06:02:02 +0000</pubDate>
		<dc:creator>tolahtoleh</dc:creator>
				<category><![CDATA[Writing]]></category>

		<guid isPermaLink="false">http://tolahtoleh.wordpress.com/?p=35</guid>
		<description><![CDATA[Hello, Do we oftently surf through someone else blog? commonly, we do. I could figure it out, because I did it also, he he he. Then, what wrong with blog walking? nothing wrong, it is our right to read article that posted. But, sometimes, we had to appreciate what did the owner think about. Also [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=35&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello,</p>
<p>Do we oftently surf through someone else blog? commonly, we do. I could figure it out, because I did it also, he he he. Then, what wrong with blog walking? nothing wrong, it is our right to read article that posted. But, sometimes, we had to appreciate what did the owner think about. Also we might caught that we had read their article. Obviously, it is not a joke.</p>
<p>how do they know we&#8217;ve been there? I just browse it,<br />
Yeah, you and I just the same, we like to read. Here a simple explanation, assume, that the blog or their article is a museum. Of course we don&#8217;t need to pay the ticket, but, we might identify ourself as a member of the museum, or just a visitor. For a member, we have a kind of member card, that we called a login. Then, during login session, we might walking through the museum and see around, take some picture, etc. Basic feature of its member card is, we automatically recorded for each item we saw/observe. You might reject it, but this is a basic feature, and you couldn&#8217;t remove it, as a consequence being a member. Don&#8217;t worry, there no criminal act here, <img src='http://s0.wp.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>The record[s], unofficially, guide the blog owner to classify which article/section attract audience/blog viewer more. By indentifying it hits, owner will be granted to post related topic, otherwise, it detemines what blog owner consider on.</p>
<p>Ethically, there are no written rules-it just an understanding, that we may leave a comment addressed to its article. But, what if I don&#8217;t want to leave any comment? No prob, relax,&#8230; it is your right to leave a comment or not, Your presence at their post are appreciated more, I assume you login, and leave a record as visitor.</p>
<p>But, it will be a more appreciation if you leave a comment. At least, you may say, &#8220;a great post&#8221;, or &#8220;nice post&#8221;, &#8220;thx for share&#8221;, etc.</p>
<p>Think about how we courage the blog owner, to post some thing more. Even if its article is bad, you may criticize it. But, I hope you didn&#8217;t mean to destroy blog owner, make it a better solution. Courage the blog owner to make a better post,..</p>
<p>See you,..</p>
<p>regards,<br />
tolahtoleh</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tolahtoleh.wordpress.com/35/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tolahtoleh.wordpress.com/35/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tolahtoleh.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tolahtoleh.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tolahtoleh.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tolahtoleh.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tolahtoleh.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tolahtoleh.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tolahtoleh.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tolahtoleh.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tolahtoleh.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tolahtoleh.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tolahtoleh.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tolahtoleh.wordpress.com/35/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tolahtoleh.wordpress.com/35/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tolahtoleh.wordpress.com/35/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=35&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tolahtoleh.wordpress.com/2008/05/17/blog-walking/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af66cec4cbd600c4471e8a593821da16?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tolahtoleh</media:title>
		</media:content>
	</item>
		<item>
		<title>Question of faith</title>
		<link>http://tolahtoleh.wordpress.com/2008/05/16/question-of-faith/</link>
		<comments>http://tolahtoleh.wordpress.com/2008/05/16/question-of-faith/#comments</comments>
		<pubDate>Fri, 16 May 2008 06:28:22 +0000</pubDate>
		<dc:creator>tolahtoleh</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://tolahtoleh.wordpress.com/?p=5</guid>
		<description><![CDATA[Johan, lelaki seperempat abad yang sedang menganggur. Johan tidak dengan suka rela menganggur, memang johan sedang tidak beruntung. Mungkinkah karena keterlambatannya dalam kuliah? bisa jadi, tapi untunglah johan tetap optimis dengan kemampuannya. Johan juga yakin bahwa suatu saat, dia akan bekerja di kantor, layaknya pekerjaan yang di idamkan kebanyakan orang. Akhir minggu lalu, aku ketemu [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=5&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Johan, lelaki seperempat abad yang sedang menganggur. Johan tidak dengan suka rela menganggur, memang johan sedang tidak beruntung. Mungkinkah karena keterlambatannya dalam kuliah? bisa jadi, tapi untunglah johan tetap optimis dengan kemampuannya. Johan juga yakin bahwa suatu saat, dia akan bekerja di kantor, layaknya pekerjaan yang di idamkan kebanyakan orang.</p>
<p>Akhir minggu lalu, aku ketemu Johan, ya, Johan bukan orang asing bagi-ku. Saat aku ga ada uang, Johan dengan suka rela mentraktirku, bukan untuk hitungan sekali ato dua kali, bisa jadi sampe seminggu. Sungguh aku berhutang budi padaJohan, sehingga seolah, tanpa Johan aku tidak akan pernah bisa lulus kuliah. Walaupun saat ini aku juga sedang menganggur, setidaknya aku punya pekerjaan sampingan, memberikan les private kepada anak SD. Jadi, pada dasarnya aku dan Johan tidak jauh beda.</p>
<p>Dulu kami sempat satu kos, tapi karena uang kos naek, dan kebetulan Johan kedatangan sepupunya, Adi, akhirnya mereka pun kontrak bersama. Johan kontrak beberapa saat setelah aku keluar dari tempat kos.</p>
<p>Tidak sengaja aku ketemu Johan di tempat kami biasanya ngopi, dan kamipun mulai ngobrol serius. Tanpa basa-basi, Johan sekali ketemu, bisa langsung meluapkan amarahnya, tentang semua orang yang ada di sekitarnya. Yup, tipikal Johan memang orang yang terlalu jujur, bahkan cenderung ga bisa berbohong. Tapi kayaknya hanya untuk beberapa orang saja Johan berpendpat, karena Johan lebih suka diam pada orang yang baru dikenalnya.</p>
<p>regards.</p>
<p>tolahtoleh</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/tolahtoleh.wordpress.com/5/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/tolahtoleh.wordpress.com/5/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/tolahtoleh.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/tolahtoleh.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/tolahtoleh.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/tolahtoleh.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/tolahtoleh.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/tolahtoleh.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/tolahtoleh.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/tolahtoleh.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/tolahtoleh.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/tolahtoleh.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/tolahtoleh.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/tolahtoleh.wordpress.com/5/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/tolahtoleh.wordpress.com/5/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/tolahtoleh.wordpress.com/5/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=tolahtoleh.wordpress.com&amp;blog=2432152&amp;post=5&amp;subd=tolahtoleh&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://tolahtoleh.wordpress.com/2008/05/16/question-of-faith/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/af66cec4cbd600c4471e8a593821da16?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">tolahtoleh</media:title>
		</media:content>
	</item>
	</channel>
</rss>
