<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Kayzad&#039;s Blog</title>
	<atom:link href="http://blog.kayzad.com/en/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.kayzad.com/en</link>
	<description>Things which are going on in my life are presented here. My opinions and Interests and dislikes are also included.</description>
	<lastBuildDate>Wed, 01 Dec 2010 16:30:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
		<item>
		<title>Reset a WordPress Password from phpMyAdmin</title>
		<link>http://blog.kayzad.com/en/index.php/2010/reset-a-wordpress-password-from-phpmyadmin/</link>
		<comments>http://blog.kayzad.com/en/index.php/2010/reset-a-wordpress-password-from-phpmyadmin/#comments</comments>
		<pubDate>Wed, 01 Dec 2010 16:29:38 +0000</pubDate>
		<dc:creator>Kayzad</dc:creator>
				<category><![CDATA[About this weblog]]></category>
		<category><![CDATA[Password reset]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://blog.kayzad.com/en/?p=107</guid>
		<description><![CDATA[This article from devlounge.net saved my weblogs. Reset a WordPress Password from phpMyAdmin If you are managing a WordPress installation and for some reason, maybe a hacker, you no longer have access to your Administration panel using your user name and password, then it might be time to change that information using WordPress’ database. Even [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/reset-a-wordpress-password-from-phpmyadmin/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p>This article from <a href="http://www.devlounge.net/publishing/reset-a-wordpress-password-from-phpmyadmin">devlounge.net</a> saved my weblogs.</p>
<h3>Reset a WordPress Password from phpMyAdmin</h3>
<div>
<div>If you are managing a WordPress installation and for some reason, maybe a hacker, you no longer have access to your Administration panel using your user name and password, then it might be time to change that information using WordPress’ database.<span id="more-107"></span></div>
<p>Even if you don’t have CPanel, you should have access to phpMyAdmin. It is a simple, but powerful, application that allows you control over your databases, and can be easily used to change all kinds of information stored in the MySQL databases it manages.</p>
<h3>Step 1: Do You Know Which Database WordPress Uses?</h3>
<p>Before we do anything else, we have to assertain which database WordPress is using. If you only have one WordPress publishing system installed, this isn’t a problem. If you have used an automated means of installing WordPress, you probably don’t remember what database you have used.</p>
<p>Even worse, if you are like me and have over a dozen WordPress installations spread on a few different databases, with some using the same database, figuring out which one you need to change can be a nightmare.</p>
<p>The easiest way to figure out which database you are using is to FTP into your hosting, and open the wp-config.php file with a text editor. It will give you the database name, which we will use later in this tutorial.</p>
<h3>Step 2: Getting to phpMyAdmin</h3>
<p>In a CPanel environment, you will most likely have a button called MySQL Databases. It may or may not look like the image over to the right, but none the less, it should be there somewhere.</p>
<p>Clicking on it will list all of your current databases, as well as other information. Don’t concern yourself with all this right now. Move to the bottom of the page, where there should be a link that says, phpMyAdmin.</p>
<h3>Step 3: Finding Your Users</h3>
<p>A new window will most likely have opened. It will have two panes. On the left hand side you will have a list of databases. Click on the one related to the WordPress installation we are going to work with.</p>
<p>Look for a table called wp_users in the left hand pane. It is usually the last item in the list.</p>
<p><em>*Note: If your WordPress table prefix is not wp_ then you will be of course looking for your custom prefix user table. You can find your prefix in the wp-config.php file.</em></p>
<p>Click on the user table link, and in the right hand pane, the information will change. At the top there should be a few links. Click Browse.</p>
<p>It should then look something like the following image.</p>
<p><img src="http://www.devlounge.net/wp-content/uploads/2007/11/phpmyadmin_user_list.jpg" alt="phpMyAdmin WordPress User List" /></p>
<h3>Step 4: Editing the Password</h3>
<p>You will notice there is a field called user_pass. This is where the password is stored in WordPress. Find the user you want to edit, and click the pencil image next to the red X. This will allow us to edit the entry.</p>
<p><img src="http://www.devlounge.net/wp-content/uploads/2007/11/phpmyadmin_editpass.jpg" alt="phpMyAdmin WordPress Edit Password" /></p>
<p>You will notice the password is strange, and not plain text. This is because for security reasons, WordPress stores the passwords as an <a href="http://en.wikipedia.org/wiki/MD5">MD5 hash</a>.</p>
<p>We can’t just enter a normal text password, and should replace the MD5 hash of the password we don’t know with the MD5 hash of a password we do know.</p>
<p>To create an MD5 hash, I usually just search for “online MD5 hash” on Google, and come up with some great online tools for creating the result I need.</p>
<p><em>Example: <a href="http://pajhome.org.uk/crypt/md5/">Javacript MD5</a></em></p>
<p>In such tools, I enter what I want the password to be, click a button to process it, and it spits out the MD5 hash that I want to enter in the user_pass field.</p>
<p>Click Go to save the change, and then log in to WordPress using your new password.</p>
<h3>Sidenote</h3>
<p>If a hacker was able to change your password, or other information in WordPress, <a href="http://wordpress.org/download/">upgrading</a> should also be one of the first things on your mind once you change your password.</p>
</div>
<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/reset-a-wordpress-password-from-phpmyadmin/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://blog.kayzad.com/en/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://blog.kayzad.com/en/index.php/2010/reset-a-wordpress-password-from-phpmyadmin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>So much to write but no time</title>
		<link>http://blog.kayzad.com/en/index.php/2010/so-much-to-write-but-no-time/</link>
		<comments>http://blog.kayzad.com/en/index.php/2010/so-much-to-write-but-no-time/#comments</comments>
		<pubDate>Tue, 19 Oct 2010 17:47:41 +0000</pubDate>
		<dc:creator>Kayzad</dc:creator>
				<category><![CDATA[Interests]]></category>
		<category><![CDATA[Time]]></category>

		<guid isPermaLink="false">http://blog.kayzad.com/en/?p=103</guid>
		<description><![CDATA[This is at least 6th time in this month that I want to update my blog talking about what has happened to me but there is no time. I have planned to update my blog once a week but it seems that I cannot manage my time properly. Yesterday I definitely wanted to update my [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/so-much-to-write-but-no-time/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p>This is at least 6th time in this month that I want to update my blog talking about what has happened to me but there is no time. I have planned to update my blog once a week but it seems that I cannot manage my time properly. <span id="more-103"></span></p>
<p>Yesterday I definitely wanted to update my blog describing my feelings but there was no time.</p>
<p>In this month I wanted to talk about the following topics:</p>
<p>1. Those who steal<br />
2. Those who can make you calm<br />
3. Those whom you hate<br />
4. Those whom you can fight<br />
5. Those who used to be friends<br />
and<br />
6. When I want revenge</p>
<p>but there was no time. I hope someday soon I can write about them. Someday that there is time or&#8230;.<br />
Maybe there is no time.</p>
<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/so-much-to-write-but-no-time/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://blog.kayzad.com/en/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://blog.kayzad.com/en/index.php/2010/so-much-to-write-but-no-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enjoyed a lot visiting the road from Kelardasht to Abbasabad.</title>
		<link>http://blog.kayzad.com/en/index.php/2010/enjoyed-a-lot-visiting-the-road-from-kelardasht-to-abbasabad/</link>
		<comments>http://blog.kayzad.com/en/index.php/2010/enjoyed-a-lot-visiting-the-road-from-kelardasht-to-abbasabad/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 19:27:20 +0000</pubDate>
		<dc:creator>Kayzad</dc:creator>
				<category><![CDATA[Interests]]></category>
		<category><![CDATA[Iran]]></category>
		<category><![CDATA[Kayzad is Traveling]]></category>
		<category><![CDATA[Nature in Iran]]></category>

		<guid isPermaLink="false">http://blog.kayzad.com/en/?p=91</guid>
		<description><![CDATA[We had a fun weekend and I enjoyed visiting the road from Kelardasht to Abbasabad. This road is in the middle of jungle on Alborz mountain. The weather was pleasant and we has a fun time. The only thing that I am not satisfied with is my photos. I don&#8217;t know why but all the [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/enjoyed-a-lot-visiting-the-road-from-kelardasht-to-abbasabad/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p>We had a fun weekend and I enjoyed visiting the road from Kelardasht to Abbasabad. This road is in the middle of jungle on Alborz mountain. The weather was pleasant and we has a fun time.</p>
<p>The only thing that I am not satisfied with is my photos. I don&#8217;t know why but all the photos are of low quality. I am very interested in showing the world that how beautiful is different parts of Iran and I was very eager to share my photos of this trip but is seems that I have only three photos to share (not with high quality). I hope that reader of this post share their related photos (The road between Kelardasht and Abbasabad). <span id="more-91"></span></p>
<p style="text-align: center;"><a href="http://blog.kayzad.com/en/wp-content/uploads/2010/09/Kelardasht3.jpg"><br />
</a><a href="http://blog.kayzad.com/en/wp-content/uploads/2010/09/Kelardasht.jpg"><img class="aligncenter size-full wp-image-92" title="Kelardasht" src="http://blog.kayzad.com/en/wp-content/uploads/2010/09/Kelardasht.jpg" alt="" width="563" height="423" /></a></p>
<p style="text-align: center;"><a href="http://blog.kayzad.com/en/wp-content/uploads/2010/09/Kelardasht2.jpg"></a><a href="http://blog.kayzad.com/en/wp-content/uploads/2010/09/Kelardasht3.jpg"></a><a href="http://blog.kayzad.com/en/wp-content/uploads/2010/09/Kelardasht3.jpg"><img class="aligncenter size-full wp-image-94" title="Kelardasht3" src="http://blog.kayzad.com/en/wp-content/uploads/2010/09/Kelardasht3.jpg" alt="" width="563" height="423" /></a><br />
<a href="http://blog.kayzad.com/en/wp-content/uploads/2010/09/Kelardasht3.jpg"><br />
</a><a href="http://blog.kayzad.com/en/wp-content/uploads/2010/09/Kelardasht2.jpg"><img class="aligncenter size-full wp-image-93" title="Kelardasht2" src="http://blog.kayzad.com/en/wp-content/uploads/2010/09/Kelardasht2.jpg" alt="" width="563" height="423" /></a></p>
<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/enjoyed-a-lot-visiting-the-road-from-kelardasht-to-abbasabad/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://blog.kayzad.com/en/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://blog.kayzad.com/en/index.php/2010/enjoyed-a-lot-visiting-the-road-from-kelardasht-to-abbasabad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I am not alone</title>
		<link>http://blog.kayzad.com/en/index.php/2010/i-am-not-alone/</link>
		<comments>http://blog.kayzad.com/en/index.php/2010/i-am-not-alone/#comments</comments>
		<pubDate>Fri, 06 Aug 2010 07:59:39 +0000</pubDate>
		<dc:creator>Kayzad</dc:creator>
				<category><![CDATA[Interests]]></category>
		<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://blog.kayzad.com/en/?p=86</guid>
		<description><![CDATA[This vedio made me think once more about the civilization. I am going to wait for thenext version (CIVILIZATION V) after I finished my current game. No more turns&#8230; Next 30 days is going to be my 30 civ free days.]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/i-am-not-alone/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p>This vedio made me think once more about the civilization. I am going to wait for thenext version (CIVILIZATION V) after I finished my current game. </p>
<p><object id="videoPlayer" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="310" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="scale" value="noScale" /><param name="salign" value="lt" /><param name="quality" value="high" /><param name="allowscriptaccess" value="always" /><param name="allowFullScreen" value="true" /><param name="flashvars" value="bwr=0&amp;playerMode=embedded&amp;movieAspect=16.9&amp;mapp=embedded_480&amp;gen=1&amp;viewMode=sd&amp;autoPlay=false&amp;paramsXML=http%3A%2F%2Fwww.gamespot.com%2Fpages%2Fvideo_player%2Fxml.php%3Fid%3D6266697%26mode%3Dembedded%26width%3D480%26height%3D310%26newplayer%3D1%26skin%3DeidotheaEmbedded480_169.xml" /><param name="src" value="http://image.com.com/gamespot/images/cne_flash/production/eidothea/release/eidothea.swf?w_005_f" /><param name="name" value="mymovie" /><param name="wmode" value="opaque" /><param name="allowfullscreen" value="true" /><embed id="videoPlayer" type="application/x-shockwave-flash" width="480" height="310" src="http://image.com.com/gamespot/images/cne_flash/production/eidothea/release/eidothea.swf?w_005_f" flashvars="bwr=0&amp;playerMode=embedded&amp;movieAspect=16.9&amp;mapp=embedded_480&amp;gen=1&amp;viewMode=sd&amp;autoPlay=false&amp;paramsXML=http%3A%2F%2Fwww.gamespot.com%2Fpages%2Fvideo_player%2Fxml.php%3Fid%3D6266697%26mode%3Dembedded%26width%3D480%26height%3D310%26newplayer%3D1%26skin%3DeidotheaEmbedded480_169.xml" wmode="opaque" allowscriptaccess="always" scale="noScale" salign="lt" allowfullscreen="true" quality="high" name="mymovie"></embed></object></p>
<p>No more turns&#8230;<span id="more-86"></span><br />
Next 30 days is going to be my 30 civ free days.</p>
<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/i-am-not-alone/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://blog.kayzad.com/en/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://blog.kayzad.com/en/index.php/2010/i-am-not-alone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Farsi version of this blog has been created</title>
		<link>http://blog.kayzad.com/en/index.php/2010/farsi-version-of-this-blog-has-been-created/</link>
		<comments>http://blog.kayzad.com/en/index.php/2010/farsi-version-of-this-blog-has-been-created/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 13:08:49 +0000</pubDate>
		<dc:creator>Kayzad</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Blog News]]></category>
		<category><![CDATA[Cherry]]></category>

		<guid isPermaLink="false">http://blog.kayzad.com/en/?p=83</guid>
		<description><![CDATA[I have created Farsi (Persian) version of this blog. It is not a translation but a compliment to this blog but in Farsi. So many things has to be done before it can be a good looking blog. I am trying to translate the theme which I have used here to be more compatible with [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/farsi-version-of-this-blog-has-been-created/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p>I have created <a href="http://blog.kayzad.com/fa">Farsi (Persian) version of this blog</a>. It is not a translation but a compliment to this blog but in Farsi. So many things has to be done before it can be a good looking blog. I am trying to translate the theme which I have used here to be more compatible with Farsi and the main problem is that I need to change the theme to support RTL. I have no idea about php and this is a difficult task for me.</p>
<p>I also have chosen the Cherry to be my sign on both blogs:</p>
<div class="wp-caption alignleft" style="width: 219px"><img class=" " title="Cherry " src="http://files.wla.org/igs/wale/conf07/Picts/Cherry.jpg" alt="Cherry Blog" width="209" height="325" /><p class="wp-caption-text">This Blog&#39;s Icon</p></div>
<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/farsi-version-of-this-blog-has-been-created/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://blog.kayzad.com/en/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://blog.kayzad.com/en/index.php/2010/farsi-version-of-this-blog-has-been-created/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eCommerce In Iran</title>
		<link>http://blog.kayzad.com/en/index.php/2010/ecommerce-in-iran/</link>
		<comments>http://blog.kayzad.com/en/index.php/2010/ecommerce-in-iran/#comments</comments>
		<pubDate>Sat, 24 Jul 2010 17:44:15 +0000</pubDate>
		<dc:creator>Kayzad</dc:creator>
				<category><![CDATA[MBA Articles]]></category>
		<category><![CDATA[eCommerce]]></category>
		<category><![CDATA[Iran]]></category>

		<guid isPermaLink="false">http://blog.kayzad.com/en/?p=74</guid>
		<description><![CDATA[The file that I am linking here was my midterm paper for business course. I was just reviewing my archive for MBA and I come across this file. I remember how most of the students was angry about the results and I was the only one that was happy. It was not because of my [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/ecommerce-in-iran/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p>The file that I am linking here was my midterm paper for business course. I was just reviewing my archive for MBA and I come across this file. I remember how most of the students was angry about the results and I was the only one that was happy. It was not because of my grade. It was because our professor didn&#8217;t &#8230;. (Oh it is a secret)<br />
I now remember what happened to Pouya. I am sorry that he decided not to do what others did. We all missed Pouya in our class. </p>
<p>The abstract of paper was:</p>
<blockquote><p>Electronic commerce commonly known as e-commerce is actually buying and selling of products and services (Wikipedia,2008) such as online stock and bond transactions, the downloading and selling of “soft merchandise” (software, documents, graphics, music, etc.), business-to-business transactions and other types of shopping over the internet or other electronic networks. This article covers the current e-commerce status in Iran, its advantages and disadvantages and developments in Iran’s banking system which required to expand e-commerce in Iran. It also covers the governmental efforts that must be done to help e-commerce prosper in Iran.</p></blockquote>
<p>And you can download the file from <a href="http://blog.kayzad.com/en/wp-content/uploads/2010/07/eCommerce-in-Iran.pdf">here</a>.</p>
<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/ecommerce-in-iran/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://blog.kayzad.com/en/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://blog.kayzad.com/en/index.php/2010/ecommerce-in-iran/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google&#8217;s Tangible and Intagible assets assessment</title>
		<link>http://blog.kayzad.com/en/index.php/2010/googles-tangible-and-intagible-assets-assessment/</link>
		<comments>http://blog.kayzad.com/en/index.php/2010/googles-tangible-and-intagible-assets-assessment/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 20:01:13 +0000</pubDate>
		<dc:creator>Kayzad</dc:creator>
				<category><![CDATA[MBA Articles]]></category>
		<category><![CDATA[My Projects]]></category>
		<category><![CDATA[MBA]]></category>

		<guid isPermaLink="false">http://blog.kayzad.com/en/?p=61</guid>
		<description><![CDATA[Recently, we have been working on an assignment with the title of Application of RBV Model. we were supposed to visit either Apple or Google`s corporate website and identify some of the company`s Tangible assets, intangible assets, and organizational capabilities. Then we should specify which of those resources represents strengths or weaknesses  and which resources [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/googles-tangible-and-intagible-assets-assessment/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p>Recently, we have been working on an assignment with the title of <strong>Application of RBV Model</strong>. we were supposed to visit either Apple or Google`s corporate website and identify some of the company`s  Tangible assets, intangible assets, and organizational capabilities.  Then we should specify which of those resources represents strengths or  weaknesses  and which resources generate the sources of sustainable  competitive advantage and why?</p>
<p>I and Sohieh started working on this assignment and the following Table of Content and file are final editions that we have uploaded it to BIHE course site:</p>
<h2>Table of Contents</h2>
<p>Google&#8217;s Mission. 3<br />
Competition. 3<br />
Products and Services  offering. 4<br />
Intellectual Property. 5<br />
Google’s financial  status: 6<br />
SWOT analysis of Google. 8<br />
Sustainable competitive advantages. 8<br />
Works Cited. 10<br />
Appendixes. 11<br />
Appendix 1:  Annual financial statements of Google (2009). 11<br />
Appendix 2:  Annual financial statements of Microsoft  (2009). 11<br />
Appendix 3:  Annual financial statements of Yahoo (2009). 11</p>
<blockquote><p>You can download the file from: <strong><a href="http://blog.kayzad.com/en/wp-content/uploads/2010/07/Application-of-RBV-Model.pdf">Application  of RBV Model</a></strong></p></blockquote>
<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/googles-tangible-and-intagible-assets-assessment/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://blog.kayzad.com/en/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://blog.kayzad.com/en/index.php/2010/googles-tangible-and-intagible-assets-assessment/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Golden Boot of World Cup 2010</title>
		<link>http://blog.kayzad.com/en/index.php/2010/46/</link>
		<comments>http://blog.kayzad.com/en/index.php/2010/46/#comments</comments>
		<pubDate>Mon, 12 Jul 2010 03:36:45 +0000</pubDate>
		<dc:creator>Kayzad</dc:creator>
				<category><![CDATA[Interests]]></category>
		<category><![CDATA[World Cup 2010]]></category>

		<guid isPermaLink="false">http://blog.kayzad.com/en/?p=46</guid>
		<description><![CDATA[This is what I was hoping for after Germany has been defeated in worldcup 2010. Worldcup has been concluded and now I am a bit happy&#8230;&#8230;. This is Thomas Mueller: Date of Birth: 13 September 1989 Height: 186 cm Shirt number: 13 Position: Midfielder Current club: Bayern Munich (GER) International Caps: 8 International Goals: 5 [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/46/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p>This is what I was hoping for after Germany has been defeated in worldcup 2010. Worldcup has been concluded and now I am a bit happy&#8230;&#8230;.</p>
<p>This is Thomas Mueller:</p>
<p>Date of Birth: 13 September 1989<br />
Height: 186 cm<br />
Shirt number: 13<br />
Position: Midfielder<br />
Current club: Bayern Munich (GER)<br />
International Caps: 8<br />
International Goals: 5<br />
First international: Germany &#8211; Argentina<br />
(3 March 2010) </p>
<p>As I said before it is from 1990 that I am a fan of Germany&#8217;s football team. I was hoping for the championship but 3rd place is all we get. All I can say is that I am happy to see that Mueller got the big prize.</p>
<div id="attachment_47" class="wp-caption aligncenter" style="width: 535px"><a href="http://blog.kayzad.com/en/wp-content/uploads/2010/07/Muller.png"><img class="size-medium wp-image-47 " title="Thomas MUELLER" src="http://blog.kayzad.com/en/wp-content/uploads/2010/07/Muller.png" alt="Thomas MUELLER" width="525" height="391" /></a><p class="wp-caption-text">Thomas MUELLER</p></div>
<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/46/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://blog.kayzad.com/en/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://blog.kayzad.com/en/index.php/2010/46/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Germany Defeated</title>
		<link>http://blog.kayzad.com/en/index.php/2010/germany-defeated/</link>
		<comments>http://blog.kayzad.com/en/index.php/2010/germany-defeated/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 18:12:51 +0000</pubDate>
		<dc:creator>Kayzad</dc:creator>
				<category><![CDATA[Interests]]></category>
		<category><![CDATA[Sad Things]]></category>
		<category><![CDATA[World Cup 2010]]></category>

		<guid isPermaLink="false">http://blog.kayzad.com/en/?p=41</guid>
		<description><![CDATA[GERMANY had looked so fast, powerful, sharp and stylish coming into the World Cup semi-final that many had it down as favourite, despite the greater experience and pedigree of Spain. But as impressive as the Germans were earlier in the cup, they simply did not deliver on the big occasion. It wasn&#8217;t to do with [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/germany-defeated/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><blockquote><p>GERMANY had looked so fast, powerful, sharp and stylish coming into the World Cup semi-final that many had it down as favourite, despite the greater experience and pedigree of Spain.</p>
<p>But as impressive as the Germans were earlier in the cup, they simply did not deliver on the big occasion. It wasn&#8217;t to do with nerves or stage fright, despite their youth and inexperience. Quite simply, Joachim Loew&#8217;s exciting young team was outclassed on the night by a better team with better players who had plenty of big match knowhow.</p></blockquote>
<p>The above paragraph was in the news and made me think about the game once more. Germany was the thing making me happy these days. it is sad to see that they are defeated.</p>
<p>I am a fan of Germany football team since 1990. It was 20 years ago when they made their way to victory. Hope to see them win in 2014 in Brazil.</p>
<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/germany-defeated/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://blog.kayzad.com/en/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://blog.kayzad.com/en/index.php/2010/germany-defeated/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Civilization IV</title>
		<link>http://blog.kayzad.com/en/index.php/2010/civilization-iv/</link>
		<comments>http://blog.kayzad.com/en/index.php/2010/civilization-iv/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 14:52:28 +0000</pubDate>
		<dc:creator>Kayzad</dc:creator>
				<category><![CDATA[Interests]]></category>
		<category><![CDATA[Games]]></category>

		<guid isPermaLink="false">http://blog.kayzad.com/en/?p=36</guid>
		<description><![CDATA[This is what I have been playing for the past three years. The whole thing started when I was on a business trip to Bandar Abbas. My Boss introduced me a game with the name of Civilization III and when I tried it I found it a perfect game. The next thing i can remember [...]]]></description>
			<content:encoded><![CDATA[<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/civilization-iv/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p>This is what I have been playing for the past three years. The whole thing started when I was on a business trip to <a href="http://maps.google.com/maps?oe=UTF-8&amp;gfns=1&amp;q=bandar+abbas&amp;um=1&amp;ie=UTF-8&amp;hq=&amp;hnear=Bandar-e-Abbas,+Iran&amp;ei=L74kTKfVGYqkOPKM_b8C&amp;sa=X&amp;oi=geocode_result&amp;ct=title&amp;resnum=1&amp;ved=0CB0Q8gEwAA">Bandar Abbas</a>. <span style="color: #000000;">My Boss introduced me a game with the name of Civilization III and when I tried it I found it a perfect </span>game. The next thing i can remember is the time that I have purchased a new version of that game (<a href="http://www.2kgames.com/civ4">Civilization IV</a>) and started playing.  This turn based strategic game has anything I wanted from a PC game. It is fun, complicated, time consuming and totally unpredictable. The thing that I liked most in this game is the Persian Civilization.</p>
<p>The following part is a description of this civilization in Civilization IV:</p>
<blockquote><p><img class="alignleft" src="http://pcmedia.ign.com/pc/image/article/658/658002/civilization-iv-20051012014833658-000.jpg" alt="Cyrus the great" width="317" height="399" />The term Persia has been used for centuries, chiefly in the West, to designate a region of southern Iran formerly known as Persis or Parsa; the name of the Indo-European nomadic people who migrated into the region about 1000 BC, eventually supplanting the Assyrians and Chaldeans. The first mention of the Parsa occurs in the annals of Shalmanesar III, an Assyrian king, in 844 BC. Cyrus II (559-529 BC), also known as Cyrus the Great, was heir to a long line of ruling chiefs in Mesopotamia and was the founder of the Persian Empire; he was called the father of his people by the ancient Persians. In 550 BC, Cyrus, the Prince of Persia, revolted against the Median king Astyages and welded the Persians and Medes together into one powerful force. Cyrus consolidated his rule on the Iranian Plateau and then extended it westward across Asia Minor. In October 539 BC, Babylon, the greatest city of the ancient world, fell to his Persian forces. Cyrus also oversaw the construction of a series of great roads to link together the territories that he had conquered. Although Cyrus was a great military conqueror, he was also a fair ruler; he allowed the Jews to return from Babylon to their homeland in Palestine. His dynasty, known as the Achaemenids, ruled Persia for two centuries.</p>
<p>Following the death of Cyrus&#8217; heir, Darius I (522-486 BC), a leading general and one of the princes of the Achaemenid family, proclaimed himself king following the suppression of a number of provincial rebellions and challenges from other pretenders to the throne. Darius was in the mold of Cyrus the Great &#8211; a powerful personality and a dynamic ruler. To consolidate his accession, Darius I founded his new capital of Parsa, known to the Greeks as Persepolis (&#8220;Persian City&#8221;) and expanded the ranks of his personal bodyguard, the Immortals. The elite force drew its name from the fact that no matter how many men were lost, the Persian Emperor would always pay the cost to restore the Immortals back to their original strength. Although Darius consolidated and added to the conquests of his predecessors, it was as an administrator that he made his greatest contribution to Persian history. During his reign, political and legal reforms revitalized the provinces and ambitious projects were undertaken to promote imperial trade and commerce; coinage, weights and measures were standardized, and new land and sea routes explored and established.</p>
<p>Such activities, however, did not prevent Darius from following an active expansionist policy. Campaigns in the east confirmed gains made by Cyrus the Great and added large sections of the northern Indian subcontinent to the list of Persian-controlled provinces. Expansion to the west began about 516 BC when Darius moved against the Greek colonies along the coast of Asia Minor. Xerxes (486-465 BC), son and successor of Darius I, was determined to continue the Persian conquest of the west and is best known for his massive invasion of Greece from across the Hellespont in 480 BC, a campaign marked by the battles of Thermopylae, Salamis, and Plataea. Although successful in the pacification of Egypt and suppression of a Babylon revolt, his defeat by the allied Greek city-states spelled the beginning of the decline of the Persian Empire. In Xerxes&#8217; last years, he squandered the once-enormous treasury he had gathered through trade and taxation by launching vast construction programs, most never finished.</p>
<p>The death of Xerxes was the final turning point in Persian influence. Occasional flashes of vigor and ability by some of Xerxes&#8217; successors were too infrequent to prevent eventual collapse. The final act was played out during the reign of Darius III (336-330 BC), who was defeated at the Battle of Granicus (334 BC) by Alexander the Great. Persepolis fell to the young Macedonian conqueror in April 330 BC, and Darius, the last Achaemenid, was murdered in the summer of the same year while fleeing the Greek forces. In the struggle for power after Alexander&#8217;s death, Seleucus I brought under his control the Persian provinces of Alexander&#8217;s empire. But this unity was short-lived, as the Indian holdings successfully revolted and the Seleucid kingdom broke into the competing nations of Parthia and Bactria. Parts of the Seleucid kingdom lasted for two centuries, but it was eventually swept aside by the Parthians, who founded an empire that stretched almost as far as Persia under the Achaemenids. The Romans and Parthians struggled against one another for centuries over control of Mesopotamia, with the Parthians usually holding onto most of the Fertile Crescent. But in 224 AD the Parthians were themselves overthrown by a new Sassanid dynasty that revived many of the customs of the Achaemenids, such as the Zoroastrian religion. The Sassanids fought a series of debilitating wars with the Byzantine Empire in the 6th and 7th centuries, which fatally weakened the Persian Empire when the Arabs exploded onto the scene. In a series of decisive battles between 633 and 642, the Arabs conquered and destroyed the Persian Empire; since this time, Persia (modern Iran) has largely belonged to the Arab world. The customs and religion of ancient Persia were destroyed and the population absorbed into the surrounding Islamic culture; only a few remnants survive today.</p></blockquote>
<p>It is a good feeling to play your own civilization. The game definitely worth trying&#8230;.</p>
<p class='fb-like'><iframe src='http://www.facebook.com/plugins/like.php?href=http://blog.kayzad.com/en/index.php/2010/civilization-iv/&amp;layout=button_count&amp;show_faces=true&amp;width=450&amp;action=like&amp;colorscheme=light' scrolling='no' frameborder='0' allowTransparency='true' style='border:none; overflow:hidden; width:450px; height:65px'></iframe></p><p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save"><img src="http://blog.kayzad.com/en/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://blog.kayzad.com/en/index.php/2010/civilization-iv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

