Thursday, July 10, 2008

Cool stuff you can do with your computer.

I toyed with my computer just now, because I read Wendy's blog entry (about the terbalik screen thing). And I discovered a few cool stuff that you can do with your computer.

Some of the tricks shown here will only work if your graphics card/chipset/internet browser supports it, so don't panic if you can't do it. (Most are just Javascript codes. Might not work with Opera, Safari or Internet Exploder. I mean Internet Explorer.)

NOTICE: Read the whole thing first before attempting any, or you might start worrying and asking yourself, "HOW DO I MAKE THE COMPUTER NORMAL AGAIN?!".

1. Flippin' fun

Press CTRL+ALT+Down together and your screen will flip upside-down.

Press CTRL+ALT+Left together and your screen rotates to the left.

Press CTRL+ALT+Right together and your screen rotates to the right.

Press CTRL+ALT+Up and your screen is restored to the normal state.

2. Image snaaaaaaaaaake!

First off, copy the following Javascript code:

javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.images; DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=Math.sin(R*x1+i*x2+x3)*x4+x5; DIS.top=Math.cos(R*y1+i*y2+y3)*y4+y5}R++}setInterval('A()',5); void(0);

Then, click here. Delete the URL address in the address bar, then paste the copied code into the address bar. Press enter, and enjoy.

Pro tip: For added fun, try it on the Google Language Tools page!

3. Design the page just the way you like it.

First off, copy the following Javascript code (same like above):

javascript:document.body.contentEditable='true'; document.designMode='on'; void 0

Then, go to any website of your choice, delete the URL from the address bar and paste the code into the address bar. Put on your thinking caps and start editing.

4. Image heeeelix!

Again, first copy the following code:

javascript:R=0; x1=.1; y1=.05; x2=.25; y2=.24; x3=1.6; y3=.24; x4=300; y4=200; x5=300; y5=200; DI=document.getElementsByTagName("img"); DIL=DI.length; function A(){for(i=0; i-DIL; i++){DIS=DI[ i ].style; DIS.position='absolute'; DIS.left=(Math.sin(R*x1+i*x2+x3)*x4+x5)+"px"; DIS.top=(Math.cos(R*y1+i*y2+y3)*y4+y5)+"px"}R++}setInterval('A()',5); void(0);

Then, go to this Wikipedia page and replace the URL in the address bar with the copied code.

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

I think that's all for now. Enjoy! You can even pull this prank on your friend! Hehe, too bad April Fool's Day is over.

0 comments: