<?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/"
	>

<channel>
	<title>Lavina's Blog</title>
	<atom:link href="http://lavina.in/feed/" rel="self" type="application/rss+xml" />
	<link>http://lavina.in</link>
	<description>Technology, Finance and Philosophy</description>
	<pubDate>Sat, 03 Oct 2009 15:56:50 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Love Letter: HR to his girlfriend Sara</title>
		<link>http://lavina.in/love-letter-hr-to-his-girlfriend-sara/</link>
		<comments>http://lavina.in/love-letter-hr-to-his-girlfriend-sara/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 23:40:38 +0000</pubDate>
		<dc:creator>lavinal</dc:creator>
		
		<category><![CDATA[General]]></category>

		<category><![CDATA[Funny]]></category>

		<category><![CDATA[Love Letter]]></category>

		<guid isPermaLink="false">http://lavina.in/?p=61</guid>
		<description><![CDATA[Ever wondered how a HR Manager could write a love letter to his girlfriend?
Hope you would enjoy it.
_________________________________________________________________
To, Sara
Sub: Offer of love!
Dear Ma&#8217;am,
   I am very happy to inform you that I have fallen in Love with you
since the 20th of October (Thursday). With reference to the meeting
held between us on the 19th [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wondered how a HR Manager could write a love letter to his girlfriend?</p>
<p>Hope you would enjoy it.</p>
<p>_________________________________________________________________<br />
To, Sara</p>
<p>Sub: Offer of love!</p>
<p>Dear Ma&#8217;am,</p>
<p>   I am very happy to inform you that I have fallen in Love with you<br />
since the 20th of October (Thursday). With reference to the meeting<br />
held between us on the 19th of Oct. at 1500hrs, I would like to<br />
present myself as a prospective lover. Our love affair would be on<br />
probation for a period of three months and depending on compatibility,<br />
would be made permanent.  Of course, upon completion of probation,<br />
there will be continuous on the job training and performance appraisal<br />
schemes leading up to promotion from lover to spouse. The expenses<br />
incurred for coffee and entertainment would initially be shared<br />
equally between us. Later, based on your performance, I might take! up<br />
a larger share of the expenses. However I am broadminded enough to be<br />
taken care of, on your expense account.</p>
<p>    I request you to kindly respond within 30 days of receiving this<br />
letter, failing which, this offer would be cancelled without further<br />
notice and I shall be considering someone else. I would be happy, if<br />
you could forward this letter to your sister, if you do not wish to<br />
take up this offer.</p>
<p>Wish you all the best!</p>
<p>Thanking you in anticipation,</p>
<p>Yours sincerely,</p>
<p>HR  Manager</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Flavina.in%2Flove-letter-hr-to-his-girlfriend-sara%2F&amp;linkname=Love%20Letter%3A%20HR%20to%20his%20girlfriend%20Sara"><img src="http://lavina.in/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://lavina.in/love-letter-hr-to-his-girlfriend-sara/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Debugging !</title>
		<link>http://lavina.in/debugging/</link>
		<comments>http://lavina.in/debugging/#comments</comments>
		<pubDate>Thu, 20 Aug 2009 19:52:36 +0000</pubDate>
		<dc:creator>lavinal</dc:creator>
		
		<category><![CDATA[Technolgy]]></category>

		<category><![CDATA[Debugging]]></category>

		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://lavina.in/?p=45</guid>
		<description><![CDATA[Hi all.. I received a forward on my email and thought if sharing it through my blog.
TO ALL DEVELOPERS: PLEASE REMOVE THIS BUG FROM THE CODE:
##########################################################
#include
#define LAST 10
int main()
{
int i, sum = 0;

for ( i = 1; i &#60; = LAST; i++ )
{
sum += i;
}
/*-for-*/
printf(&#8221;sum = %d\n&#8221;, sum);
return 0;
}
##########################################################
AND THE DEVELOPER FIXES IT THIS WAY
..
..
..
..
..
..
..
..
&#8230;
..
..
..
##########################################################
#include [...]]]></description>
			<content:encoded><![CDATA[<p>Hi all.. I received a forward on my email and thought if sharing it through my blog.</p>
<p><strong>TO ALL DEVELOPERS: PLEASE REMOVE THIS BUG FROM THE CODE:</strong></p>
<p>##########################################################<br />
#include<br />
#define LAST 10</p>
<p>int main()<br />
{<br />
int i, sum = 0;<br/></p>
<p><img class="alignleft size-full wp-image-46" title="att4435769" src="http://lavina.in/wp-content/uploads/2009/08/att4435769.gif" alt="att4435769" width="100" height="75" /><br/><br/><br/><br/></p>
<p>for ( i = 1; i &lt; = LAST; i++ )<br />
{<br />
sum += i;<br />
}</p>
<p>/*-for-*/<br />
printf(&#8221;sum = %d\n&#8221;, sum);<br />
return 0;<br />
}<br />
##########################################################</p>
<p><strong>AND THE DEVELOPER FIXES IT THIS WAY</strong><br />
..<br />
..<br />
..<br />
..<br />
..<br />
..<br />
..<br />
..<br />
&#8230;<br />
..<br />
..<br />
..</p>
<p>##########################################################<br />
#include stdio.h;<br />
#define LAST 10</p>
<p>int main()<br />
{<br />
int i, sum = 0;<br />
<span style="font-family: mceinline;"><strong> /*</strong> </span><br/></p>
<p><img class="alignnone size-full wp-image-47" title="att4435770" src="http://lavina.in/wp-content/uploads/2009/08/att4435770.gif" alt="att4435770" width="100" height="75" /><br/><br/><br/><br/><br/></p>
<p><span style="font-family: mceinline;"><strong>*/</strong></span><br />
for ( i = 1; i &lt; = LAST; i++ )<br />
{<br />
sum += i;<br />
}</p>
<p>/*-for-*/<br />
printf(&#8221;sum = %d\n&#8221;, sum);<br />
return 0;<br />
}<br />
##########################################################</p>
<p>HAPPY CODING <img src='http://lavina.in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Flavina.in%2Fdebugging%2F&amp;linkname=Debugging%20%21"><img src="http://lavina.in/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://lavina.in/debugging/feed/</wfw:commentRss>
		</item>
		<item>
		<title>I AM E.GO !</title>
		<link>http://lavina.in/i-am-ego/</link>
		<comments>http://lavina.in/i-am-ego/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 16:17:18 +0000</pubDate>
		<dc:creator>lavinal</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://lavina.in/?p=20</guid>
		<description><![CDATA[Hi.. This post is dedicated for the E.GO series by Wipro.
Twitter Handle : http://twitter.com/flaunturego
Facebook : http://www.facebook.com/iamego
YouTube Channel : http://www.youtube.com/flaunturego
]]></description>
			<content:encoded><![CDATA[<p>Hi.. This post is dedicated for the E.GO series by Wipro.<br />
Twitter Handle : <a href="http://twitter.com/flaunturego" target="_blank">http://twitter.com/flaunturego</a><br />
Facebook : <a href="http://www.facebook.com/iamego" target="_blank">http://www.facebook.com/iamego</a><br />
YouTube Channel : <a href="http://www.youtube.com/flaunturego" target="_blank">http://www.youtube.com/flaunturego</a><br />
<div id="attachment_21" class="wp-caption aligncenter" style="width: 510px"><img src="http://lavina.in/wp-content/uploads/2009/07/ego2.jpg" alt="I AM E.GO" title="ego" width="500" class="size-full wp-image-21" /><p class="wp-caption-text">I AM E.GO</p></div></p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Flavina.in%2Fi-am-ego%2F&amp;linkname=I%20AM%20E.GO%20%21"><img src="http://lavina.in/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://lavina.in/i-am-ego/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Change: The only constant thing</title>
		<link>http://lavina.in/change-the-only-constant-thing/</link>
		<comments>http://lavina.in/change-the-only-constant-thing/#comments</comments>
		<pubDate>Wed, 18 Feb 2009 18:38:47 +0000</pubDate>
		<dc:creator>lavinal</dc:creator>
		
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://lavina.in/?p=17</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[
]]></content:encoded>
			<wfw:commentRss>http://lavina.in/change-the-only-constant-thing/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Beginning Symfony</title>
		<link>http://lavina.in/learning-wp/</link>
		<comments>http://lavina.in/learning-wp/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 09:59:07 +0000</pubDate>
		<dc:creator>lavinal</dc:creator>
		
		<category><![CDATA[Technolgy]]></category>

		<category><![CDATA[MVC]]></category>

		<category><![CDATA[OOP]]></category>

		<category><![CDATA[PHP]]></category>

		<category><![CDATA[Symfony]]></category>

		<guid isPermaLink="false">http://lavina.in/?p=6</guid>
		<description><![CDATA[Well guys.. I was thinking of starting a blog for a long time.. And finally.. its here..
I thought what should my first post relate to.
Cuurently I am interning with a Company in Kanpur and learning new technologies.
One of the technology is Symfony..
Symfony is a well designed framework for PHP. There are many frameworks that exists [...]]]></description>
			<content:encoded><![CDATA[<p>Well guys.. I was thinking of starting a blog for a long time.. And finally.. its here..</p>
<p>I thought what should my first post relate to.</p>
<p>Cuurently I am interning with a Company in Kanpur and learning new technologies.</p>
<p>One of the technology is Symfony..</p>
<p>Symfony is a well designed framework for PHP. There are many frameworks that exists in market for PHP.</p>
<p>But Symfony is a beauty.  It is a beautiful blend of MVC architecture and Object Oriented Programming.</p>
<p>When I started learning Symfony &#8230; I started learning it the wrong way <img src='http://lavina.in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Instead of understanding Symfony in depth.. I started building a project on it by the tutorial published by them.</p>
<p>Here is the link to the first project <a href="http://www.symfony-project.org/tutorial/1_2/my-first-project">http://www.symfony-project.org/tutorial/1_2/my-first-project .</a></p>
<p>I was confused with things.</p>
<p>But I realised soon that things are not going the right way.</p>
<p>So&#8230; I started again. I started with reading the Symfony book.</p>
<p>Here is the link to it <a href="http://www.symfony-project.org/book/1_2/">http://www.symfony-project.org/book/1_2/</a></p>
<p>I have not yet finished reading it.. But ya.. Now I got understanding of  Symfony.</p>
<p>And now.. when I look at the project .. I get a clear understanding of how things are done.</p>
<p>So guys eager to learn Symfony..</p>
<p>1. Start reading the documentation <a href="http://www.symfony-project.org/doc/1_2/">http://www.symfony-project.org/doc/1_2/</a></p>
<p>2. Start Reading the book <a href="http://www.symfony-project.org/book/1_2/">http://www.symfony-project.org/book/1_2/</a></p>
<p>3. Along with the book start with building first project <a href="http://www.symfony-project.org/tutorial/1_2/my-first-project">http://www.symfony-project.org/tutorial/1_2/my-first-project .</a></p>
<p>4. Another Project (Using Doctrine) <a href="http://www.symfony-project.org/jobeet/1_2/Doctrine/en/">http://www.symfony-project.org/jobeet/1_2/Doctrine/en/</a></p>
<p>You are done now <img src='http://lavina.in/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So go ahead and check out lates version of Symfony at <a href="http://www.symfony-project.org/">http://www.symfony-project.org/</a></p>
<p>Install it as a pear package.. And start enjoying the real meaning of MVCarchitecture.</p>
<p>~Lavina~</p>
<a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?linkurl=http%3A%2F%2Flavina.in%2Flearning-wp%2F&amp;linkname=Beginning%20Symfony"><img src="http://lavina.in/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a>]]></content:encoded>
			<wfw:commentRss>http://lavina.in/learning-wp/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
