Tuesday, 24 September 2013

matrix code

Inspired by the movie Matrix, this falling code trick is extremely popular on social networking websites. Copy and paste the code given below in Notepad and save the file as "Matrix.bat" or *.bat. 

@echo off
color 02
:tricks
echo %random%%random%%random%%random%%random%%random%%random%%random%

goto tricks

Sunday, 22 September 2013

Back and forth:

Text bounces back and forth.

marquee images

smile

marquee speed

Slow scrolling. Medium scrolling. Fast scrolling.

Friday, 6 September 2013

Disable Copy and paste

<script language="JavaScript1.2">
function disableselect(e){
return false
}
function reEnable(){
return true
}
document.onselectstart=new Function ("return false")
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}
</script>



try to copy and paste the code above