Tuesday, March 10, 2009

My first trek with CTC

Hi,
I joined CTC in feb-2009 and went for first trek with them at Nagalapuram, near AP and TN boarder on 8th-march. What was the day...i will always remember the day. Fist time I dive from 10 feet hill and without knowing diving.

read more here

Monday, January 26, 2009

Saturday, January 3, 2009

Taste of different Linux flavor

These days i am busy with testing different Linux operating system(OS). Its about 2 years since i have not used windows (Black Box).Yes i thinking windows nothing more than black box. I used windows during my B.Tech. That time i know nothing about Linux. I introduced with Linux in my final year when i started my Project. After that my interest move towards Linux and down towards windows. Its because no tools coming for developer. where as in Linux every essential software coming by default and rest are available through repository. I am using fedora from last 2 years. Its because packages are coming with fedora CD/DVD itself . These days i tested another flavor like Centos, Ubuntu, Debian, Kubuntu, Solaris 10. And off course Mac Os also which available in IITM cse lab. Still i am using fedora but i tried just for see how much difference is there in between all these flavors. I got all flavor because all these flavor are easily available on IITM ftp site except Solaris . And Ubuntu repository is here. So installing all software in Ubuntu is not taking more than half an hour. So, now i am using Ubuntu server edition 8.10. I got surprised when i saw different kind of software available through Ubuntu repository. Its amazing to see long list of software. Even some software which even not available on fedora repository. I like gnome desktop either on any flavor but new version of fedora(10) and Ubuntu KDE desktop is really good. But i think its little slower than gnome desktop. I given some ranking to Linux according to my choice :
1: Fedora - Mac OS. :: (9/10 point)
2: Ubuntu/kubuntu - Solaris. :: (8/10 point)
3: Centos. :: (7/10 point)
4: Windows (all flavor). :: (4/10 point)

Yum configuration :
Centos :
Step 1) add "failovermethod=priority" without quote in /etc/yum.repos.d/CentOS-Base.repo with every repository link.

Step 2) add
export http_proxy=http://user:password@proxyip:port/
export ftp_proxy=http://user:password@proxyip:port/
export no_proxy=.domain.com
export HTTP_PROXY=http://user:password@proxyip:port/
export FTP_PROXY=http://user:password@proxyip:port/

in file ~/.bash_profile
Step 3) run on command line "source ~/.bash_profile"
Step 4) yum update
Step 5) yum install pkg-name.

Fedora :

Step 1) sudo rpm --import /etc/pki/rpm-gpg/*

Step 2) for third party repository search "livna" and get the rpm of livna-release-*.rpm

Step 3) Export proxy same as Centos.

Step 4) sudo yum update

Step 5) yum install pkg-name

apt-get configuration :
Ubuntu 8.10 :
Step 1) Add these two line in /etc/apt/apt.conf

Acquire::http::Proxy "http://user:password@proxyip:port/";
Acquire::ftp::Proxy "ftp://user:password@proxyip:port/";
Step 2) You can export

export http_proxy=http://user:password@proxyip:port/
export ftp_proxy=http://user:password@proxyip:port/
export no_proxy=.domain.com
export HTTP_PROXY=http://user:password@proxyip:port/
export FTP_PROXY=http://user:password@proxyip:port/

these lines same as Centos or add in file /home/user/.bashrc


Saturday, October 4, 2008

Laser Etravaganza show

This is SHAASTRA NIGHT show on 3rd October at OAT in IIT Madras. What a show it was...!!! its still stunning...! It was story telling by Laser beam..Dancing beams, bright colorful image sequences, splashes of light filled in the atmosphere, and shy away the stars in the night sky. Any light will be belittled by the brightness of the stage...Its amazing way of story telling...







This was started at 8.30 pm with story telling about IIT student how students studying, sleeping in class, after finishing study going abroad by flight . How they inventing new thing. After that they played another story then after ends with story of India. Its new experience for me to see all these thing by laser beam. Its was just play of light beam with different angle but effect of that light is superb...I can't write every thing what i felt in that show...but it will be remember for me for entire life..!!

Friday, September 26, 2008

One more milestole of my career..

Today i just find time to write about this...i was thinking to write about CDAC-FPGDST degree. It was great pleasure to study in CDAC-Bangalore and also it was fun to study from researchers. When i joined cadc people saying that you will pass every subject but the real challenge comes with MGPT ...but i never thought i will not clear MGPT...but when it starts i failed to make it in first two attempts...i can't say question was very tough but the i didn't get good approach to solve the problem...the best method to clear MGPT try to apply good approach..any way i missed two MGPT very closely one 'X'....but finally outcomes frustrated me...unfortunately i missed my two last MGPT...on third MGPT date i was in Kanpur attending M.Tech interview and on fourth MGPT i had admission date in IIT Madras...after passing in every subject i was not eligible to get certificate just because of MGPT...so i decided to give MGPT again and i did it. Before going MGPT i thought on MGPT...how to solve both problem in given time...i analyzed that,the problem are not to much tough...they are solvable within given time but the thing is right approach...this time i applied good approach and solved both problem...i just submitted my both problem in 25-30 minute...and made the way clear for getting certificate.......so i will have CDAC FPGDST certificate one year outcomes.....its not just one paper for me which shows about qualification....it more than that...it is one experience of hard work,fun and great enthusiasm to do work hard.... "Learn from life Learn for life..!!"

Wednesday, September 17, 2008

2008 MGPT-4 solution

------------------------------------
File: prob1.java
------------------------------------
import ncst.pgdst.*;

class prob1{

public char makdir(char ch, char dir){

if(dir == 'L'){
if(ch == 'N')
return 'W';
else if(ch == 'W')
return 'S';
else if(ch == 'S')
return 'E';
else if(ch == 'E')
return 'N';
}
else if(dir == 'R'){
if(ch == 'N')
return 'E';
else if(ch == 'W')
return 'N';
else if(ch == 'S')
return 'W';
else if(ch == 'E')
return 'S';
}
return '\0';
}

public static void main(String arg[]) throws IOException{
SimpleInput si = new SimpleInput();
int maxX = si.readInt();
int maxY = si.readInt();

int curX = si.readInt();
int curY = si.readInt();
si.skipWhite();
char dir = si.readChar();
//System.out.println(dir);
String s = si.readWord();

prob1 p =new prob1();

for(int i=0; i< dir ="="" dir ="=""> 0)
curY--;
}else if(dir == 'S'){
if(curX > 0)
curX--;
}
}
}
System.out.println(curX+" "+curY+" "+dir);
}
}

************************************
------------------------------------
File: tree.java
------------------------------------
import ncst.pgdst.*;

class tree{
int val;
public static tree root;
tree left;
tree right;
tree(){
root = null;
left = null;
right = null;
}
tree(int n){
left = null;
right = null;
val =n;
}
public int findIndex(int n, int in[]){
for(int i=0; i t2)
return 1;
else
return 2;
}

public static void main(String arg[]) throws IOException{
SimpleInput si = new SimpleInput();
int n = si.readInt();
int pre[] = new int [n];
int in[] = new int[n];
for(int i=0; i******

Wednesday, July 30, 2008

Move towards IIT Madras......

Hi...Its about my move towards IIT Madras.I never thought i'll join IIT Madras for higher education but i did it without any plan, just because i was getting a chance to study in IIT Madras. I was appeared for GATE exam just because i want to know how much knowledge i have . But surprised I got 98.34 % with 296 rank.So applied every IIT's and top four NIT's.Even I got call from every IIT's except IITB and IITD. But I have attended interview at IITM and went for counseling to IITKgp and for other I have decided to left. The reason behind missed the IIT's call because I have been offered from Siemens, Bangalore. So you can say that i was little bit choosy. In IITKgp counseling I didn't got any sit, so I thought go for job in MNC company.But after about one month I got one mail from IITM i am selected and i have to join before 18July. Now the time was very complex what should I do go for job or further studies. Even i had confirm call in all top four NIT but decided to not to go that. But for reject IIT Madras I did lots of discussion with my friends and parents.So finally I decided to join IITM because i got offer to do research in Network field which is my favorite area. So Join the IIT Madras with hope I'll do some good things and also get good job.This all about to how I joined iitm after CDAC Bangalore.

Saturday, October 20, 2007

My first Term is over now........

Hi friends.......I am writing this post after a week.....
I was busy in my first module end term examination.My quiz paper gone good but my MGPT is not cleared.This module contained four subject : (i)OOPJ(object oriented programming in java), (ii) DSAL (data structure and alogorithm)(iii)MFCS(mathematical foundation of computer science),(iv)TCOM (technical communication). All subject taught us by knowledgeable person.Two of four subject DSAL and MFCS I had studied in my engineering, but here I learned some new thing in that subject .....rest two subject was almost new for me. So I did hard work to learn that subjects but I have to do more effort in coming future also.I got always full support from our faculty.When I got difficulty I asked from faculty and got answer in quick reply.....One true and important fact for my life I learned here is : In professional life do not depend on other, always try to solve problem yourself.....And in CDAC-B faculty follow this rule strictly to make better professional....................In this module I liked the way of teaching of some faculty member such as RKVS Raman (DSAL), Sawani Bade (TCOM), Jiji Angel (Theory of Computation), Balaji R(oopj)..........Before joining the CDAC-B my English was very week but after attending some lecture of TCOM I got success to improve my communication skill. Here I would like to mention that I did not got 100% success but I got it to some extant and now it is improving.And for all this success
I would like to thanks to Sawani Madam, because she help me lots. when I approached to her with some problem she clerify my question with good example....When I consulted to madam for taking some suggestion about how to prepare for Interview of DRDO, she helped me.....TCOM is one of very helpful subject for making career in software industry because most of student's studied here has poor technical communication skill and I one of them.So,TCOM gives a chance to improve communication skill
before joined industry......In this module I expect good marks in all paper because my all test was good except TCOM because I have done one mistake and got punishment in form of lose one blog evalution. So, I expect I'll just pass the TCOM .But in rest of paper I was honest.In 10 MGPA I have only attend 8 MGPA and cleared 6MGPA.This is not very good performance by me.It's just satisfactory for me.I have to clear one more MGPA but because I had not implemented Graph in java.So, last MGPA I have not cleared.................On 18th October I had MGPT.In that MGPT I tried to solve only one question which is from Graph.In that question I have to find shortest path and count number of hope comes in path.I had written code for that and implemented in lab.When I submitted that program in PARISHAK I got 3 Y and 2 X. I was very happy because I thought I 'll cleared this MGPT but after that when I started to find cause of 2 X, I was depressed with time.And finally I got 4 Y and 1 X and time was over.So, my MGPT not cleared.......I am trying till today why my code given one X .I found that when only two node is given as input my code giving 0 as output but the correct output is 1.If I got this error at that time I was cleared my MGPT .But time is gone and never returned. So, I promised to myself in next MGPT I'll think on all possibility for problem ....................

Thursday, October 11, 2007

Personel Interview.........

Hi friends....
Today we had TCOM session.In that session Madam taught us
how to face personal interview.There we discuss lots of question regarding interview.I learned lots of thing about communication, skill, attitude, aptitude, etc.The first question is why company taking interview while they may be choose his candidates by written test.They make lots of effort towards taking interview ?According to me company searching good candidate for his organisation.If company choose their candidate by simply written test their is no doubt candidate which selected is good in knowledge. But is it possible that they all are also good in communication, judgement, interested in company, etc...For example if a candidate is not interested in that organisation for which he selected and he joined company for sake of job.After some time that candidate joined another company.Then first company will be go into loss, because he didn't not check candidate attitude towards his company.sometime other difficulties are also possible.So, company taking personal interviews to judge candidate attitude, aptitude, goal of his life.candidate is interested in his organisation or not.It is very important for company to choose good candidates because they all going to be a part of company and company's reputation is directly depends on those candidate.The product's quality which company delivered, customer satisfaction etc. directly influenced by employees of company.
Now I am coming on how to face interview........
I learned today's session how to face interview.The first work we must do is to clearly judge what we want to do. Set goal and then proceed.We must clear idea about the job we are applying for. Because if interviewer judge that this person is not interested in our company then they will be reject that candidate. One thing we have to must remember that every man getting chance to do something better but he missed that chance and waiting for another chance. And waiting for ever....If we really want to do then we ready to catch the chance.When we get chance change to it opportunity. Its very important that attitude must be positive. Positive attitude gives strength to give answer during interview.One another important thing I learn that before giving answer of any question think for moment.
Its give positive response to interviewer and it also provide self
confidence to give answer. Some time interviewer ask question from different pattern so we careful to give all those questions answer because interviewer motive to judge your aptitude skill and your response towards unexpected question. So before attending interview work on attitude, field of interest, communication skills, interpersonal skills,confidence, problem solving skills, self motivation....Some of general question on which we should must prepare like- tell me about your self ?, What you want to do in your life,what your greatest strength, what your weekness ?, How do you good for this job ?, etc... I learned that main factors for failure in interview is as candidates behaviour during interview like excitement or nervousness, lack of concentration, lack of confidence, lack of subject knoweldge. In last failure is not end of career. If we get failure in interview try to remove weekness and improve skills. Hard work is last option to get success.....

Tuesday, October 9, 2007

Graph theory.........

Hi friends.....
Today I am going to one of interesting topic of DSAL "GRAPH".
graph have been used in a wide variety of applications. Some of applications are computer network,the analysis of electrical circuits, finding shortest routes, project planning,identification
of chemical compounds, statistical mechanics, genetics,cybernetics, linguistics, and so on. WWW is good example of directed graph.

:> Graph can be defined as : A graph G consists of two sets V and E. The set v is finite,non-empty set of vertices. The set E is a set of pairs of vertices, these pairs are called edges. the notation we generally used for graph is G=(V,E).
The advantage of graph over other data structure is that it can represent different types of relationships, whereas tree can represent hierarchical types of relationship only. So, we can say that tree is a special case of graph.

:> Directed graph :
In directed graph each edge is represented by a directed pair(e1,r2) where e1 is tail and e2 is head. In directed graph (e1,e2) and (e2,e1) represents two different edges.

:> Undirected graph :
In undirected graph each edge is represented by same way as directed graph except here (e1,e2) and (e2,e1) represent same edge.

:> Path in a graph :
A path from any vertex U to vertex V is set of edges and vertices.

:> Cycle in a graph :
A cycle is a simple path in which source node and destination node are same.

:> Weighted graph :
In weighted graph each edge is assigned a value w(e) called weight or length of V. the weight of a path is sum of the weight of the edges in the path.

:> Graph representation :
Although several representation for graph are possible according
to nature of graph. But I am discussing only two representation
here.

1> Adjacency matrix.
2> Adjacency List.

> Adjacency matrix : In adjacency matrix we represent graph by
nxn matrix. Say i and j are vertices then if there is edge between
i and j, put 1 in matrix at position (i,j) otherwise 0.
eg.:
1 2 3 4
----------
1| 0 1 1 1
2| 1 0 1 1
3| 1 1 0 1
4| 1 1 1 0
Important note : For undirected graph the degree of any vertex i is sum of row. For directed graph the row sum is the out degree and column sum is the in-degree.

> Adjacency List : In this representation of graph, the n rows
of the adjacency matrix are represented as n linked lists.there
is one list for each vertex in G. Each node of the list, may store
a reference to the vertex corresponding to the end point of the edge.

>Graph Traversal :
There are two methods are available for graph traversal :
i)DFS (depth first search).
ii) BFS (Breadth first search ).
In DFS we visit child node first.
In BFS we visit same lavel node first then child node.

Monday, October 8, 2007

Common Errors during JAVA programing..........

Hi friends........
I have completed about one and half month at CDAC-B. In all those days I have done lot of programming in JAVA and DATA-STRUCTURE. During programming I found lots of compile time and run time errors. Because I was not familier with Java, so I was facing lot of difficulty during my initial days.Whenever I was getting an error I tried to solve by one of my friends. Today I want to discuss some common errors which I did all the times.
> 1 : Compile-time errors.......
During compilation compiler only checked syntax error. Compiler does not find the logical error.Compiler generate error massage for small mistake like semicolon,braces mismatch, checking int value in "IF" condition instead of boolean value, unbalanced parentheses, unclosed literals, illegal start of expression, not a statement, misspelling "else", cannot find symbol, is already defind, array required but....found, variable.....might not have been initialized, ....in...cannot be applied to..., operator.... cannot be applied to....., possible loss of precision, incompatible types, inconvertible types, missing return statement.., missing return value, cannot return a value from method whose return type is void, invalid method declaration....return type required, unreachable statement,non-static variable.....cannot be referenced from a static context, non-static method...cannot be referenced from a static contextm,
etc...
It's a long list of compiler errors which I got most of time. I am
giving some example which generated compiler error.
:> class ClassName{
void f(){
int n=10;
// Error, closing brace is missing
void g(){
int m=20;
}
}
:> if(i > j // error, unclosed parentheses
max = i // error, missing semicolon
else
max=j;
:> String myString=
" This is My First Java Programm "+
" and I got compilation error; // error, unclosed literal
:> int max;
..........
......
max; // error, missing =
:> if( i > j)
max = i;
els // error, else not spelled correctly
max = j;
:> boolean b=true;
int x = (int) b; // error, can't convert bpplean to int

> 2 : Runtime Errors......
When the JAVA interpreter encounters an error during runtime it throws an exception and prints a stack trace showing the call stack -the list of methods called from the main program untill the statement that caused the exception.
I am taking an example to clear concept....
:> class RunTimeTest{
public static void main(String arg[]){
String s = "Hello World";
System.out.println(s.substring(10,12);
}
}
Generated Error as:
Exception in thread "main"
java.lang.StringOutBoundException:
String index out of range: 12
at java.lang.String.substring(Unknown source)
at RunTimeTest.main(RunTimeTest.java:4)

other kind of runtime errors might also be possible are as....
> out of range :
> ArrayIndexOutOfRange
> StringIndexOutOfRange
> NullPointerException
> InputMismatchException
> IllegalFormatException
> NumberFormatException
> ArithmeticException : This exception will generate if we
divide any no. by Zero(0).
> outOfMemoryError
> StackOverFlowArea
> During execution of program sometimes we got error like
this : NoClassDefFoundError
> NoSuchMethodFoundError : main
this error is generated when we forget to write
public with main i.e.
void main(String arg[]){.....}

> 3 : Assignment and Equality......

> String equality
sometimes we forget to compared string with method "equals".
> Assignment of references ....
one important thing about assignment of references is
when we assign references it only assign reference not the content of object.

These are some common errors which I noticed from when I started programing in java.

Thursday, October 4, 2007

Tell me about yourself ?........

Hi.........to all ......
Today I want to share my thinking about how to present yourself in interview. I have been working on this Question for one week.Since my MGPA was sheduled on today so I was busy in preparation of DSAL assignment.Now I am free to write blog.So I am writng blog. When I was started thinking on this question first of all I consulted our TCOM faculty Sawani Bade. She told me first of all you think yourself when you were interviewer what you wants from candidates. So I thought two days what attribute a condidate must contain. I listed all those attribute
which come in mind.

The list are as -----------
> 1 : Communication skill.
> 2 : Expression Power.
> 3 : Self Confidence.
> 4 : Intelligence.
> 5 : Knowledge of Field.
> 6 : Imagination power.
> 7 : Discipline.

Another attribute is also possible.But I have got only those I have listed here. It takes approx three days to list. After that I started work on first attribute. I am doing all these thing because I have cleared written examination of DRDO and I have to give interview in last week of October as I written in my earlier blog. For increasing my communication skills I started reading news paper loudly. And at the time of reading I am also looking sentence formation. After that I meet to Sawni madam to know my another step. She given me a task to identify 3-5 different achievements/things/ qualities of my life which feel me proud and I would like to tell to the interviewers.

Now I going to complete this blog with giving answer of above question. I have started my study from Government primary school. Since my childhood I am very aggressive towards study.
I always got first or second position in my class. Even during Engineering I got two times second position during first and third year and got one time first position during second year. I was good player of Cricket till school. After 10th I haven't got much time for playing any game. I got 92 percentile in C language in CST-2007.
CONTINUED.........


Sunday, September 30, 2007

Bell for MGPT && QUIZZES start ringing.............

Hi friends....... I am talking about coming term end quizzes and MGPT 1. When I joined the CDAC-B i heared about MGPA and MGPT almost from everybody. But I tell you it is all about concept. If any one has full concept regarding topic then it is easy to clear the MGPA or MGPT. Its all depands on the approach which we mainly used in solving the problem. If any one started with wrong approach or lengthy process then it becomes difficult to clear MGPT or MGPA. If approach were wrong then we have not enough time to go through another approach. Our program is tested by software which is made by CDAC named " PARISHAK ".We have to submit our program to parishak and in parishak our program is tested by some predefined Input and output.The input which is used in parishak is boudary value and negative value. So, good logic is first requirement of MGPT or MGPA.
I have completed 6 MGPA out of 7 and one DSAL MGPA shall remain which sheduled on 3'rd october.I will try my best to clear that MGPA. After that I have term end quizzes and MGPT. For clearing all four quizzes I have to go through whole syllabus. One of most difficult subject for me is TCOM, because i came from hindi medium. My mother language is HIndi. My english is always week. Why it is week ? I think because of lack of my interest in english or because of ignorance its importance. I never think about my performance will in TCOM like this. After the joning CDAC I concentrated on my english. But improvement is not as I expected,but improving. One of great thing is happend after started writing blogs my vocabulary is growing........
In DSAL lecture is almost finished.Only GRAPH 2 is remains. I am lucky because I have found RAMAN sir like professor. I have studied DSAL before also, but the way sir taught us is very impressive. Every thing make understand by real life example
is one important thing which I like most. In OOPJ also all lecture is finished. Only one session is remains which is scheduled tomorrow morning session. In MFCS only probability and statistics is remains. In MFCS three test held and two remains.
In TCOM one blog evaluation is done and four remains. I am trying to do best because I have already loose one evaluation just because for hurry and then all thing go down......

QUEZZES && MGPT ......... 15 oct ------ 18 oct............

Thursday, September 27, 2007

One of happiest day of my Life....

hi.....friends
yesterday was one of happiest day of my Life. yesterday DRDO SET07 result came out and I got selected for interview.DRDO is one of Indian organization on which we can proud as Indian. DRDO is very active org. in research and development for defence.It was great moment for me because I got a chance to become a part of Indian defence .This examination was for post of Scientist in DRDO. It was held on 2 September. I was not fully satisfied with my performance in that examination because I had solved only 128 question out 150.I was not fully sured that i will selected for interview. In that exam about 15 question were asked form Automata theory and about 12 from compiler design and other from OS,comp. network, C,etc.I had solved only 11 question from automata theory and 9 question from compiler design.It was good for me because Automata is one of my favorite paper.It was heppen because I have not got much time to revise all these paper before examination.But I am satisfied from my performance in aptitude and reasoning section because I had solved 45 question from 50 question.Rest 5 question were asked from general knowledge like "Agni"is which kind of missile.I tried but i was not sure.So, I leave that.
Now I am thinking about DRDO interview.This will be my first interview in my life.Now I am very exited to clear interview.For clear interview I have to revise all my branch paper before interview.But it seems very tough because along with lecture, MGPA and coming term end quizzes . But I am trying to see all important topic at once in free time.Interview date is not announced yet now. It might be scheduled in October month.However selection will depends on my performance in interview.I think it will be good. Hard work is first step towards success. so, I hope.....I will do that...after all I am praying to god for my performance in interview.

Tuesday, September 25, 2007

Magic of men in Blue......


hi...
yes, this is magic of Indian cricket team who is doing magic after magic.I am very happy because Indian cricket team reached final. We could say its outstanding performance.After India lost NatWest series ,its good come back with full-fledged.It was superb match between India and Australia.And all previous match.Also the match between India and Pakistan was very interesting match.In that match India almost lost that match, but it was luck of India who win after tie.Its possible because of new rule of T20 cricket version.In semifinal Indian batsman done superb batting specially Yuvraj singh. On 24th September the Final match is scheduled between India and Pakistan. Today is 25th September and one great thing happened India on the T20 world cup.Its really great news.After 1983 India won the world cup title.Its doesn't matter this T20 world cup because all the leading team participated in tournament. The final match was very exciting match not because of both team are neighbours to each other but this was first world cup of second version of one day match(T20).In that match India had scored 157-5 and Pakistan has to score 158 in 20 over.But Pakistan not scored that score and all out in 19.3 over at score 152.So, India win by 5 runs and won also the title. What a game that has been. After the catch taken by RP singh whole Indian supporter erupts as the Indian support staff.The Indian players do a lap of honour as the Indian flags in the stand are waved.One thing which i would like to mention here is Dhoni gives his shirt away to a young fan and is walking around bare-chested as Malcolm Speed, the ICC chief executive, comes around to offer his congratulations. The celebrations are still on because its India's win. Its great achievement specially for Dhoni because he made captain of Indian cricket team first time and first tournament for him as a captain. Good luck Mahi..... for home series against Australia.

Sunday, September 23, 2007

Magic of men in Blue......

hi...
yes, this is magic of Indian cricket team who is doing magic after magic. I am very happy because Indian cricket team reached final.We could say its outstanding performance.After India lost NatWest series ,its good come back with full-fledged.It was superb match between India and Australia.And all previous match.Also the match between India and Pakistan was very interesting match.In that match India almost lost that match, but it was luck of India who win after tie.Its possible because of new rule of T20 cricket version.In semifinal Indian batsman done superb batting specially Yuvraj singh.
On 24th September the Final match is scheduled between India and Pakistan.
cont.......

Saturday, September 22, 2007

I attend my first seminar at CDAC on RST...

It was 21'st September.On that day Sawni madam had given presentation on RST(Rhethorical structure theory). In that presentation student of NCST was not allowed to attend. But after request to admin. we were allowed to attend that seminar.When I entered in hall all staff were on there sit and concentrated on presentation.After got a sit in hall, I concentrated on presentation.Since I was not familiar with the topic of presentation,try to understand what is RST. The way madam presenting the topic was superb. It was great opurtuinity for me to learn lots of thing there. First of all I learned what is the correct way of presentation. How to analyze any thing and make understandable to other. I learned what is RS theory. It is such a nice subject and need more research on it. I don't know any thing about it before attend the seminar. After the seminar, now I am able to share some idea about RS theory.
RST is firstly given by William C.Mann and Sandra A.Thompson of university of southern california.Rhethorical structure theory is a theory of Text Organization. That means the text we write are related in some manner. And in RST we finding that relation. RST identifies heirarchic structure in text.It describes the relation between text parts in fuctional terms, identifying both the transition point of relation and the extent of the items related. There are lots of experiment are going on RST around the world. CDAC is one of them. When we find some relation between text then we able to use that relation in various ways.like making auto summarization tool. Infect these are the areas of RST application. `One important thing about RST theory is that RST theory is not language dependent but area of implementation may be language dependent.We can easily see the use of RST in web browser where it is present in form of plug In.
link : RST.....

Thursday, September 20, 2007

Punishment for making impression

yes, it was really all about to making impression to my TCOM (Technical Communication)faculty. It was previous week when i did mistake.You thinking what kind of mistake i did.The mistake i did is i copied one of my blog from other's blog. It is reallydisgusting work.But the question is why i did this kind of mistake.Actually what happened previous week, our CDAC GNYAN server went out for one day and night. So,we were not able to access Internet.Our assignment of TCOM is to post two blog every week.And every Monday is evaluation day.So,i think why not copy and post in my blog before disconnecting Internet.That's why i could makeimpression to my TCOM faculty.
But i never think about my coming day. It was 20th September,our Blog evaluation result published on notice board.I was very happy on that day because i cleared my four MGPA out five MGPA. I went for relaxed in my room after MGPA. One of my friend informed me TCOM evaluation result is published. I run towards notice board, but after saw result i got frustration.I was fail in that evaluation. It was really very frustrating moment for me.I have nothing to do except accept the result.Because it was my mistake.I was lost every thing by my own.Then i decided no copy form others blog.What i know only that thing i will write in my blog with on time.So in future i will not lost more evaluation. One important thing all after what happen is my thinking is changed.I am really very thankful to my faculty member. If they don't fail me then i might again copy in future to post my blog in less time. One phrase in Hindi is very popular "Adami ko thokar lagti hai to hi sikhta hai " "Means man learn from life only after then fail in what they want to do". This is completely true to me. Because after what happen i had learn one thing if i want to learn something i have to do my own.One another thing is time. Be careful towards time. Because if you do any by your own but not on time then your all effort might be waste. So,do by your own and on time. This is all about i feeling after my TCOM result. I feel very sorry and sure about i will never do this kind of work in my future. I specialy thank's to Sawani madam who open my eye on time and remind what mistake i have done.

Wednesday, September 19, 2007

My school Days cont...

prev...
As i told you i started my study at govt. school.In my school total number of student studied approx 1000.My study never constant in one town. Because my father is a Bihar govt. employee. He got transfer after every one,two or three years.I stayed at various places in Bihar since my childhood. I saw many small or big forest during my child age because some times my father got transfer to tribal region. It was great fun to play in forest.I stayed in various places like Chandil, Manoharpur,Kharsawa, Munger,Sheikhpura,Bihar Sharif,Patna. I have done my High school education in Bihar Sharif. My 10+2 in Patna and also i done engineering in com.sc.& engg. from patna. Now i live in Bangalore and pursuing post graduate diploma in advance computing in CDAC-Bangalore.But the memories always fly back and hit in mind.

Saturday, September 15, 2007

Who is Friend

With that FRIEND word, a very old proverb is associated and that is "A friend in need is a friend indeed", and I think that this is a very good technique to judge anyone that whether he or she is your friend or not. If someone is always with you in your good as well as bad days, that person is your true friend, and one can trust them.

Friendship is that relationship which is always precious to everyone. This is the only relationship which we choose on our own by interacting and judging the people.

Friend is that person to whome we can share everything, even all those talks which we cannot share with our parents too. Because the friend is the one who understands our feelings in our own ways.

Everyone needs a friend to talk, laugh and to share moments of joy and sorrow.

Discusses the meaning of friendship. Describes the importance of having cherished friends. Friends are the pearls of our life. This word bears its great meaning only to those who could understand the greatness of its meaning. Its some thing sacred, it needs to be cherished and build up for many years with much care.

A friend is friendly, happy, and playful, too. A friend doesn't yell at you. You play with each other all the time. You try not to fight with a friend. You help each other when you get hurt.

A friend is someone who goes with you in the good times and bad times.'Good friends are always by your side. When you're playing they don't walk away. They never fight with you because then they aren't your friend. If you don't have any friends then you aren't friendly. God bless, friends.

A friend is a person who comes and won't judge a flower by its color.
A person who will never give up on you.
A person who will comfort you when storms of tears are in your mind.
A person who will just have some fun with you and give you a good laugh.'
A person that doesn't mind expressing their happy or sad feelings to you.

A friend is someone you can depend on. Someone who you can talk to. A friend could be anything like a person, dog or cat. Whatever a friend is it doesn't matter as long as it's your friend. Many people don't know that. A friend is a friend and that's all that matters.