<?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>Blog, Outsourcing Nepal, IT Outsourcing Company, Offshore Development Team &#124; Blog, Outsourcing Nepal, IT Outsourcing Company, Offshore Development Team</title>
	<atom:link href="http://blog.outsourcingnepal.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.outsourcingnepal.com</link>
	<description>Reports on stuffs from Outsourcing Nepal</description>
	<lastBuildDate>Sun, 03 Mar 2013 11:57:41 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2</generator>
		<item>
		<title>Importing Hotmail Contacts Via PHP</title>
		<link>http://blog.outsourcingnepal.com/2013/02/importing-hotmail-contacts-via-php/</link>
		<comments>http://blog.outsourcingnepal.com/2013/02/importing-hotmail-contacts-via-php/#comments</comments>
		<pubDate>Sun, 24 Feb 2013 07:31:34 +0000</pubDate>
		<dc:creator>Outsourcing Nepal</dc:creator>
				<category><![CDATA[Sample Codes]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[hotmail]]></category>
		<category><![CDATA[invite]]></category>
		<category><![CDATA[live]]></category>
		<category><![CDATA[live/hotmail]]></category>
		<category><![CDATA[openinvite]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blog.outsourcingnepal.com/?p=119</guid>
		<description><![CDATA[We do have come across openinvitor and other system but found problem while interacting with hotmail or live. So we made a search and found a pretty useful website with old script. Tried in local it worked. Tried in server got error: Warning: fsockopen() [function.fsockopen]: unable to connect to messenger.hotmail.com:1863 &#8230;]]></description>
			<content:encoded><![CDATA[<p>We do have come across openinvitor and other system but found problem while interacting with hotmail or live.</p>
<p>So we made a search and found a pretty useful website with old script. Tried in local it worked.</p>
<p>Tried in server got error:</p>
<blockquote><p><strong>Warning</strong>: fsockopen() [<a href="http://projects.outsourcingnepal.com/openinvite1/function.fsockopen">function.fsockopen</a>]: unable to connect to messenger.hotmail.com:1863 (Connection timed out)</p></blockquote>
<p>Aaahhh&#8230; its annonying.</p>
<p>I am uploading the script here.</p>
<p>If anyone has suggestion please post reply.</p>
<p>Code: <strong>index.php</strong></p>
<pre>&lt;?php
session_start();
$step = 'showLogin';

if( isset( $_POST['uname']) &amp;&amp; isset( $_POST['upass']))
{
    $strUName = $_POST['uname'];
    $strUPass = $_POST['upass'];

    require('msninvite.php');
    //echo urlencode('koolkabin@live.com');
    set_time_limit(60);

    $obj = new msnlistgrab();
    $obj-&gt;setLogin($strUName, $strUPass);
    $_SESSION['arrContacts'] = $obj-&gt;GetRecords();
    $step = 'showContacts';
}
if( isset($_POST['cmdInvite']) &amp;&amp; isset($_SESSION['arrContacts']) &amp;&amp; isset($_POST['selRows']))
{
    //Process
    $strMessage = nl2br(isset($_POST['txtMessage'])? $_POST['txtMessage']: 'You have been invited.');
    $arrSelRows = isset($_POST['selRows'])? $_POST['selRows']: '';

    $headers  = 'MIME-Version: 1.0' . "\r\n";
    $headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
    $headers .= "From: koolkabin@yahoo.co.uk"."\r\n";

    if(is_array( $arrSelRows))
    {
        foreach( $arrSelRows as $k=&gt;$v)
        {
            $usrMessage = str_replace(array('{name}', '{email}'), array($_SESSION['arrContacts'][$v][1], $_SESSION['arrContacts'][$v][0]), $strMessage);
            mail($_SESSION['arrContacts'][$v][0], 'Invitation Email', $usrMessage, $headers);
        }
    }
    unset($_SESSION['arrContacts']);    //Start over
    $step = 'showThankYou';
}

?&gt;
&lt;?php if($step == 'showLogin'): ?&gt;
    &lt;form action="" method="post"&gt;
        &lt;label for="uname"&gt;User Name&lt;/label&gt;
        &lt;input type="text" name="uname" id="uname"/&gt;
        &lt;br /&gt;

        &lt;label for="upass"&gt;User Pass&lt;/label&gt;
        &lt;input type="password" name="upass" id="upass"/&gt;
        &lt;br /&gt;

        &lt;label for=""&gt;&amp;nbsp;&lt;/label&gt;
        &lt;input type="submit" name="cmsLogin" value="Next"/&gt;

    &lt;/form&gt;
&lt;?php endif;?&gt;
&lt;?php if($step == 'showContacts'): ?&gt;
    &lt;form action="" method="post"&gt;
        &lt;label for="txtMessage"&gt;Message&lt;/label&gt;
        &lt;textarea name="txtMessage" id="txtMessage" rows="10" cols="30"&gt;&lt;/textarea&gt;
        &lt;br /&gt;

        &lt;table width="100%" border="0"&gt;
            &lt;tr&gt;
                &lt;th&gt;&amp;nbsp;&lt;/th&gt;
                &lt;td&gt;Name&lt;/td&gt;
                &lt;td&gt;Email&lt;/td&gt;
            &lt;/tr&gt;
            &lt;?php if(is_array( $_SESSION['arrContacts'])): ?&gt;
                &lt;?php foreach( $_SESSION['arrContacts'] as $k=&gt;$v): ?&gt;
            &lt;tr&gt;
                &lt;td&gt;&lt;input type="checkbox" name="selRows[]" value="&lt;?php echo $k;?&gt;"&gt;&lt;/td&gt;
                &lt;td&gt;&lt;?php echo $v[1];?&gt;&lt;/td&gt;
                &lt;td&gt;&lt;?php echo $v[0];?&gt;&lt;/td&gt;
            &lt;/tr&gt;
                &lt;?php endforeach;?&gt;
            &lt;?php endif;?&gt;
        &lt;/table&gt;
        &lt;br /&gt;

        &lt;label for=""&gt;&amp;nbsp;&lt;/label&gt;
        &lt;input type="submit" name="cmdInvite" value="Next"/&gt;

    &lt;/form&gt;
&lt;?php endif;?&gt;
&lt;?php if( $step == 'showThankYou'): ?&gt;
    &lt;div class="messageSuccess"&gt;Thank you Message&lt;/div&gt;
&lt;?php endif;?&gt;</pre>
<p>Code: <strong>msninvite.php</strong></p>
<pre>&lt;?php
class msnlistgrab {
    var $user = '';
    var $password = '';
    var $server ='ssl://messenger.hotmail.com';
    var $port = 1863;
    var $version = 'MSNMSGR 6.2';
    var $buffer;
    var $socket;
    var $startcom;
    var $error="Hey";
    var $i =0;
    var $total = 0;
    function msnlistgrab() {
    }
    function setLogin( $strUser, $strPass)
    {
        $this-&gt;user = $strUser;
        $this-&gt;password = $strPass;
    }
    function GetRecords(){
        if ($this-&gt;msn_connect($this-&gt;server, $this-&gt;port))
        {
            return $this-&gt;res;
        }
        else
        {
            return $this-&gt;error;
        }
    }
    function getData() {
        $this-&gt;buffer="";
        while (!feof($this-&gt;socket)) {
            $this-&gt;buffer .= fread($this-&gt;socket,1024);
            if (preg_match("/\r/",$this-&gt;buffer)) {
                break;
            }
        }
        $this-&gt;checkData($this-&gt;buffer);
    }
    function getData2() {
        //$container="";
        $buffer="";
        while (!feof($this-&gt;socket)) {
            set_time_limit(60);
            $buffer = fread($this-&gt;socket,8192);
            if( $buffer == ''){
                fclose($this-&gt;socket);
                //$this-&gt;res;
                break;
            }
            $this-&gt;check_buffer($buffer);
        }
    }
     function check_buffer($buffer) {
        $this-&gt;grabber($buffer);
     }
    function grabber ($buffer)
    {
        $g = preg_split("/[\n]+/", $buffer);
        for ($n=0;$n&lt;count($g);$n++) {
            if (strstr($g[$n], 'LST')) {
                //$this-&gt;i++;
                $this-&gt;total++;
                @list($junk, $email, $name) = explode(" ", $g[$n]);
                $this-&gt;res[] = array($email, $name);
            }
        }
    }
    function checkData($buffer) {
        set_time_limit(60);
        if (preg_match("/lc\=(.+?)/Ui",$buffer,$matches)) {
            $this-&gt;challenge = "lc=" . $matches[1];
        }
        if (preg_match("/(XFR 3 NS )([0-9\.\:]+?) (.*) ([0-9\.\:]+?)/is",$buffer,$matches)) {
            $split = explode(":",$matches[2]);
            $this-&gt;startcom = 1;
            $this-&gt;msn_connect($split[0],$split[1]);
        }
        if (preg_match("/tpf\=([a-zA-Z0-9]+?)/Ui",$buffer,$matches)) {
            $this-&gt;nexus_connect($matches[1]);
        }
     }
    function msn_connect($server, $port) {
        if (IsSet($this-&gt;socket)) {
            fclose($this-&gt;socket);
        }
        //set_time_limit(60);
        $this-&gt;socket = fsockopen($server,$port);
        //stream_set_timeout($this-&gt;socket, 20000);
        if (!$this-&gt;socket) {
            return "Could not connect";
        } else {
            $this-&gt;startcom++;
            $this-&gt;send_command("VER " . $this-&gt;startcom . " MSNP8 CVR0",1);
            $this-&gt;send_command("CVR " . $this-&gt;startcom . " 0x0409 win 4.10 i386 ". $this-&gt;version ." MSMSGS " . $this-&gt;user ,1);
            $this-&gt;send_command("USR " . $this-&gt;startcom . " TWN I " . $this-&gt;user ,1);
        }
        return true;
    }
    function send_command($command)
    {
        $this-&gt;startcom++;
        //      echo "&lt;font color=blue&gt; &gt;&gt; $command&lt;br&gt;";
        fwrite($this-&gt;socket,$command . "\r\n");
        $this-&gt;getData(); 

    } 

    function nexus_connect($tpf)
    {
        $arr[] = "GET /rdr/pprdr.asp HTTP/1.0\r\n\r\n";
        $curl = curl_init();
        curl_setopt($curl, CURLOPT_URL, "https://nexus.passport.com:443/rdr/pprdr.asp");
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($curl, CURLOPT_VERBOSE, 0);
        curl_setopt($curl, CURLOPT_HEADER,1);
        curl_setopt($curl, CURLOPT_HTTPHEADER, $arr);
        curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
        $data = curl_exec($curl);
        curl_close($curl);
        preg_match("/DALogin=(.+?),/",$data,$matches);
        //$data = str_replace("\n","&lt;br&gt;",$data);
        //              echo $data;
        //echo "&lt;br&gt;&lt;br&gt;";
        $split = explode("/",$matches[1]);
        $headers[0] = "GET /$split[1] HTTP/1.1\r\n";
        $headers[1] = "Authorization: Passport1.4 OrgVerb=GET,OrgURL=http%3A%2F%2Fmessenger%2Emsn%2E  com,sign-in=" . urlencode($this-&gt;user) . ",pwd=" . $this-&gt;password . ", " . trim($this-&gt;challenge) . "\r\n";
        $curl = curl_init();
        curl_setopt($curl, CURLOPT_URL, "https://" . $split[0] . ":443/". $split[1]);
        curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
        curl_setopt($curl, CURLOPT_VERBOSE, 0);
        curl_setopt($curl,CURLOPT_FOLLOWLOCATION,1);
        curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
        curl_setopt($curl, CURLOPT_HEADER,1);
        curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
        $data = curl_exec($curl);
        //$data = str_replace("\n","&lt;br&gt;\n",$data);
        //              echo $data;
        curl_close($curl);
        //echo "&lt;/font&gt;";
        preg_match("/t=(.+?)'/",$data,$matches);
        $this-&gt;send_command("USR " . $this-&gt;startcom . " TWN S t=" . trim($matches[1]) . "",2);
        $this-&gt;send_command("SYN " . $this-&gt;startcom . " 0",2);
        $this-&gt;getData2(); 

    }
}
//end of the file
?&gt;</pre>
<p>Its really awesome to have it working. Don&#8217;t know how linked in and other systems are getting work it.</p>
<p>&nbsp;</p>
<p>Finally got the support from few programmer in <a href="http://stackoverflow.com/questions/15049658/hotmail-contact-import-alternate-php">Stack Overflow</a> and got it solved with opening the port in firewall.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.outsourcingnepal.com/2013/02/importing-hotmail-contacts-via-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download Manual of SelfAccounting</title>
		<link>http://blog.outsourcingnepal.com/2012/01/download-manual-of-selfaccounting/</link>
		<comments>http://blog.outsourcingnepal.com/2012/01/download-manual-of-selfaccounting/#comments</comments>
		<pubDate>Tue, 31 Jan 2012 03:16:47 +0000</pubDate>
		<dc:creator>Outsourcing Nepal</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[accounting manual]]></category>
		<category><![CDATA[accounting software manual]]></category>
		<category><![CDATA[SelfAccounting Manual]]></category>
		<category><![CDATA[software manual]]></category>

		<guid isPermaLink="false">http://blog.outsourcingnepal.com/?p=79</guid>
		<description><![CDATA[Finally we have published our initial manual of SelfAccounting software. We know there are alot improvements to be done, so we would like you to check the manual and list them out for us. So that we can work hard to make it better. You can download our manual from: SelfAccounting &#8230;]]></description>
			<content:encoded><![CDATA[<p>Finally we have published our initial manual of SelfAccounting software. We know there are alot improvements to be done, so we would like you to check the manual and list them out for us. So that we can work hard to make it better.</p>
<p>You can download our manual from: <a href="http://blog.outsourcingnepal.com/wp-content/uploads/2012/01/SelfAccounting-Manual.pdf">SelfAccounting Manual</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.outsourcingnepal.com/2012/01/download-manual-of-selfaccounting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Release of SelfAccounting Version 1</title>
		<link>http://blog.outsourcingnepal.com/2011/12/release-of-selfaccounting-version-1/</link>
		<comments>http://blog.outsourcingnepal.com/2011/12/release-of-selfaccounting-version-1/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 09:34:32 +0000</pubDate>
		<dc:creator>Outsourcing Nepal</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Account Keeping]]></category>
		<category><![CDATA[Accounting]]></category>
		<category><![CDATA[Accounting Software]]></category>
		<category><![CDATA[Accounting Terms]]></category>
		<category><![CDATA[Book Keeping]]></category>
		<category><![CDATA[General Accounting Software]]></category>
		<category><![CDATA[Professional Accounting Software]]></category>
		<category><![CDATA[Record Keeping]]></category>
		<category><![CDATA[Self Accounting]]></category>
		<category><![CDATA[SelfAccounting]]></category>
		<category><![CDATA[Simple Accounting Software]]></category>
		<category><![CDATA[Simplified Accounting]]></category>

		<guid isPermaLink="false">http://blog.outsourcingnepal.com/?p=75</guid>
		<description><![CDATA[Self Accounting is a simplified accounting software. Self Accounting is designed for people with no knowledge of accounting but wants to keep the accounting records clean and clear. Self Accounting users don&#8217;t require knowledge of Debit and Credit for creating vouchers. They only need to know is whether we are &#8230;]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>Self Accounting</strong> is a <strong>simplified accounting software</strong>. Self Accounting is designed for people with no knowledge of accounting but wants to keep the accounting records clean and clear. Self Accounting users don&#8217;t require knowledge of Debit and Credit for creating vouchers. They only need to know is whether we are receiving or spending cash amount. Rest of the work like voucher creation, voucher posting, maintaining ledger, creating trial balance, balance sheet, profit and loss reports are all done automatically.</p>
<p style="text-align: justify;"><span id="more-75"></span>Self Accounting is professional <strong>business accounting software</strong>, perfect for small businesses needing to document and report on incoming and outgoing cash flow, including sales, receipts, payments and purchases.</p>
<ul>
<li>Easily track payments and deposit transactions</li>
<li>View balances and reports to see how your business is doing</li>
<li>Email or fax reports directly to your accountant</li>
</ul>
<p><strong><span style="font-size: small;"><span class="Apple-style-span" style="line-height: 24px;">Self Accounting Features:</span></span></strong></p>
<ul>
<li>Simplified Voucher Creation [No need of knowledge of Debit and Credit. They are separated automatically.].</li>
<li>Track incoming sales and receipts</li>
<li>Track outgoing payment and purchasing transactions</li>
<li>Reconcile account transactions with bank account statements</li>
<li>Invoice transactions automatically update related accounts &amp; reports</li>
<li>Create accounts payable and pay bills</li>
<li>All changes are reflected in transaction journals</li>
<li>Input journal entries manually, then print or export your journal</li>
<li>Reports include balance sheet, profit &amp; loss / income statement, reconciliation and more</li>
<li>Send bookkeeping reports automatically by email or fax</li>
<li>Analyze sales by customer, salesperson or item</li>
</ul>
<p><span style="font-size: small;"><span class="Apple-style-span" style="line-height: 24px;">You can try it by downloading it from our download page:  </span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.outsourcingnepal.com/2011/12/release-of-selfaccounting-version-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Out on Vacation</title>
		<link>http://blog.outsourcingnepal.com/2011/10/out-on-vacation/</link>
		<comments>http://blog.outsourcingnepal.com/2011/10/out-on-vacation/#comments</comments>
		<pubDate>Tue, 11 Oct 2011 17:29:06 +0000</pubDate>
		<dc:creator>Outsourcing Nepal</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[IT Outsourcing]]></category>
		<category><![CDATA[Nepal Trip]]></category>
		<category><![CDATA[Outsourcing Nepal]]></category>
		<category><![CDATA[Outsourcing Vacation Trip]]></category>
		<category><![CDATA[Trip Nepal]]></category>
		<category><![CDATA[Vacation Nepal]]></category>

		<guid isPermaLink="false">http://blog.outsourcingnepal.com/?p=68</guid>
		<description><![CDATA[Outsourcing Nepal, an IT Outsourcing Company in Nepal is delighted to announce that it is taking its staff on a week long vacation trip. Outsourcing Nepal has already informed about the vacation to the clients. So if any of our client misses the message please we are extremely sorry for &#8230;]]></description>
			<content:encoded><![CDATA[<p>Outsourcing Nepal, an IT Outsourcing Company in Nepal is delighted to announce that it is taking its staff on a week long vacation trip.</p>
<p><a href="http://blog.outsourcingnepal.com/wp-content/uploads/2011/10/vacation.jpg"><img class="aligncenter size-medium wp-image-69" title="vacation" src="http://blog.outsourcingnepal.com/wp-content/uploads/2011/10/vacation-300x156.jpg" alt="" width="300" height="156" /></a></p>
<p><span id="more-68"></span>Outsourcing Nepal has already informed about the vacation to the clients. So if any of our client misses the message please we are extremely sorry for it. We will be back after short 1 week vacation and our work schedule will continue to be normal.</p>
<p>We have chosen <strong>&#8220;JIRI&#8221;</strong> as our destination for this time. We will be updating stuffs about our trip soon.</p>
<p>Thank you.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.outsourcingnepal.com/2011/10/out-on-vacation/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Wishes for Happy Vijaya Dashami</title>
		<link>http://blog.outsourcingnepal.com/2011/09/wishes-for-happy-vijaya-dashami/</link>
		<comments>http://blog.outsourcingnepal.com/2011/09/wishes-for-happy-vijaya-dashami/#comments</comments>
		<pubDate>Wed, 28 Sep 2011 04:25:38 +0000</pubDate>
		<dc:creator>Outsourcing Nepal</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Dashain]]></category>
		<category><![CDATA[Dashain Offer]]></category>
		<category><![CDATA[Dashain Wishes]]></category>
		<category><![CDATA[Happy Dashain]]></category>
		<category><![CDATA[Happy Vijaya Dashami]]></category>

		<guid isPermaLink="false">http://blog.outsourcingnepal.com/?p=63</guid>
		<description><![CDATA[Dashain is widely celebrated festival in Nepal. It has been observed as one of the greatest festivals by all Nepali. On Occusain of Vijaya Dashami, Outsourcing Nepal wishes prosperous timeline for its customers and announces 10% off on its services.]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Dashain is widely celebrated festival in Nepal. It has been observed as one of the greatest festivals by all Nepali. On Occusain of Vijaya Dashami, Outsourcing Nepal wishes prosperous timeline for its customers and announces 10% off on its services.</p>
<p style="text-align: justify;"><a href="http://blog.outsourcingnepal.com/wp-content/uploads/2011/09/dashain.jpg"><img class="aligncenter size-full wp-image-64" title="dashain" src="http://blog.outsourcingnepal.com/wp-content/uploads/2011/09/dashain.jpg" alt="Happy Vijaya Dashain" width="800" height="600" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.outsourcingnepal.com/2011/09/wishes-for-happy-vijaya-dashami/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>searching for fine logo for outsourcing nepal</title>
		<link>http://blog.outsourcingnepal.com/2011/09/searching-for-fine-logo-for-outsourcing-nepal/</link>
		<comments>http://blog.outsourcingnepal.com/2011/09/searching-for-fine-logo-for-outsourcing-nepal/#comments</comments>
		<pubDate>Fri, 09 Sep 2011 16:16:10 +0000</pubDate>
		<dc:creator>Outsourcing Nepal</dc:creator>
				<category><![CDATA[Services]]></category>

		<guid isPermaLink="false">http://blog.outsourcingnepal.com/?p=59</guid>
		<description><![CDATA[We have been creating different logos for our own brand &#8220;Outsourcing Nepal&#8221;. We came across multiple options but still we are to decide for it. Today we are here with some logo samples for you. Please feel free to suggest which one looks great.]]></description>
			<content:encoded><![CDATA[<p>We have been creating different logos for our own brand &#8220;Outsourcing Nepal&#8221;. We came across multiple options but still we are to decide for it.</p>
<p>Today we are here with some logo samples for you. Please feel free to suggest which one looks great.</p>
<p><a href="http://blog.outsourcingnepal.com/wp-content/uploads/2011/09/logo.png"><img class="alignright size-medium wp-image-51" title="logo" src="http://blog.outsourcingnepal.com/wp-content/uploads/2011/09/logo-300x284.png" alt="" width="300" height="284" /></a><a href="http://blog.outsourcingnepal.com/wp-content/uploads/2011/09/OS-Logo.png"><img class="alignright size-medium wp-image-60" title="Outsourcing Nepal Logo" src="http://blog.outsourcingnepal.com/wp-content/uploads/2011/09/OS-Logo-144x300.png" alt="" width="144" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.outsourcingnepal.com/2011/09/searching-for-fine-logo-for-outsourcing-nepal/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Check Google Search Engine Result Position</title>
		<link>http://blog.outsourcingnepal.com/2011/08/check-google-search-engine-result-position/</link>
		<comments>http://blog.outsourcingnepal.com/2011/08/check-google-search-engine-result-position/#comments</comments>
		<pubDate>Thu, 04 Aug 2011 08:47:41 +0000</pubDate>
		<dc:creator>Outsourcing Nepal</dc:creator>
				<category><![CDATA[Projects]]></category>
		<category><![CDATA[Services]]></category>
		<category><![CDATA[Google SERP]]></category>
		<category><![CDATA[Outsourcing Nepal]]></category>
		<category><![CDATA[Search Engine Result Position]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://blog.outsourcingnepal.com/?p=43</guid>
		<description><![CDATA[You do have website. You do have done the content written. But are you sure your content is read and indexed by google? Reading of content and indexing of your pages by Google or other search engine is important to show your presence on web i.e internet. Until your website &#8230;]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">You do have website. You do have done the content written. But are you sure your content is read and indexed by google?</p>
<p style="text-align: justify;">Reading of content and indexing of your pages by Google or other search engine is important to show your presence on web i.e internet. Until your website content is read and indexed by google your website doesn&#8217;t appears in search result of google.</p>
<p style="text-align: justify;"><span id="more-43"></span>After getting being indexed, google will analyse your content and generates list of keywords that are closely related to your content. So thus your keyword is also targeted. This work can be little bit twisted and tweaked to target our website with specific keyword. But beware it should be done wisely otherwise it will effect negatively to your website.</p>
<p style="text-align: justify;">After getting fixed keywords, you search in google but chances are you don&#8217;t find you website in search result with specific keys. We have worked hard but still our ranking is being lost. We would like to track the ranking progress from time to time with specific SEO task set being completed.</p>
<p style="text-align: justify;">In order to check the google search result position, there are very few tools which will provide exact result. Chances are you are misguided. For providing you with appropriate help, <a title="Outsourcing Nepal, IT Company, Offshore Development Team" href="http://www.outsourcingnepal.com" target="_blank">Outsourcing Nepal</a> has presented you with a small tool to check the position. You can check the accuracy with google too. The tool is so simple that you can easily work with it. Just follow the steps:</p>
<p style="text-align: justify;">1.) Enter Your website address<br />
2.) Enter your target Keywords<br />
3.) Choose upto page no which you want to search and click on search.</p>
<p style="text-align: justify;">bang</p>
<p style="text-align: justify;">Here you presented the result after short span of time. Have time to check the tool at: <a title="Google Search Engine Result Position Checker" href="http://projects.outsourcingnepal.com/goolge-position-checker/" target="_blank">Google SERP</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.outsourcingnepal.com/2011/08/check-google-search-engine-result-position/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Hosting Service at discounted price, Outsourcing Nepal</title>
		<link>http://blog.outsourcingnepal.com/2011/07/web-hosting-service-at-discounted-price/</link>
		<comments>http://blog.outsourcingnepal.com/2011/07/web-hosting-service-at-discounted-price/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 08:09:06 +0000</pubDate>
		<dc:creator>Outsourcing Nepal</dc:creator>
				<category><![CDATA[Services]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[Cheap Hosting]]></category>
		<category><![CDATA[Hosting Services]]></category>
		<category><![CDATA[IT Company]]></category>
		<category><![CDATA[Outsourcing Nepal]]></category>
		<category><![CDATA[Outsourcing Services]]></category>
		<category><![CDATA[Reliable Hosting Server]]></category>

		<guid isPermaLink="false">http://blog.outsourcingnepal.com/?p=4</guid>
		<description><![CDATA[Outsourcing Nepal, Hosting Services Outsourcing Nepal is IT Company in Nepal. IT has been in Development works and giving outsourcing services to companies around the world since long ago. IT has multiple clients across the globe. Outsourcing Nepal has a team of professional from different IT Fields. IT has members &#8230;]]></description>
			<content:encoded><![CDATA[<p align="center"><strong>Outsourcing Nepal, Hosting Services</strong></p>
<p>Outsourcing Nepal is IT Company in Nepal. IT has been in Development works and giving outsourcing services to companies around the world since long ago. IT has multiple clients across the globe.</p>
<p>Outsourcing Nepal has a team of professional from different IT Fields. IT has members who are proficient in programming and designing. Its team members have written PHP Scripts for multiple websites which are still functional and running smoothly today. Its team members are also specialise in Flash Action Script too. They have got good portfolio of them too.</p>
<p>Outsourcing Nepal has been seeking and partnering with other hosting providers before for providing hosting services to its clients. They recently have announced that they have acquired a VPS Server from well known hosting provider. i.e Knownhost. Knownhost is well known for its outstanding services in hosting. Outsourcing Nepal has told that &#8220;They are good with hosting services of knownhost and are happy with good performance of the hosting server.&#8221;</p>
<p>As the setup process of hosting server has been completed Outsourcing Nepal is ready to start its hosting services. And in occasion of its service startup, it has announced 30% discount for customers with discount coupon: &#8220;firstcomefirst&#8221;. Its initial price has been quoted as $5/month for 1 year.</p>
<p>Since their server is performing good we also recommend you for grabbing the discount coupon and start hosting services right now.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.outsourcingnepal.com/2011/07/web-hosting-service-at-discounted-price/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
