The 2026 edition of the GARR Conference, titled “The Shape of change. Between digital ethics and shared roots” - La forma del cambiamento. Tra etica digitale e radici condivise, will be hosted by the University of Pisa from 19 to 21 May at the Pontecorvo Area.
The GARR Conference is the event where experiences are shared on the use of digital infrastructures and services by those who use the GARR network and those who actively contribute to building it and improving its services.
This edition offers a reflection on the ongoing transformation in digital technologies and knowledge infrastructures, placing at its core the relationship between digital sovereignty, AI ethics, system resilience, sustainability, historical memory and new scientific frontiers. A dialogue between future and roots, between technological innovation and the role of the scientific community, in a context marked by profound social, economic and geopolitical transformations.
-
Interviews
-
Event website
-
Videos of the sessions
-
Slide
-
Photo Gallery
GARR Conference 2026
Università di Pisa
Area Pontecorvo
19-21 May 2026, Pisa
Interviews
// Configurazione
const MAX_VIDEOS = 8;
const TAG_FILTER = 'interviste-conf26';
const API_BASE_URL = 'https://garr.tv/api/v1/videos';
// Funzione per recuperare i video più recenti
async function fetchRecentVideos() {
const apiUrl = API_BASE_URL + '?tagsOneOf=' + TAG_FILTER + '&sort=-originallyPublishedAt&count=' + MAX_VIDEOS;
console.log('API URL:', apiUrl);
try {
const response = await fetch(apiUrl);
if (!response.ok) {
throw new Error('Request failed with status: ' + response.status);
}
const data = await response.json();
return processVideoData(data);
} catch (error) {
console.error('Error fetching videos:', error);
return [];
}
}
// Funzione per processare i dati dei video
function processVideoData(apiResponse) {
const videos = [];
const videoList = apiResponse.data || [];
console.log('API Response:', apiResponse);
console.log('Video list:', videoList);
for (let i = 0; i < MAX_VIDEOS && i < videoList.length; i++) {
const video = videoList[i];
console.log('Video object:', video);
const embedUrl = 'https://garr.tv/videos/embed/' + video.uuid;
console.log('Embed URL:', embedUrl);
videos.push({
title: video.name,
videoSrc: embedUrl,
publishedAt: video.originallyPublishedAt || video.publishedAt
});
}
console.log('Processed videos:', videos);
return videos;
}
// Funzione per creare una card video
function createVideoCard(video) {
// Escape HTML characters per il title
const escapedTitle = video.title
.replace(/&/g, '&')
.replace(/"/g, '"')
.replace(//g, '>');
return '
' +
'
' +
'
' + video.title + '
' +
'
' +
'' +
'' +
'
' +
'
' +
'
';
}
// 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(video => createVideoCard(video)).join('');
container.innerHTML = '
' +
videosHTML +
'
';
}
// 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();
}
Videos of the sessions
Click on the menu at the top left of the player to browse the playlist
Slide
document.documentElement.classList.add("k-ui-j5", "k-ui-j5-site");document.documentElement.classList.add('k-js-enabled');
Photogallery
Would you like to learn more about GARR events?
Contact us