<?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>Travel Photography and Technology «buzypi.in»</title>
	<atom:link href="https://buzypi.in/feed/" rel="self" type="application/rss+xml" />
	<link>https://buzypi.in</link>
	<description>Technology, Travelogues, Photography, Photo editing and more – from the abode of Gautham Pai</description>
	<lastBuildDate>Sun, 03 Nov 2019 15:32:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.3.5</generator>
	<item>
		<title>A Docker Based Development Environment</title>
		<link>https://buzypi.in/2015/04/14/a-docker-based-development-environment/</link>
		
		<dc:creator><![CDATA[Gautham Pai]]></dc:creator>
		<pubDate>Tue, 14 Apr 2015 14:47:40 +0000</pubDate>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[android-studio]]></category>
		<category><![CDATA[docker]]></category>
		<category><![CDATA[kvm]]></category>
		<category><![CDATA[lxc]]></category>
		<category><![CDATA[lxde]]></category>
		<category><![CDATA[virtualization]]></category>
		<guid isPermaLink="false">http://buzypi.in/?p=3201</guid>

					<description><![CDATA[At jnaapti, we have been using containerization technologies since almost the very early days. In 2011, when I was evaluating a solution to provide light-weight containers to our learners in the Virtual Coach, I was told that the only mature solution was to use Virtualization solutions. But Virtualization was too slow (in terms of boot [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>At <a href="https://jnaapti.com">jnaapti</a>, we have been using containerization technologies since almost the very early days. In 2011, when I was evaluating a solution to provide light-weight containers to our learners in the <a href="https://virtualcoach.jnaapti.com/">Virtual Coach</a>, I was told that the only mature solution was to use Virtualization solutions. But Virtualization was too slow (in terms of boot up time) and I didn&#8217;t have enough resources to keep stand-by nodes running all the time. So after some evaluation, I decided to use <a href="https://linuxcontainers.org/">LXC</a> and it served its purpose. However, there were several features missing and I was in the verge of building a few of them myself.</p>
<p>So it&#8217;s not surprising that when I discovered <a href="http://www.docker.com/">Docker</a>, I just fell in love with it. One of the first things we did was we moved our LXC based learner containers to Docker. We then slowly started to migrate portions of our infrastructure to Docker. We achieved full Docker migration last November, and then also moved our staging/testing systems in the cloud to Docker.</p>
<p>The last in the list was to migrate our development environments. The initial migration wasn&#8217;t too hard, because of 2 things:</p>
<ol>
<li>We already had Docker in production &#8211; so it was a matter of working off our production Dockerfiles</li>
<li>We were already using <a href="http://www.slideshare.net/jnaapti/building-your-own-desktop-cloud-environment">KVM in our development</a> &#8211; so we already had a clear idea about what containers our system should be running.</li>
</ol>
<p>Why the move away from KVM based development environments? Simple! KVM&#8217;s disk usage is too much to suit our requirements. We had our development images of 5G each and you have 10&#8217;s of such images and are soon out of disk space. I am not sure how many Docker fans will approve <a href="https://news.ycombinator.com/item?id=7950326">some</a> of the <a href="https://jpetazzo.github.io/2014/06/23/docker-ssh-considered-evil/">things</a> I discuss here but I believe that this is a much leaner solution than using Virtualization and I don&#8217;t see any issues in the way I am doing it.</p>
<p>So with the migration from KVM to Docker, there were a few additional things that I wanted to handle:</p>
<ol>
<li>Can we use Desktop tools like text-editors with data in Docker? Imagine I am writing a NodeJS application. I want to use <a href="https://atom.io/">Atom</a> installed in my host to write code. However, I want to run NodeJS inside the container.</li>
<li>It is very easy to work with command line utilities (which don&#8217;t need <a href="http://en.wikipedia.org/wiki/X_Window_System">X</a>) in containers, but how about Desktop utilities like Eclipse? Can we run this in a Docker container and still have the same user experience as a regular app? What are some best practices to do so?</li>
<li>Is it possible to expose devices into Docker containers &#8211; this is required for eg, if we are doing Android development and want to debug our app in an actual Android device</li>
</ol>
<p>The first 2 were rather easy and I sailed through it. The third one, I struggled a little, but I finally made some head-way.</p>
<p>This post attempts to capture some of my learnings in this entire process in case you want to build a similar environment. So let me answer these questions:</p>
<h2>Using Desktop tools with Docker containers</h2>
<p>This one is easy. A practice we follow is all the code that we write is inside a mounted volume. Containers are used to run processes in a contained fashion, but the processes are manipulating files that are in our host (and not in the underlying diff file system). We can as well remove our containers and we don&#8217;t lose anything.</p>
<p>Here is a sample run to demonstrate this:</p>
<p>Start a Docker container that has NodeJS installed in it. Make sure that this container has access to a local host directory (in this case /home/gautham/Desktop/node-data):</p>
<p><code>gautham@ananya:~|?  docker run -d -P -v /home/gautham/Desktop/node-data:/data --name "node-example" ananya-nodejs:0.0.1<br />
820e105db5061b380e6117e42a0cabad5f00c54e54f5016aefc18399e2a2eb25<br />
</code></p>
<p>Check if the container is running</p>
<p><code>gautham@ananya:~|?  docker ps<br />
CONTAINER ID        IMAGE                 COMMAND               CREATED             STATUS              PORTS                                                                   NAMES<br />
820e105db506        ananya-nodejs:0.0.1   "/usr/sbin/sshd -D"   9 seconds ago       Up 8 seconds        0.0.0.0:49155-&gt;22/tcp                                                   node-example<br />
</code></p>
<p><a href="/wordpress/wp-content/uploads/2015/04/atom.png"><img decoding="async" fetchpriority="high" src="/wordpress/wp-content/uploads/2015/04/atom.png" alt="Using Atom to edit files in a volume shared with a Docker container" width="1076" height="482" class="aligncenter size-full wp-image-3202"></a></p>
<p>Inside the container (which is accessible via SSH):<br />
<code>gautham@ananya:~|?  ssh -p 49155 ubuntu@localhost<br />
ubuntu@localhost's password:<br />
Last login: Tue Apr 14 14:13:12 2015 from 172.17.42.1<br />
ubuntu@820e105db506:~$ cd /data/<br />
ubuntu@820e105db506:/data$ ls<br />
hello.js<br />
ubuntu@820e105db506:/data$ node hello.js<br />
Hello World!<br />
</code></p>
<h2>Using Desktop tools inside Docker containers</h2>
<p>This one initially seemed a little difficult, but I figured out soon.</p>
<p>Create an image that has lxde-core package installed in it.</p>
<p>Now, there are 2 options:</p>
<h3>Connect to lxde running inside the Docker container</h3>
<p>Run these commands in host:</p>
<p><code>docker run -d -P ananya-desktop:0.0.1<br />
sudo su<br />
xinit -- :1 &amp;<br />
</code></p>
<p>This will now switch you to a different terminal (accessible at Ctrl+Alt+F8). You will also see a white terminal. Type the following in this terminal to start LXDE:</p>
<p><code>docker ps<br />
CONTAINER ID        IMAGE                  COMMAND               CREATED             STATUS              PORTS                                                                   NAMES<br />
38280dd66b98        ananya-android:0.0.1   "/usr/sbin/sshd -D"   4 minutes ago       Up 4 minutes        0.0.0.0:49156-&gt;22/tcp, 0.0.0.0:49157-&gt;5901/tcp                          hopeful_lumiere<br />
ssh -X -p 49156 ubuntu@localhost<br />
</code></p>
<p>In the Docker container run</p>
<p><code>startlxde<br />
</code></p>
<p>You should now see a full fledged Desktop running like this!</p>
<p><a href="/wordpress/wp-content/uploads/2015/04/lxde.png"><img decoding="async" src="/wordpress/wp-content/uploads/2015/04/lxde.png" alt="LXDE running in a Docker container" width="1366" height="768" class="aligncenter size-full wp-image-3203"></a></p>
<p>So your host is running at Ctrl+Alt+F7 and your Docker container is at Ctrl+Alt+F8. Use this option in case you are running many Desktop applications and you want to be totally isolated from the host when working with the applications in the container (i.e you are not using any host applications in conjunction with the applications in the Docker container).</p>
<h3>Only run the application that you are interested in</h3>
<p>I found this option to be better in some ways. I have my Android Studio setup using this option now.</p>
<p><code>gautham@ananya:~|?  docker run -d -P ananya-desktop:0.0.1<br />
gautham@ananya:~|?  ssh -X -p 49156 ubuntu@localhost<br />
ubuntu@localhost's password:<br />
Welcome to Ubuntu 14.04.2 LTS (GNU/Linux 3.16.0-34-generic x86_64)</code></p>
<p><code><br />
</code><code> * Documentation:  https://help.ubuntu.com/<br />
Last login: Tue Apr 14 14:25:47 2015 from 172.17.42.1<br />
ubuntu@38280dd66b98:~$ cd android-studio/<br />
ubuntu@38280dd66b98:~/android-studio$ ls<br />
ubuntu@38280dd66b98:~/android-studio$ bin/studio.sh<br />
</code></p>
<p>And lo and behold!</p>
<p><a href="/wordpress/wp-content/uploads/2015/04/android-studio.png"><img decoding="async" src="/wordpress/wp-content/uploads/2015/04/android-studio.png" alt="Anroid Studio Running in a Docker Container" width="1315" height="714" class="aligncenter size-full wp-image-3204"></a></p>
<h2>Accessing devices within Docker container</h2>
<p>A final requirement was whether we can get Docker to detect USB devices. I found that if you pass a &#8211;privileged flag and mount the /dev/ device appropriately, you can then access it in the Docker container. I was able to successfully use adb along with my Docker container.</p>
<p><code>docker run --privileged -v /data:/data -v /dev/bus/usb:/dev/bus/usb -d -P ananya-android:0.0.1<br />
</code></p>
<p>Docker has been a boon and although there are several area of improvement, I see that it has a future. It has become an indispensable tool in our software tools arsenal in jnaapti.</p>
<p>Cross-posted here: <a href="http://jnaapti.com/blog/2015/04/14/a-docker-based-development-environment/">http://jnaapti.com/blog/2015/04/14/a-docker-based-development-environment/</a></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>The BullsNCows Application in AngularJS</title>
		<link>https://buzypi.in/2014/05/04/the-bullsncows-application-in-angularjs/</link>
		
		<dc:creator><![CDATA[Gautham Pai]]></dc:creator>
		<pubDate>Sun, 04 May 2014 17:27:40 +0000</pubDate>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[angularjs]]></category>
		<category><![CDATA[bullsncows]]></category>
		<category><![CDATA[game]]></category>
		<category><![CDATA[javascript]]></category>
		<guid isPermaLink="false">http://buzypi.in/?p=3165</guid>

					<description><![CDATA[About 5 years back, when I was still dabbling with client-side technologies for the first time, I had written the BullsNCows game in pure Javascript. My knowledge of Javascript and client side technologies has evolved quite a bit since then. So, recently when I was looking at this code I thought, &#8220;This code could be [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>About 5 years back, when I was still dabbling with client-side technologies for the first time, I had written the <a href="/tag/bullsncows/">BullsNCows game in pure Javascript</a>.</p>
<p>My knowledge of Javascript and client side technologies has evolved quite a bit since then. So, recently when I was looking at this code I thought, &#8220;This code could be better if we use <a href="http://angularjs.org/">AngularJS</a>&#8220;.</p>
<p>So today I thought of rewriting this in AngularJS and using <a href="http://getbootstrap.com/">Bootstrap</a> for styling. Here is the <a href="https://github.com/buzypi/bullsncows">code in Github</a> in case you want to play with it and <a href="/project/bullsncows/index.html">here is the game</a> in case you want to play.</p>
<p><a href="/project/bullsncows/index.html"><img decoding="async" loading="lazy" src="/wordpress/wp-content/uploads/2014/05/bullsncows.png" alt="bullsncows" width="1240" height="660" class="aligncenter size-full wp-image-3166"></a></p>
<p>So what&#8217;s changed?</p>
<ul>
<li>All the code related to styling has been moved to Bootstrap. The alternate table coloring seems so much easier now!</li>
<li>The update of the table is done with AngularJS so I don&#8217;t need to do complex DOM manipulation &#8211; it is a straight-forward binding to the tr element of the table.</li>
<li>The data handling and algorithm to compute bulls and cows is slightly improved. It used to be a O(n^2) algorithm. It&#8217;s now linear.</li>
<li>Elimination of globals &#8211; except the app object nothing is global now.</li>
</ul>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Jnaapti &#8211; The Problems We&#8217;re After</title>
		<link>https://buzypi.in/2012/08/23/jnaapti-the-problems-were-after/</link>
		
		<dc:creator><![CDATA[Gautham Pai]]></dc:creator>
		<pubDate>Thu, 23 Aug 2012 14:31:33 +0000</pubDate>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[jnaapti]]></category>
		<category><![CDATA[startup]]></category>
		<guid isPermaLink="false">http://buzypi.in/?p=3087</guid>

					<description><![CDATA[Check out this statement from a report on National Employability by Aspiring Minds [pdf]: Even though India produces more than five lakh engineers annually, only 17.45% of them are employable for the IT services sector, while a dismal 3.51% are appropriately trained to be directly deployed on projects. Further, only 2.68% are employable in IT [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Check out this statement from a <a href="http://www.aspiringminds.in/docs/national_employability_report_engineers_2011.pdf">report on National Employability by Aspiring Minds</a> [pdf]:</p>
<blockquote><p>Even though India produces more than five lakh engineers annually, only 17.45% of them are employable for the IT services sector, while a dismal 3.51% are appropriately trained to be directly deployed on projects. Further, only 2.68% are employable in IT product companies, which require greater understanding of computer science and algorithms. &#8211; <cite>National Employability Report by Aspiring Minds</cite></p></blockquote>
<p>While on one side, there is an ever increasing demand for skilled employees in organizations, the unemployment situation is getting out of control.</p>
<blockquote><p>Concentrating on increasing quantity of engineers has impacted quality drastically. &#8211; <cite>National Employability Report by Aspiring Minds</cite>
</p></blockquote>
<p>Here, we list the most important reasons that we believe, are causing this (a lot of this is after interviews I conducted with a series of students from various colleges in India):</p>
<ul>
<li><b>Mis-guidance/Lack of guidance</b>: Ask a student of a Tier-2 college, why he joined Engineering and how he chose his branch or college and the answer is mostly along these lines:
<ul>
<li>Because my parents/friends told me to</li>
<li>Because my uncle said Computer Science is outdated, Mechanical Engineering is ever-green</li>
<li>Computer Science is in &#8220;scope&#8221; now (another way of putting this is, I have better chances of getting a job)</li>
<li>I like Computers since childhood, so my friend&#8217;s dad told me I should go for Computer Science</li>
<li>This college is closest to my house</li>
<li>I really don&#8217;t care about where I get a degree or in which branch, all I care about is that I am an &#8220;Engineer&#8221;</li>
</ul>
<p>Hmm, something seems terribly wrong. The lack of counseling is apparent in the way students answer this question. Students don&#8217;t know what they are getting into when they join engineering. While many are misguided, some are even pressurized to join the branch of their parent&#8217;s choice. Most students don&#8217;t have a clue of what their career options are post engineering. While on one side there is a clear upsurge in the requirement for skilled IT force, the comparative dearth of good jobs in other fields is pushing people into IT (or related fields).</li>
<li><b>Lack of motivation</b>: I guess this follows the previous point. If you are not interested to do something in the first place, you cannot expect a lot of motivation or focus now, can you? Students mostly wade through the semesters and find themselves having a degree but no skills to back it. This results in a clear skill-set deficiency, but for the most parts, the industry doesn&#8217;t seem to care as they have gotten used to this (in other words the expectations are low).</li>
<li><b>The lack of industry-institute interaction</b>: While &#8220;<a href="https://en.wikipedia.org/wiki/Engineering">Engineering</a>&#8221; is a lot to do with &#8220;application&#8221;, students are not given the necessary context and guidance to apply what they know. It&#8217;s quite possible that students complete a course and have no idea how they are going to use this course once they are employed. While students these days have a good understanding of good apps in Facebook and Android, most have no clue what it takes to build these systems.</li>
<li><b>Faculty quality issues</b>: Most professors/lecturers in Tier2 colleges in India teach not because they like it, but because they have to. The low pay-scales of an engineering faculty (this is a lot better now, but not good enough) compared to an entry-level engineer makes this an unattractive proposition for many who may be interested to teach but also need to think of their cost of living. The dearth of motivated and trained faculty in engineering colleges has further aggravated the problem of student quality.</li>
<li><b>Outdated learning/teaching models</b>: In this day and age, with the advent of technology, the classroom teaching model seems too outdated to be relevant. Sal Khan has outlined it well in <a href="http://www.youtube.com/watch?v=CiKrFcgVSIU&#038;feature=edu_spotlight">this video about Education Predictions for Year 2060</a>. Here are some of Sal&#8217;s predictions:
<ol>
<li>Classroom model fundamentally changes</li>
<li>Instead of our credentials being seat time based and the variable being how well you actually understood the materials, the time is fixed and the variable is your level of achievement.</li>
<li>Role of the teacher rather than being a lecturer, and often giving similar lecture year on year and at the same pace, the teacher will now be a coach or a mentor.</li>
<li>We are going to get to a 99% global literacy rate.</li>
</ol>
<p>These are &#8220;predictions&#8221; and is not the case right now. But we can clearly see a trend in the direction of these predictions.</li>
<li><b>Lack of a fool-proof globally recognized metric for assessment that evaluates a person independent of the way he acquired his knowledge</b>:<br />
<blockquote><p>The long tail of employable engineers is getting missed out by corporations. The report found that the top 100 colleges have higher employability as compared to the rest of the colleges (as much as two to four times). Despite this, more than 70% of employable candidates for any sector are in campuses other than the top 100. It was found that 50% of employable candidates for IT services companies and 28% of employable candidates for IT product companies are not even in the top 750 colleges, and thus form invisible pool to most employers. This signals that a large proportion of employable engineers are ending up without any opportunity, which is a dangerous trend for higher education. &#8211; <cite>National Employability Report by Aspiring Minds</cite></p></blockquote>
<p>Organizations lack a good metric system to compare and evaluate students from different universities, so they end up relying on other signals: the marks, the degree and the college name. They then conduct their own entrance tests and interviews. Is it not possible to find a gem in a Tier2+ college? Most organizations do believe that there are gems out there, but they don&#8217;t have a process to approach them. The low conversion rate makes this a no-go. We at Jnaapti have already proven the issues with this and have successfully connected students with companies that are more aligned with their interests. Over time, we will be building an alternate metric system that is more fool-proof and reliable and there are a <a href="http://www.elitmus.com/">few</a> <a href="http://www.cocubes.com/">companies</a> that are solving this problem alone <a href="http://careers.stackoverflow.com/">some with a global focus</a>.</li>
</ul>
<p>It is these problems that we have set out to solve&#8230;</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Why I started Jnaapti</title>
		<link>https://buzypi.in/2012/08/21/why-i-started-jnaapti/</link>
		
		<dc:creator><![CDATA[Gautham Pai]]></dc:creator>
		<pubDate>Tue, 21 Aug 2012 15:38:26 +0000</pubDate>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[education-system]]></category>
		<category><![CDATA[entrepreneurship]]></category>
		<category><![CDATA[jnaapti]]></category>
		<category><![CDATA[startup]]></category>
		<guid isPermaLink="false">http://buzypi.in/?p=3035</guid>

					<description><![CDATA[Note: This is a personal account and forms the prologue for why I started Jnaapti. To know about the problems we are after, read this subsequent post. Connecting the dots&#8230; As a kid, I was always of an inquisitive nature. What I didn&#8217;t realize back then, but happened to work out for me is that [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Note: This is a personal account and forms the prologue for why I started <a href="http://jnaapti.com/">Jnaapti</a>. To know about the problems we are after, read this <a href="http://buzypi.in/2012/08/23/jnaapti-the-problems-were-after/">subsequent post</a>.</p>
<p>Connecting the dots&#8230;</p>
<p><b>As a kid</b>, I was always of an inquisitive nature. What I didn&#8217;t realize back then, but happened to work out for me is that my school teachers were very encouraging. I remember them saying that I ask a lot of questions, but I don&#8217;t remember any of my teachers saying that they will not answer my question. I asked my science teacher, &#8220;Do flowers have life?&#8221;. She was not sure, but she didn&#8217;t discourage me.</p>
<p>However, this was not the case in high-school, and the focus was more on marks and competitive examinations. For the first time, I started feeling disconnected from the system. There seemed to be a clear distinction between &#8220;understanding the concept&#8221; and &#8220;knowing how to score&#8221;. While I scored a perfect 100% in Physics in my 12th, I wouldn&#8217;t claim to know anything about Physics today.</p>
<p><b>It is 1999</b>. I am reading an article in a magazine which describes the problem of <a href="https://en.wikipedia.org/wiki/Information_overload">Information Overload</a> and how it has become severe due to the Internet; the fact that until recently, getting information was a problem, but now that&#8217;s no longer the case. The problem now is of being drowned with so much information; it&#8217;s more of finding the needle in the haystack than not having the haystack.</p>
<p>I personally had already felt this problem, so this gets me started with the &#8220;Quest For Knowledge&#8221; project &#8211; a personal project to increase my own knowledge about technology and put it in a framework. With frequent visits to the cyber cafes, I bring home floppies full of data about various things &#8211; technology related. I slowly start developing an interest in <a href="http://en.wikipedia.org/wiki/Personal_information_management">Personal Information Management</a> and <a href="https://en.wikipedia.org/wiki/Knowledge_management">Knowledge Management</a> in general.</p>
<p><b>Fast-forward to 2002</b>. I am an engineering student doing my BE in SJCE, Mysore. Grand goals, big dreams. I believed that Engineering is all about learning concepts and then applying it to build things that solve real problems. I envisioned <a href="http://en.wikipedia.org/wiki/Hackerspace">hacker spaces</a> in college (if not the word, at least the concept). I am terribly disappointed.</p>
<blockquote><p>Nobody knows ahead of time how long it takes anyone to learn anything. &#8211; <cite>Dr. Tae</cite></p></blockquote>
<p>I soon realize that I cannot rely on the system in general (college/faculty etc) for my education &#8211; if I have to succeed, I have to take the onus to educate myself.</p>
<blockquote><p>The right kind of education begins with the educator, who must understand himself and be free from established patterns of thought; for what he is, that he imparts.- <cite>Jiddu Krishnamurti</cite></p></blockquote>
<p>But that said, my dreams never died. My 2nd year in college and I am already envisioning building &#8220;Hibernate in Linux&#8221; (like I said, I had big dreams, and this shouldn&#8217;t come as a surprise. Most students do before <a href="http://www.ted.com/talks/ken_robinson_says_schools_kill_creativity.html">education kills it</a>). Not that I knew what it meant, but I knew what it would look like.</p>
<blockquote><p>We have a system of education that is modeled on the interest of industrialism and in the image of it. School are still pretty much organized on factory lines ? ringing bells, separate facilities, specialized into separate subjects. We still educate children by batches. Why do we do that? &#8211; <cite>Sir Ken Robinson</cite></p></blockquote>
<p>2 years pass by. The project to build Hibernate in Linux never takes off the ground, and a couple of other projects (TTS for Kannada and building a Microprocessor simulation environment) also fail before they start.</p>
<p>Meanwhile, other experiments are made to self-educate. We form a small group and decide on a bunch of subjects that we go learn and then teach each other. Friends are excited about this, but a series of incidents makes this dormant.</p>
<p>The lack of guidance and need for an eco-system that supports innovation and application is apparent.</p>
<blockquote><p>When learning is the goal and learning is the reward, there is no point in cheating. &#8211; <cite>Dr. Tae</cite></p></blockquote>
<p><b>It&#8217;s 2004</b> and I am in my 6th semester now and IBM India Software Lab is visiting campus for internships. I attend the interviews and is one of six people selected. The internship lasts for 6 months (2 months training + 4 months project) &#8211; and is an eye-opener. For the first time, I begin to understand &#8220;how to learn&#8221;, &#8220;how to think in abstractions&#8221; and &#8220;how the industry functions&#8221;.</p>
<p>My team leads then tell me the actual motive behind the internship. They wanted to give back to the college and we&#8217;re told that it&#8217;s about time now that we did the same. I am more than happy to help out and start getting involved in university relations &#8211; via workshops, internship projects, etc.</p>
<p><b>It&#8217;s 2007</b>; I am in my college to select the cream for an internship project that I want them to work on. This project has been running in my mind since a long time &#8211; how do you leverage existing features of Eclipse and bring it into a browser with minimal efforts and maximal reuse. The project statement is very simple to understand and understandably difficult to implement, especially for students who are still in college. But hey, isn&#8217;t that what an internship experience is all about?</p>
<blockquote><p>A self-motivated student paired with a right mentor can learn a lot. &#8211; <cite>Dr. Tae</cite></p></blockquote>
<p>After a few failed attempts, my interns make me proud. <a href="http://buzypi.in/2007/10/11/eclifox-bringing-eclipse-to-the-browser/">Eclifox</a> is a run-away hit within IBM and to some extent <a href="http://buzypi.in/2007/10/16/eclifox-the-publicity/">even outside</a>. It catches the attention of multiple brands (Eclipse is used by all the 5 brands of IBM &#8211; Websphere, Rational, DB2, Lotus and Tivoli). I demo this to the CTO of Websphere and also have talks with the CTO of Rational. (Eclifox is something that I still demonstrate to students and professionals to show what can be achieved if interns are provided the right guidance and understandably my interns who are now in elite companies/startups still <a href="http://techbrahmana.blogspot.in/2011/11/testimony-to-one-of-best-mentors-i-have.html">talk</a> <a href="http://karthikjcecs.wordpress.com/2007/10/17/eclifox-on-ibm-alpha-works/">about</a> it.)</p>
<p>This project gets me thinking.</p>
<blockquote><p>If this is what &#8220;interns&#8221; can achieve in 6 months, and with minimal guidance, what talent and potential are we wasting every year? What kind of an ecosystem can we build that helps leverage this?</p></blockquote>
<p>Eclifox, although was a hit, was not very scalable, so we start trying out other initiatives &#8211; including faculty development programs (train the trainer), curriculum development programs (better connectivity between concepts and application), workshops in colleges etc. After several such attempts, I understand a few things that work and a few that just don&#8217;t.</p>
<blockquote><p>The traditional model, it penalizes you for experimentation and failure, but it does not expect mastery. We encourage you to experiment. We encourage you to failure. But we do expect mastery. &#8211; <cite>Sal Khan</cite></p></blockquote>
<p><b>It&#8217;s 2008</b> now. A surprising turn of events and I quit IBM and joined Ugenie to understand startup dynamics. I never looked back! The fast-paced environment to deliver, the relentless pursuit to achieve what we set out to achieve got me hooked. For the next 3.5 years, I am isolated from University Relations, but in hind-sight it seems like a &#8220;degree&#8221; I had to take before starting on my entrepreneurial pursuit. Also, I was not totally isolated either, as I interviewed quite a few of them in the startups that I worked for. One thing was very obvious &#8211; the problem still remained, and if anything it was far more wide-spread and had worsened. This was apparent in the quality of the answers provided by the students in interviews.</p>
<p><b>It&#8217;s 2011</b> and I am keen to startup. I now have enough confidence to chase my dreams. Having worked in a <a href="http://buzypi.in/2008/04/20/big-fish-small-fish-my-personal-experience-of-working-in-a-startup/">couple</a> <a href="http://buzypi.in/2009/08/28/adios-ugenie/">of</a> startups, I feel I now have the skills that I need to execute, and the few things that I didn&#8217;t get to learn, I am fine bumping into it, figuring it all out and applying it. I need a goal that&#8217;s hard to achieve. The problem needs to be much bigger than just a technical challenge, but software being my strength, I am looking for a problem that can be solved with technology. After <a href="http://buzypi.in/2005/11/11/web-20-now-what-next-ananyeah/">evaluating</a> <a href="http://payaniga.in/">3</a> <a href="http://jnaapti.com/">ideas</a>, I decide to attack the education problem head-on. After-all, it&#8217;s worth the adventure! What&#8217;s life without an impossible dream!</p>
<p><b>April 2011</b>: I spend a significant amount of time researching the field, learning the terminologies used, learning about the people, the companies, the startups involved and the scenario in general. I discover people like <a href="http://www.ted.com/talks/ken_robinson_says_schools_kill_creativity.html">Sir Ken Robinson</a>, <a href="http://drtae.org/building-a-new-culture-of-teaching-and-learning/">Dr. Tae</a>, <a href="http://www.jkrishnamurti.org/worldwide-information/schools.php">Jiddu Krishnamurti</a>, <a href="">Salman Khan</a> among several others and also discover that the issue is global.</p>
<p><b>Jnaapti was founded on 19th of May 2011</b></p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Jnaapti &#8211; One Year On&#8230;</title>
		<link>https://buzypi.in/2012/06/19/jnaapti-one-year-on/</link>
		
		<dc:creator><![CDATA[Gautham Pai]]></dc:creator>
		<pubDate>Tue, 19 Jun 2012 12:56:52 +0000</pubDate>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[My Updates]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[bangalore-startup]]></category>
		<category><![CDATA[entrepreneurship]]></category>
		<category><![CDATA[jnaapti]]></category>
		<category><![CDATA[lean-startup]]></category>
		<category><![CDATA[startup]]></category>
		<guid isPermaLink="false">http://buzypi.in/?p=3006</guid>

					<description><![CDATA[Time flies! It has been a year since I started Jnaapti and it is time to take a step back and reflect on how things have fared during the last one year. I was reading through the mails and the Jnaapti weekly reports and was wondering if there is anything that I have to add [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>Time flies!</p>
<p>It has been a year since I started <a href="http://jnaapti.com/">Jnaapti</a> and it is time to take a step back and reflect on how things have fared during the last one year. I was reading through the mails and the Jnaapti weekly reports and was wondering if there is anything that I have to add to the <a href="http://buzypi.in/2011/12/01/jnaapti-a-6-month-report/">6 month report</a> that I wrote back in December or if there is anything that I don&#8217;t agree to among the things I mentioned in that list.</p>
<p>So here goes:</p>
<ul>
<li>
<b>Naming:</b> Somehow, I don&#8217;t recall reading this anywhere, or atleast, didn&#8217;t think it was important. But, just like you do usability testing of your product, I think  it is important to get the name tested with a few people before you christen your company. While choosing an Indian name, also remember to include people from various parts of India and abroad.<br />
The name Jnaapti is a Sanskrit word which means to &#8220;acquire knowledge&#8221;. I had a few things in mind when choosing the name:</p>
<ol>
<li>I wanted an Indian name &#8211; because the target segment was Indian to begin with</li>
<li>I didn&#8217;t want to have a problem with branding, in acquiring domains etc</li>
<li>Finally, I wanted the name to be generic enough to be used until the vision of the company has been achieved and shouldn&#8217;t require a change as I pivot.</li>
</ol>
<p>Turns out, people don&#8217;t get it.<br />
<br />
Here are some suggestions to people about naming a company:</p>
<ul>
<li>Make sure the word is such that it can be pronounced by anyone and is easy to spell over the phone. You will loose out on a lot of branding if people search for the wrong keywords.</li>
<li>How would people come across your name? Would you expect people to search for it &#8211; if not, the logo along with the name should be catchy.</li>
<li>What are the closest other names to the name of your company? Is it easy to mis-spell it? If people search for it now, will Google suggest a more popular alternative? Do you expect to override it anytime soon?</li>
<li>Is your audience global or local? If global, go for something that is not specific to your geography or atleast easy for people outside your geography to pronounce.</li>
<li>Stay with the chosen word for atleast 3-4 days. Imagine yourself using it in conversations and see if you are comfortable with the word even after 3-4 days.</li>
</ul>
<p>Personally, I prefer short, single words for company names.
</li>
<li>
<b>Pivoting is not free:</b> Don&#8217;t get me wrong. I am a big fan of lean principles and I still religiously follow a lot of them. And I do understand that pivoting is not about abandoning one idea and moving onto the other or changing your vision as if caught in a tornado but I guess it is possible that people think pivoting comes without a cost when in fact the reality is not so. In short, pivoting has the same issues as knowing when to shut down your startup &#8211; should we persevere or should we rethink?<br />
When you have validated a part of your business model (eg: the demand, the problem/solution fit or say portions of your product) and decide to pivot another aspect of it, there is a good chance of temporary disruption in the flow (read target segment, getting users, revenue streams etc). It&#8217;s quite possible that you had been generating revenues due to your efforts, but now you don&#8217;t see it to be sustainable, so you decide to pivot. This may mean, you have to re-design your site/app experience, come up with a new marketing message and start over on the marketing efforts, and you need to be prepared to bear the cost. This may be tough, especially when you are bootstrapping the company. But then, you don&#8217;t have a choice because the whole idea of pivoting is to reduce the likelihood of reaching a destination that you didn&#8217;t intend to reach in the first place.<br />
Between validation and scale is an important step &#8211; &#8220;validating the scale&#8221;. As described in <a href="http://www.ashmaurya.com/2012/06/the-lean-stack/">the lean stack</a>, there are 4 stages when it comes to building a product &#8211; Understand Problem, Define Solution, Validate Qualitatively, Verify Quantitatively. However the MVP that works in Stage 3 need not work in Stage 4 and may require a strategy pivot, so be careful in Stage 3 to ensure that the same solution holds when you get to Stage 4. This is easier said than done.<br />
Recognize failures early &#8211; atleast have a weekly review of how things are going with regard to the company&#8217;s directions and make sure you make corrections in your path. Get it validated by people who can guide you.</li>
<li><b>Follow the ant philosophy:</b> <a href="http://jimrohn.com/index.php?main_page=page&#038;id=1247">Learn from the horse&#8217;s mouth</a> as he has described it well.<br />
Perseverance is important. Sometimes it feels like you are putting in a lot of effort, but things don&#8217;t seem to work, but sometimes the exact opposite is true. I have seen this with marketing efforts. It takes time for marketing to reach fruition and it is important not to lose your patience when the going gets tough.</li>
<li><b>Have a strong social network or add someone to your team who does:</b> I can&#8217;t say this enough and this builds on the 2 things I mentioned in my previous post &#8211; &#8220;Get out of the building&#8221; and &#8220;The strange story of co-incidences and chance meetings&#8221;. It always helps to have a strong social network (both online and offline). The number of new people I have met (online/offline) has crossed 200 since the time I started Jnaapti.</li>
<li><b>Self discipline revisited:</b> If you have decided on a rhythm, stick with it. Get good at reducing interruptions and handling unavoidable interruptions well. When meeting clients, time is not under your control, so get good at squeezing tasks into available slots between unavoidable interruptions. Time discipline is extremely important especially when you are working alone. Maintain a log of where you are spending your time and optimize what you can optimize. Get good at <a href="http://timothyfitz.wordpress.com/2009/02/13/continual-automation/">continual automation</a> not just with engineering processes but with life! Make a note of key metrics that you want to track on a daily/weekly basis.</li>
<li><b>Be prepared to learn:</b> This may seem obvious, but sometimes you may not realize the effort involved. Running a one-person startup has meant that I had to learn how businesses function, understand sales and marketing, negotiation, valuation, funding, recruitment, building and maintaining relationships, understand lead generation, cost of customer acquisition, designing usable products, build a great user experience and a host of other things in addition to engineering. I like it and is one of the reasons I am doing this, but then, not everyone does.</li>
</ul>
<p>When I started this journey, it was supposed to be a one year stride. The fact that it is Jun 2012 and I haven&#8217;t lost confidence means that this is going somewhere and I intend to continue along this path into the near future&#8230;</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Jnaapti &#8211; A 6 month Report</title>
		<link>https://buzypi.in/2011/12/01/jnaapti-a-6-month-report/</link>
		
		<dc:creator><![CDATA[Gautham Pai]]></dc:creator>
		<pubDate>Thu, 01 Dec 2011 08:29:38 +0000</pubDate>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[My Updates]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[bangalore-startup]]></category>
		<category><![CDATA[entrepreneurship]]></category>
		<category><![CDATA[jnaapti]]></category>
		<category><![CDATA[lean-startup]]></category>
		<category><![CDATA[startup]]></category>
		<guid isPermaLink="false">http://buzypi.in/?p=2972</guid>

					<description><![CDATA[This post is not quite about Jnaapti&#8216;s vision and why I am doing it, but more about things that I have learnt since I founded Jnaapti. I can&#8217;t believe it has been more than 6 months already and what an experience it has been! I can easily blog a few hundred pages about my experiences, [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>This post is not quite about <a href="http://jnaapti.com/">Jnaapti</a>&#8216;s vision and why I am doing it, but more about things that I have learnt since I founded Jnaapti.</p>
<p>I can&#8217;t believe it has been more than 6 months already and what an experience it has been! I can easily blog a few hundred pages about my experiences, but here is the MVP (Minimum Valuable Post) &#8211; the key things that other wantrepreneurs and newbie entrepreneurs can learn from:</p>
<ul>
<li><b>The art of self-discipline</b>: If there is one thing that I should pick among the various things that I learnt in the last 6 months, I would pick being self-disciplined and maintaining a rhythm in the face of distractions that are not under your control. Time management is extremely important. When you are handling all aspects of business, there is a good chance that you need to meet someone at their convenience, or you are asked to provide a service (in my case training) and these are not under your control. So you need to get really good at handling these, and getting back to your work as soon as this is complete. For productivity freaks, I use a combination of <a href="http://en.wikipedia.org/wiki/Pomodoro_Technique">Pomodoro technique</a>, <a href="http://projecthamster.wordpress.com/">Hamster</a>, <a href="http://www.workrave.org/">Workrave</a>, <a href="http://buzypi.in/2010/09/04/fun-with-x-hacks-in-ubuntu/">this hack</a> and a simple Libreoffice document to manage all my data. I wish it could have been simpler and someday, I hope to continue my efforts in building productivity tools.</li>
<li><b>Get out of the building</b>: I can&#8217;t stress this enough. Nearly everytime I got out of the building and started speaking to people, there was some new insight or a business deal that happened. A lot of the times, it seems purely co-incidental (read the next point). The initial couple of weeks were very haphazard and it just seemed like a humongous project that was lying in front of me. While I did have a huge list of tasks/ideas to work on, I didn&#8217;t know where to begin. What should I build now? No clear answers. As I started hunting for answers, I ran into the Lean Startup concepts and fell in love with <a href="http://www.ashmaurya.com/">Ash Maurya</a>, <a href="http://www.startuplessonslearned.com/">Eric Ries</a> and <a href="http://steveblank.com/">Steve Blank</a>&#8216;s philosophies. I followed the lean canvas way of capturing the business model religiously and it has worked out very well. If anything, it helped reduce noise, cut to the chase and build something of value &#8220;now&#8221;. The idea of prioritizing validation and learning before scale has worked in my favor. The first cut of Jnaapti&#8217;s offering didn&#8217;t even have a software component and was entirely conducted over email &#8211; because I realized that the MVP didn&#8217;t need a software component. I concentrated less on the website messaging, since most of my contacts were through my personal network.</li>
<li><b>The strange story of co-incidences and chance meetings</b>: Nearly every business contract I got seems like a pure chance meeting and the more this happens the more you believe in <a href="http://www.paulgraham.com/hubs.html">what is written here</a>. This kind of also proves that there is a critical mass of startups in Bangalore now, and there is a good chance that you will bump into someone who is a startup founder or early employee when you visit coffee shops or technical events. This has worked out so well that I have made it a point to meet, on an average one or two new people every week. Till date, I have met more than 80 new people (including Jnaapti Learners), and that&#8217;s an average of 10 people per month!</li>
<li><b>My experiments with pricing</b>: An early learning for me was about how you need to <a href="http://www.joelonsoftware.com/articles/CamelsandRubberDuckies.html">get pricing right</a> and it&#8217;s almost always never. The inital couple of months I was demanding way too less for my services and slowly as I found out the value of my services, I tweaked it to a point which seems reasonable both for me and my clients. But that said, every new assignment is a new negotiation.</li>
<li><b>Understanding waste reduction</b>: When you are the only person working, and you have the 3 aspects of an organization in front of you &#8211; business, product and engineering &#8211; every moment you spend, you need to think twice. Is this the best use of my time? It helps a lot to reflect on how you spent your time and look at what you could have rather NOT done. This is the art of <a href="http://en.wikipedia.org/wiki/Lean_manufacturing#A_brief_history_of_waste_reduction_thinking">waste reduction</a>.<br />
On a similar note, I have started maintaining what are called &#8220;Implementation reports&#8221; for Jnaapti&#8217;s product development phases. An implementation report is an assessment of</p>
<ul>
<li>how a specific phase fared</li>
<li>what features we set out to build</li>
<li>what was our reasoning about why they should be built</li>
<li>how are the features being used now</li>
<li>if they are not beng used, why so</li>
<li>can its usage be improved</li>
<li>should it be chucked</li>
<li>how can we ensure that we don&#8217;t have such waste in future</li>
</ul>
<li><b>Getting to ramen profitability</b>: There is one thing I can tell you. We, as software engineers in India, don&#8217;t value money (I am speaking generally). We get an awesome package (stop cribbing you guys) right out of college, and then we get into this spiral of work-get paid-work harder-get promoted-ask for a raise. And when things don&#8217;t work in our favor, we start complaining or switch our jobs looking for a better role or more pay. If you want to value money better, quit your job to know what others go through. In the face of inflation, the rupee v/s dollar prices and rising infrastructure costs it has been tough to keep up, but then you got to pay a price. I am close to achieveing <a href="http://www.paulgraham.com/ramenprofitable.html">ramen profitability</a> and I hope things will be better next year. And while achieving ramen profitability is important, it is equally important to ensure that you achieve profitability via the business you are in and not via some job that doesn&#8217;t help you validate or learn more about your business. And yeah, if you want a piece of advice, to get to ramen profitability soon, just invest your savings in some place that is not easy to suck from!</li>
</ul>
<p>I have taken enough breaks and I never felt that this was too demanding (although I do put in long hours once in a while). Needless to say, I am loving the freedom and the flexibility that I have and I wish I can continue this forever! Overall, it has been an amazing 6 months!</p>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Dark Themes in Ubuntu</title>
		<link>https://buzypi.in/2011/10/05/dark-themes-in-ubuntu/</link>
		
		<dc:creator><![CDATA[Gautham Pai]]></dc:creator>
		<pubDate>Wed, 05 Oct 2011 12:38:59 +0000</pubDate>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[ubuntu-dark-theme]]></category>
		<category><![CDATA[ubuntu-hack]]></category>
		<guid isPermaLink="false">http://buzypi.in/?p=2934</guid>

					<description><![CDATA[I was getting bored with my old Ubuntu theme, so I thought I will play around a little with dark themes. So here goes: Here are the list of things used: Wallpaper: Mount Snowdon, Wales Window Control: Black Grass Window Border: Step into Freedom Fonts: Ubuntu Compositing effects (eg: Transparency): Compiz Icons: Faenza]]></description>
										<content:encoded><![CDATA[<p>I was getting bored with my old Ubuntu theme, so I thought I will play around a little with dark themes.</p>
<p>So here goes:</p>
<p><a href="/wordpress/wp-content/uploads/2011/10/ubuntu-dark-theme.png"><img decoding="async" loading="lazy" class="aligncenter size-full wp-image-2953" title="Ubuntu Dark Theme - Thumbnail" src="/wordpress/wp-content/uploads/2011/10/ubuntu-dark-theme-thumb.png" alt="" width="500" height="272"></a></p>
<p>Here are the list of things used:</p>
<ul>
<li>Wallpaper: <a href="http://www.flickr.com/photos/vellender/6031920006/in/pool-1777695@N22">Mount Snowdon, Wales</a></li>
<li>Window Control: <a href="http://box-look.org/content/show.php/Black+Grass?content=103023">Black Grass</a></li>
<li>Window Border: <a href="http://gnome-look.org/content/show.php/Gnome+%22Step+into+Freedom%22?content=85530">Step into Freedom</a></li>
<li>Fonts: <a href="http://font.ubuntu.com/">Ubuntu</a></li>
<li>Compositing effects (eg: Transparency): <a href="http://www.compiz.org/">Compiz</a></li>
<li>Icons: <a href="http://tiheum.deviantart.com/art/Faenza-Icons-173323228">Faenza</a></li>
</ul>
]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Trip to Jog Falls, Aghoreshwara Temple &#8211; Ikkeri, Varadamoola and Varadahalli</title>
		<link>https://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/</link>
		
		<dc:creator><![CDATA[Gautham Pai]]></dc:creator>
		<pubDate>Tue, 16 Aug 2011 11:51:39 +0000</pubDate>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[aghoreshwara-temple-ikkeri]]></category>
		<category><![CDATA[around-bangalore]]></category>
		<category><![CDATA[jog-falls]]></category>
		<category><![CDATA[varadahalli]]></category>
		<category><![CDATA[varadamoola]]></category>
		<guid isPermaLink="false">http://buzypi.in/?p=2858</guid>

					<description><![CDATA[It has been a long time since we went on a trip. This is our first trip of 2011! And boy, what a trip it turned out to be! [ad name=&#8221;blog-post-ad-wide&#8221;] Our last trip to Shimoga was towards Thirthahalli (south of Shimoga). We had covered Mandagadde, Kuppalli, Sakrebailu, Gajanur Dam and Mattur. This time we [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>It has been a long time since we went on a trip. This is our first trip of 2011! And boy, what a trip it turned out to be!</p>
<p><a href="http://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/horizontal-shot-of-origin-of-raja-falls/" rel="attachment wp-att-2866"><img decoding="async" loading="lazy" src="http://buzypi.in/wordpress/wp-content/uploads/2011/08/horizontal-shot-of-origin-of-raja-falls.jpg" alt="" title="Horizontal zoomed view of the Raja Falls origin at Jog Falls, Shimoga" width="500" height="333" class="aligncenter size-full wp-image-2866" /></a><br />
<center>[ad name=&#8221;blog-post-ad-wide&#8221;]</center></p>
<p>Our <a href="http://buzypi.in/2010/10/04/trip-to-mandagadde-kuppalli-mattur-sakrebailu-and-shimoga/">last trip to Shimoga</a> was towards Thirthahalli (south of Shimoga). We had covered Mandagadde, Kuppalli, Sakrebailu, Gajanur Dam and Mattur. This time we headed westward towards Sagar and covered places around it.</p>
<p>Our journey started at 3:30am on Saturday morning. There were 3 of us, and we took an Indica. The roads were mostly good and we had no major hiccups due to road condition almost during the entire journey which included several village roads as well.</p>
<p>The road from Shimoga to Sagar was awesome. It has a resemblance to the Thirthahalli route; there are lots of trees on either sides of the road. One striking difference is that there are more plain lands than the Thirthahalli route. This is what is referred to as <a href="http://en.wikipedia.org/wiki/Bayalu_Seeme">Bayalu Seeme</a>.</p>
<p>We reached Sagar at around 10:00am. We had not made any arrangements for stay. Considering that it was a long weekend, we wanted to get that daemon out of the way and then enjoy our day. So we first started hunting for a good place to stay. Unfortunately, as expected, most good places were full. We then decided to stay in a place, which was both expensive and bad.</p>
<p><span id="more-2858"></span></p>
<p>We then headed towards Jog Falls. Here again, you see vast amounts of plain, green lands stretching all the way to the hills. There was heavy breeze on the way and it was a pleasant experience.</p>
<p><a href="http://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/jog-falls/" rel="attachment wp-att-2865"><img decoding="async" loading="lazy" src="http://buzypi.in/wordpress/wp-content/uploads/2011/08/jog-falls.jpg" alt="" title="Jog Falls, Shimoga" width="500" height="333" class="aligncenter size-full wp-image-2865" /></a><br />
<center>[ad name=&#8221;blog-post-ad-wide&#8221;]</center></p>
<p>Every few meters, you see teenage boys selling pineapples. Pineapples sell for Rs. 10/- a piece for the medium sized ones, and Rs. 5/- a piece for the smaller ones. If you want, they can even peel it and you can have it there, or you can carry it with you. The guy from who we bought the fruit told us that they do this only two days a week and each one ends up selling hundreds.</p>
<p>We reached Jog Falls around 1pm. This is usually not a good time to reach a waterfall, because it will make long exposure photography tough. However, the light was low, and we could take a few good snaps. There are 2 approach routes &#8211; one of them, where you can see all the streams of the fall (Raja, Roarer, Rocket and Rani) in one view, while the other is near the guest house where you reach the top of the Raja falls. This part is more dangerous and you need to exercise caution.</p>
<p><a href="http://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/vertical-shot-of-origin-of-raja-falls/" rel="attachment wp-att-2860"><img decoding="async" loading="lazy" src="http://buzypi.in/wordpress/wp-content/uploads/2011/08/vertical-shot-of-origin-of-raja-falls.jpg" alt="" title="Vertial Shot of the origin of Raja Falls at Jog Falls, Shimoga" width="333" height="500" class="aligncenter size-full wp-image-2860" /></a></p>
<p>There was less water than expected, but in a way this is good, because otherwise there will be lot of droplets in the air, and you can hardly see the beauty of the falls.</p>
<p>After satisfying ourselves with enough snaps, we headed back to Sagar. We had lunch in a hotel, and enquired about the possible places to visit. Of the possible places that we could visit: Ikkeri, Sigandur, Varadamoola, we decided to visit Ikkeri and Varadamoola that day. Sigandur requires more time and we plan to visit it in a subsequent trip.</p>
<p>In addition to the directions, the hotel manager also asked us to visit Varadahalli. In Varadahalli is the Samadhi of Sridhara swamiji and this place is supposed to be very powerful.</p>
<p>Our next stop was at Aghoreshwara temple, in Ikkeri. The temple was built with granite and dates back to the 16th century. Like any stone temple, the interiors are cool at any time of the day.</p>
<p><a href="http://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/aghoreshwara-temple-ikkeri/" rel="attachment wp-att-2871"><img decoding="async" loading="lazy" src="http://buzypi.in/wordpress/wp-content/uploads/2011/08/aghoreshwara-temple-ikkeri.jpg" alt="" title="Aghoreshwara Temple, Ikkeri a wide angle view" width="500" height="333" class="aligncenter size-full wp-image-2871" /></a></p>
<p>The temple has a Aghoreshwara statue (Lord Shiva). In front of the temple is a Nandi statue and on the right is Parvathi temple.</p>
<p>In the front, you see a couple of broken feet. This one, supposedly belongs to a 30ft statue of Choudeshwari Devi.</p>
<p><a href="http://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/choudeshwari-feet-aghoreshwara-temple-ikkeri/" rel="attachment wp-att-2874"><img decoding="async" loading="lazy" src="http://buzypi.in/wordpress/wp-content/uploads/2011/08/choudeshwari-feet-aghoreshwara-temple-ikkeri.jpg" alt="" title="Feet of Choudeshwari Devi at Aghoreshwara Temple, Ikkeri" width="500" height="333" class="aligncenter size-full wp-image-2874" /></a></p>
<p>We then went to Varadamoola. Varadamoola is the birth place of the Varada river. Moola in Kannada means &#8220;origin&#8221;. We enquired with the priest about the origin. He said that the origin is in the foot of the statue of the Devi in the temple, it then flows into a pool outside, which subsequently flows into an even bigger pool. After introducing ourselves, we were advised (for a second time in the day) to visit Varadahalli. It was already 6:45pm and was almost dark. But we decided to go anyway.</p>
<p><a href="http://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/the-pool-outside-the-temple-at-varada-moola/" rel="attachment wp-att-2861"><img decoding="async" loading="lazy" src="http://buzypi.in/wordpress/wp-content/uploads/2011/08/the-pool-outside-the-temple-at-varada-moola.jpg" alt="" title="The pool outside the temple at Varadamoola" width="500" height="333" class="aligncenter size-full wp-image-2861" /></a></p>
<p>We took an internal route from Ikkeri to Varadahalli. This route has one stretch (of about 50-100m) where the roads are really bad and is a bit difficult to drive in vehicles with low clearing. Other than that, the roads are good and we reached Varadahalli at around 7:40pm.</p>
<p>The temple is on a hill top and there are a couple of hundred steps to climb. We visited the temple, offered prayers and then headed back to Sagar via the better route.</p>
<p>During dinner, we met a person who was from a small village called Sampaje near Sullia. As we spoke to him, he mentioned Varadahalli (third time someone mentioned it independtly to us, is this a co-incidence?!) and when we told him we had already been there, he asked if we had visited the cave further to the top from the temple. We had missed it as it had already been dark when we visited.</p>
<p>The weather was pleasant throughout the trip, it drizzled once in a while, but other than that, we did not have any heavy rain until our way back, when it started raining heavily near Tumkur.</p>
<p>(Day 2 and Day 3 experiences coming soon.)</p>

<a href='https://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/vertical-shot-of-origin-of-raja-falls/'><img width="100" height="150" src="https://buzypi.in/wp-content/uploads/2011/08/vertical-shot-of-origin-of-raja-falls.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/the-pool-outside-the-temple-at-varada-moola/'><img width="150" height="100" src="https://buzypi.in/wp-content/uploads/2011/08/the-pool-outside-the-temple-at-varada-moola.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/roarer-jog-falls/'><img width="100" height="150" src="https://buzypi.in/wp-content/uploads/2011/08/roarer-jog-falls.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/raja-falls-long-exposure/'><img width="100" height="150" src="https://buzypi.in/wp-content/uploads/2011/08/raja-falls-long-exposure.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/newly-constructed-path-to-the-bottom-of-jog-falls/'><img width="100" height="150" src="https://buzypi.in/wp-content/uploads/2011/08/newly-constructed-path-to-the-bottom-of-jog-falls.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/jog-falls/'><img width="150" height="100" src="https://buzypi.in/wp-content/uploads/2011/08/jog-falls.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/horizontal-shot-of-origin-of-raja-falls/'><img width="150" height="100" src="https://buzypi.in/wp-content/uploads/2011/08/horizontal-shot-of-origin-of-raja-falls.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/guest-house-jog-falls/'><img width="100" height="150" src="https://buzypi.in/wp-content/uploads/2011/08/guest-house-jog-falls.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/doors-at-aghoreshwara-temple-ikkeri/'><img width="100" height="150" src="https://buzypi.in/wp-content/uploads/2011/08/doors-at-aghoreshwara-temple-ikkeri.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/carvings-at-aghoreshwara-temple-ikkeri/'><img width="150" height="100" src="https://buzypi.in/wp-content/uploads/2011/08/carvings-at-aghoreshwara-temple-ikkeri.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/aghoreshwara-temple-ikkeri-vertical-shot/'><img width="100" height="150" src="https://buzypi.in/wp-content/uploads/2011/08/aghoreshwara-temple-ikkeri-vertical-shot.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/aghoreshwara-temple-ikkeri/'><img width="150" height="100" src="https://buzypi.in/wp-content/uploads/2011/08/aghoreshwara-temple-ikkeri.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/choudeshwari-feet-aghoreshwara-temple-ikkeri/'><img width="150" height="100" src="https://buzypi.in/wp-content/uploads/2011/08/choudeshwari-feet-aghoreshwara-temple-ikkeri.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/16/trip-to-jog-falls-aghoreshwara-temple-ikkeri-varadamoola-and-varadahalli/carvings-aghoreshwara-temple-ikkeri/'><img width="100" height="150" src="https://buzypi.in/wp-content/uploads/2011/08/carvings-aghoreshwara-temple-ikkeri.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>

]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>Lalbagh Flower Show &#8211; August 2011</title>
		<link>https://buzypi.in/2011/08/12/lalbagh-flower-show-2011/</link>
		
		<dc:creator><![CDATA[Gautham Pai]]></dc:creator>
		<pubDate>Fri, 12 Aug 2011 10:14:00 +0000</pubDate>
				<category><![CDATA[Photography]]></category>
		<category><![CDATA[lalbagh]]></category>
		<category><![CDATA[lalbagh-bangalore]]></category>
		<category><![CDATA[lalbagh-flower-show]]></category>
		<guid isPermaLink="false">http://buzypi.in/?p=2807</guid>

					<description><![CDATA[It has been 2 years since I went to the Lalbagh Flower Show. The flower show is hosted twice a year once during Independence Day (i.e. in August), the other during Republic Day (i.e. in January). It is hosted in the Lalbagh Glass House. If you plan to use your vehicle to reach Lalbagh, there [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>It has been 2 years since I went to the Lalbagh Flower Show. The flower show is hosted twice a year once during Independence Day (i.e. in August), the other during Republic Day (i.e. in January). It is hosted in the Lalbagh Glass House.</p>
<p><a href="http://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0159-t/" rel="attachment wp-att-2811"><img decoding="async" loading="lazy" src="http://buzypi.in/wordpress/wp-content/uploads/2011/08/IMG_0159-t.jpg" alt="" title="Lalbagh Flower Show - August 2011" width="333" height="499" class="aligncenter size-full wp-image-2811" /></a></p>
<p>If you plan to use your vehicle to reach Lalbagh, there is a decent amount of parking space near the East gate.</p>
<p><a href="http://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0129-t/" rel="attachment wp-att-2813"><img decoding="async" loading="lazy" src="http://buzypi.in/wordpress/wp-content/uploads/2011/08/IMG_0129-t.jpg" alt="" title="Lalbagh Flower Show - August 2011" width="333" height="499" class="aligncenter size-full wp-image-2813" /></a></p>
<p>This is my third visit to the flower show. The last time I visited <a href="http://buzypi.in/2009/08/10/lalbagh-flower-show-2009/" title="Lalbagh Flower Show - August 2009">was in 2009</a> when I was new to SLR photography and prior to that I <a href="http://buzypi.in/2007/01/21/lalbagh-flower-show/" title="Lalbagh Flower Show - January 2007">visited in 2007</a>.</p>
<p>The flowers were mostly the same as my previous visit. The attraction this time was the Lotus Temple built using roses.</p>
<p><a href="http://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0062-t/" rel="attachment wp-att-2818"><img decoding="async" loading="lazy" src="http://buzypi.in/wordpress/wp-content/uploads/2011/08/IMG_0062-t.jpg" alt="" title="Lotus Temple at Lalbagh Flower Show - August 2011" width="500" height="333" class="aligncenter size-full wp-image-2818" /></a></p>
<p><center>[ad name=&#8221;blog-post-ad-wide&#8221;]</center></p>
<p><span id="more-2807"></span></p>
<p>The roses are being watered and replaced so they appear fresh even though it has been almost a week.</p>
<p><a href="http://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0167-t/" rel="attachment wp-att-2810"><img decoding="async" loading="lazy" src="http://buzypi.in/wordpress/wp-content/uploads/2011/08/IMG_0167-t.jpg" alt="" title="Busy at work in Lalbagh Flower Show - August 2011" width="333" height="500" class="aligncenter size-full wp-image-2810" /></a></p>
<p><a href="http://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0101-t/" rel="attachment wp-att-2816"><img decoding="async" loading="lazy" src="http://buzypi.in/wordpress/wp-content/uploads/2011/08/IMG_0101-t.jpg" alt="" title="Lalbagh Flower Show - August 2011" width="500" height="333" class="aligncenter size-full wp-image-2816" /></a></p>
<p><center>[ad name=&#8221;blog-post-ad-wide&#8221;]</center></p>
<p>I first started clicking snaps with my 18-55mm lens. It has been a long time since I have been on a trip, so I felt a bit out of touch. Towards the end, I used the 70-300mm lens in macro mode and got a few good snaps.</p>
<p><a href="http://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0181-t/" rel="attachment wp-att-2808"><img decoding="async" loading="lazy" src="http://buzypi.in/wordpress/wp-content/uploads/2011/08/IMG_0181-t.jpg" alt="" title="Lalbagh Flower Show - August 2011" width="333" height="499" class="aligncenter size-full wp-image-2808" /></a></p>
<p>The Lalbagh flower show is on till August 15th, so if you are into flower photography or macro photography, don&#8217;t miss this opportunity!</p>

<a href='https://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0181-t/'><img width="100" height="150" src="https://buzypi.in/wp-content/uploads/2011/08/IMG_0181-t.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0171-t/'><img width="100" height="150" src="https://buzypi.in/wp-content/uploads/2011/08/IMG_0171-t.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0167-t/'><img width="100" height="150" src="https://buzypi.in/wp-content/uploads/2011/08/IMG_0167-t.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0159-t/'><img width="100" height="150" src="https://buzypi.in/wp-content/uploads/2011/08/IMG_0159-t.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0143-t/'><img width="100" height="150" src="https://buzypi.in/wp-content/uploads/2011/08/IMG_0143-t.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0129-t/'><img width="100" height="150" src="https://buzypi.in/wp-content/uploads/2011/08/IMG_0129-t.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0112-t/'><img width="100" height="150" src="https://buzypi.in/wp-content/uploads/2011/08/IMG_0112-t.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0105-t/'><img width="100" height="150" src="https://buzypi.in/wp-content/uploads/2011/08/IMG_0105-t.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0101-t/'><img width="150" height="100" src="https://buzypi.in/wp-content/uploads/2011/08/IMG_0101-t.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0062-t/'><img width="150" height="100" src="https://buzypi.in/wp-content/uploads/2011/08/IMG_0062-t.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0053-t/'><img width="150" height="100" src="https://buzypi.in/wp-content/uploads/2011/08/IMG_0053-t.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>
<a href='https://buzypi.in/2011/08/12/lalbagh-flower-show-2011/img_0086-t/'><img width="100" height="150" src="https://buzypi.in/wp-content/uploads/2011/08/IMG_0086-t.jpg" class="attachment-thumbnail size-thumbnail" alt="" decoding="async" loading="lazy" /></a>

]]></content:encoded>
					
		
		
			</item>
		<item>
		<title>It&#8217;s time</title>
		<link>https://buzypi.in/2011/05/01/its-time/</link>
		
		<dc:creator><![CDATA[Gautham Pai]]></dc:creator>
		<pubDate>Sun, 01 May 2011 17:12:56 +0000</pubDate>
				<category><![CDATA[My Updates]]></category>
		<category><![CDATA[destiny]]></category>
		<category><![CDATA[intuition]]></category>
		<category><![CDATA[jnaapti]]></category>
		<category><![CDATA[startup]]></category>
		<guid isPermaLink="false">http://buzypi.in/?p=1925</guid>

					<description><![CDATA[Ok, Neo, it&#8217;s time for you to take the plunge, and trust your destiny to teach you to fly before you reach ground&#8230;]]></description>
										<content:encoded><![CDATA[<blockquote>
<p>Ok, Neo, it&#8217;s time for you to take the plunge, and trust your destiny to teach you to fly before you reach ground&#8230;</p>
</blockquote>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
