By Havana Insider
This large cigar was not what I was hoping for, showing spicy, slightly young and uncured tobacco character that delivers a rough and powerful flavor.
By Havana Insider
This is a little soapy and very strong.
//GET WEATHER
// Commented out/disabled by Chevy 2016-11-22
// Occasionally api.openweathermap.org is slow and causes homepage response to exceed 60 seconds
// Requested by James to "Kill the weather service asap" on 2016-11-21
/*
if($xml=@simplexml_load_file("http://api.openweathermap.org/data/2.5/weather?q=Havana&APPID=5c6cf41f851041e851be58ff6b9afb4b&mode=xml")){
$weather= $xml->weather['value'];
if(strpos($weather,'Clear') !== false || strpos($weather,'sun') !== false || strpos($weather,'sunny') !== false){
$weather_img='sun.svg';
}
else if(strpos($weather,'rain') !== false || strpos($weather,'wet') !== false || strpos($weather,'showers') !== false){
$weather_img='rain.svg';
}else{
$weather_img='cloud.svg';
}
$degreeC = $xml->temperature['value']-273.15;
$degreeF = (($degreeC/5)*9)+35;
$temperature=round($degreeC).'°C
'.round($degreeF).'°F';
}else{
$temperature='n/a °C
n/a °F';
$weather_img='cloud.svg';
$weather='Weather Not Found';
}
*/
?>