Skip to content

Commit a4da50c

Browse files
committed
Weekly update
1 parent 8c7ea22 commit a4da50c

1 file changed

Lines changed: 289 additions & 0 deletions

File tree

_data/log-2025.json

Lines changed: 289 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1344,5 +1344,294 @@
13441344
"en": "Data Modeling /1",
13451345
"it": "Modellazione Dati /1"
13461346
}
1347+
},
1348+
{
1349+
"date": "2026-04-21T14:30:00",
1350+
"duration": 2,
1351+
"slides": [
1352+
{
1353+
"name": "CSS3",
1354+
"link": "https://github.com/WebEngineering-Univaq/WE_Lecture_Slides"
1355+
}
1356+
],
1357+
"attachments": [
1358+
{
1359+
"name": "CSS_Examples",
1360+
"link": "https://github.com/WebEngineering-Univaq/CSS_Examples"
1361+
}
1362+
],
1363+
"arguments": [
1364+
{
1365+
"en": "Notes on optimistic and pessimistic locking techniques to manage concurrency",
1366+
"it": "Cenni sulle tecniche di locking ottimistico e pessimistico per gestire la concorrenza"
1367+
},
1368+
{
1369+
"en": "Summary example: a simple application that shows how to create and make models and controllers interact effectively",
1370+
"it": "Esempio riassuntivo: un'applicazione base che mostra come realizzare e far interagire model e controller in modo efficace",
1371+
"type": "esempio",
1372+
"attachments": [
1373+
{
1374+
"name": "Java_Example_BaseApplicationMC",
1375+
"link": "https://github.com/WebEngineering-Univaq/Java_Example_BaseApplicationMC"
1376+
}
1377+
]
1378+
},
1379+
{
1380+
"show": false,
1381+
"en": "Notes on ServletContextListeners in java web applications",
1382+
"it": "Cenni sui ServletContextListener nelle web application java"
1383+
},
1384+
{
1385+
"en": "Introduction to CSS Stylesheets",
1386+
"it": "Presentazione dei fogli di stile CSS"
1387+
},
1388+
{
1389+
"en": "Adding style to HTML: style and link elements",
1390+
"it": "Incorporare i fogli di stile in HTML: elementi style e link"
1391+
},
1392+
{
1393+
"en": "Multiple stylesheets in the same document",
1394+
"it": "Fogli di stile multipli per uno stesso documento"
1395+
},
1396+
{
1397+
"en": "Stylesheets: persistent, preferred and alternative (used selected)",
1398+
"it": "Fogli di stile persistenti, preferiti e alternativi (scelta utente)"
1399+
},
1400+
{
1401+
"en": "Media-related alternate stylesheets",
1402+
"it": "Fogli di stile alternativi legati ai media"
1403+
},
1404+
{
1405+
"en": "Creating print-oprimized stylesheets (media=\"print\")",
1406+
"it": "Accorgimenti per la creazione di figli di stile per la stampa (media=\"print\")",
1407+
"type": "esempio",
1408+
"attachments": [
1409+
{
1410+
"name": "css_inclusion_print",
1411+
"link": "https://github.com/WebEngineering-Univaq/CSS_Examples/blob/main/css_inclusion_print.html"
1412+
}
1413+
]
1414+
},
1415+
{
1416+
"en": "Syntax of CSS rules",
1417+
"it": "Sintassi delle regole CSS"
1418+
},
1419+
{
1420+
"en": "Simple selectors",
1421+
"it": "I selettori semplici",
1422+
"attachments": [
1423+
{
1424+
"name": "css_selectors",
1425+
"link": "https://github.com/WebEngineering-Univaq/CSS_Examples/blob/main/css_selectors.html"
1426+
}
1427+
]
1428+
},
1429+
{
1430+
"en": "Base selectors",
1431+
"it": "Selettori di base"
1432+
},
1433+
{
1434+
"en": "Attribute selectors",
1435+
"it": "Selettori di attributo"
1436+
},
1437+
{
1438+
"en": "Class selectors",
1439+
"it": "Selettori di classe",
1440+
"attachments": [
1441+
{
1442+
"name": "css_selectors",
1443+
"link": "https://github.com/WebEngineering-Univaq/CSS_Examples/blob/main/css_selectors.html"
1444+
}
1445+
]
1446+
},
1447+
{
1448+
"en": "Classes as special attributes",
1449+
"it": "Classi come attributi speciali",
1450+
"type": "esempio"
1451+
},
1452+
{
1453+
"en": "ID selectors",
1454+
"it": "Selettori di ID"
1455+
},
1456+
{
1457+
"en": "Short form for class and ID selectors",
1458+
"it": "Forma abbreviata dei selettori di classe e di ID"
1459+
},
1460+
{
1461+
"en": "Identify and format the base layout structures",
1462+
"it": "Identificare e formattare le strutture di base di un layout",
1463+
"type": "esempio"
1464+
},
1465+
{
1466+
"en": "Pseudo classes",
1467+
"it": "Pseudo classi"
1468+
},
1469+
{
1470+
"en": "Hover effects on links",
1471+
"it": "Effetti hover sui link",
1472+
"type": "esempio"
1473+
},
1474+
{
1475+
"en": "Focus effects on inputs",
1476+
"it": "Effetti focus sugli input",
1477+
"type": "esempio"
1478+
},
1479+
{
1480+
"en": "The :hover pseudo class in legacy browsers",
1481+
"it": "La pseudo classe :hover nei browser legacy"
1482+
},
1483+
{
1484+
"en": "How to add internal borders to a list of elements",
1485+
"it": "Inserire bordi interni in una lista di elementi",
1486+
"type": "esempio"
1487+
},
1488+
{
1489+
"en": "Pseudo elements",
1490+
"it": "Pseudo elementi"
1491+
},
1492+
{
1493+
"en": "How to create a drop cap",
1494+
"it": "Creare un capolettera",
1495+
"type": "esempio"
1496+
},
1497+
{
1498+
"en": "How to add text in document using CSS",
1499+
"it": "Aggiungere testo a un documento con i CSS",
1500+
"type": "esempio"
1501+
},
1502+
{
1503+
"en": "Composite selectors",
1504+
"it": "I selettori composti"
1505+
}
1506+
],
1507+
"title": {
1508+
"all": "CSS /1"
1509+
}
1510+
},
1511+
{
1512+
"date": "2026-04-23T14:30:00",
1513+
"duration": 2,
1514+
"slides": [
1515+
{
1516+
"name": "CSS3",
1517+
"link": "https://github.com/WebEngineering-Univaq/WE_Lecture_Slides"
1518+
}
1519+
],
1520+
"attachments": [
1521+
{
1522+
"name": "CSS_Examples",
1523+
"link": "https://github.com/WebEngineering-Univaq/CSS_Examples"
1524+
}
1525+
],
1526+
"arguments": [
1527+
{
1528+
"en": "Composite selectors",
1529+
"it": "I selettori composti"
1530+
},
1531+
{
1532+
"show": false,
1533+
"en": "How to format adjacent titles",
1534+
"it": "Formattare in modo particolare due titoli adiacenti",
1535+
"type": "esempio"
1536+
},
1537+
{
1538+
"en": "The CSS algorithm to determine property values",
1539+
"it": "Le regole di selezione delle propriet\u00e0 di stile"
1540+
},
1541+
{
1542+
"en": "Origin priority, specificity and rule ordering",
1543+
"it": "Priorit\u00e0 di origine, specificit\u00e0 e ordinamento delle regole"
1544+
},
1545+
{
1546+
"en": "The !important modifier",
1547+
"it": "Il modificatore !important"
1548+
},
1549+
{
1550+
"en": "Cascading rules in the browsers",
1551+
"it": "Rispetto delle regole di cascata nei browser",
1552+
"type": "esempio",
1553+
"attachments": [
1554+
{
1555+
"name": "css_cascade",
1556+
"link": "https://github.com/WebEngineering-Univaq/CSS_Examples/blob/main/css_cascade.html"
1557+
}
1558+
]
1559+
},
1560+
{
1561+
"en": "Style inheritance",
1562+
"it": "Ereditariet\u00e0 delle propriet\u00e0 di stile"
1563+
},
1564+
{
1565+
"en": "Using the browser's CSS inspector to analyze styles and their composition",
1566+
"it": "Usare il CSS inspector del browser per analizzare gli stili e la loro composizione",
1567+
"attachments": [
1568+
{
1569+
"link": "https://firefox-source-docs.mozilla.org/devtools-user/page_inspector/how_to/examine_and_edit_css"
1570+
},
1571+
{
1572+
"link": "https://developer.chrome.com/docs/devtools/css"
1573+
}
1574+
]
1575+
},
1576+
{
1577+
"en": "CSS measurement units",
1578+
"it": "Unit\u00e0 di misura nei CSS"
1579+
},
1580+
{
1581+
"en": "Relative units as a way to increase the site accessibility",
1582+
"it": "Uso delle misure relative per aumentare l'accessibilit\u00e0 di un sito"
1583+
},
1584+
{
1585+
"en": "Percentage measures in liquid and responsive layouts",
1586+
"it": "Uso delle misure percentuali nei design liquidi e responsive"
1587+
},
1588+
{
1589+
"en": "CSS color specification",
1590+
"it": "Specifica dei colori nei CSS"
1591+
},
1592+
{
1593+
"en": "Adding borders to elements",
1594+
"it": "Aggiungere bordi agli elementi",
1595+
"attachments": [
1596+
{
1597+
"name": "css_properties_common",
1598+
"link": "https://github.com/WebEngineering-Univaq/CSS_Examples/blob/main/css_properties_common.html"
1599+
}
1600+
]
1601+
},
1602+
{
1603+
"en": "New CSS3 border properties: border-radius and box-shadow",
1604+
"it": "Alcune nuove propriet\u00e0 CSS3 per i box: border-radius e box-shadow"
1605+
},
1606+
{
1607+
"en": "Vendor prefixes on css properties and legacy browser compatibility",
1608+
"it": "Prefissi dei vendor sulle propriet\u00e0 css e compatibilit\u00e0 con i browser legacy"
1609+
},
1610+
{
1611+
"en": "Rounded corners in CSS3",
1612+
"it": "Creare bordi smussati senza immagini con i CSS 3",
1613+
"type": "esempio",
1614+
"attachments": [
1615+
{
1616+
"name": "css_3_round_borders",
1617+
"link": "https://github.com/WebEngineering-Univaq/CSS_Examples/blob/main/css_3_round_borders.html"
1618+
}
1619+
]
1620+
},
1621+
{
1622+
"en": "Advanced CSS3: image borders",
1623+
"it": "CSS3 avanzato: bordi realizzati con immagini",
1624+
"type": "esempio",
1625+
"attachments": [
1626+
{
1627+
"name": "css_3_imageborders",
1628+
"link": "https://github.com/WebEngineering-Univaq/CSS_Examples/blob/main/css_3_imageborders.html"
1629+
}
1630+
]
1631+
}
1632+
],
1633+
"title": {
1634+
"all": "CSS /2"
1635+
}
13471636
}
13481637
]

0 commit comments

Comments
 (0)