- Kurzfragen
- Potentialtopf
- Zeitentwicklung im unendlich hohen Potentialtopf
- Harmonischer Oszillator in Impulsdarstellung
- Wasserstoff-Atom
- Nichtentartete und entartete Störungsrechnung
- Drehimpulsalgebra
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
copy( | |
Array.from(document.querySelectorAll(".e1cg0wnj1")).map((x) => x.children[0].href).join("\n") | |
) |
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
# Returns the total non-AFK time spent on a specific domain. | |
# Note that this doesn't care if the browser is in focus. | |
# Paste this into http://localhost:5600/#/query | |
# Tested for ActivityWatch 0.11.0 | |
afk_events = query_bucket(find_bucket("aw-watcher-afk_")); | |
web_events = query_bucket(find_bucket("aw-watcher-web")); # doesn't work with multiple browsers; pass a specific bucket name like "aw-watcher-web-firefox" if necessary | |
web_events = split_url_events(web_events); | |
DOMAINS = ["youtube.com"]; | |
domain_events = filter_keyvals(web_events, "$domain", DOMAINS); |
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
for i in *.mp3; do mid3v2 -t "$(awk -F "=" '/Tracktitle/ {print $2}' "${i%.*}.inf" | tr -d "'")" "${i%.*}.mp3"; done |
Diese Übersicht soll die Lernziele aus den einzelnen Kapiteln transparent auflisten. Drei Sachen sind bei der Arbeit mit dieser Übersicht zu beachten:
- Es wird nicht jeder Satz und jedes Theorem einzeln ausgeschrieben, denn ein überliegendes Lernziel ist: Sie sollen in Ihrem Studium lernen, selbst einzuschätzen, welche Formeln und Rechenschritte für das Verständnis eines Themengebiets essenziell sind.
- Beachten Sie auch die Operatoren: Wer beispielweise ein System mit einer Methode_ analysieren möchte, muss die Methode dazu erst verstanden haben und anwenden können.
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
#!/bin/bash | |
echo Uploading $1 to transfer.sh… | |
FILEURL=$(transfer $1 | tail -1) | |
echo URL: $FILEURL | |
APIKEY='your-api-key' | |
DEVICEID='your-device-id' | |
RESULT=$(curl 'https://joinjoaomgcd.appspot.com/_ah/api/messaging/v1/sendPush?file='"$FILEURL"'&deviceId='"$DEVICEID"'&apikey='"$APIKEY" 2>/dev/null) | |
if echo "$RESULT" | grep -q "\"success\": true"; then | |
echo "File sent successfully!" | |
exit 0 |
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
async function scrape() { | |
let allChats = []; | |
for (let i = 0; i < 250; i++) { | |
let allChatElements = document.querySelectorAll(".X7YrQ"); | |
console.log("Iter ", i, allChatElements.length, " elements"); |