eXorithm – Execute Algorithm: Discuss Algorithm weather_forecast

weather_forecast     version 1.4     Display the weather for a location. Look up using the Google weather API.Subject: API no longer available

Mike Campbell posted: Sep 14, 2012 09:56 am [reply]

Google has discontinued their API — http://thenextweb.com/google/2012/08/28/did-google-just-quietly-kill-private-weather-api/

Subject: weather_forecast

Doug posted: Sep 12, 2012 05:38 am [reply]

I can’t seem to get it to work either here or my website. Is it possible that I need a Google key?

Doug posted: Sep 12, 2012 05:40 am [reply]

The Zip Code is 45830, The City is Columbus Grove, Ohio, USA

New Comment

eXorithm – Execute Algorithm: View / Run Algorithm moon_cycle

function moon_cycle ($date
{
  $d = getdate$date);
  $year = $d'year'];
  $month = $d'mon'];
  $day = $d'mday'];
  
  $r = $year % 100;
  $r %= 19;
  if ($r>9)
    $r -= 19;
  $r = (($r * 11) % 30) + $month + $day
  if ($month<3)
    $r += 2;
  $r -= (($year<2000) ? 4 : 8.3);
  $r = floor$r+0.5)%30;
  return ($r < 0) ? $r+30 : $r

eXorithm – Execute Algorithm: View / Run Algorithm multicolumn

function multicolumn ($items$type$rows$columns$table_attributes$td_attributes$empty_attributes
{
  $return = ''
  $count = count$items);
  
  // compute number of columns and rows
  if (($rows=='*') && ($columns=='*')) {
    $rows = roundsqrt$count));
    $columns = ceil$count$rows);
  } else {
    if ($rows=='*'
      $rows = ceil$count$columns);
    else if ($columns=='*'
      $columns = ceil$count$rows);
  }
  
  
  if ($count>0) {
    $return .= "<table $table_attributes>"
    $column = 0;
    $row = 0;
    $total = $rows * $columns
    for ($i=0;$i$total$i++) {
      if$column == 0)
        $return .= '<tr>'
      
      if ($type=='horizontal'
        $spot = $i
      else
        $spot = $row$column$rows
     
      if ($spot$count
        $return .= "<td $td_attributes>$items[$spot]</td>"
      else
        $return .= "<td $empty_attributes></td>"
  
      $column++;
   
      if ($column==$columns) {
        $return .= '</tr>'
        $column = 0;
        $row++;
      }
    }
    
    $return .= '</table>'
  }
  
  return $return

eXorithm – Execute Algorithm: View / Run Algorithm list_prime

function list_prime ($min$max$return_string
{
  $count = $min
  $numbert = 2;
  $return = array();
  while ($count < $max ) {
    $div_count=0;
    for ( $i=1;$i<=$number$i++)
      if (($number$i)==0)
        $div_count++;
    if ($div_count<3) {
      $return[] = $number
      $count += 1;
    }
    $number += 1;
  }
  unset$return[0]);
  if$return_string
    $return = implode", "$return);
  return $return

eXorithm – Execute Algorithm: View / Run Algorithm isbn_hyphenate

function isbn_hyphenate ($isbn
{
  $isbnpreg_replace'/[^dX]/'''$isbn);  //remove all non-numeric chars
  
  // strip prefix from ISBN13
  if (strlen$isbn)==13) {
    $prefix = substr$isbn,0,3).'-'
    $isbn = substr$isbn,3);
  } else if (strlen$isbn)==10) {
    $prefix = ''
  } else {
    return ''
  }
  
  $unknown = substr$isbn,1,4)+0;
  $publisher = ''
  $unit = ''
  
  if (($isbn[0] == '0') || ($isbn[0] == '3') || ($isbn[0] == '4'))
  // english region 0
  // german region 3
  // japan region 4
  {
    if$unknown<=1999)
    {
      $publishersubstr$isbn,1,2);
      $unitsubstr$isbn,3,6);
    }
    elseif$unknown>=2000 && $unknown<=6999)
    {
      $publishersubstr$isbn,1,3);
      $unitsubstr$isbn,4,5);
    }
    elseif$unknown>=7000 && $unknown<=8499)
    {
      $publishersubstr$isbn,1,4);
      $unitsubstr$isbn,5,4);
    }
    elseif$unknown>=8500 && $unknown<=8999)
    {
      $publishersubstr$isbn,1,5);
      $unitsubstr$isbn,6,3);
    }
    elseif$unknown>=9000 && $unknown<=9499)
    {
      $publishersubstr$isbn,1,6);
      $unitsubstr$isbn,7,2);
    }
    elseif$unknown>=9500)
    {
      $publishersubstr$isbn,1,7);
      $unit$isbn[8];
    }
    return $prefix$isbn[0]."-"$publisher"-"$unit"-"$isbn[9];
  }
  else if ($isbn[0] == '1'
  // english region 1
  {
    if$unknown<=999)
    {
      $publishersubstr$isbn,1,2);
      $unitsubstr$isbn,3,6);
    }
    elseif$unknown>=1000 && $unknown<=3999)
    {
      $publishersubstr$isbn,1,3);
      $unitsubstr$isbn,4,5);
    }
    elseif$unknown>=4000 && $unknown<=5499)
    {
      $publishersubstr$isbn,1,4);
      $unitsubstr$isbn,5,4);
    }
    elseif$unknown>=5500 && $unknown<=8697)
    {
      $publishersubstr$isbn,1,5);
      $unitsubstr$isbn,6,3);
    }
    elseif$unknown>=8698 && $unknown<=9989)
    {
      $publishersubstr$isbn,1,6);
      $unitsubstr$isbn,7,2);
    }
    elseif$unknown>=9990)
    {
      $publishersubstr$isbn,1,7);
      $unit$isbn[8];
    }
    return $prefix$isbn[0]."-"$publisher"-"$unit"-"$isbn[9];
  }
  else
  // other regions are not fully supported
  {
    return $prefixsubstr$isbn,0,9)."-"$isbn[9];
  }

eXorithm – Execute Algorithm: View / Run Algorithm make_change

function make_change ($amount$coins
{
  $coin_count = count$coins);
  
  $table = array();
  
  for ($i = -1; $i <= $amount$i++) {
    for$j = -1; $j <= $coin_count$j++) {
      // Rules
      // 1: table[0,0] or table[0,x] = 1
      // 2: talbe[i <= -1, x] = 0
      // 3: table[x, j <= -1] = 0
      
      $total = 0;
         
      // first sub-problem
      // count(n, m-1)
      $n = $i
      $m = $j-1;
      if ($n == 0) // rule 1
        $total += 1;
      else if ($n <= -1) // rule 2
        $total += 0;
      else if (($m <= 0) && ($n >= 1))
        $total += 0;
      else
        $total += $table$n][$m];
      
      // second sub-problem
      // count(n-S[m], m)
      if (($j-1) <= -1)
        $total += 0;
      else {
        $n = $i - $coins$j - 1];
        $m = $j
        if ($n == 0) // rule 1
          $total += 1;
        else if ($n <= -1) // rule 2
          $total += 0;
        else if (($m <= 0) && ($n >= 1)) // rule 3
          $total += 0;
        else
          $total += $table$n][$m];
      }
      
      $table$i][$j] = $total
    }
  }
  return $table$i-1][$j-1];