<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de-de">
  <title type="text">IntraNet b.i.b./FHDW Wiki-Seiten</title>
  <subtitle type="text">Zuletzt geänderte Wikiseiten.</subtitle>
  <logo>https://lms.fhdw.de/img/tiki/Tiki_WCG.png</logo>
  <updated>2026-04-14T04:10:10+00:00</updated>
  <generator uri="http://framework.zend.com" version="2">Zend_Feed_Writer</generator>
  <link rel="alternate" type="text/html" href="https://lms.fhdw.de/"/>
  <link rel="self" type="application/atom+xml" href="https://lms.fhdw.de/tiki-wiki_rss.php"/>
  <id>https://lms.fhdw.de/</id>
  <entry>
    <title type="html"><![CDATA[MR-FHDW-Aktuell]]></title>
    <summary type="html"><![CDATA[<blockquote>+ 14.04.2026<br /></blockquote><blockquote>- RFBF 226A 30.03.2026<br /></blockquote>]]></summary>
    <published>2026-04-02T10:37:41+00:00</published>
    <updated>2026-04-02T10:37:41+00:00</updated>
    <link rel="alternate" type="text/html" href="https://lms.fhdw.de/tiki-index.php?page=MR-FHDW-Aktuell"/>
    <id>https://lms.fhdw.de/tiki-index.php?page=MR-FHDW-Aktuell</id>
    <author>
      <name>Nicolas Scherkamp</name>
    </author>
  </entry>
  <entry>
    <title type="html"><![CDATA[UserPagebbm3h23ang]]></title>
    <summary type="html"><![CDATA[<blockquote>- </blockquote><blockquote>+ <ins class="diffchar inserted"><strong>test&lt;br /&gt;</strong></ins></blockquote>]]></summary>
    <published>2026-02-18T16:49:33+00:00</published>
    <updated>2026-02-18T16:49:33+00:00</updated>
    <link rel="alternate" type="text/html" href="https://lms.fhdw.de/tiki-index.php?page=UserPagebbm3h23ang"/>
    <id>https://lms.fhdw.de/tiki-index.php?page=UserPagebbm3h23ang</id>
    <author>
      <name>Thanh Luan Nguyen</name>
    </author>
  </entry>
  <entry>
    <title type="html"><![CDATA[Speth-Skripte-Powershell-Calendar_items]]></title>
    <summary type="html"><![CDATA[<blockquote>+ <div class="codecaption">Calendar_Items.ps1</div><pre class="codelisting"  data-theme="default"  data-wrap="1"  dir="ltr"  style="white-space:pre-wrap; overflow-wrap: break-word; word-wrap: break-word;" id="codebox1" >param (</blockquote><blockquote>+     [switch]$Verbose,</blockquote><blockquote>+     [string]$OutputFile = &quot;calendar.csv&quot;,</blockquote><blockquote>+     [switch]$OpenInExcel,</blockquote><blockquote>+     [switch]$ConsoleOnly</blockquote><blockquote>+ )</blockquote><blockquote>+ # Run like</blockquote><blockquote>+ # powershell -ExecutionPolicy Bypass -File &quot;Calendar_Items.ps1&quot; -OutputFile &quot;kalender.csv&quot; -OpenInExcel</blockquote><blockquote>+ # -ConsoleOnly</blockquote><blockquote>+ </blockquote><blockquote>+ </blockquote><blockquote>+ Write-Verbose &quot;working...&quot;</blockquote><blockquote>+ </blockquote><blockquote>+ </blockquote><blockquote>+ # Ensure Outlook is running</blockquote><blockquote>+ $outlookProcess = Get-Process -Name &quot;OUTLOOK&quot; -ErrorAction SilentlyContinue</blockquote><blockquote>+ if (-not $outlookProcess) {</blockquote><blockquote>+     Write-Verbose &quot;Starting Outlook...&quot;</blockquote><blockquote>+     Start-Process &quot;outlook.exe&quot;</blockquote><blockquote>+     Start-Sleep -Seconds 5</blockquote><blockquote>+ }</blockquote><blockquote>+ </blockquote><blockquote>+ # Connect to Outlook</blockquote><blockquote>+ $maxAttempts = 5</blockquote><blockquote>+ $attempt = 0</blockquote><blockquote>+ $outlook = $null</blockquote><blockquote>+ while (-not $outlook -and $attempt -lt $maxAttempts) {</blockquote><blockquote>+     try {</blockquote><blockquote>+         $outlook = New-Object -ComObject Outlook.Application</blockquote><blockquote>+     } catch {</blockquote><blockquote>+         Start-Sleep -Seconds 2</blockquote><blockquote>+         $attempt++</blockquote><blockquote>+     }</blockquote><blockquote>+ }</blockquote><blockquote>+ if (-not $outlook) {</blockquote><blockquote>+     Write-Verbose &quot;Failed to connect to Outlook.&quot;</blockquote><blockquote>+     return</blockquote><blockquote>+ }</blockquote><blockquote>+ </blockquote><blockquote>+ $namespace = $outlook.GetNamespace(&quot;MAPI&quot;)</blockquote><blockquote>+ </blockquote><blockquote>+ # Define date range: 1 year back and 1 year ahead</blockquote><blockquote>+ $start = (Get-Date).AddYears(-1)</blockquote><blockquote>+ $end = (Get-Date).AddYears(1)</blockquote><blockquote>+ </blockquote><blockquote>+ $skip = 0</blockquote><blockquote>+ # Function to read and filter appointments from a calendar folder and return CSV string</blockquote><blockquote>+ function Get-AppointmentsFromCalendar($calendarFolder) {</blockquote><blockquote>+     $results = @()</blockquote><blockquote>+     try {</blockquote><blockquote>+         $items = $calendarFolder.Items</blockquote><blockquote>+         $items.IncludeRecurrences = $true</blockquote><blockquote>+         $items.Sort(&quot;[Start]&quot;)</blockquote><blockquote>+         $restriction = &quot;[Start] &gt;= &#039;&quot; + $start.ToString(&quot;g&quot;) + &quot;&#039; AND [Start] &lt;= &#039;&quot; + $end.ToString(&quot;g&quot;) + &quot;&#039;&quot;</blockquote><blockquote>+         $restrictedItems = $items.Restrict($restriction)</blockquote><blockquote>+ </blockquote><blockquote>+         foreach ($item in $restrictedItems) {</blockquote><blockquote>+             if ($item.Subject -match &quot;\(Vorlesung\)&quot; -or $item.Subject -match &quot;\(E-Learning\)&quot;) {</blockquote><blockquote>+                 $subject = $item.Subject</blockquote><blockquote>+                 if ($subject -match &quot;^(.*)\((Vorlesung|E-Learning)\)(.*)$&quot;) {</blockquote><blockquote>+                     $title = $matches[1].Trim()</blockquote><blockquote>+                     $type = $matches[2].Trim()</blockquote><blockquote>+                     $groups = $matches[3] -replace &#039;^[\|\s\u00A0]+&#039;, &#039;&#039;</blockquote><blockquote>+                     $groups = $groups.Trim()</blockquote><blockquote>+ </blockquote><blockquote>+                     $results += [PSCustomObject]@{</blockquote><blockquote>+                         Start    = $item.Start.ToString(&quot;yyyy-MM-ddTHH:mm:ss&quot;)</blockquote><blockquote>+                         End      = $item.End.ToString(&quot;yyyy-MM-ddTHH:mm:ss&quot;)</blockquote><blockquote>+                         Title    = $title</blockquote><blockquote>+                         Type     = $type</blockquote><blockquote>+                         Groups   = $groups</blockquote><blockquote>+                         Location = $item.Location</blockquote><blockquote>+                         Folder   = $calendarFolder.Name</blockquote><blockquote>+                     }</blockquote><blockquote>+                 }</blockquote><blockquote>+             }</blockquote><blockquote>+         }</blockquote><blockquote>+ </blockquote><blockquote>+         if ($results.Count -gt 0) {</blockquote><blockquote>+             return $results | ConvertTo-Csv -NoTypeInformation | Select-Object -Skip $skip| Out-String</blockquote><blockquote>+         }</blockquote><blockquote>+     } catch {</blockquote><blockquote>+         Write-Verbose &quot;Could not read from calendar: $($calendarFolder.Name)&quot;</blockquote><blockquote>+     }</blockquote><blockquote>+     return &quot;&quot;</blockquote><blockquote>+ }</blockquote><blockquote>+ </blockquote><blockquote>+ # Loop through all folders in all stores and print CSV output</blockquote><blockquote>+ foreach ($store in $namespace.Stores) {</blockquote><blockquote>+     $rootFolder = $store.GetRootFolder()</blockquote><blockquote>+     foreach ($folder in $rootFolder.Folders) {</blockquote><blockquote>+         if ($folder.DefaultItemType -eq [Microsoft.Office.Interop.Outlook.OlItemType]::olAppointmentItem) {</blockquote><blockquote>+             $csvOutput = Get-AppointmentsFromCalendar -calendarFolder $folder</blockquote><blockquote>+             if ($csvOutput) {</blockquote><blockquote>+ </blockquote><blockquote>+                 if ($ConsoleOnly) {</blockquote><blockquote>+                     Write-Host &quot;`nCSV-Ausgabe:&quot;</blockquote><blockquote>+                     $csvOutput  | ForEach-Object { Write-Host $_ }</blockquote><blockquote>+                 } else {</blockquote><blockquote>+                     $csvOutput  | Set-Content -Path $OutputFile -Encoding UTF8</blockquote><blockquote>+                 }</blockquote><blockquote>+ </blockquote><blockquote>+                 #Write-Output $csvOutput</blockquote><blockquote>+ 		        $csvOutput | Add-Content -Path $OutputFile -Encoding UTF8</blockquote><blockquote>+ 	    	    $skip = 1</blockquote><blockquote>+             }</blockquote><blockquote>+         }</blockquote><blockquote>+     }</blockquote><blockquote>+ }</blockquote><blockquote>+ </blockquote><blockquote>+ if ($OpenInExcel) {</blockquote><blockquote>+     Start-Process -FilePath $OutputFile</blockquote><blockquote>+ }</pre><br /></blockquote>]]></summary>
    <published>2025-12-15T15:47:09+00:00</published>
    <updated>2025-12-15T15:47:09+00:00</updated>
    <link rel="alternate" type="text/html" href="https://lms.fhdw.de/tiki-index.php?page=Speth-Skripte-Powershell-Calendar_items"/>
    <id>https://lms.fhdw.de/tiki-index.php?page=Speth-Skripte-Powershell-Calendar_items</id>
    <author>
      <name>Walter Speth</name>
    </author>
  </entry>
  <entry>
    <title type="html"><![CDATA[Speth-Processes]]></title>
    <summary type="html"><![CDATA[<blockquote>- &lt;ol&gt;&lt;li&gt; Verzeichnis anlegen&lt;/li&gt;&lt;li&gt; Teams: in Team aktivieren&lt;/li&gt;&lt;li&gt; Teams-Link ins Verzeichnis legen&lt;/li&gt;&lt;li&gt; myFHDW: Dokumente &quot;Teilnehmerliste pro Dozent (mit Foto) (CampusWEB)&quot; herunterladen</blockquote><blockquote>+ &lt;ol&gt;&lt;li&gt;<ins class="diffchar inserted"><strong> ∅</strong></ins> Verzeichnis anlegen&lt;/li&gt;&lt;li&gt;<ins class="diffchar inserted"><strong> ∅</strong></ins> Teams: in Team aktivieren&lt;/li&gt;&lt;li&gt;<ins class="diffchar inserted"><strong> ∅</strong></ins> Teams-Link ins Verzeichnis legen&lt;/li&gt;&lt;li&gt;<ins class="diffchar inserted"><strong> ∅</strong></ins> myFHDW: Dokumente &quot;Teilnehmerliste pro Dozent (mit Foto) (CampusWEB)&quot; herunterladen</blockquote><blockquote>- &lt;ol&gt;&lt;li&gt; Modulevaluation (Download)&lt;/li&gt;&lt;li&gt; Modulevaluation (eMail)&lt;/li&gt;&lt;li&gt; Unterlagen für Prüfungsamt</blockquote><blockquote>+ &lt;ol&gt;&lt;li&gt;<ins class="diffchar inserted"><strong> ∅ Klausuren/Referate/Studienarbeiten bewerten&lt;/li&gt;&lt;li&gt; ∅ Serienbriefe&lt;/li&gt;&lt;li&gt; ∅ myFHDW &quot;Prüfungen&quot;&lt;/li&gt;&lt;li&gt; ∅</strong></ins> Modulevaluation (Download)&lt;/li&gt;&lt;li&gt;<ins class="diffchar inserted"><strong> ∅</strong></ins> Modulevaluation (eMail)&lt;/li&gt;&lt;li&gt;<ins class="diffchar inserted"><strong> ∅</strong></ins> Unterlagen für Prüfungsamt</blockquote><blockquote>+ <br /></blockquote><blockquote>+ <ol><li> ∅ Erstgespräch "Thema"</blockquote><blockquote>+ </li><li> ∅ Zweitgespräch "Gliederung"</blockquote><blockquote>+ </li><li> ∅ Bewertung/Gutachten</blockquote><blockquote>+ </li></ol><br /></blockquote><blockquote>+ <br /></blockquote>]]></summary>
    <published>2025-12-15T15:10:49+00:00</published>
    <updated>2025-12-15T15:10:49+00:00</updated>
    <link rel="alternate" type="text/html" href="https://lms.fhdw.de/tiki-index.php?page=Speth-Processes"/>
    <id>https://lms.fhdw.de/tiki-index.php?page=Speth-Processes</id>
    <author>
      <name>Walter Speth</name>
    </author>
  </entry>
  <entry>
    <title type="html"><![CDATA[Speth-Punkte-Note]]></title>
    <summary type="html"><![CDATA[<blockquote>- <del class="diffchar deleted"><strong>0	5.</strong></del>0	5,0&lt;br /&gt;1<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;2<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;3<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;4<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;5<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;6<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;7<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;8<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;9<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;1<del class="diffchar deleted"><strong>0	5.</strong></del>0	5,0&lt;br /&gt;11<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;12<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;13<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;14<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;15<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;16<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;17<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;18<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;19<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;2<del class="diffchar deleted"><strong>0	5.</strong></del>0	5,0&lt;br /&gt;21<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;22<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;23<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;24<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;25<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;26<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;27<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;28<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;29<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;3<del class="diffchar deleted"><strong>0	5.</strong></del>0	5,0&lt;br /&gt;31<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;32<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;33<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;34<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;35<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;36<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;37<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;38<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;39<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;4<del class="diffchar deleted"><strong>0	5.</strong></del>0	5,0&lt;br /&gt;41<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;42<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;43<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;44<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;45<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;46<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;47<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;48<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;49<del class="diffchar deleted"><strong>	5.0</strong></del>	5,0&lt;br /&gt;5<del class="diffchar deleted"><strong>0	4.</strong></del>0	4,0&lt;br /&gt;51<del class="diffchar deleted"><strong>	4.0</strong></del>	4,0&lt;br /&gt;52<del class="diffchar deleted"><strong>	4.0</strong></del>	4,0&lt;br /&gt;53<del class="diffchar deleted"><strong>	4.0</strong></del>	4,0&lt;br /&gt;54<del class="diffchar deleted"><strong>	4.0</strong></del>	4,0&lt;br /&gt;55<del class="diffchar deleted"><strong>	4.0</strong></del>	4,0&lt;br /&gt;56<del class="diffchar deleted"><strong>	4.0</strong></del>	4,0&lt;br /&gt;57<del class="diffchar deleted"><strong>	4.0</strong></del>	4,0&lt;br /&gt;58<del class="diffchar deleted"><strong>	4.0</strong></del>	4,0&lt;br /&gt;59<del class="diffchar deleted"><strong>	3.7</strong></del>	3,7&lt;br /&gt;60<del class="diffchar deleted"><strong>	3.7</strong></del>	3,7&lt;br /&gt;61<del class="diffchar deleted"><strong>	3.7</strong></del>	3,7&lt;br /&gt;62<del class="diffchar deleted"><strong>	3.7</strong></del>	3,7&lt;br /&gt;63<del class="diffchar deleted"><strong>	3.7</strong></del>	3,7&lt;br /&gt;64<del class="diffchar deleted"><strong>	3.7</strong></del>	3,7&lt;br /&gt;65<del class="diffchar deleted"><strong>	3.7</strong></del>	3,7&lt;br /&gt;66<del class="diffchar deleted"><strong>	3.7</strong></del>	3,7&lt;br /&gt;67<del class="diffchar deleted"><strong>	3.3</strong></del>	3,3&lt;br /&gt;68<del class="diffchar deleted"><strong>	3.3</strong></del>	3,3&lt;br /&gt;69<del class="diffchar deleted"><strong>	3.3</strong></del>	3,3&lt;br /&gt;70<del class="diffchar deleted"><strong>	3.3</strong></del>	3,3&lt;br /&gt;71<del class="diffchar deleted"><strong>	3.3</strong></del>	3,3&lt;br /&gt;72<del class="diffchar deleted"><strong>	3.0</strong></del>	3,0&lt;br /&gt;73<del class="diffchar deleted"><strong>	3.0</strong></del>	3,0&lt;br /&gt;74<del class="diffchar deleted"><strong>	3.0</strong></del>	3,0&lt;br /&gt;75<del class="diffchar deleted"><strong>	3.0</strong></del>	3,0&lt;br /&gt;76<del class="diffchar deleted"><strong>	3.0</strong></del>	3,0&lt;br /&gt;7<del class="diffchar deleted"><strong>7	2.</strong></del>7	2,7&lt;br /&gt;78<del class="diffchar deleted"><strong>	2.7</strong></del>	2,7&lt;br /&gt;79<del class="diffchar deleted"><strong>	2.7</strong></del>	2,7&lt;br /&gt;80<del class="diffchar deleted"><strong>	2.7</strong></del>	2,7&lt;br /&gt;81<del class="diffchar deleted"><strong>	2.3</strong></del>	2,3&lt;br /&gt;82<del class="diffchar deleted"><strong>	2.3</strong></del>	2,3&lt;br /&gt;8<del class="diffchar deleted"><strong>3	2.</strong></del>3	2,3&lt;br /&gt;84<del class="diffchar deleted"><strong>	2.3</strong></del>	2,3&lt;br /&gt;85<del class="diffchar deleted"><strong>	2.0</strong></del>	2,0&lt;br /&gt;86<del class="diffchar deleted"><strong>	2.0</strong></del>	2,0&lt;br /&gt;87<del class="diffchar deleted"><strong>	2.0</strong></del>	2,0&lt;br /&gt;88<del class="diffchar deleted"><strong>	2.0</strong></del>	2,0&lt;br /&gt;89<del class="diffchar deleted"><strong>	1.7</strong></del>	1,7&lt;br /&gt;90<del class="diffchar deleted"><strong>	1.7</strong></del>	1,7&lt;br /&gt;91<del class="diffchar deleted"><strong>	1.7</strong></del>	1,7&lt;br /&gt;92<del class="diffchar deleted"><strong>	1.3</strong></del>	1,3&lt;br /&gt;9<del class="diffchar deleted"><strong>3	1.</strong></del>3	1,3&lt;br /&gt;94<del class="diffchar deleted"><strong>	1.3</strong></del>	1,3&lt;br /&gt;95<del class="diffchar deleted"><strong>	1.3</strong></del>	1,3&lt;br /&gt;96<del class="diffchar deleted"><strong>	1.3</strong></del>	1,3&lt;br /&gt;97<del class="diffchar deleted"><strong>	1.0</strong></del>	1,0&lt;br /&gt;98<del class="diffchar deleted"><strong>	1.0</strong></del>	1,0&lt;br /&gt;99<del class="diffchar deleted"><strong>	1.0</strong></del>	1,0&lt;br /&gt;10<del class="diffchar deleted"><strong>0	1.</strong></del>0	1,0&lt;br /&gt;</blockquote><blockquote>+ 0	5,0&lt;br /&gt;1	5,0&lt;br /&gt;2	5,0&lt;br /&gt;3	5,0&lt;br /&gt;4	5,0&lt;br /&gt;5	5,0&lt;br /&gt;6	5,0&lt;br /&gt;7	5,0&lt;br /&gt;8	5,0&lt;br /&gt;9	5,0&lt;br /&gt;10	5,0&lt;br /&gt;11	5,0&lt;br /&gt;12	5,0&lt;br /&gt;13	5,0&lt;br /&gt;14	5,0&lt;br /&gt;15	5,0&lt;br /&gt;16	5,0&lt;br /&gt;17	5,0&lt;br /&gt;18	5,0&lt;br /&gt;19	5,0&lt;br /&gt;20	5,0&lt;br /&gt;21	5,0&lt;br /&gt;22	5,0&lt;br /&gt;23	5,0&lt;br /&gt;24	5,0&lt;br /&gt;25	5,0&lt;br /&gt;26	5,0&lt;br /&gt;27	5,0&lt;br /&gt;28	5,0&lt;br /&gt;29	5,0&lt;br /&gt;30	5,0&lt;br /&gt;31	5,0&lt;br /&gt;32	5,0&lt;br /&gt;33	5,0&lt;br /&gt;34	5,0&lt;br /&gt;35	5,0&lt;br /&gt;36	5,0&lt;br /&gt;37	5,0&lt;br /&gt;38	5,0&lt;br /&gt;39	5,0&lt;br /&gt;40	5,0&lt;br /&gt;41	5,0&lt;br /&gt;42	5,0&lt;br /&gt;43	5,0&lt;br /&gt;44	5,0&lt;br /&gt;45	5,0&lt;br /&gt;46	5,0&lt;br /&gt;47	5,0&lt;br /&gt;48	5,0&lt;br /&gt;49	5,0&lt;br /&gt;50	4,0&lt;br /&gt;51	4,0&lt;br /&gt;52	4,0&lt;br /&gt;53	4,0&lt;br /&gt;54	4,0&lt;br /&gt;55	4,0&lt;br /&gt;56	4,0&lt;br /&gt;57	4,0&lt;br /&gt;58	4,0&lt;br /&gt;59	3,7&lt;br /&gt;60	3,7&lt;br /&gt;61	3,7&lt;br /&gt;62	3,7&lt;br /&gt;63	3,7&lt;br /&gt;64	3,7&lt;br /&gt;65	3,7&lt;br /&gt;66	3,7&lt;br /&gt;67	3,3&lt;br /&gt;68	3,3&lt;br /&gt;69	3,3&lt;br /&gt;70	3,3&lt;br /&gt;71	3,3&lt;br /&gt;72	3,0&lt;br /&gt;73	3,0&lt;br /&gt;74	3,0&lt;br /&gt;75	3,0&lt;br /&gt;76	3,0&lt;br /&gt;77	2,7&lt;br /&gt;78	2,7&lt;br /&gt;79	2,7&lt;br /&gt;80	2,7&lt;br /&gt;81	2,3&lt;br /&gt;82	2,3&lt;br /&gt;83	2,3&lt;br /&gt;84	2,3&lt;br /&gt;85	2,0&lt;br /&gt;86	2,0&lt;br /&gt;87	2,0&lt;br /&gt;88	2,0&lt;br /&gt;89	1,7&lt;br /&gt;90	1,7&lt;br /&gt;91	1,7&lt;br /&gt;92	1,3&lt;br /&gt;93	1,3&lt;br /&gt;94	1,3&lt;br /&gt;95	1,3&lt;br /&gt;96	1,3&lt;br /&gt;97	1,0&lt;br /&gt;98	1,0&lt;br /&gt;99	1,0&lt;br /&gt;100	1,0&lt;br /&gt;</blockquote>]]></summary>
    <published>2025-12-15T14:29:58+00:00</published>
    <updated>2025-12-15T14:29:58+00:00</updated>
    <link rel="alternate" type="text/html" href="https://lms.fhdw.de/tiki-index.php?page=Speth-Punkte-Note"/>
    <id>https://lms.fhdw.de/tiki-index.php?page=Speth-Punkte-Note</id>
    <author>
      <name>Walter Speth</name>
    </author>
  </entry>
  <entry>
    <title type="html"><![CDATA[PB-bib-TopUp-FHDW-Informatik]]></title>
    <summary type="html"><![CDATA[<blockquote>- Ansprechpartner ist &lt;a class=&quot;wiki external&quot; target=&quot;_blank&quot; href=&quot;https://www.fhdw.de/hochschulteam/stroeder&quot; rel=&quot;external&quot;&gt;<del class="diffchar deleted"><strong>Frau </strong></del>Prof. Dr. Thomas Ströder&lt;/a&gt;.&lt;br /&gt;</blockquote><blockquote>+ Ansprechpartner ist &lt;a class=&quot;wiki external&quot; target=&quot;_blank&quot; href=&quot;https://www.fhdw.de/hochschulteam/stroeder&quot; rel=&quot;external&quot;&gt;Prof. Dr. Thomas Ströder&lt;/a&gt;.&lt;br /&gt;</blockquote>]]></summary>
    <published>2025-11-27T10:12:33+00:00</published>
    <updated>2025-11-27T10:12:33+00:00</updated>
    <link rel="alternate" type="text/html" href="https://lms.fhdw.de/tiki-index.php?page=PB-bib-TopUp-FHDW-Informatik"/>
    <id>https://lms.fhdw.de/tiki-index.php?page=PB-bib-TopUp-FHDW-Informatik</id>
    <author>
      <name>Sarbina Schmidt</name>
    </author>
  </entry>
  <entry>
    <title type="html"><![CDATA[bib-TopUp-Game-Art-Design]]></title>
    <summary type="html"><![CDATA[<blockquote>- &lt;/li&gt;&lt;/ul&gt;&lt;a class=&quot;wiki external&quot; target=&quot;_blank&quot; href=&quot;https://www.solent.ac.uk/&quot; rel=&quot;external&quot;&gt;&lt;strong&gt;Southampton Solent University, England&lt;/strong&gt;&lt;/a&gt; | Studiengebühren 202<del class="diffchar deleted"><strong>4</strong></del>/202<del class="diffchar deleted"><strong>5</strong></del>: 1<del class="diffchar deleted"><strong>1.</strong></del>000£ (nur für bib-TopUpler) + Visa-Kosten&lt;br /&gt;</blockquote><blockquote>+ &lt;/li&gt;&lt;/ul&gt;&lt;a class=&quot;wiki external&quot; target=&quot;_blank&quot; href=&quot;https://www.solent.ac.uk/&quot; rel=&quot;external&quot;&gt;&lt;strong&gt;Southampton Solent University, England&lt;/strong&gt;&lt;/a&gt; | Studiengebühren 202<ins class="diffchar inserted"><strong>5</strong></ins>/202<ins class="diffchar inserted"><strong>6</strong></ins>: 10<ins class="diffchar inserted"><strong>.5</strong></ins>00£ (nur für bib-TopUpler) + Visa-Kosten&lt;br /&gt;</blockquote><blockquote>+ </li><li><a class="wiki external" target="_blank" href="https://www.digitalartsandentertainment.be/page/139/Independent+Game+Production" rel="external">Major: Independent Game Production</a> (Portfolio, Zusatzmodule am bib)</blockquote>]]></summary>
    <published>2025-11-27T10:09:34+00:00</published>
    <updated>2025-11-27T10:09:34+00:00</updated>
    <link rel="alternate" type="text/html" href="https://lms.fhdw.de/tiki-index.php?page=bib-TopUp-Game-Art-Design"/>
    <id>https://lms.fhdw.de/tiki-index.php?page=bib-TopUp-Game-Art-Design</id>
    <author>
      <name>Sarbina Schmidt</name>
    </author>
  </entry>
  <entry>
    <title type="html"><![CDATA[bib-TopUp-Game-Development]]></title>
    <summary type="html"><![CDATA[<blockquote>- &lt;/li&gt;&lt;/ul&gt;&lt;a class=&quot;wiki external&quot; target=&quot;_blank&quot; href=&quot;https://www.solent.ac.uk/&quot; rel=&quot;external&quot;&gt;&lt;strong&gt;Southampton Solent University, England&lt;/strong&gt;&lt;/a&gt; | Studiengebühren 202<del class="diffchar deleted"><strong>4</strong></del>/202<del class="diffchar deleted"><strong>5</strong></del>: 1<del class="diffchar deleted"><strong>1.</strong></del>000£ (nur für bib-TopUpler) + Visa-Kosten&lt;br /&gt;</blockquote><blockquote>+ &lt;/li&gt;&lt;/ul&gt;&lt;a class=&quot;wiki external&quot; target=&quot;_blank&quot; href=&quot;https://www.solent.ac.uk/&quot; rel=&quot;external&quot;&gt;&lt;strong&gt;Southampton Solent University, England&lt;/strong&gt;&lt;/a&gt; | Studiengebühren 202<ins class="diffchar inserted"><strong>5</strong></ins>/202<ins class="diffchar inserted"><strong>6</strong></ins>: 10<ins class="diffchar inserted"><strong>.5</strong></ins>00£ (nur für bib-TopUpler) + Visa-Kosten&lt;br /&gt;</blockquote>]]></summary>
    <published>2025-11-27T10:08:35+00:00</published>
    <updated>2025-11-27T10:08:35+00:00</updated>
    <link rel="alternate" type="text/html" href="https://lms.fhdw.de/tiki-index.php?page=bib-TopUp-Game-Development"/>
    <id>https://lms.fhdw.de/tiki-index.php?page=bib-TopUp-Game-Development</id>
    <author>
      <name>Sarbina Schmidt</name>
    </author>
  </entry>
  <entry>
    <title type="html"><![CDATA[bib-TopUp-Wirtschaft]]></title>
    <summary type="html"><![CDATA[<blockquote>- &lt;/li&gt;&lt;/ul&gt;&lt;a class=&quot;wiki external&quot; target=&quot;_blank&quot; href=&quot;https://www.solent.ac.uk/&quot; rel=&quot;external&quot;&gt;&lt;strong&gt;Southampton Solent University, England&lt;/strong&gt;&lt;/a&gt; | Studiengebühren 202<del class="diffchar deleted"><strong>4</strong></del>/202<del class="diffchar deleted"><strong>5</strong></del>: 1<del class="diffchar deleted"><strong>1.</strong></del>000£ (nur für bib-TopUpler) + Visa-Kosten&lt;br /&gt;</blockquote><blockquote>+ &lt;/li&gt;&lt;/ul&gt;&lt;a class=&quot;wiki external&quot; target=&quot;_blank&quot; href=&quot;https://www.solent.ac.uk/&quot; rel=&quot;external&quot;&gt;&lt;strong&gt;Southampton Solent University, England&lt;/strong&gt;&lt;/a&gt; | Studiengebühren 202<ins class="diffchar inserted"><strong>5</strong></ins>/202<ins class="diffchar inserted"><strong>6</strong></ins>: 10<ins class="diffchar inserted"><strong>.5</strong></ins>00£ (nur für bib-TopUpler) + Visa-Kosten&lt;br /&gt;</blockquote>]]></summary>
    <published>2025-11-27T10:07:05+00:00</published>
    <updated>2025-11-27T10:07:05+00:00</updated>
    <link rel="alternate" type="text/html" href="https://lms.fhdw.de/tiki-index.php?page=bib-TopUp-Wirtschaft"/>
    <id>https://lms.fhdw.de/tiki-index.php?page=bib-TopUp-Wirtschaft</id>
    <author>
      <name>Sarbina Schmidt</name>
    </author>
  </entry>
  <entry>
    <title type="html"><![CDATA[bib-TopUp-Mediendesign]]></title>
    <summary type="html"><![CDATA[<blockquote>- &lt;/li&gt;&lt;/ul&gt;&lt;a class=&quot;wiki external&quot; target=&quot;_blank&quot; href=&quot;https://www.solent.ac.uk/&quot; rel=&quot;external&quot;&gt;&lt;strong&gt;Southampton Solent University, England&lt;/strong&gt;&lt;/a&gt; | Studiengebühren 202<del class="diffchar deleted"><strong>4</strong></del>/202<del class="diffchar deleted"><strong>5</strong></del>: 1<del class="diffchar deleted"><strong>1.</strong></del>000£ (nur für bib-TopUpler) + Visa-Kosten&lt;br /&gt;</blockquote><blockquote>+ &lt;/li&gt;&lt;/ul&gt;&lt;a class=&quot;wiki external&quot; target=&quot;_blank&quot; href=&quot;https://www.solent.ac.uk/&quot; rel=&quot;external&quot;&gt;&lt;strong&gt;Southampton Solent University, England&lt;/strong&gt;&lt;/a&gt; | Studiengebühren 202<ins class="diffchar inserted"><strong>5</strong></ins>/202<ins class="diffchar inserted"><strong>6</strong></ins>: 10<ins class="diffchar inserted"><strong>.5</strong></ins>00£ (nur für bib-TopUpler) + Visa-Kosten&lt;br /&gt;</blockquote>]]></summary>
    <published>2025-11-27T09:47:11+00:00</published>
    <updated>2025-11-27T09:47:11+00:00</updated>
    <link rel="alternate" type="text/html" href="https://lms.fhdw.de/tiki-index.php?page=bib-TopUp-Mediendesign"/>
    <id>https://lms.fhdw.de/tiki-index.php?page=bib-TopUp-Mediendesign</id>
    <author>
      <name>Sarbina Schmidt</name>
    </author>
  </entry>
</feed>
