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’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 of Oct. at 1500hrs, I would like to
present myself as a prospective lover. Our love affair would be on
probation for a period of three months and depending on compatibility,
would be made permanent. Of course, upon completion of probation,
there will be continuous on the job training and performance appraisal
schemes leading up to promotion from lover to spouse. The expenses
incurred for coffee and entertainment would initially be shared
equally between us. Later, based on your performance, I might take! up
a larger share of the expenses. However I am broadminded enough to be
taken care of, on your expense account.
I request you to kindly respond within 30 days of receiving this
letter, failing which, this offer would be cancelled without further
notice and I shall be considering someone else. I would be happy, if
you could forward this letter to your sister, if you do not wish to
take up this offer.
Wish you all the best!
Thanking you in anticipation,
Yours sincerely,
HR Manager
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 < = LAST; i++ )
{
sum += i;
}
/*-for-*/
printf(”sum = %d\n”, sum);
return 0;
}
##########################################################
AND THE DEVELOPER FIXES IT THIS WAY
..
..
..
..
..
..
..
..
…
..
..
..
##########################################################
#include stdio.h;
#define LAST 10
int main()
{
int i, sum = 0;
/*

*/
for ( i = 1; i < = LAST; i++ )
{
sum += i;
}
/*-for-*/
printf(”sum = %d\n”, sum);
return 0;
}
##########################################################
HAPPY CODING
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

I AM E.GO
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 in market for PHP.
But Symfony is a beauty. It is a beautiful blend of MVC architecture and Object Oriented Programming.
When I started learning Symfony … I started learning it the wrong way
Instead of understanding Symfony in depth.. I started building a project on it by the tutorial published by them.
Here is the link to the first project http://www.symfony-project.org/tutorial/1_2/my-first-project .
I was confused with things.
But I realised soon that things are not going the right way.
So… I started again. I started with reading the Symfony book.
Here is the link to it http://www.symfony-project.org/book/1_2/
I have not yet finished reading it.. But ya.. Now I got understanding of Symfony.
And now.. when I look at the project .. I get a clear understanding of how things are done.
So guys eager to learn Symfony..
1. Start reading the documentation http://www.symfony-project.org/doc/1_2/
2. Start Reading the book http://www.symfony-project.org/book/1_2/
3. Along with the book start with building first project http://www.symfony-project.org/tutorial/1_2/my-first-project .
4. Another Project (Using Doctrine) http://www.symfony-project.org/jobeet/1_2/Doctrine/en/
You are done now
So go ahead and check out lates version of Symfony at http://www.symfony-project.org/
Install it as a pear package.. And start enjoying the real meaning of MVCarchitecture.
~Lavina~
Recent Comments