Yes, but papervision uses software rendering because that's all flash can do. You'll get 10x the framerate from this since it actually uses your computer's 3d hardware.
Actually, I probably spend 10x the bandwidth per month updating Kubuntu than I do Windows XP. But that's only because Windows refuses to update anything besides itself, IE, and Outlook express. I even have to go out and find newer versions of my drivers all by myself. How retro!
Forgive me if someone has posted something similar already, but below is the code I sometimes user for sanitizing user input for PHP/MySQL. It should allow a lazy programmer to do things like $_POST = sanitize($_POST) and everything will be taken care of recursively. Constructive criticism is welcome.
// Sanitize form input for database input as well as any html tags. Recursively processes arrays. // IMPORTANT!!! You must already be connected to a mysql database for this function to work. function sanitize($text, $clean_html=false) { if (is_array($text)) { foreach ($text as $key=> $value) $text[$key] = sanitize($text[$key], $clean_html); }else { if (get_magic_quotes_gpc()) // Manually remove any $text = stripslashes($text); // escape characters if ($clean_html) $text = htmlentities($text, ENT_QUOTES);// Replace HTML characters with sanitized versions $text = mysql_real_escape_string($text); // Clean up anything else left over. } return $text; }
What is the proper method of summoning your presence? I bought a book of incantations on ebay but I think it was a scam.
foul bachelor frog?
Then the LORD said, "My Spirit will not contend with man forever, for he is mortal; his days will be a hundred and twenty years."
What happens when the Fujitsu virus meets itself and destroys its own source of origin?
Yes, but papervision uses software rendering because that's all flash can do. You'll get 10x the framerate from this since it actually uses your computer's 3d hardware.
does it run linux?
This one is qite a bit cheaper at $30.
Actually, I probably spend 10x the bandwidth per month updating Kubuntu than I do Windows XP. But that's only because Windows refuses to update anything besides itself, IE, and Outlook express. I even have to go out and find newer versions of my drivers all by myself. How retro!
Nah, just new to the comment systems. I've been reading /. for probably 5 years.
Weird. The thread I replied to seems to have been deleted.
Perhaps there are easier ways to cut spending.
Seems to require a username and password From bugmenot.com: wchlib library
Glad they finally found a good use for this.
Forgive me if someone has posted something similar already, but below is the code I sometimes user for sanitizing user input for PHP/MySQL. It should allow a lazy programmer to do things like $_POST = sanitize($_POST) and everything will be taken care of recursively. Constructive criticism is welcome.
// Manually remove any // escape characters // Clean up anything else left over.
// Sanitize form input for database input as well as any html tags. Recursively processes arrays.
// IMPORTANT!!! You must already be connected to a mysql database for this function to work.
function sanitize($text, $clean_html=false)
{ if (is_array($text))
{ foreach ($text as $key=> $value)
$text[$key] = sanitize($text[$key], $clean_html);
}else
{ if (get_magic_quotes_gpc())
$text = stripslashes($text);
if ($clean_html)
$text = htmlentities($text, ENT_QUOTES);// Replace HTML characters with sanitized versions
$text = mysql_real_escape_string($text);
}
return $text;
}