Archive for September, 2008
Saturday, September 27th, 2008
[gallery=12]
Posted in Bikes | No Comments »
Monday, September 22nd, 2008
Craig Russell updated Dibrova to work with modern compilers, sweet!
Dibrova was built on a RedHat 5 system back in the day, apparently the code wouldn't compile with newer versions of GCC. Craig was good enough to fix that and send me his changes. Viva la open source.
http://thevedic.net/mud/new/
Posted in Code | No Comments »
Tuesday, September 16th, 2008
[youtube]70K9xSwE50g[/youtube]
Dear Diary, I went to Hawaii. It was awesome. The End.
Pictures in no real order.
[gallery=11]
Posted in Bikes, Me | No Comments »
Sunday, September 14th, 2008
[singlepic=112,500,240,,]
How many reflections can you find?
Posted in Bikes, Random | No Comments »
Tuesday, September 9th, 2008
// type is the dropdown that controls what get displayed.
// folder_drop, radiologist_drop, and resend_box
// get displayed based on the selected value of type.
// This mapping is done in the if/else statements.
// The first time is for when the page loads,
// the second time is when type changes.
//
// The ...
Posted in Code | No Comments »
Friday, September 5th, 2008
function get_color($start, $end, $percent) {
$r1=hexdec(substr($start, 0, 2));
$g1=hexdec(substr($start, 2, 2));
$b1=hexdec(substr($start, 4, 2));
$r2=hexdec(substr($end, 0, 2));
$g2=hexdec(substr($end, 2, 2));
$b2=hexdec(substr($end, 4, 2));
$pc = $percent/100;
$r = floor($r1+($pc*($r2-$r1)) + .5);
$g = floor($g1+($pc*($g2-$g1)) + .5);
$b = floor($b1+($pc*($b2-$b1)) + ...
Posted in Code | No Comments »