Dal 16 al 18 marzo al 100dieci tre giorni all’insegna dell’Irlanda
Per la prima volta, dopo undici edizioni realizzate nelle più importanti città italiane, arriva a Perugia ‘Irlanda in Festa’ la più importante manifestazione di cultura irlandese in Europa. Il 17 marzo, St. Patrick's Day, festa nazionale irlandese, l'Irlanda è tutta un festival: le celebrazioni durano più di un solo giorno e nella Repubblica d'Irlanda si rincorrono da Cork al Donegal, da Galway al Kerry, fino a Limerick, Longford, Mayo, Offaly, Sligo, Waterford, Westmeath e Wicklow. In questi tre giorni il 100dieci si trasformerà in un gigantesco pub dublinese tra note e colori d'Irlanda, originale scenario di una serie di eventi musicali, artistici ed enogastronomici a tema.
Quest'anno il giorno di San Patrizione si festeggerà con un programma in crescendo che vedrà moltissime folk band irlandesi.
Ecco il programma: Giovedì 16 marzo da Dublino arrivano The Led Farmers con il loro Irish folk. Il gruppo è composto da Brendan ‘Dog’ Walsh (banjos), Ross O’Farrell (basso), Glenn Malone (batteria) e Shay Long (chitarra). Venerdì 17 marzo sarà all’insegna della musica celtica con i Selfish Murphy, band di Sepsiszentgyörgy nata nel 2011. Ad aprire il concerto la band perugina Distilleria a Vapore, miscellanea di folk, ska, rock e reggae. L’ultima serata, quella del 18 marzo, sarà il turno del gruppo tutto al femminile The Jesse Janes con il loro folk, country, soft rock e pop. Il live di apertura sarà affidato al gruppo umbro I Principi di Galles, folk, American e Italian.
‘Irlanda in Festa’ avrà i seguenti orari: giovedì 16 marzo dalle ore 19.00 alle 02.00, venerdì 17 marzo dalle 19.00 alle 03.00, sabato 18 marzo dalle 18.00 alle 03.00.
Lo spazio dell'area ristoro è affidato alla cucina del Ristorante Connemara e all'immancabile Chef irlandese Damien O'Shea, protagonista anche di #COOKINGSHOW ad iscrizione tutti da gustare.
Book shop su letteratura e cultura irlandese a cura della libreria Mannaggia - Libri da un altro mondo (giorni 17/18)
Ci sarà un’area freccette allestito in collaborazione con il Coordinamento Regionale Umbro della FIGF Umbria Federazione Italiana Gioco Freccette e l’area mercatini di artigianato
Info e prenotazione cene:
tel 075 586 8529 (100dieci)
cell: 320.9583795 (Ass. Umbra e della Musica d'Autore)
www.umbriaeventiautore.com
www.umbriachespacca.it
function makeThumb($srcImg,$sizesArray,$force){
$sizes = array();
$sizes['small'] = $sizesArray[0];
$sizes['medium'] = $sizesArray[1];
$sizes['large'] = $sizesArray[2];
foreach($sizes as $sizePref=>$sizeVal) {
$name = basename($srcImg);
$dir = dirname($srcImg);
$filename = $dir.'/'.$sizePref.'_'.$name;
//echo "Key=" . $x . ", Value=" . $x_value;
if (!file_exists($filename) or ($force == true)) {
$newImage = $filename;
$width = $sizeVal;
$height = $sizeVal;
// Content type
header('Content-Type: image/jpeg');
list($width_orig, $height_orig) = getimagesize($srcImg);
$ratio_orig = $width_orig/$height_orig;
if ($width/$height > $ratio_orig) {
$width = $height*$ratio_orig;
} else {
$height = $width/$ratio_orig;
}
$image_p = imagecreatetruecolor($width, $height);
$image = imagecreatefromjpeg($srcImg);
imagecopyresampled($image_p, $image, 0, 0, 0, 0, $width, $height, $width_orig, $height_orig);
imagejpeg($image_p, $newImage, 100);
} // end if file exits
}// end foreach
}
/*
function thumbGenerate($imageName,$galleryPath,$thumbSizes,$root,$respThumb) {
$imageName = $root.$galleryPath.$imageName;
$thumbDir = $root.$galleryPath.'thumb';
if (!file_exists($thumbDir)) {
mkdir($thumbDir, 0777, true);
}
$name = basename($imageName);
$image = imagecreatefromjpeg($imageName);
$filename = $root.$galleryPath.'thumb/thumb-'.$name;
// update 1.1.3
if ($respThumb == TRUE) {
$name = basename($name,'.jpg');
$filename = $root.$galleryPath.'thumb/thumb-'.$name.'@2x.jpg';
}
$thumb_width = $thumbSizes[0];
$thumb_height = $thumbSizes[1];
$width = imagesx($image);
$height = imagesy($image);
$original_aspect = $width / $height;
$thumb_aspect = $thumb_width / $thumb_height;
if ( $original_aspect >= $thumb_aspect )
{
// If image is wider than thumbnail (in aspect ratio sense)
$new_height = $thumb_height;
$new_width = $width / ($height / $thumb_height);
}
else
{
// If the thumbnail is wider than the image
$new_width = $thumb_width;
$new_height = $height / ($width / $thumb_width);
}
$thumb = imagecreatetruecolor( $thumb_width, $thumb_height );
// Resize and crop
imagecopyresampled($thumb,
$image,
0 - ($new_width - $thumb_width) / 2, // Center the image horizontally
0 - ($new_height - $thumb_height) / 2, // Center the image vertically
0, 0,
$new_width, $new_height,
$width, $height);
imagejpeg($thumb, $filename, 100);
md5gen($galleryPath,$root);
}
function md5gen($galleryPath,$root) {
$logDir = $root.$galleryPath.'/logs';
if (!file_exists($logDir)) {
mkdir($logDir, 0777, true);
}
$logFile = $logDir.'/gallery-log.txt';
$handle = fopen($logFile, 'w') or die('Cannot open file: '.$logFile);
$md5 = md5_file($root.$galleryPath);
fwrite($handle, $md5);
}
function md5check($galleryPath,$root) {
$md5file = $root.$galleryPath.'/logs/gallery-log.txt';
$md5file = file_get_contents($md5file);
if (md5_file($root.$galleryPath) == $md5file) {
$result = "not-changed";
}else{
$result = "changed";
}
return $result;
}
*/
?>