Craigston's Posts
Nairaland Forum › Craigston's Profile › Craigston's Posts
1 2 3 4 5 6 7 8 9 10 11 12 13 14 (of 27 pages)
Whoever wants it free can get it free. I believe knowledge should be freely given. We stand on the shoulders of giants, and those giants carry us without demanding a price. These things are freely available online. |
femi4:Thank you very much. It worked. |
The sooner we attend to climate change, the better for our frail necks. If we neglect this call, over a third of us will die in a short time span, while the remnants will struggle to, at least, survive and breathe. The end is closer than it ever has been. |
femi4:I changed my device so I need a new activation code. Please send me one for my BB curve 4. My pin is 28EE2B6D. |
Are you thinking of PHP-GTK? Look up the documentations. http://gtk.php.net/ has documentation. |
Check your JavaScript console for error logs. This line index = Math.floor (Math.random() * images.length);does something interesting. Read up a reference on it. It generates a random number from 0.1 to 1. You multiply that number by another number and you get a number greater than zero and less than or equal to the second number. You pass the result to the floor()method of the Mathobject and you get a value rounded to the lower nearest integer. So your program likely does not return '1' which is the length of your array. It is written to return a random number. Let us say it goes this way. Math.floor(Math.random() * index.length) |
dhtml18:It returns undefined when no pattern was found. I didn't bother fixing that since it's for this thread and you guys would understand what's the cause. Lemme play with something else. Maybe a technique that will output the patterns found continuously as the user enters a string. |