Skip to main content

EN

GARR Conference 2024

15 April 2024 | Conferences & Workshops

The GARR Conference the annual gathering of users and contributors of the Italian research and education network.

The meeting unites those who use the network for study, teaching, and research, alongside those actively contributing to its development and improvement, ensuring that services align with user needs.

During the event, experiences and reflections on digital infrastructures and services across different disciplines and contexts are shared.
In this 2024 edition, we will delve into topics related to the complexity of challenges we face within and outside the network. Exploring resources and tools supporting research to address major scientific, social, and environmental questions, we'll cover themes like digital sovereignty, the use of artificial intelligence, data security, and access to digital infrastructures on both national and global scales, among others.

  • Website

  • Programme

  • Interviews

  • Video of the sessions

  • Slide

  • Photo Gallery

GARR Conference 2024

University of Brescia

29-31 MAY 2024, BRESCIA

Interviews

/* Stili della galleria (prefisso garr- per non collidere con la pagina ospite) */ .garr-video-facade { position: relative; display: block; width: 100%; padding: 0; border: 0; aspect-ratio: 16 / 9; background-color: #000; background-size: cover; background-position: center; cursor: pointer; overflow: hidden; } .garr-play-icon { position: absolute; top: 50%; left: 50%; width: 68px; height: 48px; transform: translate(-50%, -50%); background: rgba(0, 0, 0, 0.6); border-radius: 12px; transition: background 0.2s ease; } .garr-play-icon::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-40%, -50%); border-style: solid; border-width: 11px 0 11px 19px; border-color: transparent transparent transparent #fff; } .garr-video-facade:hover .garr-play-icon, .garr-video-facade:focus .garr-play-icon { background: #c00; } .garr-video-frame { display: block; width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; }
// Configurazione // MAX_VIDEOS: numero intero positivo per limitare i video mostrati. // Lascia null / undefined / -1 (o qualunque valore non intero-positivo) // per mostrare TUTTI i video disponibili con il tag. const MAX_VIDEOS = null; const TAG_FILTER = 'interviste-conf24'; const API_BASE_URL = 'https://garr.tv/api/v1/videos'; const SITE_BASE_URL = 'https://garr.tv'; const PAGE_SIZE = 100; // massimo consentito dall'API PeerTube per singola richiesta // True se MAX_VIDEOS non rappresenta un limite valido => mostra tutti i video function shouldFetchAll() { return !(Number.isInteger(MAX_VIDEOS) && MAX_VIDEOS > 0); } // Escape dei caratteri speciali HTML (testo e attributi) function escapeHtml(value) { return String(value == null ? '' : value) .replace(/&/g, '&') .replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); } // Funzione per recuperare i video (gestisce limite e paginazione) async function fetchRecentVideos() { const limit = shouldFetchAll() ? Infinity : MAX_VIDEOS; const collected = []; let start = 0; let total = Infinity; try { while (collected.length < limit && start < total) { const pageCount = Math.min(PAGE_SIZE, limit - collected.length); const apiUrl = API_BASE_URL + '?tagsOneOf=' + encodeURIComponent(TAG_FILTER) + '&sort=-publishedAt' + '&start=' + start + '&count=' + pageCount; const response = await fetch(apiUrl); if (!response.ok) { throw new Error('Request failed with status: ' + response.status); } const data = await response.json(); total = data.total || 0; const pageVideos = data.data || []; if (pageVideos.length === 0) { break; } collected.push.apply(collected, pageVideos); start += pageVideos.length; } return processVideoData(collected); } catch (error) { console.error('Error fetching videos:', error); return []; } } // Funzione per processare i dati dei video function processVideoData(videoList) { return videoList.map(function (video) { // Usa embedPath / previewPath forniti dall'API (più robusti di un URL costruito a mano) const embedUrl = video.embedPath ? SITE_BASE_URL + video.embedPath : SITE_BASE_URL + '/videos/embed/' + video.uuid; const thumbnailPath = video.previewPath || video.thumbnailPath || ''; const thumbnailUrl = thumbnailPath ? SITE_BASE_URL + thumbnailPath : ''; return { title: video.name || '', videoSrc: embedUrl, thumbnailUrl: thumbnailUrl, publishedAt: video.originallyPublishedAt || video.publishedAt }; }); } // Funzione per creare una card video (facade: anteprima + tasto play, l'iframe si carica al click) function createVideoCard(video) { const safeTitle = escapeHtml(video.title); const safeEmbed = escapeHtml(video.videoSrc); const safeThumb = escapeHtml(video.thumbnailUrl); const thumbStyle = safeThumb ? ' style="background-image:url(\'' + safeThumb + '\');"' : ''; return '
' + '
' + '

' + safeTitle + '

' + '
' + '' + '' + '' + '
' + '
' + '
'; } // Sostituisce la facade cliccata con l'iframe del player (carica un solo player, su gesto utente) function handleFacadeClick(event) { const facade = event.target.closest('.garr-video-facade'); if (!facade) { return; } const embedUrl = facade.getAttribute('data-embed'); const title = facade.getAttribute('data-title') || ''; const iframe = document.createElement('iframe'); iframe.className = 'garr-video-frame'; iframe.setAttribute('title', title); iframe.setAttribute('src', embedUrl + (embedUrl.indexOf('?') === -1 ? '?' : '&') + 'autoplay=1'); iframe.setAttribute('allow', 'autoplay; fullscreen'); iframe.setAttribute('allowfullscreen', ''); iframe.setAttribute('frameborder', '0'); iframe.setAttribute('sandbox', 'allow-same-origin allow-scripts allow-popups allow-forms'); facade.replaceWith(iframe); } // Funzione per renderizzare i video function renderVideos(videos) { const container = document.getElementById('garr-videos-container'); if (videos.length === 0) { container.innerHTML = '

Nessun video trovato.

'; return; } const videosHTML = videos.map(createVideoCard).join(''); container.innerHTML = '
' + videosHTML + '
'; // Delego il click sul container: il player parte solo quando l'utente clicca container.addEventListener('click', handleFacadeClick); } // Funzione principale async function initVideoGallery() { const container = document.getElementById('garr-videos-container'); container.innerHTML = '

Caricamento video...

'; const videos = await fetchRecentVideos(); renderVideos(videos); } // Avvia l'applicazione quando il DOM è pronto if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', initVideoGallery); } else { initVideoGallery(); }

Video of the sessions

Click on the menu at the top left of the player to browse the playlist

Slides

document.documentElement.classList.add("k-ui-j5", "k-ui-j5-site");document.documentElement.classList.add('k-js-enabled');

Photo gallery

Would you like to learn more about GARR events?

Contact us

ROME SCIENCE FESTIVAL 2024

12 April 2024 | Conferences & Workshops
Festival delle Scienze 2024

From 16th to 21st April 2024, the Rome Science Festival returns to the Auditorium Parco della Musica Ennio Morricone for its 19th edition.

"Errori e meraviglie - Errors and Wonders” is the theme of this edition dedicated to the wonder that accompanies every discovery, the driving force pushing scientists to explore, to ask questions, and to challenge established knowledge, always pushing boundaries.

More than 100 guests, over 150 events including conferences, workshops, exhibits, performances, and family events.

GARR will be present at the Festival by participating in some important scheduled events.

Website

Rome Science Festival 2024

Auditorium Parco della Musica Ennio Morricone

16-21 APRIL 2024, ROME

Programme

Saturday 20th April at 16:30

Conference: "Reale o artificiale? IA e il futuro tecnologico che ci attende… adesso
Real or Artificial? AI and the technological future awaiting us... now" with Massimo Carboni, coordinator of the GARR Infrastructure Department, Giovanni Ponti, Head of the Division for System Development for Informatics and ICT at ENEA, Florian Jug, Group Leader of Computational Biology at Human Technopole. Moderated by Rai journalist, Patrizia Angelini.

Sunday 21st April at 15:30

Conferenza: “L’errore dell’uomo, l’errore della macchina”
Human Error, Machine Error" with Simona Venuti, Security Manager at GARR, Sara Colantonio, CNR researcher, Franco Raimondi, Professor of Informatics at GSSI, Giancarlo Ruocco, Coordinator of the Center for Life NanoScience at IIT.
Moderated by science journalist Leonardo De Cosmo.

Tuesday 16th April at 17:00

Webinar “Cosa sono le risorse educative aperte (oer) e dove trovarle”
What are Open Educational Resources (OER) and where to find them" dedicated to teachers, presented by Gabriella Paolini, responsible for GARR training.

  • Event website
  • Full programme

Photogallery

Would you like to learn more about GARR events?

Contact us

GARR Workshop 2023

02 October 2023 | Conferences & Workshops

Since the beginning of GARR history, the technical workshop has been an important meeting for experts in networking in the research and education community: an opportunity to receive professional updates and discuss about the trend topics of this domain.
  • Interviews

  • Video of the sessions

  • Slide

  • Photo Gallery

  • Programme

GARR Workshop 2023

Biblioteca Nazionale Centrale di Roma

8-10 NOVEMBER 2023, ROME

Interviews

/* Stili della galleria (prefisso garr- per non collidere con la pagina ospite) */ .garr-video-facade { position: relative; display: block; width: 100%; padding: 0; border: 0; aspect-ratio: 16 / 9; background-color: #000; background-size: cover; background-position: center; cursor: pointer; overflow: hidden; } .garr-play-icon { position: absolute; top: 50%; left: 50%; width: 68px; height: 48px; transform: translate(-50%, -50%); background: rgba(0, 0, 0, 0.6); border-radius: 12px; transition: background 0.2s ease; } .garr-play-icon::before { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-40%, -50%); border-style: solid; border-width: 11px 0 11px 19px; border-color: transparent transparent transparent #fff; } .garr-video-facade:hover .garr-play-icon, .garr-video-facade:focus .garr-play-icon { background: #c00; } .garr-video-frame { display: block; width: 100%; aspect-ratio: 16 / 9; height: auto; border: 0; }
// Configurazione // MAX_VIDEOS: numero intero positivo per limitare i video mostrati. // Lascia null / undefined / -1 (o qualunque valore non intero-positivo) // per mostrare TUTTI i video disponibili con il tag. const MAX_VIDEOS = null; const TAG_FILTER = 'interviste-ws23'; const API_BASE_URL = 'https://garr.tv/api/v1/videos'; const SITE_BASE_URL = 'https://garr.tv'; const PAGE_SIZE = 100; // massimo consentito dall'API PeerTube per singola richiesta // True se MAX_VIDEOS non rappresenta un limite valido => mostra tutti i video function shouldFetchAll() { return !(Number.isInteger(MAX_VIDEOS) && MAX_VIDEOS > 0); } // Escape dei caratteri speciali HTML (testo e attributi) function escapeHtml(value) { return String(value == null ? '' : value) .replace(/&/g, '&') .replace(/"/g, '"') .replace(/'/g, ''') .replace(//g, '>'); } // Funzione per recuperare i video (gestisce limite e paginazione) async function fetchRecentVideos() { const limit = shouldFetchAll() ? Infinity : MAX_VIDEOS; const collected = []; let start = 0; let total = Infinity; try { while (collected.length < limit && start < total) { const pageCount = Math.min(PAGE_SIZE, limit - collected.length); const apiUrl = API_BASE_URL + '?tagsOneOf=' + encodeURIComponent(TAG_FILTER) + '&sort=-publishedAt' + '&start=' + start + '&count=' + pageCount; const response = await fetch(apiUrl); if (!response.ok) { throw new Error('Request failed with status: ' + response.status); } const data = await response.json(); total = data.total || 0; const pageVideos = data.data || []; if (pageVideos.length === 0) { break; } collected.push.apply(collected, pageVideos); start += pageVideos.length; } return processVideoData(collected); } catch (error) { console.error('Error fetching videos:', error); return []; } } // Funzione per processare i dati dei video function processVideoData(videoList) { return videoList.map(function (video) { // Usa embedPath / previewPath forniti dall'API (più robusti di un URL costruito a mano) const embedUrl = video.embedPath ? SITE_BASE_URL + video.embedPath : SITE_BASE_URL + '/videos/embed/' + video.uuid; const thumbnailPath = video.previewPath || video.thumbnailPath || ''; const thumbnailUrl = thumbnailPath ? SITE_BASE_URL + thumbnailPath : ''; return { title: video.name || '', videoSrc: embedUrl, thumbnailUrl: thumbnailUrl, publishedAt: video.originallyPublishedAt || video.publishedAt }; }); } // Funzione per creare una card video (facade: anteprima + tasto play, l'iframe si carica al click) function createVideoCard(video) { const safeTitle = escapeHtml(video.title); const safeEmbed = escapeHtml(video.videoSrc); const safeThumb = escapeHtml(video.thumbnailUrl); const thumbStyle = safeThumb ? ' style="background-image:url(\'' + safeThumb + '\');"' : ''; return '
' + '
' + '

' + safeTitle + '

' + '
' + '' + '' + '' + '
' + '
' + '
'; } // Sostituisce la facade cliccata con l'iframe del player (carica un solo player, su gesto utente) function handleFacadeClick(event) { const facade = event.target.closest('.garr-video-facade'); if (!facade) { return; } const embedUrl = facade.getAttribute('data-embed'); const title = facade.getAttribute('data-title') || ''; const iframe = document.createElement('iframe'); iframe.className = 'garr-video-frame'; iframe.setAttribute('title', title); iframe.setAttribute('src', embedUrl + (embedUrl.indexOf('?') === -1 ? '?' : '&') + 'autoplay=1'); iframe.setAttribute('allow', 'autoplay; fullscreen'); iframe.setAttribute('allowfullscreen', ''); iframe.setAttribute('frameborder', '0'); iframe.setAttribute('sandbox', 'allow-same-origin allow-scripts allow-popups allow-forms'); facade.replaceWith(iframe); } // Funzione per renderizzare i video function renderVideos(videos) { const container = document.getElementById('garr-videos-container'); if (videos.length === 0) { container.innerHTML = '

Nessun video trovato.

'; return; } const videosHTML = videos.map(createVideoCard).join(''); container.innerHTML = '
' + videosHTML + '
'; // Delego il click sul container: il player parte solo quando l'utente clicca container.addEventListener('click', handleFacadeClick); } // Funzione principale async function initVideoGallery() { const container = document.getElementById('garr-videos-container'); container.innerHTML = '

Caricamento video...

'; const videos = await fetchRecentVideos(); renderVideos(videos); } // Avvia l'applicazione quando il DOM è pronto if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', initVideoGallery); } else { initVideoGallery(); }

Video of the sessions

Click on the menu at the top left of the player to browse the playlist

Slide

Photo Gallery

Would you like to learn more about GARR events?

Contact us

GARR Conference 2023

02 May 2023 | Conferences & Workshops
GARR Conference 2023
Main focus of this edition is the interconnection of knowledge. The world of research and education is gearing up for an extraordinary season filled with exciting and demanding challenges, thanks in part to the NRRP investments, and is in greater need than ever of interdisciplinary exchange and advanced skills to exploit and operate digital services to the best of their abilities. In this context, it is important to create research infrastructures to support the activities that regularly handle vast amounts of data and demand high performance for their processing, transmission, and storage.
  • Interviews

  • Video of the sessions

  • Slide

  • Photo Gallery

  • Programme

GARR Conference 2023

Polo Universitario di Novoli

14-16 June 2023 - FLORENCE

Interviews

(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const i of document.querySelectorAll('link[rel="modulepreload"]'))r(i);new MutationObserver(i=>{for(const o of i)if(o.type==="childList")for(const l of o.addedNodes)l.tagName==="LINK"&&l.rel==="modulepreload"&&r(l)}).observe(document,{childList:!0,subtree:!0});function t(i){const o={};return i.integrity&&(o.integrity=i.integrity),i.referrerPolicy&&(o.referrerPolicy=i.referrerPolicy),i.crossOrigin==="use-credentials"?o.credentials="include":i.crossOrigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function r(i){if(i.ep)return;i.ep=!0;const o=t(i);fetch(i.href,o)}})();var B,f,fe,P,J,ae,R,C={},de=[],$e=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,X=Array.isArray;function S(_,e){for(var t in e)_[t]=e[t];return _}function pe(_){var e=_.parentNode;e&&e.removeChild(_)}function He(_,e,t){var r,i,o,l={};for(o in e)o=="key"?r=e[o]:o=="ref"?i=e[o]:l[o]=e[o];if(arguments.length>2&&(l.children=arguments.length>3?B.call(arguments,2):t),typeof _=="function"&&_.defaultProps!=null)for(o in _.defaultProps)l[o]===void 0&&(l[o]=_.defaultProps[o]);return U(_,l,r,i,null)}function U(_,e,t,r,i){var o={type:_,props:e,key:t,ref:r,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:i??++fe};return i==null&&f.vnode!=null&&f.vnode(o),o}function q(_){return _.children}function D(_,e){this.props=_,this.context=e}function T(_,e){if(e==null)return _.__?T(_.__,_.__.__k.indexOf(_)+1):null;for(var t;ev?H>x-v?k+=g-v:k--:k=g=0||s=0){if((u=e[l])&&i==u.key&&o===u.type)return l;l--}if(s

Skills4EOSC Kickoff meeting

21 September 2022 | Conferences & Workshops
Skills4EOSC Kickoff meeting

Skills4EOSC ‘Skills for the European Open Science commons: creating a training ecosystem for Open and FAIR science’ is funded by the European Commission Horizon Europe programme (GA 101058527). Coordinated by Consortium GARR and supported by 44 partners in 18 European countries, Skills4EOSC will set up a pan-European network of competence centres to speed up the training of European researchers and harmonise the training of new professional figures for scientific data management.

The project kick-off will be hosted by GARR, the Italian Research and Education Network.

  • Interviews

  • Slide

  • Gallery

  • Programme

Skills4EOSC Kickoff meeting 2022

Opera della Primaziale Pisana (OPA) - Piazza dei Miracoli, Pisa

21-22 September 2022, PISA

Interviews

(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const i of document.querySelectorAll('link[rel="modulepreload"]'))r(i);new MutationObserver(i=>{for(const o of i)if(o.type==="childList")for(const l of o.addedNodes)l.tagName==="LINK"&&l.rel==="modulepreload"&&r(l)}).observe(document,{childList:!0,subtree:!0});function t(i){const o={};return i.integrity&&(o.integrity=i.integrity),i.referrerPolicy&&(o.referrerPolicy=i.referrerPolicy),i.crossOrigin==="use-credentials"?o.credentials="include":i.crossOrigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function r(i){if(i.ep)return;i.ep=!0;const o=t(i);fetch(i.href,o)}})();var W,f,se,P,Y,fe,j,C={},ae=[],we=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,K=Array.isArray;function S(_,e){for(var t in e)_[t]=e[t];return _}function de(_){var e=_.parentNode;e&&e.removeChild(_)}function $e(_,e,t){var r,i,o,l={};for(o in e)o=="key"?r=e[o]:o=="ref"?i=e[o]:l[o]=e[o];if(arguments.length>2&&(l.children=arguments.length>3?W.call(arguments,2):t),typeof _=="function"&&_.defaultProps!=null)for(o in _.defaultProps)l[o]===void 0&&(l[o]=_.defaultProps[o]);return U(_,l,r,i,null)}function U(_,e,t,r,i){var o={type:_,props:e,key:t,ref:r,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:i??++se};return i==null&&f.vnode!=null&&f.vnode(o),o}function B(_){return _.children}function D(_,e){this.props=_,this.context=e}function T(_,e){if(e==null)return _.__?T(_.__,_.__.__k.indexOf(_)+1):null;for(var t;ev?H>x-v?k+=g-v:k--:k=g=0||s=0){if((u=e[l])&&i==u.key&&o===u.type)return l;l--}if(s

GARR Workshop 2022

02 September 2022 | Conferences & Workshops
Workshop GARR 2022
Since the beginning of GARR history, the technical workshop has been an important meeting for experts in networking in the research and education community: an opportunity to receive professional updates and discuss about the trend topics of this domain.
  • Reel

  • Video of the sessions

  • Slide

  • Photo Gallery

  • Programme

GARR Workshop 2022

Conservatorio Statale di Musica Santa Cecilia

26-28 OCTOBER 2022, ROME

Workshop's video

Video of the sessions

Click on the menu at the top left of the player to browse the playlist

Slide

Photo Gallery

Would you like to learn more about GARR events?

Contact us

GARR Conference 2022

04 April 2022 | Conferences & Workshops
Conferenza GARR 2022
The 2022 edition of the GARR Conference focuses on the new challenges faced by the research community, which can only be addressed with a collaborative and open approach.
  • Interviews

  • Video of the sessions

  • Slide

  • Photo Gallery

  • Programme

GARR Conference 2022

University of Palermo

18 - 20 MAY 2022, PALERMO

Interviews

(function(){const e=document.createElement("link").relList;if(e&&e.supports&&e.supports("modulepreload"))return;for(const i of document.querySelectorAll('link[rel="modulepreload"]'))r(i);new MutationObserver(i=>{for(const o of i)if(o.type==="childList")for(const l of o.addedNodes)l.tagName==="LINK"&&l.rel==="modulepreload"&&r(l)}).observe(document,{childList:!0,subtree:!0});function t(i){const o={};return i.integrity&&(o.integrity=i.integrity),i.referrerPolicy&&(o.referrerPolicy=i.referrerPolicy),i.crossOrigin==="use-credentials"?o.credentials="include":i.crossOrigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function r(i){if(i.ep)return;i.ep=!0;const o=t(i);fetch(i.href,o)}})();var B,f,fe,P,J,ae,R,C={},de=[],$e=/acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i,X=Array.isArray;function S(_,e){for(var t in e)_[t]=e[t];return _}function pe(_){var e=_.parentNode;e&&e.removeChild(_)}function He(_,e,t){var r,i,o,l={};for(o in e)o=="key"?r=e[o]:o=="ref"?i=e[o]:l[o]=e[o];if(arguments.length>2&&(l.children=arguments.length>3?B.call(arguments,2):t),typeof _=="function"&&_.defaultProps!=null)for(o in _.defaultProps)l[o]===void 0&&(l[o]=_.defaultProps[o]);return U(_,l,r,i,null)}function U(_,e,t,r,i){var o={type:_,props:e,key:t,ref:r,__k:null,__:null,__b:0,__e:null,__d:void 0,__c:null,__h:null,constructor:void 0,__v:i??++fe};return i==null&&f.vnode!=null&&f.vnode(o),o}function q(_){return _.children}function D(_,e){this.props=_,this.context=e}function T(_,e){if(e==null)return _.__?T(_.__,_.__.__k.indexOf(_)+1):null;for(var t;ev?H>x-v?k+=g-v:k--:k=g=0||s=0){if((u=e[l])&&i==u.key&&o===u.type)return l;l--}if(s
torna su