12:49 AM

Reminder about your invitation from Ali Raza

LinkedIn

This is a reminder that on May 10, Ali Raza sent you an invitation to become part of his or her professional network at LinkedIn.

Follow this link to accept Ali Raza's invitation.

https://www.linkedin.com/e/o6fmjj-go147nsw-66/doi/2851140960/n7l-6NEJ/gir_553808075_1/EML-inv_17_rem/

Signing up is free and takes less than a minute.

On May 10, Ali Raza wrote:

> To: [dejavu87.blog@blogger.com]
> From: Ali Raza [dejavu87@gmail.com]
> Subject: Invitation to connect on LinkedIn

> I'd like to add you to my professional network on LinkedIn.
>
> - Ali

The only way to get access to Ali Raza's professional network on LinkedIn is through the following link:

https://www.linkedin.com/e/o6fmjj-go147nsw-66/doi/2851140960/n7l-6NEJ/gir_553808075_1/EML-inv_17_rem/

You can remove yourself from Ali Raza's network at any time.


--------------

© 2011, LinkedIn Corporation

3:24 AM

Reminder about your invitation from Ali Raza

LinkedIn

This is a reminder that on May 10, Ali Raza sent you an invitation to become part of his or her professional network at LinkedIn.

Follow this link to accept Ali Raza's invitation.

https://www.linkedin.com/e/o6fmjj-gnr9o1nw-5p/doi/2851140960/n7l-6NEJ/gir_553808075_0/EML-inv_17_rem/

Signing up is free and takes less than a minute.

On May 10, Ali Raza wrote:

> To: [dejavu87.blog@blogger.com]
> From: Ali Raza [dejavu87@gmail.com]
> Subject: Invitation to connect on LinkedIn

> I'd like to add you to my professional network on LinkedIn.
>
> - Ali

The only way to get access to Ali Raza's professional network on LinkedIn is through the following link:

https://www.linkedin.com/e/o6fmjj-gnr9o1nw-5p/doi/2851140960/n7l-6NEJ/gir_553808075_0/EML-inv_17_rem/

You can remove yourself from Ali Raza's network at any time.


--------------

© 2011, LinkedIn Corporation

11:29 AM

Invitation to connect on LinkedIn

LinkedIn

I'd like to add you to my professional network on LinkedIn.

- Ali

Ali Raza
Software Engineer at Welltime Ltd
Pakistan

Confirm that you know Ali

© 2011, LinkedIn Corporation

10:34 AM

BLOG moved

my blog has been shifted to:


11:35 AM

not alone

no matter what happens, no matter what u think...always remember U r not alone..... :)
6:59 AM

Write less Do more - begnining jQuery




jQuery is the best thing that ever happened to the web. it has made the life of web developers significantly easier. with its cool effects and animations plus the amazing AJAX it really stands apart from other javascript libraries. plus its easy as pie to learn. i've finally decided to write down a tutorial for newbies. so lets begin:

downloading jQuery:

to start you will need to download the library first. point your browsers to jQuery's official website:



note that there are two compression levels production and development. for now download the development level. download the file rename it(its in .txt format, change the extension to .js). create a new folder and put it in there:



so far so good. now lets start html.

HTML:
offcourse jquery works on a webpage so we'll need to create one. just create a new text document in the folder we have kept jquery. give it whatever name you want:




this is going to be our html file(we'll change the extension later on). now lets get to some code. code the newly created text file like this:


keeping it simple we have added only a heading(h1) and a paragraph(p). now we'll animate them using jQuery.

jQuery Time:
in the same folder create a new text document name it myscript.js(change the extension):



 this is going to be our script file which we will use for jquery animations and effects. getting to jquery code now. whenever we write down jquery code we enclose it in a document.ready function. how it looks like is shown here:

jQuery(document).ready(function(){

//everything else in here

});

for those who are already familiar with javascript understanding the above code will be no trouble. coming back to our tutorial, to start what we will do is use create a very basic animation i.e. whenever our webpage is loaded the paragraph will fadeout. to do that we'll add the following code to our myscript.js file:

jQuery(document).ready(function(){

jQuery("p").fadeOut('slow');

});

now to test our animation lets go back to our would be webpage. we'll add a reference to our .js files in the head section so now our webpage will look like:

now change the extension of our text file from .txt to .html and open it in a web browser. ta-da congratulations you have just created your first jQuery animation. notice that how the paragraph slowly fades out whenever the page is loaded(hit F5). 

for a more cool effect add more text to the paragaph(in multiple lines) & customize the myscript.js file like this:

jQuery(document).ready(function(){

jQuery("p").hide();
jQuery("h1").toggle(function(){
jQuery("p").animate({height: 'show', opacity: 'show'}, 'slow');
},function(){
jQuery("p").animate({height: 'hide', opacity: 'hide'}, 'slow');
});

});

this creates a cool animation effect hiding and showing the paragraph whenever we click on the heading(h1).


Final word:
thats all for now folks. start experimenting play with the code, read up  jquery's documentation. and i will be back with more.

11:29 PM

You Friggin Tool

I REALIZED THAT IN THIS FRIGGIN WORLD YOU CANNOT MAKE FRIGGING EVERYONE HAPPY ALL THE TIME, EITHER THEY'LL TURN BACK AND BITE YOU, OR EITHER THEY'LL JUST STAB YOU IN THE BACK IN A HIT AND RUN SITUATION.

DO YOU HEAR ME? YOU ARE JUST ANOHTER FRIGGIN TOOL IN THIS TOOL DRIVEN WORLD...AND YOU'LL ALWAYS BE THAT...NO MATTER WHAT YOU DO.