<?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>Personal Blog - Dushyant</title>
	<atom:link href="http://controlyourproject.com/blog/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://controlyourproject.com/blog</link>
	<description>Ramblings about everything around me . . . .</description>
	<lastBuildDate>Thu, 29 Jul 2010 09:19:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>DIY &#8211; Digital Picture Frame</title>
		<link>http://controlyourproject.com/blog/2010/07/diy-digital-picture-frame/</link>
		<comments>http://controlyourproject.com/blog/2010/07/diy-digital-picture-frame/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 10:45:00 +0000</pubDate>
		<dc:creator>Dushyant</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[anyremote]]></category>
		<category><![CDATA[Digital Picture Frame]]></category>
		<category><![CDATA[DIY]]></category>
		<category><![CDATA[Do-it-yourself]]></category>
		<category><![CDATA[DPF]]></category>
		<category><![CDATA[Mythbuntu]]></category>
		<category><![CDATA[MythTV]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://controlyourproject.com/blog/?p=554</guid>
		<description><![CDATA[I had an old Dell Inspiron 6400 lying around at home and decided to install Linux on it – had been dabbling with Linux for many years – but as it was never the only operating system on the computer – didn’t really get ahead with it. Also the plan was to make a multimedia center that I could control with my mobile.]]></description>
			<content:encoded><![CDATA[<p>I had an old Dell Inspiron 6400 lying around at home and decided to install Linux on it – had been dabbling with Linux for many years – but as it was never the only operating system on the computer – didn’t really get ahead with it. Also the plan was to make a multimedia center that I could control with my mobile. I had been doing this on my mac using Salling Clicker, but had no idea what I would do with the Dell – so, as is usual in such cases – Google came to my help.</p>
<p>The feature-set I had planned includes:</p>
<ol>
<li>Digital Photo Frame – slideshow starts as soon as the computer boots</li>
<li>Media Centre (controlled via Bluetooth mobile):</li>
<li>Control wi-fi router through Bluetooth mobile</li>
<li>E-book server - Serve e-books to the nook over wi-fi</li>
<li>Remote access via ssh and vnc</li>
<li><em>Sync music, videos and photos from usb HDD (to-do)</em></li>
<li><em> </em><em>Send commands via email – e.g start slideshow, suspend, start/ stop torrents, etc. (to-do)</em></li>
<li>Act as a wireless server for my macbook time machine</li>
<li>Display clock while in slideshow mode</li>
</ol>
<p><span id="more-554"></span></p>
<h1>The Software</h1>
<p>There are many small linux distributions available for this purpose and the ones I liked and tested include:</p>
<ol>
<li>Geexbox – very small, very nice, was perfect for the job – except for the fact that it was based on Ubuntu 9 – and to my chagrin, the dell had an ATI Radeon X1100 video card – which is not compatible with Ubuntu 9 (out of the box). I have found some options that would allow me to use geexbox now, but have moved on</li>
<li>XBMC – another very nice OS – but same problem as Geexbox</li>
<li>Linux MCE – Could not download this as the download links are offline, but reviews on websites are extremely good</li>
<li>Ubuntu 10.04 – Finally gave up on smaller distributions and installed the full version of Ubuntu, very easy installation, worked out-of-the-box and I loved it. Was using a software called Freevo to run the multimedia center – unfortunately it was crashing regularly, specially on downloaded videos. So the search continued</li>
<li><strong>Mythbuntu 10.04 – finally </strong>settled on Mythbuntu, its based on Ubuntu 10.04, has most of the multimedia software required pre-installed and has the MythTV interface for the multimedia centre</li>
</ol>
<h2>Install MythUbuntu 10.04 (Lucid Lynx)</h2>
<p>Really easy – was a breeze – download the latest MythUbuntu live CD from the following link:</p>
<p><a href="http://www.mythbuntu.org/downloads">http://www.mythbuntu.org/downloads</a></p>
<p>Boot from the Live CD or USB drive and install on your hard-disk using instructions on the following pages:</p>
<p><a href="http://www.mythtvbook.com/wiki/The_Easy_Way:_Installing_MythBuntu">http://www.mythtvbook.com/wiki/The_Easy_Way:_Installing_MythBuntu</a></p>
<p><a href="http://www.youtube.com/watch?v=Gw1OUT70iGo">http://www.youtube.com/watch?v=Gw1OUT70iGo</a></p>
<p>In addition for the system to support my projector, I had to set ‘nomodeset’ for the linux kernel, you may not have to so try without the following. Instructions as follows (courtesy <a href="http://techies-r-us.com.au/blog/?p=483">http://techies-r-us.com.au/blog/?p=483</a>):</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">nano</span> <span style="color: #000000; font-weight: bold;">/</span>etc<span style="color: #000000; font-weight: bold;">/</span>default<span style="color: #000000; font-weight: bold;">/</span>grub</pre></div></div>

<p>Change<br />
GRUB_CMDLINE_LINUX=&#8221;"<br />
to<br />
GRUB_CMDLINE_LINUX=&#8221;nomodeset&#8221;<br />
Then run</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> update-grub</pre></div></div>

<p>Restart</p>
<h2>Install supporting packages &amp; configure</h2>
<p>For Mythbuntu to work as you want, you need to install additional packages (you will need an internet connection). These can be installed by running the following commands in ‘Terminal’ (courtesy <a href="http://xtremediary.blogspot.com/2010/04/to-do-after-installing-ubuntu-1004.html">http://xtremediary.blogspot.com/2010/04/to-do-after-installing-ubuntu-1004.html</a> and <a href="http://www.my-guides.net/en/guides/linux/193-ubuntu-lucid-lynx-1004-post-installation-guide">http://www.my-guides.net/en/guides/linux/193-ubuntu-lucid-lynx-1004-post-installation-guide</a>)</p>
<ol>
<li>Music Player:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> xmms2 xmms2-plugin-all</pre></div></div>

</li>
<li>Some extra codecs:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> ubuntu-restricted-extras</pre></div></div>

</li>
<li>Text Editor:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> medit</pre></div></div>

</li>
<li>Screen Configuration:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> arandr</pre></div></div>

</li>
<li>Sync support:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> rsync</pre></div></div>

</li>
<li>Ebook Management:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> calibre</pre></div></div>

</li>
<li>Media Player (optional as you would be using mythTV most of the time):

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> <span style="color: #c20cb9; font-weight: bold;">mplayer</span></pre></div></div>

</li>
<li>VNC Server (allows you to control the system from another computer):

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> vino</pre></div></div>

</li>
<li>On-Screen Clock (for slideshow):

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> osd_clock</pre></div></div>

</li>
</ol>
<h3>Configuration:</h3>
<p>Run Applications -&gt; Settings -&gt; Update Manager</p>
<p>Update the system – requires an internet connection</p>
<p>Run Applications -&gt; Settings -&gt; Mythbuntu Control Center</p>
<p style="text-align: center;"><a href="http://controlyourproject.com/blog/wp-content/uploads/2010/07/Screen-shot-2010-07-16-at-1.02.35-PM.png"><img class="size-medium wp-image-556 aligncenter" title="Mythbuntu Control Centre" src="http://controlyourproject.com/blog/wp-content/uploads/2010/07/Screen-shot-2010-07-16-at-1.02.35-PM-300x264.png" alt="" width="240" height="211" /></a></p>
<p>Go to Plugins and unselect all the plugins except MythVideo and MythGallery (unless you want to use other features – I personally didn’t like the MythMusic plugin as it crashed a lot and I don’t use live TV, so MythArchive and MythMovies were no use to me)</p>
<p>Next step would be to configure the folders for Myth TV Video and Gallery plugins, its very simple and has a full graphical interface. You can get more details at:</p>
<p><a href="http://www.mythtv.org/wiki/MythVideo">http://www.mythtv.org/wiki/MythVideo</a></p>
<p><a href="http://www.mythtv.org/wiki/MythGallery">http://www.mythtv.org/wiki/MythGallery</a></p>
<p>The music player can be configured by running the following in terminal:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="bash" style="font-family:monospace;">nyxmms2 server config output.plugin alsa
nyxmms2 server config playlist.repeat_all <span style="color: #000000;">1</span>
nyxmms2 server config effect.order.0 normalize</pre></td></tr></table></div>

<p>To allow your Bluetooth mobile to shutdown and reboot the system, you need to perform the following on terminal:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> visudo</pre></div></div>

<p>Add the following line to the end of the file and save:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">%</span>admin ALL = NOPASSWD: <span style="color: #000000; font-weight: bold;">/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>shutdown, <span style="color: #000000; font-weight: bold;">/</span>sbin<span style="color: #000000; font-weight: bold;">/</span>reboot</pre></div></div>

<h2>Install and Configure anyremote</h2>
<p>Anyremote (<a href="http://anyremote.sourceforge.net/">http://anyremote.sourceforge.net/</a>) allows the linux box to accept commands from a Bluetooth-and-JAVA-enabled phone. This was the most complex piece to configure, only because it has so many functions – also since I didn’t know any shell-scripting when I started the project – I had to learn everything from scratch.</p>
<p>It was easy to install:</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">sudo</span> <span style="color: #c20cb9; font-weight: bold;">aptitude</span> <span style="color: #c20cb9; font-weight: bold;">install</span> anyremote</pre></div></div>

<p>The difficult part was getting the configuration file ready to do all I wanted it to do and basically ensure that I did not have to attach a keyboard to my frame EVER (the file is still under development and I&#8217;ll keep updating this post as and when I make changed).<br />
It currently has the following functions:</p>
<ol>
<li>Control the media center application (MythTV)</li>
<li>Control the music player (xmms2)</li>
<li>Start slideshow</li>
<li>Change screen modes – laptop only, projector only and mirror</li>
<li>Control the 3G-Wi-Fi router</li>
<li>Shutdown screens, suspend laptop, reboot laptop, shutdown, etc</li>
</ol>
<p>Here’s the configuration file:<br />
<a href='http://controlyourproject.com/blog/wp-content/uploads/2010/07/Mythtv.cfg_.zip'>Download Mythtv.cfg</a></p>
<h2>Run slideshow and anyremote on startup</h2>
<p>You can add the following commands in Applications-&gt;Settings-&gt;Sessions and Startup</p>
<p><a href="http://controlyourproject.com/blog/wp-content/uploads/2010/07/Screen-shot-2010-07-16-at-1.59.35-PM.png"><img class="aligncenter size-medium wp-image-569" title="Sessions and Startup" src="http://controlyourproject.com/blog/wp-content/uploads/2010/07/Screen-shot-2010-07-16-at-1.59.35-PM-265x300.png" alt="" width="265" height="300" /></a><a href="http://controlyourproject.com/blog/wp-content/uploads/2010/07/Screen-shot-2010-07-16-at-2.00.06-PM.png"><img class="aligncenter size-medium wp-image-570" title="Auto Start" src="http://controlyourproject.com/blog/wp-content/uploads/2010/07/Screen-shot-2010-07-16-at-2.00.06-PM-300x224.png" alt="" width="300" height="224" /></a></p>
<ol>
<li>Anyremote:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">anyremote <span style="color: #660033;">-f</span> ~<span style="color: #000000; font-weight: bold;">/</span>Documents<span style="color: #000000; font-weight: bold;">/</span>MythTV.cfg</pre></div></div>

</li>
<li>Slideshow:

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;">~<span style="color: #000000; font-weight: bold;">/</span>Documents<span style="color: #000000; font-weight: bold;">/</span>Slideshow.sh</pre></div></div>

</li>
</ol>
<p>This assumes that the Slideshow and MythTV.cfg files are in your Documents folder.</p>
<h2>Additional Script Files</h2>
<p>Slideshow</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">#! /bin/sh</span>
xrandr <span style="color: #660033;">--output</span> VGA-<span style="color: #000000;">0</span> <span style="color: #660033;">--off</span> <span style="color: #660033;">--output</span> LVDS <span style="color: #660033;">--mode</span> 1440x900 <span style="color: #660033;">--pos</span> 0x0 <span style="color: #660033;">--rotate</span> normal <span style="color: #660033;">--output</span> S-video <span style="color: #660033;">--off</span>
<span style="color: #c20cb9; font-weight: bold;">xset</span> <span style="color: #660033;">-dpms</span>
<span style="color: #c20cb9; font-weight: bold;">xset</span> s noblank
<span style="color: #c20cb9; font-weight: bold;">xset</span> s off
&nbsp;
<span style="color: #c20cb9; font-weight: bold;">sleep</span> <span style="color: #000000;">1</span>
mythfrontend<span style="color: #000000; font-weight: bold;">&amp;</span>
<span style="color: #c20cb9; font-weight: bold;">sleep</span> <span style="color: #000000;">5</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;jump mythgallery&quot;</span> <span style="color: #000000; font-weight: bold;">|</span>nc <span style="color: #660033;">-q</span> <span style="color: #000000;">0</span> localhost <span style="color: #000000;">6546</span>
<span style="color: #c20cb9; font-weight: bold;">sleep</span> <span style="color: #000000;">1</span>
<span style="color: #7a0874; font-weight: bold;">echo</span> <span style="color: #ff0000;">&quot;key r&quot;</span> <span style="color: #000000; font-weight: bold;">|</span>nc <span style="color: #660033;">-q</span> <span style="color: #000000;">0</span> localhost <span style="color: #000000;">6546</span>
osd_clock <span style="color: #660033;">-c</span> white <span style="color: #660033;">-b</span> <span style="color: #660033;">-r</span> <span style="color: #660033;">-F</span> <span style="color: #ff0000;">&quot;%l:%M %p&quot;</span> <span style="color: #660033;">-f</span> <span style="color: #ff0000;">&quot;-*-comic sans ms-medium-*-normal-*-*-*-*-*-*-*-*&quot;</span></pre></div></div>

<p>I&#8217;ve probably missed quite a few references &#8211; so thanks to google and ubuntu forums for all the help I garnered from them.</p>
<h1>The Hardware</h1>
<p>Once you have setup the software, you can start to disassemble your laptop and “frame” it. This step depends on your laptop model and manufacturer, and you can find many directions on the net (again google is your best friend). I would suggest, you try to find the guide for your laptop before jumping in as there are many hidden screws and you’re liable to break something (I know I did, missed one screw on the front side of the laptop and forced open the casing – luckily only the casing broke)</p>
<p>The first step was to buy a frame. Bought a ready-made frame:</p>
<p style="text-align: center;"><a href="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1760.jpg"><img class="aligncenter size-full wp-image-558" title="Frame" src="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1760.jpg" alt="" width="500" height="337" /></a></p>
<p>Asked a carpenter to build a box to fit behind the frame. Next was to open the laptop and detach the screen so that it can be pasted on the back.</p>
<p style="text-align: center;"><a href="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1757.jpg"><img class="aligncenter size-full wp-image-557" title="Opened laptop" src="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1757.jpg" alt="" width="500" height="337" /></a></p>
<p>To make space, I also removed the battery, DVD Drive, keyboard, trackpad, etc etc</p>
<p style="text-align: center;"><a href="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1770.jpg"><img class="aligncenter size-full wp-image-561" title="Junk" src="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1770.jpg" alt="" width="500" height="337" /></a></p>
<p>I had to add two USB-powered fans as my CPU was getting very hot &#8211; later found out that was because of a 1&#8243; thick layer of dust in the heatsink fan. Be sure to check that.</p>
<p style="text-align: center;"><a href="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1775.jpg"><img class="aligncenter size-full wp-image-562" title="Fan 1" src="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1775.jpg" alt="" width="500" height="337" /></a></p>
<p style="text-align: center;"><a href="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1775.jpg"></a><a href="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1776.jpg"><img class="aligncenter size-full wp-image-563" title="Fan 2" src="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1776.jpg" alt="" width="500" height="337" /></a>The next step was to insert the CPU in to the box, I had asked the carpenter to make two large cutouts at the back &#8211; this allowed for additional ventilation as well as access to the power switch.</p>
<p style="text-align: center;"><a href="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1777.jpg"><img class="aligncenter size-full wp-image-564" title="CPU Box" src="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1777.jpg" alt="" width="500" height="337" /></a></p>
<p>The last part was mounting the LCD on the frame &#8211; this is the most delicate step and must be done extremely carefully. I tried to stick it using FeviBond, araldite, quickfix, et al. However was finally successful with strong 2-sided tape. Was able to buy a roll from a car accessories shop. Do NOT use the one which you get in stationery shops &#8211; that does not work and the LCD may slip after some time.</p>
<p style="text-align: center;"><a href="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1781.jpg"><img class="aligncenter size-full wp-image-567" title="Mounting the LCD" src="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1781.jpg" alt="" width="500" height="337" /></a></p>
<p style="text-align: center;"><a href="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1781.jpg"></a><a href="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1780.jpg"><img class="aligncenter size-full wp-image-566" title="LCD Front" src="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1780.jpg" alt="" width="500" height="337" /></a></p>
<p>Finally, you can screw-in the front of the frame to the box and switch on . . . ta daa</p>
<p style="text-align: center;"><a href="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1794.jpg"><img class="aligncenter size-full wp-image-568" title="Final Frame" src="http://controlyourproject.com/blog/wp-content/uploads/2010/07/IMG_1794.jpg" alt="" width="500" height="337" /></a></p>
<p>Phew . . .</p>
]]></content:encoded>
			<wfw:commentRss>http://controlyourproject.com/blog/2010/07/diy-digital-picture-frame/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Article Published in Energetica India</title>
		<link>http://controlyourproject.com/blog/2010/07/article-published-in-energetica-india/</link>
		<comments>http://controlyourproject.com/blog/2010/07/article-published-in-energetica-india/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 06:47:48 +0000</pubDate>
		<dc:creator>Dushyant</dc:creator>
				<category><![CDATA[Personal]]></category>

		<guid isPermaLink="false">http://controlyourproject.com/blog/?p=531</guid>
		<description><![CDATA[Yours truly has entered the publishing domain &#8211; first (and probably last article) published in a REAL magazine. An article written by me on &#8220;Financing Solar Project in India&#8221; has been published in Energetica India&#8217;s May/June 2010 issue. Can view it on: http://www.energetica21.com/digital/revistas/india09.html#/51/ Also attached here for reference http://controlyourproject.com/blog/wp-content/uploads/2010/07/Article-in-Energetica.pdf]]></description>
			<content:encoded><![CDATA[<p>Yours truly has entered the publishing domain &#8211; first (and probably last article) published in a REAL magazine.</p>
<p>An article written by me on &#8220;Financing Solar Project in India&#8221; has been published in Energetica India&#8217;s May/June 2010 issue. Can view it on:</p>
<p><a href="http://www.energetica21.com/digital/revistas/india09.html#/51/">http://www.energetica21.com/digital/revistas/india09.html#/51/</a></p>
<p>Also attached here for reference <img src='http://controlyourproject.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p><a href="http://controlyourproject.com/blog/wp-content/uploads/2010/07/Article-in-Energetica.pdf"><img class="aligncenter size-medium wp-image-533" title="Energetica - Cover" src="http://controlyourproject.com/blog/wp-content/uploads/2010/07/Energetica-Cover-212x300.png" alt="" width="212" height="300" /></p>
<p>http://controlyourproject.com/blog/wp-content/uploads/2010/07/Article-in-Energetica.pdf</a></p>
]]></content:encoded>
			<wfw:commentRss>http://controlyourproject.com/blog/2010/07/article-published-in-energetica-india/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Unpacking my nook</title>
		<link>http://controlyourproject.com/blog/2010/04/unpacking-my-nook/</link>
		<comments>http://controlyourproject.com/blog/2010/04/unpacking-my-nook/#comments</comments>
		<pubDate>Tue, 27 Apr 2010 04:51:36 +0000</pubDate>
		<dc:creator>Dushyant</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[barnes and noble]]></category>
		<category><![CDATA[ebook reader]]></category>
		<category><![CDATA[gadgets]]></category>
		<category><![CDATA[nook]]></category>

		<guid isPermaLink="false">http://controlyourproject.com/blog/?p=523</guid>
		<description><![CDATA[Apologies for the bad quality of the photographs – used my blackberry as I was too lazy to get out my entire setup . . . . Even the cover is beautiful . . . Outside the plastic case Even the charger is so cute (it&#8217;s the small white thing on the top right) Nook [...]]]></description>
			<content:encoded><![CDATA[<p>Apologies for the bad quality of the photographs – used my blackberry as I was too lazy to get out my entire setup . . . .</p>
<p><img src="http://controlyourproject.com/blog/wp-content/uploads/2010/04/042710_0451_Unpackingmy1.jpg" alt="" /></p>
<p><span id="more-523"></span></p>
<p>Even the cover is beautiful . . .</p>
<p><img src="http://controlyourproject.com/blog/wp-content/uploads/2010/04/042710_0451_Unpackingmy2.jpg" alt="" /></p>
<p>Outside the plastic case</p>
<p><img src="http://controlyourproject.com/blog/wp-content/uploads/2010/04/042710_0451_Unpackingmy3.jpg" alt="" align="left" /></p>
<p>Even the charger is so cute (it&#8217;s the small white thing on the top right)</p>
<p><img src="http://controlyourproject.com/blog/wp-content/uploads/2010/04/042710_0451_Unpackingmy4.jpg" alt="" /></p>
<p>Nook in its case</p>
<p><img src="http://controlyourproject.com/blog/wp-content/uploads/2010/04/042710_0451_Unpackingmy5.jpg" alt="" /></p>
<p>Ta . . da . . .</p>
<p><img src="http://controlyourproject.com/blog/wp-content/uploads/2010/04/042710_0451_Unpackingmy6.jpg" alt="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://controlyourproject.com/blog/2010/04/unpacking-my-nook/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Bought a Car . . . . . . Finally</title>
		<link>http://controlyourproject.com/blog/2010/04/bought-a-car-finally/</link>
		<comments>http://controlyourproject.com/blog/2010/04/bought-a-car-finally/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 06:11:50 +0000</pubDate>
		<dc:creator>Dushyant</dc:creator>
				<category><![CDATA[ISB]]></category>

		<guid isPermaLink="false">http://controlyourproject.com/blog/?p=514</guid>
		<description><![CDATA[Finally bought a car: For those who don&#8217;t know the full story: http://controlyourproject.com/blog/2010/04/buying-a-car/]]></description>
			<content:encoded><![CDATA[<p>Finally bought a car:</p>
<p><a href="http://controlyourproject.com/blog/wp-content/uploads/2010/04/27960_418433953593_769153593_5184001_8364073_n.jpeg"><img class="aligncenter size-full wp-image-515" title="27960_418433953593_769153593_5184001_8364073_n" src="http://controlyourproject.com/blog/wp-content/uploads/2010/04/27960_418433953593_769153593_5184001_8364073_n-e1272262286970.jpeg" alt="" width="372" height="416" /></a></p>
<p>For those who don&#8217;t know the full story: <a title="http://controlyourproject.com/blog/2010/04/buying-a-car/" href="http://controlyourproject.com/blog/2010/04/buying-a-car/">http://controlyourproject.com/blog/2010/04/buying-a-car/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://controlyourproject.com/blog/2010/04/bought-a-car-finally/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Buying a Car</title>
		<link>http://controlyourproject.com/blog/2010/04/buying-a-car/</link>
		<comments>http://controlyourproject.com/blog/2010/04/buying-a-car/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 03:34:04 +0000</pubDate>
		<dc:creator>Dushyant</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Car Loan]]></category>
		<category><![CDATA[Chevrolet Beat]]></category>
		<category><![CDATA[HDFC]]></category>
		<category><![CDATA[ICICI]]></category>
		<category><![CDATA[Indian School of Business]]></category>
		<category><![CDATA[ISB]]></category>
		<category><![CDATA[Maruti Ritz]]></category>

		<guid isPermaLink="false">http://controlyourproject.com/blog/2010/04/buying-a-car/</guid>
		<description><![CDATA[Hundreds of people buy cars every day in India – who would have thought that the process was so crazy – or maybe it was just me. My tryst with this process started about 10 months ago: I had just landed myself with a job in Gurgaon, and anyone who&#8217;s been in Gurgaon knows that [...]]]></description>
			<content:encoded><![CDATA[<p>Hundreds of people buy cars every day in India – who would have thought that the process was so crazy – or maybe it was just me. My tryst with this process started about 10 months ago:</p>
<p>I had just landed myself with a job in Gurgaon, and anyone who&#8217;s been in Gurgaon knows that you cannot survive here without a means of transportation – as there is no public transportation to speak of. I had seen the Ritz while in Shimla a couple of days earlier, and had liked the car. It was the &#8220;new kid on the block&#8221; and everyone was after one – and hence the models we wanted weren&#8217;t available. We scoured through the showroom in Gurgaon till we found one which had what we wanted – a Blue Ritz Ldi (diesel) model. We promptly booked the car – using Sonali&#8217;s debit card – and then started the looooong process.</p>
<p><span id="more-462"></span></p>
<p>The showroom managers had told me getting a loan was very easy – and I was pretty confident that it should not be a problem – I had a substantial income before ISB, and my accounts had money before I went to ISB – but there lay the fallacy. The money was in my account one and a half years back, and during the previous year in ISB, I had whittled down my savings and in effect there was no money in my accounts now. Also since I had just joined the workforce – I could not back it up with 6 months of payslips – someone please explain to the banks what a sabbatical means and how you do not earn money while studying!! So – my initial applications through the car dealership to HDFC, Kotak, SBI were rejected summarily. I decided to take matters into my hands and applied directly to ICICI – I had an account with them for the past 5 years and had maintained a healthy balance all throughout (except the last one year – of course); and the officials decided that they would see only the last one year&#8217;s statement. So there was another rejection . . . .  however after endless negotiations, and providing statements of my joint account with papa, the loan was finally approved – albeit for 85% of the ex-showroom price instead of the normal 90-95%.</p>
<p>So with an SMS approval in hand – I went to the showroom; and lo and behold – the process had taken so much time – they had sold &#8220;our&#8221; car to someone else and now there was a waiting for 2 months for a &#8220;Blue Ritz Ldi&#8221;. Till now the showroom manager was after my life to take the car, and now the bank officer was after my life – unfortunately before there was a car and NO loan approval; now there was a loan approval by NO car.</p>
<p>To make matters worse – the officials at ICICI bank checked my IT returns in Delhi and found no record – obvious to me as they were filed in Shimla. So they came back to me and revoked the loan application saying that I had forged my IT returns!! Now NO loan AND NO car. So we had to cancel the booking – leading to another issue – the booking was in the name of &#8220;Dushyant Ahuja&#8221; and the payment was made in the name of &#8220;Sonali Mehta&#8221;. They didn&#8217;t have any problems while taking the money – but to refund they needed a &#8220;relationship proof&#8221;. Wonder what happens to people who&#8217;re living together or haven&#8217;t registered their marriage. Anyways, as we had registered our marriage, after almost two months of booking a car, we came home with the money back.</p>
<p>Sick and tired of the process – I decided to wait till I had my 6-month payslips. Luckily, HDFC decided to setup a pre-approved loan on my salary account. Also by now the Chevrolet Beat had come into the market – and we liked it better. So after an initial recce of different cars; a few test-drives and we decided on the Beat – however this time did not book the car till my loan was finalised. Luckily, as the loan was pre-approved it was approved (!). Of course – the pre-approval was for 4,75,000; and the approval came for 3,78,000 – hahahaha (that was a maniacal laughter). Anyways – booked the car – but how can things be so easy? The loan could not be disbursed till I gave them three post-dated cheques (from my salary account) – and my cheque-book had just one leaf. SO had to order a new cheque-book from HDFC as they don&#8217;t give any loose leaves and the wait started yet again. While waiting HDFC decided to increase their interest rates by 0.5%, and the loan which was approved at 10% may go up to 10.5% <img src='http://controlyourproject.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> .</p>
<p>Luckily the wait was just for a couple of days, and the cheque book came in yesterday. So hopefully, today the loan would be disbursed and I&#8217;ll be a proud owner of a brand new car AND a brand new EMI. . . .</p>
<p>Wish me luck.</p>
<hr />Update: 6:10 pm April 22:</p>
<p>Yesterday, the officer who was supposed to collect the papers was out of town &#8211; so the task was delegated to someone else. He had his own clients first &#8211; so came to me at 6:30 last evening. So the entire process was delayed by one more day &#8211; the papers reached the concerned officer today and the loan disbursement will only happen tonight &#8211; which means the dealer will get the money tomorrow morning and I don&#8217;t get the car today.</p>
<p>To complicate matters &#8211; I&#8217;m leaving for Jaipur tonight and won&#8217;t be here the entire day tomorrow. So, the car should come day after tomorrow. (Fingers crossed)</p>
]]></content:encoded>
			<wfw:commentRss>http://controlyourproject.com/blog/2010/04/buying-a-car/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Sausages with Mashed Potatoes</title>
		<link>http://controlyourproject.com/blog/2010/04/sausages-with-mashed-potatoes/</link>
		<comments>http://controlyourproject.com/blog/2010/04/sausages-with-mashed-potatoes/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 12:50:48 +0000</pubDate>
		<dc:creator>Dushyant</dc:creator>
				<category><![CDATA[Recipes]]></category>
		<category><![CDATA[potatoes]]></category>

		<guid isPermaLink="false">http://controlyourproject.com/blog/?p=460</guid>
		<description><![CDATA[Another yummy dish I prepared &#8211; got the basic recipe from the net &#8211; modified to suit &#8220;Indian conditions&#8221; Ingredients 8 meaty pork sausages English mustard to serve For the gravy: 700 g onions, sliced thinly 1 pinch sugar 2 tablespoons oil 25 g butter 1 teaspoon plain flour 600 ml brown ale 600 ml [...]]]></description>
			<content:encoded><![CDATA[<p>Another yummy dish I prepared &#8211; got the basic recipe from the net &#8211; modified to suit &#8220;Indian conditions&#8221;</p>
<h2>Ingredients</h2>
<div id="_mcePaste">
<ul>
<li>8 meaty pork sausages</li>
<li>English mustard to serve</li>
<li>For the gravy:</li>
<li>700 g onions, sliced thinly</li>
<li>1 pinch sugar</li>
<li>2 tablespoons oil</li>
<li>25 g butter</li>
<li>1 teaspoon plain flour</li>
<li>600 ml brown ale</li>
<li>600 ml fresh beef stock</li>
<li>1/2 star anise</li>
<li>2 cloves</li>
<li>2 fresh bay leaves</li>
</ul>
</div>
<div id="_mcePaste">For the mashed potatoes:</div>
<div id="_mcePaste">
<ul>
<li>900 g floury main crop potatoes,, peeled and cut into chunks</li>
<li>55 g butter</li>
<li>2-3 tablespoons milk</li>
<li>salt and freshly ground black pepper</li>
</ul>
</div>
<p><span id="more-460"></span></p>
<div><strong>Method</strong></div>
<div id="_mcePaste">
<ol>
<li>To make the beer and onion gravy, heat the oil and the butter in a large, heavy based saucepan.</li>
<li>Add the onions and sugar and cook over a low heat for 15-20 minutes, stirring now and then, until soft and richly caramelised.</li>
<li>Stir in the flour and cook for 1 minute.</li>
<li>Stir in the beer, beef stock, star anise, cloves and bay leaves and boil vigorously until reduced to a rich, glossy sauce &#8211; about 20 minutes in a large sauté pan.</li>
<li>Remove the star anise, bayleaves and cloves (if you can find them) from the gravy and season to taste with some salt and pepper.</li>
<li>For the sausages and mashed potato, cook the potatoes in boiling salted water for 20 minutes until soft.</li>
<li>Then after about 10 minutes, heat the oil for the sausages in a large frying pan. Add the sausages and fry them over a medium heat for 8-10 minutes, turning now and then, until nicely browned and cooked through.</li>
<li>Drain the potatoes and mash until smooth &#8211; a potato ricer does this really well. Beat in the butter with some seasoning and enough milk to make a smooth, creamy mash.</li>
<li>Spoon the mashed potatoes onto warmed plates and rest the sausages alongside. Pour over some of the gravy and serve with a good spoonful of English mustard.</li>
</ol>
</div>
<h2>Tips for Indian tastes</h2>
<ol>
<li>Instead of Beef Stock &#8211; put in two cubes of Maggi Chicken Cubes and one cup water</li>
<li>For Mashed Potatoes &#8211; you can use Aloo-Mash (dried potato flakes). Mix 2 cups of Aloo Mash with 1.5 cups of water, add 50 gm butter and heat in microwave for 1 minute. Mix with spoon to get a smooth and creamy texture.</li>
<li>Instead of beer &#8211; you can put 1 tsp vinegar, 2 tbspn worcestershire sauce and 1 tbspn mustard</li>
<li>You can use chicken sausages, chicken seekhs, mutton sausages, mutton seekhs, et al instead of pork sausages</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://controlyourproject.com/blog/2010/04/sausages-with-mashed-potatoes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Madhur and Aossum in the news</title>
		<link>http://controlyourproject.com/blog/2010/03/madhur-and-aossum-in-the-news/</link>
		<comments>http://controlyourproject.com/blog/2010/03/madhur-and-aossum-in-the-news/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 12:31:19 +0000</pubDate>
		<dc:creator>Dushyant</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Aossum]]></category>
		<category><![CDATA[Madhur]]></category>

		<guid isPermaLink="false">http://controlyourproject.com/blog/?p=457</guid>
		<description><![CDATA[Yay!!, Madhur, my sister, and Aossum, her venture, are in the news.]]></description>
			<content:encoded><![CDATA[<p>Yay!!,</p>
<p>Madhur, my sister, and Aossum, her venture, are in the news.</p>
<p><a href="http://controlyourproject.com/blog/wp-content/uploads/2010/03/IMG_5362.jpg"><img class="aligncenter size-full wp-image-458" title="News" src="http://controlyourproject.com/blog/wp-content/uploads/2010/03/IMG_5362.jpg" alt="" width="600" height="1008" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://controlyourproject.com/blog/2010/03/madhur-and-aossum-in-the-news/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>My Essays for the ISB Application</title>
		<link>http://controlyourproject.com/blog/2010/03/my-essays-for-the-isb-application/</link>
		<comments>http://controlyourproject.com/blog/2010/03/my-essays-for-the-isb-application/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 12:57:33 +0000</pubDate>
		<dc:creator>Dushyant</dc:creator>
				<category><![CDATA[ISB]]></category>
		<category><![CDATA[Application]]></category>
		<category><![CDATA[essays]]></category>

		<guid isPermaLink="false">http://controlyourproject.com/blog/?p=455</guid>
		<description><![CDATA[Just came across the essays I had put in for my ISB applications. Thought I&#8217;d share them here: The ISB culture stresses on a diverse mix of students; life at the ISB is a unique experience for the students. How will your candidature contribute to this culture at the ISB?  (300 words max) My experience [...]]]></description>
			<content:encoded><![CDATA[<p>Just came across the essays I had put in for my ISB applications. Thought I&#8217;d share them here:</p>
<p><span style="color: #003366;"><em>The ISB culture stresses on a diverse mix of students; life at the ISB is a unique experience for the students. How will your candidature contribute to this culture at the ISB?  (300 words max)</em></span></p>
<div id="_mcePaste">My experience ranging from architectural design to project management and design coordination would help to bring in a different viewpoint to a class that normally has a majority of engineers and commerce graduates. Furthermore my experience in the construction field has trained me to devise and implement creative strategies to overcome problems.  Additionally working with international clients over the past few years has allowed me to understand the European and American mindset and their attention to detail.</div>
<div><span id="more-455"></span></div>
<div id="_mcePaste">I would also bring in my experience as an entrepreneur where I established my own project management consultancy with a major international bank as my client handling multiple projects in India and abroad. The experience gained in training and handling a small staff while ensuring that the client remains satisfied is invaluable.</div>
<div id="_mcePaste">My expertise being project scheduling – where I plan and track the construction sequence involving hundreds of activities and dozens of agencies – has led me to develop a keen sense of detail while keeping the big picture in mind. I am able to prioritise others’ activities, planning for them to ensure that the project is delivered on time. Also I regularly handle cost plans, budgets, run-rate analyses and have a working knowledge of project finance. Furthermore working simultaneously on multiple projects has developed an inherent sense of time-management that allows me to handle all my responsibilities as well as take time out for my family and my varied hobbies.</div>
<div id="_mcePaste">My hobbies range from photography to origami to programming. Furthermore I take part in various sports including karate, gymnastics, trekking, rock-climbing, paragliding, etc.</div>
<div id="_mcePaste">My diverse experience and numerous hobbies would bring in diversity to the ISB culture all the while ensuring that I fit-in without any problems.</div>
<div></div>
<div id="_mcePaste"><span style="color: #003366;"><em>A million dollars or knighthood: what would you choose and why? (300 words max)</em></span></div>
<div><span style="color: #003366;"><em><br />
</em></span></div>
<div id="_mcePaste">Neither – a million dollars may allow me to retire in my hometown, a knighthood may make me famous and lead to further money-making avenues – but both would take the life out of living. The challenge of achieving something with your own hard work would be gone and anything I would do would not have the urgency or the drive that I have now.</div>
<div id="_mcePaste">A knighthood or a million dollars now would be pointless and counter-productive. Both options would lead to a lethargy that would halt or at the least inhibit any further personal development and would lead to stagnation. They also may lead to a drastic change in lifestyle which would – in itself – not be sustainable and may leave me “in a soup” in the future. Thus even though the world would see success – there would be actually be a failure – an internal failure to grow further; to develop.</div>
<div id="_mcePaste">I may accept one or both later on in life – but only as a culmination of my life-work – at a time in life when priorities may change to substitute personal growth with security and relaxation. However at this stage in my career a sense of complete security such as would be provided by any of these options would be ultimately harmful.</div>
<div></div>
<div id="_mcePaste"><span style="color: #003366;"><em>You have a new manager who has just joined your organisation. As a part of the handover, the outgoing manager is describing each person reporting to him. How do you think the outgoing manager will describe you to the incoming manager?  (300 words max)</em></span></div>
<div id="_mcePaste">&#8220;Dushyant is a sincere and helpful person.  He&#8217;s always one of the first to volunteer and carries his responsibilities well. He is eager to learn and would go out of his way to help out if he can. Good at preparing and handling presentations – he can put forward his views in a convincing manner. However he is not a &#8220;yes-man&#8221; and stands up to his viewpoint. Also he works at problems in a logical manner and has the ability to think out-of-the-box to arrive at solutions that are often not obvious.</div>
<div id="_mcePaste">Last year we had to lift these chillers weighing 6 tons each to the terrace – however due to the layout of the building and its surroundings, lifting them using a crane was near about impossible; and we spent days trying to find cranes which would be able to lift them – till Dushyant came up with the idea of installing a hoist on the terrace. Very simple – very easy – but none of us saw it!</div>
<div id="_mcePaste">In addition to this he’s also been known to work extremely long hours if required and is also able to handle emergencies without panic.</div>
<div id="_mcePaste">He grasps new concepts easily and is a whiz at computers. He can handle most software as well as hardware problems and has been keeping the office machines in good shape ever since.&#8221;</div>
<p>The ISB culture stresses on a diverse mix of students; life at the ISB is a unique experience for the students. How will your candidature contribute to this culture at the ISB?  (300 words max)My experience ranging from architectural design to project management and design coordination would help to bring in a different viewpoint to a class that normally has a majority of engineers and commerce graduates. Furthermore my experience in the construction field has trained me to devise and implement creative strategies to overcome problems.  Additionally working with international clients over the past few years has allowed me to understand the European and American mindset and their attention to detail.I would also bring in my experience as an entrepreneur where I established my own project management consultancy with a major international bank as my client handling multiple projects in India and abroad. The experience gained in training and handling a small staff while ensuring that the client remains satisfied is invaluable. My expertise being project scheduling – where I plan and track the construction sequence involving hundreds of activities and dozens of agencies – has led me to develop a keen sense of detail while keeping the big picture in mind. I am able to prioritise others’ activities, planning for them to ensure that the project is delivered on time. Also I regularly handle cost plans, budgets, run-rate analyses and have a working knowledge of project finance. Furthermore working simultaneously on multiple projects has developed an inherent sense of time-management that allows me to handle all my responsibilities as well as take time out for my family and my varied hobbies.My hobbies range from photography to origami to programming. Furthermore I take part in various sports including karate, gymnastics, trekking, rock-climbing, paragliding, etc. My diverse experience and numerous hobbies would bring in diversity to the ISB culture all the while ensuring that I fit-in without any problems.<br />
A million dollars or knighthood: what would you choose and why? (300 words max)<br />
Neither – a million dollars may allow me to retire in my hometown, a knighthood may make me famous and lead to further money-making avenues – but both would take the life out of living. The challenge of achieving something with your own hard work would be gone and anything I would do would not have the urgency or the drive that I have now. A knighthood or a million dollars now would be pointless and counter-productive. Both options would lead to a lethargy that would halt or at the least inhibit any further personal development and would lead to stagnation. They also may lead to a drastic change in lifestyle which would – in itself – not be sustainable and may leave me “in a soup” in the future. Thus even though the world would see success – there would be actually be a failure – an internal failure to grow further; to develop.I may accept one or both later on in life – but only as a culmination of my life-work – at a time in life when priorities may change to substitute personal growth with security and relaxation. However at this stage in my career a sense of complete security such as would be provided by any of these options would be ultimately harmful.</p>
<p><span style="color: #003366;"><em>You have a new manager who has just joined your organisation. As a part of the handover, the outgoing manager is describing each person reporting to him. How do you think the outgoing manager will describe you to the incoming manager?  (300 words max)</em></span></p>
<p>&#8220;Dushyant is a sincere and helpful person.  He&#8217;s always one of the first to volunteer and carries his responsibilities well. He is eager to learn and would go out of his way to help out if he can. Good at preparing and handling presentations – he can put forward his views in a convincing manner. However he is not a &#8220;yes-man&#8221; and stands up to his viewpoint. Also he works at problems in a logical manner and has the ability to think out-of-the-box to arrive at solutions that are often not obvious. Last year we had to lift these chillers weighing 6 tons each to the terrace – however due to the layout of the building and its surroundings, lifting them using a crane was near about impossible; and we spent days trying to find cranes which would be able to lift them – till Dushyant came up with the idea of installing a hoist on the terrace. Very simple – very easy – but none of us saw it!In addition to this he’s also been known to work extremely long hours if required and is also able to handle emergencies without panic.He grasps new concepts easily and is a whiz at computers. He can handle most software as well as hardware problems and has been keeping the office machines in good shape ever since.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://controlyourproject.com/blog/2010/03/my-essays-for-the-isb-application/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Photos of Sanawar</title>
		<link>http://controlyourproject.com/blog/2010/03/photos-of-sanawar/</link>
		<comments>http://controlyourproject.com/blog/2010/03/photos-of-sanawar/#comments</comments>
		<pubDate>Mon, 15 Mar 2010 13:42:41 +0000</pubDate>
		<dc:creator>Dushyant</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Sanawar]]></category>

		<guid isPermaLink="false">http://controlyourproject.com/blog/?p=414</guid>
		<description><![CDATA[Photos I&#8217;ve taken along the years:]]></description>
			<content:encoded><![CDATA[<p>Photos I&#8217;ve taken along the years:</p>
<h2>1991-1995 Sanawar</h2><br/><object type="application/x-shockwave-flash" data="http://media.roytanck.com/flickrwidget.swf"" width="400" height="400"><param name="movie" value="http://media.roytanck.com/flickrwidget.swf" /><param name="bgcolor" value="#ffffff" /><param name="AllowScriptAccess" value="always" /><param name="flashvars" value="feed=http://picasaweb.google.com/data/feed/base/user/dusht.ahuja/albumid/5099177378568290321?alt=rss&kind=photo&hl=fr<p><a href="http://www.roytanck.com">Roy Tanck</a>Flick Widget requires Flash Player 9 or better.</p></object>
<h2>2007 Founders</h2><br/><object type="application/x-shockwave-flash" data="http://media.roytanck.com/flickrwidget.swf"" width="400" height="400"><param name="movie" value="http://media.roytanck.com/flickrwidget.swf" /><param name="bgcolor" value="#ffffff" /><param name="AllowScriptAccess" value="always" /><param name="flashvars" value="feed=http://picasaweb.google.com/data/feed/base/user/dusht.ahuja/albumid/5119217913968611473?alt=rss&kind=photo&hl=fr<p><a href="http://www.roytanck.com">Roy Tanck</a>Flick Widget requires Flash Player 9 or better.</p></object>
<h2>2009_10 Founders</h2><br/><object type="application/x-shockwave-flash" data="http://media.roytanck.com/flickrwidget.swf"" width="400" height="400"><param name="movie" value="http://media.roytanck.com/flickrwidget.swf" /><param name="bgcolor" value="#ffffff" /><param name="AllowScriptAccess" value="always" /><param name="flashvars" value="feed=http://picasaweb.google.com/data/feed/base/user/dusht.ahuja/albumid/5389726105122756337?alt=rss&kind=photo&hl=fr<p><a href="http://www.roytanck.com">Roy Tanck</a>Flick Widget requires Flash Player 9 or better.</p></object>
]]></content:encoded>
			<wfw:commentRss>http://controlyourproject.com/blog/2010/03/photos-of-sanawar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speaker at RENEWTECH 2010</title>
		<link>http://controlyourproject.com/blog/2010/03/speaker-at-renewtech-2010/</link>
		<comments>http://controlyourproject.com/blog/2010/03/speaker-at-renewtech-2010/#comments</comments>
		<pubDate>Thu, 11 Mar 2010 17:30:58 +0000</pubDate>
		<dc:creator>Dushyant</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[Jawahar Lal Nehru National Solar Mission]]></category>
		<category><![CDATA[National Solar Mission]]></category>
		<category><![CDATA[NSM]]></category>
		<category><![CDATA[Renewable Energy]]></category>
		<category><![CDATA[Solar Power]]></category>

		<guid isPermaLink="false">http://controlyourproject.com/blog/?p=423</guid>
		<description><![CDATA[I was given the opportunity by my company to speak at this year&#8217;s RENEWTECH in Pune. It was an interesting experience – to say the least – seeing my name in print with the top names in the industry. The session chairman was M.G. Raoot, Executive Director of WRLDC (Western Region Load Despatch Centre) And [...]]]></description>
			<content:encoded><![CDATA[<p>I was given the opportunity by my company to speak at this year&#8217;s RENEWTECH in Pune.</p>
<p><img src="http://controlyourproject.com/blog/wp-content/uploads/2010/03/032110_1619_SpeakeratRE1.jpg" alt="" /></p>
<p><img src="http://controlyourproject.com/blog/wp-content/uploads/2010/03/032110_1619_SpeakeratRE2.png" alt="" /></p>
<p><span id="more-423"></span></p>
<p>It was an interesting experience – to say the least – seeing my name in print with the top names in the industry.</p>
<p><img src="http://controlyourproject.com/blog/wp-content/uploads/2010/03/032110_1619_SpeakeratRE3.jpg" alt="" /></p>
<p><img src="http://controlyourproject.com/blog/wp-content/uploads/2010/03/032110_1619_SpeakeratRE4.jpg" alt="" /></p>
<p>The session chairman was M.G. Raoot, Executive Director of WRLDC (Western Region Load Despatch Centre)</p>
<p><img src="http://controlyourproject.com/blog/wp-content/uploads/2010/03/032110_1619_SpeakeratRE5.jpg" alt="" /></p>
<p>And the other speakers were:</p>
<p><img src="http://controlyourproject.com/blog/wp-content/uploads/2010/03/032110_1619_SpeakeratRE6.jpg" alt="" /></p>
<p>I spoke about the &#8220;Solar Opportunity in India&#8221; and &#8220;Challenges for Developers&#8221; based on the draft guidelines to the national solar mission.</p>
<div class="ngg-galleryoverview"><div class="slideshowlink"><a class="slideshowlink" href="http://controlyourproject.com/blog/2010/03/speaker-at-renewtech-2010/?show=gallery">[Show picture list]</a></div>[[Show as slideshow]]</div>
<div class="ngg-clear"></div>

<p>It was a great experience – to say the least, and the best part was when people came up to the dais and told me that they really liked the presentation and felt that I had raised some good points which the government must take note of.</p>
<p>All-in-all, an amazing experience. I&#8217;ll put in more photos when I get them from the organisers.</p>
]]></content:encoded>
			<wfw:commentRss>http://controlyourproject.com/blog/2010/03/speaker-at-renewtech-2010/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic Page Served (once) in 2.255 seconds -->
