ss_blog_claim=d3efd99c61866f5d5c4d61d8f08e130d

Main Content RSS FeedLatest Entry

Happy new year

 

Happy new year to all

 

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!


Recent Entries

Level 2

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”)

Bye and TC.


Dual-life

It is difficult to keep balance between the Social life and web life .I know lots of  people do ti easily but i dont know how!.

its only 13 hours out of 24 to do all the things.College work,study ,play games and blah blah blah…

I am writing this post and at the same time i am also studying my paper of Data communication.


Article alley

Good evening to all.

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.

Technology Articles

Very intresting articles you will find there .I like webdesigns section ,The information there is related to your conntry

like.Whats the scope of webdesign in india,which agency is best …

Get the Most Versatile Cell phone skins easily

How To Connect a Laptop to a TV

Bluetooth Technology

Want To Watch Live TV Online? Here’s The Easy To Watch TV Online!

There are various interesting section also like

Wrting and speaking

webdesigns

Blogs

carrier

—————————————————————————————————–


Virtual currency site

Alert for IMVU users there is new website for the

IMVUCE.com .This website sell IMVU credit at the double rate as compared to the imvu.com .

Following are the rates

5k  credit  for 2.76$

10k credit for 5.23$

25k credit for 12.62$

50k credit for 24.94

This is a great website for the imvu user.I  recommend this website.

“In must watch website”

 

IMVUCE

Buy IMVU credit


My presentation

I want to share my presentation pics

01


Finally the mid term is over

 

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 …


Lpu-dont come here if you can,t do hard work…

hello  all,

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..


i am very happy

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

5:- 3-column blog interface is best

6:-Always choose simple interface

7:-link exchange program

8:-Sign up for social spark network

9:-be positive

10:-try to figure out “10” point


HTML and PHP

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 .

Consider the following code…

<html>
<head>
<title>Example codetitle>
</head>
<?php print(Date("1 F d, Y")); ?>
<body>
</body>
</html>

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..

“<?php”=Starting tags

“?>”=Terminating tags

=================================================================================

HELLO WORLD

Step1:-Our basic HTML code

<HTML>

<head>

<title>Hello world</title>

</head>

<body>

<?php

echo “Hello world”;

?>

</body>

</html>

The code in red is php code

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

2:-

<?php
$var1 = "Hello!";
echo $var1;
echo "<h5>world</h5>";
?
out put
Hello world

===============================================================

PIXBLOGGER