<?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>Krishna Sunuwar</title>
	<atom:link href="http://www.krishnasunuwar.com.np/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.krishnasunuwar.com.np</link>
	<description></description>
	<lastBuildDate>Tue, 07 May 2013 13:38:42 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Connecting Remote Secure SQL Server from Apache/PHP using freeTDS and ssh tunnel</title>
		<link>http://www.krishnasunuwar.com.np/2013/05/connecting-remote-secure-sql-server-from-apachephp-using-freetds-and-ssh-tunnel/</link>
		<comments>http://www.krishnasunuwar.com.np/2013/05/connecting-remote-secure-sql-server-from-apachephp-using-freetds-and-ssh-tunnel/#comments</comments>
		<pubDate>Tue, 07 May 2013 06:00:45 +0000</pubDate>
		<dc:creator>Krish</dc:creator>
				<category><![CDATA[Mac]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Server]]></category>

		<guid isPermaLink="false">http://www.krishnasunuwar.com.np/?p=837</guid>
		<description><![CDATA[Connecting remote SQL Server (secure behind FW) from LAMP (or MAMP) stack. My db server called db_server was located remotely. Access to db_server was restricted to another server, mid_server. I need to connect db_server from localhost via mid_server.]]></description>
				<content:encoded><![CDATA[<p>Working in heterogenous environment is full of challenges and surprises. As programmers have to exposed many languages so as System administrators do with different systems. Of course this means being able to play well with others. Sometimes, that&#8217;s easier said than done.</p>
<p>I have encountered such one of scenario that I need to connect remote SQL Server (secure behind FW) from LAMP (or MAMP) stack. My db server called db_server was located remotely. Access to db_server was restricted to another server, mid_server. For the development work, I was using my localhost (Mac). So I need to connect db_server from localhost via mid_server.</p>
<p>I divided work into two section &#8211; 1) Install and configure SQL Server (mssql) extension, freeTDS, on local to work with PHP/Apache, 2) Establish connection between my local Mac and Remote Secure SQL Server via Middle Ubuntu Server</p>
<h2>1. Installing MS SQL module (freeTDS) for PHP on Mac OS X</h2>
<p>I found solution in <a href="http://blog.benjaminwalters.net/?p=10" target="_blank">BENJAMIN WALTERS</a>&#8216;s blog. For archival reason, I copied his blog.</p>
<blockquote><p><!--BEGIN .entry-content .article--></p>
<div class="entry-content article">
<p><strong>Install FreeTDS</strong></p>
<ul>
<li>Create the directory /usr/local/freetds</li>
<li>Download the latest version of freetds (http://www.freetds.org/software.html)</li>
<li>Open a terminal window</li>
<li>Untar/zip the freetds file and cd into that directory in terminal
<ul>
<li>i/e cd ~/Downloads/freetds-0.82</li>
</ul>
</li>
<li>paste this in terminal
<pre class="brush: shell; gutter: true">./configure --prefix=/usr/local/freetds --sysconfdir=/usr/local/freetds/conf/freetds --disable-libiconv --disable-odbc</pre>
</li>
<li>type “make “and press enter</li>
<li>type “sudo make install “and press enter
<ul>
<li>Enter your password</li>
</ul>
</li>
<li>You’re done with freetds…..</li>
</ul>
<p><strong>Compile PHP</strong></p>
<ul>
<li>Download and untar/zip the latest source (http://php.net/downloads.php)</li>
<li>Cd into the php directory in terminal
<ul>
<li>i/e cd ~/Downloads/php-5.3.15</li>
</ul>
</li>
<li>Configure PHP
<ul>
<li>Type “./configure” and press enter</li>
</ul>
</li>
<li>Type “make” and press enter</li>
<li>Go into the mssql extension directory
<ul>
<li>i/e cd ~/Downloads/php-5.3.15/ext/mssql</li>
</ul>
</li>
<li>phpize it! (type phpize)</li>
<li>Configure mssql to run with freetds
<ul>
<li>Type
<pre>./configure --with-mssql=/usr/local/freetds</pre>
<p>and press enter</li>
</ul>
</li>
<li>Type “make” and press enter</li>
<li>Open finder and go to the mssql module directory (~/Downloads/php-5.3.6/ext/mssql/modules/)</li>
<li>Copy mssql.so to the extension directory of your php installation
<ul>
<li>MAMP on my machine is located here /Applications/MAMP/bin/php/php-5.3.6/lib/php/extensions/no-debug-non-zts-20090626/</li>
<li>Paste the mssql.so into this folder (there should be a bunch of other .so files)</li>
</ul>
</li>
<li>Go up a few directories to /Applications/MAMP/bin/php/php-5.3.6/conf/php.ini and open it.</li>
<li>Search for “extension=”</li>
<li>Paste “extension=mssql.so” on the line below the other extensions</li>
<li>Restart MAMP!</li>
</ul>
<p><strong>Test it!!!!!</strong></p>
</div>
</blockquote>
<p><strong>Configure freetds.conf</strong></p>
<ul>
<li>from
<pre>[global]
        # TDS protocol version
;   tds version = 4.2</pre>
</li>
<li>to
<pre>[global]
        # TDS protocol version
    tds version = 7.0</pre>
</li>
</ul>
<h2>2. Creating SSH tunnel between Mac and Remote Window Machine</h2>
<pre>ssh -f -N -L localhost:1433:db_server:1433 user@mid_server</pre>
<p>In which ssh will create and send to the background a ssh tunnel (-f option) without executing any remote commands (-N option) that begins at the localhost port 1433 (-L) terminates at the remote address and port (db_server:1433) and authenticates using the remote username at the remote location (user@mid_server).</p>
<p>This will simply forward all request comming on port 1433 of local machine to db_server on port 1433 via mid_server.</p>
<p>See more about SSH tunnel - <a href="http://en.wikipedia.org/wiki/Tunneling_protocol" target="_blank">Wikipedia Article</a>, <a href="http://www.nbcs.rutgers.edu/newdocs/samba/macosx/port_for.php" target="_blank">Rutgers article</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.krishnasunuwar.com.np/2013/05/connecting-remote-secure-sql-server-from-apachephp-using-freetds-and-ssh-tunnel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Running Django App in Amazon AWS EC2</title>
		<link>http://www.krishnasunuwar.com.np/2012/12/running-django-app-in-amazon-aws-ec2/</link>
		<comments>http://www.krishnasunuwar.com.np/2012/12/running-django-app-in-amazon-aws-ec2/#comments</comments>
		<pubDate>Thu, 06 Dec 2012 14:37:15 +0000</pubDate>
		<dc:creator>Krish</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.krishnasunuwar.com.np/?p=829</guid>
		<description><![CDATA[Running Django App in Amazon AWS EC2 is not tough job, unless you do it once ;-). I have setup Django App in Ubuntu 11 (Server), Django 1.4.2 in Amazon EC2. Based on my experience, I have documented process for my future reference.]]></description>
				<content:encoded><![CDATA[<p>Running Django App in Amazon AWS EC2 is not tough job, unless you do it once <img src='http://www.krishnasunuwar.com.np/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> . I have setup Django App in Ubuntu 11 (Server), Django 1.4.2 in Amazon EC2. Based on my experience, I have documented process for my future reference.</p>
<p>Amazon EC2 (Amazon Elastic Compute Cloud) cloud computing infrastructure offered by Amazon. It delivers scalable, pay-as-you-go compute capacity in the cloud. As name suggest the computing power is elastic and can be consumed as needed.</p>
<p>A EC2 machine is nothing but a bare machine. An Amazon Machine Image (AMI) is a machine bundled as an Image, with preconfigured software which you can start at moments notice.</p>
<p>This is rough guide how you can get Django App running in AWS EC2</p>
<p>Part 1: Setup Instance (Virtual Machine) and run it.</p>
<ol>
<li>Sign up for AWS Services (http://aws.amazon.com/ec2)</li>
<li>Login to your AWS Management Consol from (http://aws.amazon.com). As of this date (Dec 6 2012) the URL of console is https://console.aws.amazon.com/console/home</li>
<li>Select EC2 from the list</li>
<li>If not done, click on Launch Instance. For every virtual machine, Amazon calls Instance.</li>
<li>A wizard appear you to guide Instance Lunch. Select appropriate option, (I recommand to select Classic as it guides you through process). Go with Wizard &#8211; you need to select OS and version, setup data-center option, security rule and create public/private keypair. Important remember you create keypair and download.</li>
<li>Create keypair and save in your local drive (make sure you make it safe). You can grant 400 permission to that keypair file.</li>
<li>When you finish launching instance, it gives public DNS. It looks something like ec2-xx-xx-xxx-xxx.compute-1.amazonaws.com</li>
<li>Go to Instance (from AWS Management Console) and start machine (VM).</li>
</ol>
<div>Part 2: Installation of necessary software in your EC2 instance</div>
<div>Login to EC2 server. Amazon use public/private key authentication system. So you don&#8217;t need to provide password while connecting server. Remember you have to use ubuntu user for Ubutu OS.</div>
<pre class="brush: bash; gutter: true">$ssh -i /path/to/keypair.pem ubuntu@ec2-xx-xx-xxx-xx.compute-1.amazonaws.com</pre>
<div>If you are success to login, you will be greeted by welcome message. Now time to install softwares you need</div>
<div>
<pre class="brush: bash; gutter: true">$ sudo apt-get install mysql-server mysql-client
$ sudo apt-get install apache2
$ sudo apt-get install libapache2-mod-python
$ sudo apt-get install python-mysqldb
sudo apt-get install libapache2-mod-wsgi

$ wget http://www.djangoproject.com/download/1.0.2/tarball/
$ tar -xvzf Django-1.0.2-final.tzf
$ cd Django-1.0.2-final/
$ sudo python setup.py install</pre>
<pre class="brush: bash; gutter: true"></pre>
<p>Part 3: Configure Apache. The virtual host configuration looks like (/etc/apache2/yourhost). 
</p></div>
<p>&nbsp;</p>
<pre class="brush: bash; gutter: true">&lt;VirtualHost *:80&gt;
        ServerAdmin webadmin@you.com
	ServerName yourdomain.com
        DocumentRoot /path/to/yourdomain

        Alias  /static  /path/to/template/static/
        &lt;Directory /path/to/template/static&gt;
                Order deny,allow
                Allow from all
        &lt;/Directory&gt;

        Alias  /media /path/to/media/
        &lt;Directory /path/to/media&gt;
                Order deny,allow
                Allow from all
        &lt;/Directory&gt;

        WSGIScriptAlias / /path/to/wsgi/django.wsgi
        &lt;Directory /path/to/wsgi&gt;
                Order allow,deny
                Allow from all
        &lt;/Directory&gt;
        ErrorLog /var/log/apache2/error.log
        LogLevel warn
        CustomLog /var/log/apache2/access.log combined
&lt;/VirtualHost&gt;</pre>
<p>Create WSGI file to handle Django script. Make sure to put all your Django project files in /path/to/your/project/ location (see wsgi file below). Your django.wsgi file should be in /path/to/wsgi/ folder</p>
<pre class="brush: bash; gutter: true">import os, sys
sys.path.append(&#039;/path/to/your/&#039;)
sys.path.append(&#039;/path/to/your/project&#039;)
os.environ[&#039;DJANGO_SETTINGS_MODULE&#039;] = &#039;yourproject.settings&#039;

import django.core.handlers.wsgi

application = django.core.handlers.wsgi.WSGIHandler()</pre>
<p>Enable Apache Virtual Host</p>
<pre class="brush: bash; gutter: true">$a2ensite yourhost</pre>
<p>Hurry, try http://yourdomain.com</p>
<p><em>Note: Above process is based on Ubuntu 11 (Server), Django 1.4.2</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.krishnasunuwar.com.np/2012/12/running-django-app-in-amazon-aws-ec2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Installing PIL with JPEG support in Lion (10.7.5)</title>
		<link>http://www.krishnasunuwar.com.np/2012/10/installing-pil-with-jpeg-support-in-lion-10-7-5/</link>
		<comments>http://www.krishnasunuwar.com.np/2012/10/installing-pil-with-jpeg-support-in-lion-10-7-5/#comments</comments>
		<pubDate>Tue, 02 Oct 2012 05:58:20 +0000</pubDate>
		<dc:creator>Krish</dc:creator>
				<category><![CDATA[Django]]></category>
		<category><![CDATA[Mac]]></category>

		<guid isPermaLink="false">http://www.krishnasunuwar.com.np/?p=814</guid>
		<description><![CDATA[While working with Django, if you need to process jpeg image format you need to install libjpeg on top of PIL (Python Image Library). Process is fairly simple]]></description>
				<content:encoded><![CDATA[<p>While working with Django, if you need to process jpeg image format you need to install libjpeg on top of PIL (Python Image Library). Process is fairly simple, first install libjpeg and install PIL.</p>
<pre class="brush: bash; gutter: true">$ brew install libjpeg
$ pip install pil</pre>
<p>Make sure you have brew and pip installed. If not, follow process #1 and #2 below first.</p>
<p>1. Install brew with</p>
<pre class="brush: bash; gutter: true">$ ruby -e &quot;$(curl -fsSkL raw.github.com/mxcl/homebrew/go)&quot;</pre>
<p>Source: <a href="http://mxcl.github.com/homebrew/">http://mxcl.github.com/homebrew/</a></p>
<p>2. Install pip with</p>
<pre class="brush: bash; gutter: true">$ curl -O http://pypi.python.org/packages/source/p/pip/pip-1.0.tar.gz
$ tar xvfz pip-1.0.tar.gz
$ cd pip-1.0
$ python setup.py install # may need to be root</pre>
<p>Source: <a href="http://www.pip-installer.org/en/latest/installing.html">http://www.pip-installer.org/en/latest/installing.html</a><br />
Happy coding <img src='http://www.krishnasunuwar.com.np/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.krishnasunuwar.com.np/2012/10/installing-pil-with-jpeg-support-in-lion-10-7-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Few Correction on Samsung&#8217;s Feisty Ad</title>
		<link>http://www.krishnasunuwar.com.np/2012/09/my-few-correction-on-samsungs-feisty-ad/</link>
		<comments>http://www.krishnasunuwar.com.np/2012/09/my-few-correction-on-samsungs-feisty-ad/#comments</comments>
		<pubDate>Mon, 17 Sep 2012 04:24:00 +0000</pubDate>
		<dc:creator>Krish</dc:creator>
				<category><![CDATA[Lifestyle]]></category>

		<guid isPermaLink="false">http://www.krishnasunuwar.com.np/?p=805</guid>
		<description><![CDATA[Well, that's simply indigestible, so few correction on that Feisty Ad from my side. 

<img class="alignnone size-medium wp-image-806" title="samsung-v-iphone-640-1" src="http://www.krishnasunuwar.com.np/wp-content/uploads/2012/09/samsung-v-iphone-640-1-155x300.jpg" alt="" width="155" height="300" /> <br />
Go inside to see bigger image.]]></description>
				<content:encoded><![CDATA[<p>Android enabled phone are not bad devices, I wouldn&#8217;t say I&#8217;ll baycoat. Android is good OS so as Samsung Galaxy. But they are no par with iPhone. Apple products are about life style which define simplicity, elegance and beauty &#8211; an Art outcome from science input.</p>
<p>And meantime Samsung is busy comparing feature sets to prove superiority. Simple example, having galaxy phone with NFC is like having 10ft longer pant for 5 ft man. Oh, please say 10ft longer pant is better, <img src='http://www.krishnasunuwar.com.np/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> . A photocopy always is better than master copy, coz they can be created in more number/mass, is that Samsung&#8217;s logic?</p>
<p>The Feisty Ad made by Samsung is simply indigestible, so few correction on that from my side. After all Samsung prides longer list, why not some more</p>
<p><a href="http://www.krishnasunuwar.com.np/wp-content/uploads/2012/09/samsung-v-iphone-640-1.jpg"><img class="alignnone size-full wp-image-806" title="samsung-v-iphone-640-1" src="http://www.krishnasunuwar.com.np/wp-content/uploads/2012/09/samsung-v-iphone-640-1.jpg" alt="" width="500" /></a></p>
<p>Samsung Galaxy is great phone only if iPhone do not exists.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krishnasunuwar.com.np/2012/09/my-few-correction-on-samsungs-feisty-ad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fool giant apple scaring Apple</title>
		<link>http://www.krishnasunuwar.com.np/2012/08/fool-giant-apple-scaring-apple/</link>
		<comments>http://www.krishnasunuwar.com.np/2012/08/fool-giant-apple-scaring-apple/#comments</comments>
		<pubDate>Thu, 30 Aug 2012 05:32:45 +0000</pubDate>
		<dc:creator>Krish</dc:creator>
				<category><![CDATA[Lifestyle]]></category>

		<guid isPermaLink="false">http://www.krishnasunuwar.com.np/?p=801</guid>
		<description><![CDATA[<img title="Fool giant apple scaring Apple" src="http://i70.photobucket.com/albums/i88/s2krish/blog/fool_apple.jpg" alt="Fool giant apple scaring Apple" width="250px"/>]]></description>
				<content:encoded><![CDATA[<p><img title="Fool giant apple scaring Apple" src="http://i70.photobucket.com/albums/i88/s2krish/blog/fool_apple.jpg" alt="Fool giant apple scaring Apple" width="450px"/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.krishnasunuwar.com.np/2012/08/fool-giant-apple-scaring-apple/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AnythingSlider problem and fix</title>
		<link>http://www.krishnasunuwar.com.np/2012/07/anythingslider-problem-and-fix/</link>
		<comments>http://www.krishnasunuwar.com.np/2012/07/anythingslider-problem-and-fix/#comments</comments>
		<pubDate>Tue, 24 Jul 2012 07:03:20 +0000</pubDate>
		<dc:creator>Krish</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.krishnasunuwar.com.np/?p=797</guid>
		<description><![CDATA[Here's how you can fix AnythingSlider with Chrome (Version 20.0.1132)]]></description>
				<content:encoded><![CDATA[<p><a href="http://css-tricks.com/anythingslider-jquery-plugin/">AnythingSlider</a> is great slide jQuery slide plugin. I have been using it. However there&#8217;s bug when we use it with Chrome. I encounter bug with Chrome Version 20.0.1132.57. But applying quick fixed worked for me. In line number 64, find line like</p>
<pre class="brush: php; gutter: true">base.width =base.$win.width();</pre>
<p>Replace this line with</p>
<pre class="brush: php; gutter: true">base.width = (base.$el.width()) ? base.$el.width() : base.$win.width();</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.krishnasunuwar.com.np/2012/07/anythingslider-problem-and-fix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress upgrade breaks your code &#8211; Fatal error: Call to undefined function wpcf7_add_tag_generator()</title>
		<link>http://www.krishnasunuwar.com.np/2012/07/wordpress-upgrade-breaks-your-code-fatal-error-call-to-undefined-function-wpcf7_add_tag_generator/</link>
		<comments>http://www.krishnasunuwar.com.np/2012/07/wordpress-upgrade-breaks-your-code-fatal-error-call-to-undefined-function-wpcf7_add_tag_generator/#comments</comments>
		<pubDate>Sun, 08 Jul 2012 06:57:36 +0000</pubDate>
		<dc:creator>Krish</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.krishnasunuwar.com.np/?p=787</guid>
		<description><![CDATA[After upgrading Wordpress to 3.4.1, NGGallery stopped working. Here's how I fixed it]]></description>
				<content:encoded><![CDATA[<p>After upgrading WordPress to 3.4.1, NGGallery stopped working. It was throwing error like:</p>
<pre class="brush: php; gutter: true">ERROR: acube.jpg :
 Fatal error: Call to undefined function wpcf7_add_tag_generator() in /home/himalexc/public_html/wp-content/plugins/contact-form-7/modules/text.php on line 152</pre>
<p>I got it right with following changes:</p>
<p>In ngg-config.php.<br />
Find:</p>
<pre class="brush: php; gutter: true">require_once( WP_LOAD_PATH . &#039;wp-load.php&#039;);</pre>
<p>Replace with:</p>
<pre class="brush: php; gutter: true">require_once( WP_LOAD_PATH . &#039;wp-admin/admin.php&#039;);</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.krishnasunuwar.com.np/2012/07/wordpress-upgrade-breaks-your-code-fatal-error-call-to-undefined-function-wpcf7_add_tag_generator/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>iOS blogging</title>
		<link>http://www.krishnasunuwar.com.np/2012/05/ios-blogging/</link>
		<comments>http://www.krishnasunuwar.com.np/2012/05/ios-blogging/#comments</comments>
		<pubDate>Thu, 10 May 2012 05:54:54 +0000</pubDate>
		<dc:creator>Krish</dc:creator>
				<category><![CDATA[Lifestyle]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://krishnasunuwar.com.np/?p=780</guid>
		<description><![CDATA[Sending blog post from iPhone]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.krishnasunuwar.com.np/wp-content/uploads/2012/05/20120510-114011.jpg"><img class="" width="500" src="http://www.krishnasunuwar.com.np/wp-content/uploads/2012/05/20120510-114011.jpg" alt="20120510-114011.jpg" /></a></p>
<p>Sending blog post from iPhone</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krishnasunuwar.com.np/2012/05/ios-blogging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Typical Y Combinator Interview Questions</title>
		<link>http://www.krishnasunuwar.com.np/2012/04/ypical-y-combinator-interview-questions/</link>
		<comments>http://www.krishnasunuwar.com.np/2012/04/ypical-y-combinator-interview-questions/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 04:31:32 +0000</pubDate>
		<dc:creator>Krish</dc:creator>
				<category><![CDATA[Lifestyle]]></category>

		<guid isPermaLink="false">http://www.krishnasunuwar.com.np/?p=774</guid>
		<description><![CDATA[So what are you working on? Have you raised funding? What makes new users try you? What competition do you fear most? What’s the worst thing that has happened? Will you reincorporate as a US company? What’s an impressive thing you have done? Where is the rocket science here? Why did you pick this idea [...]]]></description>
				<content:encoded><![CDATA[<p>So what are you working on?</p>
<p>Have you raised funding?</p>
<p>What makes new users try you?</p>
<p>What competition do you fear most?</p>
<p>What’s the worst thing that has happened?</p>
<p>Will you reincorporate as a US company?</p>
<p>What’s an impressive thing you have done?</p>
<p>Where is the rocket science here?</p>
<p>Why did you pick this idea to work on?</p>
<p>Why do the reluctant users hold back?</p>
<p>Who would you hire or how would you add to your team?</p>
<p>What problems/hurdles are you anticipating?</p>
<p>Who is “the boss”?</p>
<p>What is the next step with the product evolution?</p>
<p>What obstacles will you face and how will you overcome them?</p>
<p>Who needs what you’re making?</p>
<p>How does your product work in more detail?</p>
<p>What are you going to do next?</p>
<p>What do you understand that others don’t?</p>
<p>Where do new users come from?</p>
<p>How big an opportunity is there?</p>
<p>Six months from now, what’s going to be your biggest problem?</p>
<p>What’s the funniest thing that has happened to you?</p>
<p>Tell us something surprising you have done?</p>
<p>Who are your competitors?</p>
<p>What’s new about what you make?</p>
<p>How many users do you have?</p>
<p>Why isn’t someone already doing this?</p>
<p>What are the top things users want?</p>
<p>What is your burn rate?</p>
<p>How do you know customers need what you’re making?</p>
<p>What domain expertise do you have?</p>
<p>What, exactly, makes you different from existing options?</p>
<p>What’s the conversion rate?</p>
<p>What systems have you hacked?</p>
<p>Who would use your product?</p>
<p>How will customers and/or users find out about you?</p>
<p>Why did your team get together?</p>
<p>In what ways are you resourceful?</p>
<p>What is your distribution strategy?</p>
<p>What has surprised you about user behaviour?</p>
<p>What part of your project are you going to build first?</p>
<p>What resistance will they have to trying you and how will you overcome it?</p>
<p>How are you understanding customer needs?</p>
<p>What’s the biggest mistake you have made?</p>
<p>Who might become competitors?</p>
<p>What do you understand about your users?</p>
<p>What is your user growth rate?</p>
<p>What are the key things about your field that outsiders don’t understand?</p>
<p>Who is going to be your first paying customer?</p>
<p>If your startup succeeds, what additional areas might you be able to expand into?</p>
<p>Who would be your next hire?</p>
<p>How do you know people want this?</p>
<p>Would you relocate to Silicon Valley?</p>
<p>What do you know about this space/product others don’t know?</p>
<p>How much money could you make per year?</p>
<p>How long can you go before funding?</p>
<p>How will you make money?</p>
<p>Will your team stick at this?</p>
<p>How much does customer acquisition cost?</p>
<p>How did your team meet?</p>
<p>Who in your team does what?</p>
<p>How are you meeting customers?</p>
<p>How many users are paying?</p>
<p>How is your product different?</p>
<p>Are you open to changing your idea?</p>
<p>How do we know your team will stick together?</p>
<p>What is your growth like?</p>
<p>Source: TechCrunch</p>
]]></content:encoded>
			<wfw:commentRss>http://www.krishnasunuwar.com.np/2012/04/ypical-y-combinator-interview-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Education, Experience &amp; Exposure &#8211; all it requires Nepal to go global</title>
		<link>http://www.krishnasunuwar.com.np/2012/03/education-experience-exposure-all-it-requires-nepal-to-go-global/</link>
		<comments>http://www.krishnasunuwar.com.np/2012/03/education-experience-exposure-all-it-requires-nepal-to-go-global/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 04:31:21 +0000</pubDate>
		<dc:creator>Krish</dc:creator>
				<category><![CDATA[IT Nepal]]></category>
		<category><![CDATA[engineers]]></category>
		<category><![CDATA[entrepreneurs]]></category>
		<category><![CDATA[IT challenge]]></category>
		<category><![CDATA[Nepal IT]]></category>

		<guid isPermaLink="false">http://www.krishnasunuwar.com.np/?p=763</guid>
		<description><![CDATA[Nepalese engineers are equally competent and smarter as their global counterpart. There are many engineers working across the globe, and also, there are engineers who are working for global companies from Nepal. How these people make presence of Nepal in global map?]]></description>
				<content:encoded><![CDATA[<p>In Monday’s lecturer, experiences of lecturer was one most interesting and inspiring. He told story of how he discovered key formula of 3 Es (Education, Experience and Exposure) to compete with fellow engineers from abroad, who despite of working at same level, were drawing much higher salary than him. It was when he worked in Lumbini with one of UN project as Project Manager.</p>
<p>I am in same dilemma that I can program software as good as of those programmers from Europe or US, but I still get paid 3/4 times less. Nepalese engineers are equally competent and smarter as their global counterpart. There are many engineers working across the globe, and also, there are engineers who are working for global companies from Nepal. There are many Nepalese like my lecturer and me. But we still do not have presence in global map. Ironically we are discriminated within/out of country. Here, ‘I’ and ‘My Lecturer’ represents fellow Nepalese engineers, professionals and businessmen.</p>
<p>This insisted me to think why Nepal is not been able to draw map in global IT landscape. Generally, IT industry of Nepal depends on white-level out-sourcing (sub contracting) job. Basically it is project basis, service oriented and short-term contract. Looking at economic level of our country, service-type job makes sense. However the nature of service we perform will not uplift the industry much higher. Country like ours never can compete globally because we simply lack volume. In economic term we lack labor endowment factor, we do not have population and capacity like India and China, where one company employee hundred thousand people. So, we have to learn lesson from smaller countries like Israel, Indonesia, Malaysia, Singapore, Korea and Chile. These countries are focusing on innovation and product development beating global competition. One of first social networking site, Friendster, was build by Malaysian. Facebook, todays top ranking social network site, came later and bought verities of social network related IP (Intellectual Property) right from Friendster, worth million dollars. One of most popular IM (Instant Massaging, or chat software) is build in Indonesia. Israel is R&amp;D hub; Chile is producing batches of IT entrepreneurs who are innovating industry. Fact that other countries are ripping benefit from booking industry, and, we read copy-paste story about them in Kantipur Daily, a week later.</p>
<p>Why we left behind? Answer is clear; we lack third E (Exposure). Nepalese people with exposure can do much better. My Lecturer realized lacking of third E (Exposure) and went to USA for further study. He worked for one of top company in USA and gained the exposure. Then he returned Nepal and started business with equity of Rs. 50,000, and now he oversees 18 ventures, which have annual turn over of Rs. 20 billion. He has run many projects in Lumbini in capacity of owner. Once in time, he used to be highly discriminated in the same place. Rundra Panday established software company, D2Hawkeye, in 2000. He focused medical industry build software to assist Medical Industry. Later sold company to Verisk Health in more than $100 million. He lived and studied USA, and he had US citizen on board. This is key, third E (exposure) to his success.</p>
<p>Example of My Lecturer and Rundra Pandey is hope for me (me = fellow working professionals) that we can make presence in global map. It is difficult but not impossible. Growth of our industry and individual complement each other. Looking history of IT industry of Nepal, we are relatively younger than India, China, Indonesia or Singapore. So it is natural for us to have lower exposure. But we cannot afford to wait so long to go edge. There are various groups of people who actually can play catalyst growth:</p>
<ol>
<li>People like my lecturer and Rudra Pandey – They have exposure at international level and they can sale better.</li>
<li>People like me (thousands of IT programmers, designers living and working in Nepal) – We need to utilize our foreign network, and make combined effort with their exposure and our expertise.</li>
<li>Government – To some extend, Govt. of Nepal, by introducing IT friendly policies (easy accept/pay money globally) to facilitate global scale marketing and exposure, can boost growth</li>
</ol>
<p><strong>My Lecturer</strong>: Bijay Rajbhandary, Chairman of CE. Initially he started CE with equity of Rs. 50,000, now he oversee 18 ventures, among them Ace Institute Management is one. His ventures have annual turnover of Rs. 20 billion. He is Director and Adjunct Faculty at Ace Institute Management and teaches Project Management to EMBA. His profile &#8211; <a title="Bijay Rajbhandary" href="http://www.ce-construction.com/management.php#bijay">http://www.ce-construction.com/management.php#bijay</a></p>
<p><strong>Rundra Pandey</strong>: Executive Chairman of Deearwalk, Inc, company he founded after selling D2Hawkeye. His profile -<a title="Rudra Pandey" href="http://www.deerwalk.com/executive_team#rudra_pandey">http://www.deerwalk.com/executive_team#rudra_pandey</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.krishnasunuwar.com.np/2012/03/education-experience-exposure-all-it-requires-nepal-to-go-global/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
