Courses/ASE 24WS: Difference between revisions

(→‎Interests & Knowledge: add participation constraint)
(→‎Timetable: update query to remove doubled sessions due to multiple alias)
Line 113: Line 113:
{{#widget:SPARQLquery|code=
{{#widget:SPARQLquery|code=
#defaultView:Timeline
#defaultView:Timeline
# title: Alle geplanten Termine
PREFIX wdt: <https://graphit.ur.de/prop/direct/>
PREFIX wdt: <https://graphit.ur.de/prop/direct/>
PREFIX wd: <https://graphit.ur.de/entity/>
PREFIX wd: <https://graphit.ur.de/entity/>
select distinct ?Datum ?Session ?SessionLabel ?Inhalte ?InhalteLabel
select distinct ?Datum ?Session ?SessionLabel # ?Inhalte ?InhalteLabel
# ?item # for debug
where {
where {
   # todo. change Q:468 to current course
   # todo. change Q:468 to current course
   wd:Q1022 wdt:P14 ?Session.
   wd:Q1022 wdt:P14 ?Session.
   ?Session wdt:P3 wd:Q427.  
   ?Session wdt:P3 wd:Q427.  
   ?Session wdt:P19 ?Datum.
   ?Session wdt:P19 ?Datum.  
   # OPTIONAL {?Session wdt:P14 ?Inhalte.}
   # OPTIONAL {?Session wdt:P14 ?Inhalte.}  
 
  # Get the amount of eng alias found for an item
  {SELECT ?Session (COUNT(?alias) AS ?aliasCount) WHERE {
    ?Session skos:altLabel ?alias.
    FILTER (LANG(?alias) = "en").
  } GROUP BY ?Session
  }
 
  # re-get the alias as ?SessionLabel (for the links)
   ?Session skos:altLabel ?SessionLabel.
   ?Session skos:altLabel ?SessionLabel.
   OPTIONAL { FILTER (!regex(?SessionLabel, "ASE", "i")) } # get the alias, that describes the session (i.e. not e.g. ASE 24WS - 01a)
  FILTER (LANG(?SessionLabel) = "en").
 
  # Filter out all descriptive alias (aka. don't use a "[Course] - 01a"-type label)
   OPTIONAL {
    ?Session skos:altLabel ?alt.
    FILTER (!regex(?alt, "ASE", "i"))
    FILTER (LANG(?alt) = "en")  # Ensure the alias is in English
  } # and save them in a different var
 
  # Default to the normal alias, but use the descriptiv one if it exists
  BIND(IF (?aliasCount > 1, ?alt, ?alias) as ?SessionLabel)
 
   service wikibase:label { bd:serviceParam wikibase:language "en".}
   service wikibase:label { bd:serviceParam wikibase:language "en".}
} ORDER BY ASC(?Datum)
} ORDER BY ASC(?Datum)
LIMIT 50
| height=38em
| height=38em
| caption=Planned Sessions
| caption=Planned Sessions

Revision as of 08:11, 25 October 2024

Kurs Advanced Software Engineering, Wintersemester 24/25

M.Sc. Medieninformatik, Universität Regensburg.


Imagemap?



  • Der Kurs in [... GRIPS] (TODO)
  • Der Kurs in SPUR
  • Das GraphIT-Item für den Kurs: Item:Q1022
  • Folien?


Overview

The course gives an overview of current issues and trends in Software Engineering.


Important Topics

Full Query

It discusses strategies, patterns and automations to help develop and maintain complex software.


The course includes bi-weekly practice sessions to teach the students practical skills using excercises and examples.

At the end of the semester each student has to turn in a project, in which they use their new found skills in developing a small contained application.


For a graph showing the full course click here.

Required Knowledge Goals

Items, not part of the Course, but that are required knowledge

Items, marked as goals

Full screen view of the Query Full screen view of the Query


Timetable

Planned Sessions

Interests & Knowledge

A graph showing the items students have marked as "interesting" or "known".

Preview

A list of things to be discussed in the upcomming session.

A Todolist for Max Mustermann

Erste Schritte mit GraphIT

  1. GraphIT-Account einrichten
    1. Account anlegen (gerne mit Pseudonym oder Initialen): Special:CreateAccount.
    2. Einen Graph User (einfach ein Item) mit gleichem Namen anlegen (siehe z.B. das Item Q630: Markus Mustermann):
      1. auf Special:NewItem gehen oder oben im Menü "Items → New Item" auswählen.
      2. Label (für Sprache Englisch): <eigener Name>
      3. Description (für Sprache Englisch): Student at University of Regensburg (<eigener Name>) // Hinweis: in WikiBase dürfen unterschiedliche Items nicht die gleiche Beschreibung haben, deshalb bitte den eigenen Namen noch dranhängen
      4. Button 'Create' anklicken
    3. Statements beim Benutzer-Item hinzufügen (siehe z.B. das Item Q630: Markus Mustermann):
      1. 'instance of' (P3) + 'Student' (Q167)
      2. 'username' (P28) + Benutzernamen (siehe Schritt 1)
      3. 'participates in' (P25) + ASE WS 2024 (Q1022)
    4. Auf der eigenen Benutzerseite (des Accounts) einen Link zum eigenen Item anlegen:
      1. Benutzerseite anlegen/bearbeiten
      2. Folgenden Text dort einfügen und Seite speichern (mit eigenem Item statt Platzhalter): My GraphIT item: [[Item:Q123]]. Achtung: das Item muss ein Link sein, d.h. entweder im grafischen Editor verlinken oder im Quellcode-Editor in eckigen Klammern schreiben.
  2. Vorkenntnisse und Interessen angeben
    1. Auf https://test.graphit.ur.de/app/src/pages/selectionTools/ einmal mit Benutzername und Passwort (aus Schritt 1) anmelden. Achtung: das Passwort wird momentan beim Eintippen angezeigt.
    2. Oben rechts die Lehrveranstaltung "ASE 24WS" auswählen.
    3. Im angezeigten Graph die damit verbundenen Themen anschauen.
    4. Alle Themen als "completed" markieren, mit denen man sich schon befasst hat (auswählen und Taste '1' drücken bzw. den Button auf der rechten Seite).
    5. Mindestens fünf Themen als Interessen markieren (auswählen und Taste '2' drücken bzw. den Button auf der rechten Seite).
    6. Änderungen speichern über den 'save'-Button unten rechts!
    7. Auf der eigenen Item-Seite überprüfen ob die Interessen und Vorkenntnisse korrekt dokumentiert wurden.

Als ein Beispiel kann Max Mustermann angesehen werden. Für eine detailiertere Übersicht kann die Seite ExampleStudent besucht werden.