Coderholic implemented Boids in Javascript using Raphaël.
2008-10-28
2008-10-24
2008-10-22
Serving the correct XHTML document type
If you have to use PHP… this seems to work.
<?php
# From: http://randsco.com/index.php/2005/11/10/serving_xhtml_with_the_right_mime_type
$charset = "utf-8";
$mime = "text/html";
# NOTE: To allow for q-values with one space (text/html; q=0.5),
# use the following regex:
# "/text\/html;[\ ]{0,1}q=([0-1]{0,1}\.\d{0,4})/i"
if((isset($_SERVER["HTTP_ACCEPT"])) && (stristr($_SERVER["HTTP_ACCEPT"],"application/xhtml+xml"))) {
if(preg_match("/application\/xhtml\+xml;q=([0-1]{0,1}\.\d{0,4})/i",$_SERVER["HTTP_ACCEPT"],$matches)) {
$xhtml_q = $matches[1];
if(preg_match("/text\/html;q=([0-1]{0,1}\.\d{0,4})/i",$_SERVER["HTTP_ACCEPT"],$matches)) {
$html_q = $matches[1];
if((float)$xhtml_q >= (float)$html_q)
$mime = "application/xhtml+xml";
}
}
else
$mime = "application/xhtml+xml";
}
# special check for the W3C_Validator
# (allows IE page validation as XHTMLv1.1)
# but still serves page for IE to "understand" (i.e. text/html)
if (stristr($_SERVER["HTTP_USER_AGENT"],"W3C_Validator")) {
$mime = "application/xhtml+xml";
}
# set the prolog_type according to the mime type which was determined
if($mime == "application/xhtml+xml") {
$prolog_type = '<?xml version="1.0" encoding="'.$charset.'" ?>'."\n";
$prolog_type .= '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" ';
$prolog_type .= '"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">'."\n";
$prolog_type .= '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">'."\n\n";
} else {
$prolog_type = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"';
$prolog_type .= '"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'."\n";
$prolog_type .= '<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">'."\n\n";
}
# output the mime type and prolog type to your page
header("Content-Type: $mime;charset=$charset");
header("Vary: Accept");
print $prolog_type;
?>
2008-10-21
CSS Drop Shadows
http://www.alistapart.com/articles/cssdropshadows.
As usual, these folks deliver a good, clean, cross browser solution. There also seems to be another one by this author on this subject: http://www.alistapart.com/articles/cssdrop2.
2008-10-20
Automagic menu (Javascrip snippet)
var loc = document.location.toString();
var location_parts = loc.split('/');
this_loc = location_parts[location_parts.length-1];
if(this_loc == '' || this_loc == undefined) {
$('#nav li a[href=\'index.php\']').addClass('selected');
}
else {
$('#nav li a[href=\'' + this_loc + '\']').addClass('selected');
}
2008-10-17
Projectile calculation notes
http://en.wikipedia.org/wiki/External_ballistics
http://en.wikipedia.org/wiki/Force#Newton.27s_second_law
http://www.projectshum.org/Gravity/newton.html
http://gafferongames.wordpress.com/game-physics/
http://en.wikipedia.org/wiki/Trajectory
http://en.wikipedia.org/wiki/Trajectory_of_a_projectile
comp.games.development.programming.algorithms...
http://formularium.org/en/10.html?go=88.114
http://en.wikibooks.org/wiki/High_school_physics/Projectile_motion
Subscribe to:
Comments (Atom)