Compare commits
No commits in common. "main" and "css-main" have entirely different histories.
15
README.md
15
README.md
@ -1,14 +1,3 @@
|
||||
# Team «Social Cooking»
|
||||
# Social_Cooking_Team
|
||||
|
||||
### Verwendung von KI im Rahmen des Projekts in «UX in der agilen Softwareentwicklung»
|
||||
|
||||
Für das Projekt «Invité» wurden verschiedene generative KI genutzt:
|
||||
* ChatGPT (GPT-5.5) von OpenAI
|
||||
* Cursor AI Editor (auf Basis von Visual Studio Code)
|
||||
* Gemini Coding Assistant (Gemini 3.1 Pro) von Google (Plugin in Visual Studio Code)
|
||||
* GitHub Copilot Pro in Agent Mode (Auto) von GitHub in Visual Studio Code
|
||||
|
||||
KI wurde dabei gezielt als Arbeits- und Lernunterstützung in drei Bereichen eingesetzt:
|
||||
* Unterstützung und Generierung von Code (HTML, CSS und JSON)
|
||||
* Erklärung des Codes in nachvollziehbaren Schritten
|
||||
* Hilfe bei Fehlern und Unklarheiten in Visual Studio Code sowie auf Gitea
|
||||
Hier im Readme schreiben wir etwas dazu, wie/ob wir KI benutzen.
|
||||
@ -689,9 +689,9 @@ label {
|
||||
right: -2px;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background-color: var(--blue);
|
||||
background-color: var(--error);
|
||||
border-radius: 50%;
|
||||
border: 1.5px solid var(--butter-light);
|
||||
border: 2px solid var(--butter-light);
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
|
||||
@ -514,8 +514,7 @@
|
||||
if (isCanceled) {
|
||||
sideInfoMarkup = '<span class="button-plaetze">Event abgesagt</span>';
|
||||
} else if (!isRegistrationClosed) {
|
||||
const spotLabel = freePlaces === 1 ? 'Platz frei' : 'Plätze frei';
|
||||
sideInfoMarkup = `<span class="button-plaetze${isFull ? ' event-spots-full' : ''}">${isFull ? 'Ausgebucht' : `${freePlaces} ${spotLabel}`}</span>`;
|
||||
sideInfoMarkup = `<span class="button-plaetze${isFull ? ' event-spots-full' : ''}">${isFull ? 'Ausgebucht' : `${freePlaces} Plätze frei`}</span>`;
|
||||
}
|
||||
|
||||
card.innerHTML = `
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user