-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathProgram.html
More file actions
123 lines (116 loc) · 3.59 KB
/
Program.html
File metadata and controls
123 lines (116 loc) · 3.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!DOCTYPE html>
<!-- JV Source Codes | JVCodes.Com -->
<html lang="en" dir="ltr">
<head>
<!-- Character encoding declaration for UTF-8 -->
<meta charset="utf-8" />
<!-- Page title -->
<title>AI4SE</title>
<!-- Link to external CSS file -->
<link rel="stylesheet" href="styles.css" />
<!-- Font Awesome library for icons -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
<!-- Ensures proper scaling on mobile devices -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div id="navbar-container"></div>
<script>
fetch("navbar.html")
.then((response) => response.text())
.then((data) => {
document.getElementById("navbar-container").innerHTML = data;
});
</script>
<!-- End of navigation bar -->
<h1>Summer School Program</h1>
<table class="schedule">
<thead>
<tr>
<th>Time</th>
<th>Wednesday 11/06</th>
<th>Thursday 12/06</th>
<th>Friday 13/06</th>
</tr>
</thead>
<tbody>
<tr>
<td>9:00 - 10:30</td>
<td class="school">Registration & Welcome Ceremony</td>
<td class="plenary">
Moataz Chouchen<br /><small
>"Towards understanding code review practices"</small
>
</td>
<td class="plenary">
Makram Soui<br /><small>"AI for user experience design"</small>
</td>
</tr>
<tr>
<td>10:30 - 11:00</td>
<td class="break">Coffee Break</td>
<td class="break">Coffee Break</td>
<td class="break">Coffee Break</td>
</tr>
<tr>
<td>11:00 - 12:30</td>
<td class="lecture">
Ali Ouni<br /><small
>"AI-Powered Solutions for Software Engineering in the Era of
Generative AI"</small
>
</td>
<td class="lecture">
Latifa Ben Arfa<br /><small
>"Génie logiciel augmenté : l’évolution des outils à l’ère de
l’IA"</small
>
</td>
<td class="industry">REGNOLOGY Inspiring Use Cases</td>
</tr>
<tr>
<td>12:30 - 13:30</td>
<td class="break">Lunch</td>
<td class="break">Lunch</td>
<td class="break">Lunch</td>
</tr>
<tr>
<td>13:30 - 15:00</td>
<td class="lecture">
Mohamed Tounsi<br /><small
>"AI Applied to Software Engineering: Future Trends"</small
>
</td>
<td class="lecture">
Med Wiem Mkaouer<br /><small
>"Bridging the Gap: AI-Driven Software Testing and Quality
Assurance"</small
>
</td>
<td class="extra">Student Panel Session</td>
</tr>
<tr>
<td>15:00 - 16:30</td>
<td class="lecture">
Montassar Ben Messaoud<br /><small
>"AI-Driven Bug Management: From Detection to Resolution"</small
>
</td>
<td class="industry">
Meriem Zhioua<br /><small>"VERMEG: A Vision for AI"</small>
</td>
<td class="school">Closing Ceremony</td>
</tr>
<tr>
<td>16:30 - 17:30</td>
<td class="industry">VERMEG Inspiring Use Cases</td>
<td class="school">Research Panel Session</td>
<td></td>
</tr>
</tbody>
</table>
</body>
</html>