Skip to content

Commit 91fa21f

Browse files
authored
Update lecture schedule and dates in README
1 parent 7d5c968 commit 91fa21f

1 file changed

Lines changed: 77 additions & 8 deletions

File tree

README.md

Lines changed: 77 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,97 @@
1+
<!--
2+
author: Sebastian Zug, Volker Göhler
3+
email: sebastian.zug@informatik.tu-freiberg.de, volker.goehler@informatik.tu-freiberg.de
4+
date: 25.03.2026
5+
6+
@style
7+
/* TU Freiberg Color Palette */
8+
:root {
9+
--tubaf-blue: #00305e; /* Primary Blue */
10+
--tubaf-light-blue: #e6ebf0; /* Soft background tint */
11+
--tubaf-grey: #adb5bd; /* Secondary Grey */
12+
--tubaf-text: #333333;
13+
}
14+
15+
table {
16+
border-collapse: collapse;
17+
width: 100%;
18+
font-family: "Open Sans", Arial, sans-serif;
19+
color: var(--tubaf-text);
20+
margin: 20px 0;
21+
}
22+
23+
/* Header: Bold TUBAF Blue with white text */
24+
thead th {
25+
text-align: left;
26+
padding: 14px 12px;
27+
background-color: var(--tubaf-blue);
28+
color: #ffffff;
29+
font-weight: 600;
30+
text-transform: uppercase;
31+
letter-spacing: 0.05em;
32+
border-bottom: 4px solid var(--tubaf-grey);
33+
}
34+
35+
/* General cell padding */
36+
td {
37+
padding: 12px;
38+
border-bottom: 1px solid #dee2e6;
39+
}
40+
41+
/* The "Logical Join": Alternating background for row pairs */
42+
/* Groups rows 1-2, 5-6, 9-10... in a light grey-blue tint */
43+
tbody tr:nth-child(4n+1),
44+
tbody tr:nth-child(4n+2) {
45+
background-color: var(--tubaf-light-blue);
46+
}
47+
48+
/* Graphic Notion: Vertical blue bar on the left of joined rows */
49+
/* This visually "clips" the two rows together */
50+
tbody tr:nth-child(2n+1) td:first-child,
51+
tbody tr:nth-child(2n) td:first-child {
52+
border-left: 5px solid var(--tubaf-blue);
53+
}
54+
55+
/* Optional: Make the 'Week' number stand out in the first row of a pair */
56+
tbody tr:nth-child(2n+1) td:first-child {
57+
font-weight: bold;
58+
color: var(--tubaf-blue);
59+
}
60+
61+
/* Hover effect for better readability */
62+
tbody tr:hover {
63+
background-color: #d1d9e0 !important;
64+
}
65+
@end
66+
67+
-->
68+
169
[![LiaScript](https://raw.githubusercontent.com/LiaScript/LiaScript/master/badges/course.svg)](https://LiaScript.github.io/course/?https://raw.githubusercontent.com/TUBAF-IfI-LiaScript/VL_Softwareentwicklung/refs/heads/master/README.md) ![GitHub contributors](https://img.shields.io/github/contributors/TUBAF-IfI-LiaScript/VL_Softwareentwicklung)
270

371
# Übersicht zur Vorlesung (Sommersemester 2026)
472

573
| Woche | Tag | SWE | Einführung in SWE |
674
| :---- | --------- | :------------------------------------------------ |-------------------|
7-
| 1 | 10. April | Organisation, Einführung |gemeinsam |
8-
| 2 | 13. April | Softwareentwicklung als Prozess |gemeinsam |
75+
| 1 | 06. April | _Ostermontag_ | _Ostermontag_ |
76+
| | 10. April | Organisation, Einführung | gemeinsam |
77+
| 2 | 13. April | Softwareentwicklung als Prozess | gemeinsam |
978
| | 17. April | Konzepte von Dotnet und C# | |
1079
| 3 | 20. April | Elemente der Sprache C# I | **Beginn der Übungen** |
1180
| | 24. April | Elemente der Sprache C# II | |
1281
| 4 | 27. April | Strukturen / Konzepte der OOP | |
1382
| | 01. Mai | _Erster Mai_ | _Erster Mai_ |
14-
| 5 | 4. Mai | Säulen Objektorientierter Programmierung |gemeinsam |
83+
| 5 | 4. Mai | Säulen Objektorientierter Programmierung | gemeinsam |
1584
| | 8. Mai | Klassenelemente in C# / Vererbung | |
1685
| 6 | 11. Mai | Klassenelemente in C# / Interfaces | |
1786
| | 15. Mai | Anwendungsbeispiel **TODO** Godot? | |
18-
| 7 | 12. Mai | Versionsmanagement im SWE-Prozess I |gemeinsam |
19-
| | 16. Mai | Versionsmanagement im SWE_Pprozess II |gemeinsam |
87+
| 7 | 12. Mai | Versionsmanagement im SWE-Prozess I | gemeinsam |
88+
| | 16. Mai | Versionsmanagement im SWE_Pprozess II | gemeinsam |
2089
| 8 | 18. Mai | Generics | |
2190
| | 22. Mai | Container | |
2291
| 9 | 25. Mai | _Pfingstmontag_ | _Pfingstmontag_ |
23-
| | 29. Mai | UML Konzepte |gemeinsam |
24-
| 10 | 01. Juni | UML Diagrammtypen |gemeinsam |
25-
| | 5. Juni | UML Anwendungsbeispiel |gemeinsam |
92+
| | 29. Mai | UML Konzepte | gemeinsam |
93+
| 10 | 01. Juni | UML Diagrammtypen | gemeinsam |
94+
| | 5. Juni | UML Anwendungsbeispiel | gemeinsam |
2695
| 11 | 8. Juni | Dokumentation und Build Toolchains | |
2796
| | 12. Juni | Delegaten | |
2897
| 12 | 15. Juni | Events | |

0 commit comments

Comments
 (0)