Burn the Ubuntu image on a disk and boot from it.
Ubuntu is the best!
Welcome JJAllenFit [:D]
Introduction We all write programs to run on the terminal to do jobs that take time, like processing logs, sending out newsletter, etc. To know...
use jQuery toggle function http://docs.jquery.com/Effects/toggle
grant all privileges on *.* to 'root'@'%' with grant option;
Rating will consists of two parts, one is the interface in the HTML which will be controlled by JS and CSS, and the 2nd is the script that will...
You can post via GET and access the query string to get the value in the next page.
Read this http://www.issociate.de/board/index.php?t=msg&rid=0&th=129250&goto=450070
Check this out guys http://golf.shinh.org/p.rb?FizzBuzz
for(int i = 0 ; i <= 100 ; i++) { if(i % 3 == 0 && i % 5 == 0) { System.out.println("FizzBuzz"); } else if(i % 3 == 0) {...
Nice article!
Do you want help in accessing a database?
Try regexp 't{0,2}e{0,1}s{0,1}'
for(var i = 1; i <= 100; i++) { document.write(((i%3 ==0) && (i%5 ==0)) ? 'FizzBuzz<br>' : ((i%3==0) ? 'Fizz<br>' :((i%5==0) ? 'Buzz<br>' :...
:O That's some code. For people who don't know about Brain*uck check this link http://cydathria.com/bf/
Logically what MySQL returns is correct, 00 hr onwards is next day, so you must include the date part! select timediff('2009-05-28...
Introduction Many times we write programs which runs many instances of itself, either while using fork or we manually run many copies of the same...
Mine in shell script #!/bin/sh for i in `seq 1 100` do if [ `expr $i % 3` -eq 0 ] && [ `expr $i % 5` -eq 0 ]; then echo "FizzBuzz" elif...
To provide the real name for the download either you have keep it in the same name or you have to pass the Content-Disposition header which should...
Separate names with a comma.