name: moodle-aktivitaetsbericht description: > Erstellt einen detaillierten Aktivitäts- und Lernbericht für einen einzelnen Moodle-Schüler als formatiertes Word-Dokument (.docx) und speichert ihn im Unterordner Berichte/ des Projektverzeichnisses. Verwende diesen Skill IMMER wenn der Benutzer nach einem Lernbericht, Aktivitätsbericht, Fortschrittsbericht oder einer Lernzusammenfassung für einen Schüler fragt – auch bei Formulierungen wie "erstelle einen Bericht für [Name]", "Lernstand von [Schüler]", "wie kommt [Name] voran", "zeig mir den Bericht zu [Schüler]", "Bericht [Schüler]", "Aktivitätsbericht [Name]", "was hat [Name] bisher gemacht". Auch verwenden wenn der Benutzer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // This file is part of Moodle - http://moodle.org/ | |
| // | |
| // Moodle is free software: you can redistribute it and/or modify | |
| // it under the terms of the GNU General Public License as published by | |
| // the Free Software Foundation, either version 3 of the License, or | |
| // (at your option) any later version. | |
| // | |
| // Moodle is distributed in the hope that it will be useful, | |
| // but WITHOUT ANY WARRANTY; without even the implied warranty of |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Copyright Broadcom, Inc. All Rights Reserved. | |
| # SPDX-License-Identifier: APACHE-2.0 | |
| services: | |
| mariadb: | |
| image: docker.io/bitnami/mariadb:11.4 | |
| environment: | |
| # ALLOW_EMPTY_PASSWORD is recommended only for development. | |
| - ALLOW_EMPTY_PASSWORD=yes | |
| - MARIADB_USER=bn_moodle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import cv2 | |
| import numpy as np | |
| from gpiozero import LED | |
| ledgreen = LED(17) | |
| ledblue = LED(18) | |
| ledred = LED(19) | |
| # IP-Adresse und Port der Android IP Webcam |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import cv2 | |
| from PIL import Image | |
| import re | |
| from transformers import DonutProcessor, VisionEncoderDecoderModel | |
| from datasets import load_dataset | |
| import torch | |
| allowed_cars = ["HAP515"] | |
| # Initialisieren Sie die Kamera |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from gpiozero import LED | |
| from time import sleep | |
| # Erstellen Sie ein LED-Objekt, das mit GPIO 17 verbunden ist | |
| ledgreen = LED(17) | |
| ledblue = LED(18) | |
| ledred = LED(19) | |
| # LED ein- und ausschalten | |
| while True: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import asyncio | |
| import logging | |
| from asyncua import Server, ua | |
| from asyncua.common.methods import uamethod | |
| async def main(): | |
| _logger = logging.getLogger(__name__) | |
| # setup our server |
NewerOlder