![]() |
|
Clear questions and runnable code get the best and fastest answer |
|
PerlMonks |
gmpassosby gmpassos (Priest) |
on Jul 23, 2002 at 03:56 UTC ( #184322=user: print w/replies, xml ) | Need Help?? |
"Creativity is the expression of the liberty". "What is your product? Softwares, Web Sites, Design, Style? No, is
creativity!" What make the "creativity" so important? Because you need to make things different than the others! If you are making the same thing of every body, first, the competition will be bigger, and the race faster, second, you are not changing the world! She's the essence for inovation, "the new", and the world that humanity build. Some Links:
A work of art of the nature (try to refresh):
<SCRIPT LANGUAGE="JavaScript">
function random() {
var randomNumber = Math.random();
if (randomNumber >= 0 && randomNumber <= .2) { return 1 ;}
if (randomNumber >= .2 && randomNumber <= .3){ return 2 ;}
if (randomNumber >= .3 && randomNumber <= .4){ return 3 ;}
if (randomNumber >= .4 && randomNumber <= .5){ return 4 ;}
if (randomNumber >= .5 && randomNumber <=.6){ return 5 ;}
if (randomNumber >= .6 && randomNumber <= .7){ return 6 ;}
if (randomNumber >= .7 && randomNumber <=.8 ){ return 7 ;}
if (randomNumber >= .8 && randomNumber <= 1 ){ return 8 ;}
return 7 ;
}
document.write( "<img src=\"http://tinyperl.sourceforge.net/photos/gisele"+ random() +".jpg\">" );
</SCRIPT>
|
|