Sunday, May 6, 2012

A poem-dedicated to my dear friends


           Mangtha U

Hun hlutak a inher mitin tan
I hmang tangkai e  nang erawh chuan;
An au ruai thin I sakhming miten
A chhelai siamthatu i ni e.

Hnam hming tihmawi kan zonunzia hi
I chhawm nung reng e lenrual zingah;
An sawi  naupang rilru thianghlim hi
Awmin a lang reng thin i nunzia ah.

Entawn tur min hnutchhiah i nunah
Entawn tur min hnutchhiah zirlaiah;
"LALPA tih hi finna bul a ni."
Tih min hrilh chiangtu nang ngei hi i ni.

Min fuihtu leh min tihlimtu chu,
Nang ngei hi i ni kan nghilh lon'g che.
Hawihhawmna leh rilru zau tak kha,
Vawng reng ang che-tih kan duhsak a che.

Kan nghilh lon'g e kan hlimlaini te
In nunzemawi tak min zirtirte,
Kan vawng reng dawn e fam chan thlengin
Hmangaihna leh duhsakna nen-MANGTHA(U)!

[NB: I composed this poem in an hour to express my feelings to my dear freinds in their farewell program]


Sunday, April 15, 2012

Who am I?


Many a times I used to meditate myself thinking who I really am! What purpose do I have in this world of our journey? People coming and going, struggling for their survival within which even I, myself is included.

People tend to follow their dreams too much whereby they sometimes does not realized what they were losing and gaining as time passes by. They may sometimes restricted to their profession too much that they don’t have time to screen back their past life and acknowledge themselves their heredity. Not just a single person who falls in this category rather a crowd of people lining up which may possibly then lead to a lost tribe in a few decades.

Once upon a time, there was a story about a horse that travelled across a country. The horse considered himself not less value than the person who rides him since he had been treated similar to that person for the time being. On the way, when they gone through the shed where all the horse usually feed, but the horse doesn’t want to be fed thinking in mind that since he was being treated as human, he will be serving food along with his master on their destination. Then, thing doesn’t happen as expected. As a result, he spends the whole time with hunger throughout their journey.

This short story tells us that having false deception doesn’t change who we are?  Where we belong? No matter what great achievement we must acquire, it is always mandatory to know ourselves clean and clear. Wherever we may be, what profession we might have may be in the foreign countries, we should always remember our background and limits. A moment of respect we might receive by putting our real image aside but a whole life respect we will get if we walk along with our tradition, culture and representing as we are! In the latter case, achieving great success become the proud of the tradition and culture and it is the only situation where we can have a complete success.   

Celebrating ‘‘chapchar kut’’ is one way to remind and refresh ourselves regarding our cultural prospect. We, the present generation, are lucky enough to achieve complete success. Therefore, we should not neglect the chance that we have, rather we should be excited and involve in this festive celebration as much as possible. As there’s a saying, “We are MIZOS’, we are handsome and beautiful”. Therefore, it is our only duty, not anyone else, to make the name of our culture beauty and let it feel proud.  Our profession might differ to one another but it’s not a problem of confusion until we remember who we are and where we belong. So, at this time, let’s celebrate joyfully and acknowledge ourselves, the real meaning of our culture. “HAPPY CHAPCHAR KUT EVERYONE “  



NB:This is my recent article for the NMZP(NERIST Mizo Zirlai Pawl) chapchar kut celebration,2012. Feel free to comment :-)

Tuesday, March 27, 2012

Evaluating a^x where 'a' is the base and 'x' is the exponent , using recursion


#include
int exponent(int, int);
int main()
{

int a,b;
printf("\n Enter the base and exponent: ");
  scanf("%d %d",&a,&b);

printf("\n The exponent of %d over %d is %d",a,b,exponent(a,b));

return 0;
}
int exponent(int k,int l)
 {
int x;
if(l<=0)
 return 1;
  x=exponent(k,(l-1));

return (x*k);

 }

[/THis is the program that I wrote just before mid-sem exam]

Sunday, January 1, 2012

HAPPY NEW YEAR

It's not a dream;
It's real, and here we are-
The very first morning of the most awaited  year-2012;
It's so fresh,beautiful and wonderful..
People in this planet-
We expect something -
All in different ways-
Wishing you all a HAPPY NEW YEAR.

Saturday, December 10, 2011

How to hide desktop content of Windows 7

A software called "Fences"  is installed. The desktop content will be appear/disappear when you double click anywhere on the desktop. If you want to configure the arrangement of the desktop content,then right click on the desktop, then select *configure fences* whereby you can follow the following steps:-
tools->take the snapshot of the arrangement which you considered the best->snap it->prompt will appear asking you want to use or not?->select yes then close...

The next time when you viewed the desktop,if undesirable arrangement appears then right click again following the same rule then choose the snapshot that you have taken then use it..
ENjoy!!!!