Latest Tweets:
(Source: pleatedjeans, via usebigwords)
Played the Space Cat board game for reals for the first time: start to finish. Rules were actually read as printed out, we used actual pieces and drew actual cards. Few things emerged:
Both #2 and #3 could both leveraged in order to create a relaxed rules easy version. If movement is easier, you don’t have to worry about perfect movement or any ship upgrades the whole game is made much more simple. This might be a REALLY good thing. The advanced version is only slightly different, so it would be fine for even the 2nd time playing.
Perhaps it would be best to bill the easy version as the First Time Playing instructions rather than a normal version with an advanced version in case that scares people… because it doesn’t need to.
http://drupal.stackexchange.com/a/19384/1117// Convert timezone from second in Drupal to WC3 standard
function timezoneConvert($val, $toSeconds = false) {
if(!$toSeconds) {
// Starts like: "-28800" and becomes: "-08:00"
$sec = substr($val, 1);
$hours = intval(intval($sec) / 3600);
$minutes = intval(($sec / 60) % 60);
$w3cTZ = substr($val, 0, 1) .
str_pad($hours, 2, "0", STR_PAD_LEFT) .":".
str_pad($minutes, 2, "0", STR_PAD_LEFT);
return $w3cTZ;
}
else {
$seconds = 0;
$units = explode(':',$val,2);
$seconds += $units[0] * 3600; // Hours
$seconds += $units[1] * 60; // Minutes
return $seconds;
}
}
Super rad looking service for distributing app betas and collecting crash reports. @HockeyApp