Before the golden sun sets, 2009’s calender is destroyed, And mobile networks get jammed, I wish in 2010 every moment is enjoyed
The new year is coming; the party is near. I’m sure looking forward to lots of good cheer. I’ll be all dressed up in my snazziest best, So I won’t disappear in the crowd like the rest.
I rap on the door and it opens to screams; There are several guys hanging from high ceiling beams. The guy in the lampshade looks ready to go, As the girl on his shoulders shouts, "Giddyup Joe!"
I walk right on in to be one of the throng, And they yell out my name while they bang a brass gong. We laugh and we frolic, we dance and we sing, (Is that my grandmother out there on the swing?)
This party is great, and the New Year looks bright. Well, that’s how I dreamed it, while sleeping last night. I’m thinking about you and wish you were here, So I’m sending this poem to say Happy New Year!
data communication have gone now preparation for C language.
i think the pattern to study here is different .I didn’t get it after midterm now i think i got it after the end term first paper.”Don’t study according to the syllabus”
yeah that’s right only thing to do is research-research and research.
and of that all thing i got my answer that why i learn every thing fast here even when there is no study going on in class room.
Even when the teachers are rookies,The answer is that Even IITS cant teach you the only thing which teach you is yourself.and second question arises how you get that
the answers is simple Do yourself and hire rookie teachers so that the burden increases on your shoulder.
that’s it.
Now i am going tomorrow is my C language paper(“Same strategy”)
Today while searching the good content on the internet ,I stumled on the Article alley
It is very good website for novice bloggers and authors .You can find lots of good article there.Basically i am stumbled at technology section at article alley.
First exam i faced in the lovey is Midterm exam .as it is my first exam there i was very scared with that.
The question paper is of 13 question out of which 10 question were of 2 number and remaing three of 10 number and we had only 1 and the half hour to that.very hard job to win.
The thinking time is also limited . i mean think and write and there is no gap between them.if you think more that the normal than you definetly not complete the work.
The overall experience of the papaer was not too good .
and after 2 to 3 days the result also came and it was not expected as i think …
Agter long time i am writing this post because it is difficule for me to extract the time …
as you all know i am currently studying in Lovely professional usiversity and i am shocked when i was first come here.
Study here are more hard then IIT,s I dont expect that when i was mtaking the admission.In many of the institution in india there are only two exams in postgraduation strwam like the midterm and the end term only and there is no stricness in attendance but here you can find that even for one number you have to fight …
if your attendance is more than 95% than you will get 10 number in the end term otherwise not .there is only 10 offiicial holiday and for diwali there is only two days..God help me..
i support this way of learning but there are various drawback also.
There are three types of student
1:-who dont want to study
2:-who want to study as it is as directed by teachers
3:-beilieve in self study..
so this rule are more promising for student of type 1 and type 2…
but the student who give more emaphasiz on the self study find it difficult they want to study by thereself in there own way..
so they suffer like me.. bubut i will adjust..
i will post the pics of my friends on my next post..
It is been long time since i start blogging , When i first enter the world of blogging i didn’y know even what is the diffrence between blog and website and now after more than 8 month i have learned various things.
presently i have three blog ,Intekhab online for adobe photoshop tutorial and reviews,Pixelerator Design for adobe photohop resources and pix blogger my personal diary.from the above three blog i enjoyed writing in this blog ,as i am very confortable with this,No research no googling only writing what i feels.
i am very happy because one of my blog intekhab online get nominated for best technology blog .at blognetaward
I have learned various things in this journey,like what to do what not to .
i want to share this information with you ,Folowing are the points you must considered >
1:-Always research before posting
2:-Always submit your website to social bookmarks site
3:-Submit your blog to search engine specially google through google webmaster tools
4:-Always write orignal post,Dont copy from other site
In this post we learn HTMl and PHP connection.i mean that PHP is a BLOOD which runs on HTML body .
PHP is embedded in HTML.When the code is redered by the browser firstly browser know that it is PHP or html by its extension and if it is PHP than it looks out for starting and ends tags of PHP .
After head when “<?php” comes it indicate that php code now starting and then php code executed and the it encountered “?>” which tells that php codes now ends..
in the code we use the function “echo” it is used to echo — Output one or more strings.
one more question arises in your mind that if it is a function than where is parenthesies() as the funtion have.Actually according to the php.net it is not function .it is actually language construct.If you want more than one parameter in echo its depend on you to use parentheisies.
Its general form
“void echo ( string $arg1 [, string $... ] )”
Some examples source php.net
NOTE:-Concern after learning variable and others function as it is not comfortable to you!
1:-
<?php
echo “Hello World”;
echo “This spans
multiple lines. The newlines will be
output as well”;
echo “This spans\nmultiple lines. The newlines will be\noutput as well.”;
echo “Escaping characters is done \”Like this\”.”;
// You can use variables inside of an echo statement
$foo = “foobar”;
$bar = “barbaz”;
echo “foo is $foo”; // foo is foobar
// You can also use arrays
$baz = array(”value” => “foo”);
echo “this is {$baz['value']} !”; // this is foo !
// Using single quotes will print the variable name, not the value
echo ‘foo is $foo’; // foo is $foo
// If you are not using any other characters, you can just echo variables
echo $foo; // foobar
echo $foo,$bar; // foobarbarbaz
// Some people prefer passing multiple parameters to echo over concatenation.
echo ‘This ‘, ’string ‘, ‘was ‘, ‘made ‘, ‘with multiple parameters.’, chr(10);
echo ‘This ‘ . ’string ‘ . ‘was ‘ . ‘made ‘ . ‘with concatenation.’ . “\n”;
echo <<<END
This uses the “here document” syntax to output
multiple lines with $variable interpolation. Note
that the here document terminator must appear on a
line with just a semicolon. no extra whitespace!
END;
// Because echo does not behave like a function, the following code is invalid.
($some_var) ? echo ‘true’ : echo ‘false’;
// However, the following examples will work:
($some_var) ? print ‘true’ : print ‘false’; // print is also a construct, but
// it behaves like a function, so
// it may be used in this context.
echo $some_var ? ‘true’: ‘false’; // changing the statement around
?>