From 0268040d1ec2e0af025baa5d717f05600418e3de Mon Sep 17 00:00:00 2001 From: fretchen Date: Wed, 13 May 2026 18:33:47 +0200 Subject: [PATCH 1/3] Create privacy.sh --- privacy.sh | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 privacy.sh diff --git a/privacy.sh b/privacy.sh new file mode 100644 index 000000000..e67314f2e --- /dev/null +++ b/privacy.sh @@ -0,0 +1,41 @@ +#!/bin/bash +# Skript: Ersetzt "Fred Jendrzejewski" durch "fretchen" im gesamten Repo +# Führe dieses Skript im Root-Verzeichnis deines geklonten Repos aus. + +set -e + +REPO_DIR="${1:-.}" +cd "$REPO_DIR" + +echo "🔍 Suche nach 'Fred Jendrzejewski' ..." +COUNT=$(grep -rn "Fred Jendrzejewski" . --exclude-dir=.git --exclude-dir=node_modules | wc -l) +echo " Gefunden: $COUNT Vorkommen" + +# .mdx, .md, .ipynb, .tex, .json, .yaml, .yml, .js, .ts, .tsx +find . -not -path './.git/*' -not -path '*/node_modules/*' \( \ + -name "*.mdx" -o -name "*.md" -o -name "*.ipynb" -o -name "*.tex" \ + -o -name "*.json" -o -name "*.yaml" -o -name "*.yml" \ + -o -name "*.js" -o -name "*.ts" -o -name "*.tsx" \ +\) -exec grep -l "Fred Jendrzejewski" {} \; | while read f; do + sed -i 's/Fred Jendrzejewski/fretchen/g' "$f" + echo " ✅ $f" +done + +REMAINING=$(grep -rn "Fred Jendrzejewski" . --exclude-dir=.git --exclude-dir=node_modules | wc -l || true) +echo "" +if [ "$REMAINING" -eq 0 ]; then + echo "✅ Alle Vorkommen ersetzt!" +else + echo "⚠️ Noch $REMAINING Vorkommen übrig – bitte manuell prüfen." + grep -rn "Fred Jendrzejewski" . --exclude-dir=.git --exclude-dir=node_modules +fi + +echo "" +echo "📋 Geänderte Dateien:" +git diff --stat + +echo "" +echo "💡 Nächster Schritt: commit & push" +echo " git add -A" +echo " git commit -m 'privacy: replace real name with fretchen pseudonym'" +echo " git push" \ No newline at end of file From 71e4db861b047fd4d96e42ceb8533a796d2b97a5 Mon Sep 17 00:00:00 2001 From: fretchen Date: Wed, 13 May 2026 18:37:45 +0200 Subject: [PATCH 2/3] privacy: replace real name with fretchen pseudonym --- privacy.sh | 2 +- website/quantum/amo/lecture1.md | 2 +- website/quantum/amo/lecture10.mdx | 2 +- website/quantum/amo/lecture11.mdx | 2 +- website/quantum/amo/lecture12.mdx | 2 +- website/quantum/amo/lecture13.mdx | 2 +- website/quantum/amo/lecture14.mdx | 2 +- website/quantum/amo/lecture15.mdx | 2 +- website/quantum/amo/lecture16.mdx | 2 +- website/quantum/amo/lecture17.mdx | 2 +- website/quantum/amo/lecture18.mdx | 2 +- website/quantum/amo/lecture19.mdx | 2 +- website/quantum/amo/lecture2.md | 2 +- website/quantum/amo/lecture20.mdx | 2 +- website/quantum/amo/lecture3.mdx | 2 +- website/quantum/amo/lecture4.mdx | 2 +- website/quantum/amo/lecture5.mdx | 2 +- website/quantum/amo/lecture6.mdx | 2 +- website/quantum/amo/lecture7.mdx | 2 +- website/quantum/amo/lecture8.mdx | 2 +- website/quantum/amo/lecture9.mdx | 2 +- ...ome cooking recipes for Quantum Mechanics.tex | 2 +- ... Propagation of light in dielectric media.tex | 2 +- .../Lecture 11 - Laser fundamentals.tex | 2 +- .../amo/tex_files/Lecture 12- Entanglement.tex | 2 +- .../Lecture 13 - Atoms with many electrons.tex | 2 +- ...4 - The spin in atoms with many electrons.tex | 2 +- .../Lecture 15 - Diatomic molecules.tex | 2 +- ... Molecular Orbitals of Diatomic Molecules.tex | 2 +- ... 17 - Rotation and Vibration of Molecules.tex | 2 +- ...Quantization of the Electromagnetic field.tex | 2 +- ...tom-Light Interactions and Dressed States.tex | 2 +- ...ore cooking recipes for quantum mechanics.tex | 2 +- ...on quantum computing with trapped ions(1).tex | 2 +- ...lling spontaneous emission and absorption.tex | 2 +- .../Lecture 22 - Quantum degenerate gases.tex | 2 +- ...- Dipping the toes into quantum computing.tex | 2 +- .../Lecture 3 - The two-level system(1).tex | 2 +- .../Lecture 4 - Atoms in oscillating fields.tex | 2 +- .../tex_files/Lecture 5 - The Hydrogen Atom.tex | 2 +- ...dipole approximation in the hydrogen atom.tex | 2 +- ...cture 7 - Beyond the boring hydrogen atom.tex | 2 +- .../tex_files/Lecture 8 - The Helium atom.tex | 2 +- .../Lecture 9 - More on the Helium atom.tex | 2 +- website/quantum/basics/bell_inequalities.ipynb | 16 ++++++++-------- website/quantum/basics/bell_inequalities.mdx | 2 +- website/quantum/basics/qtech_intro.mdx | 2 +- website/quantum/basics/quantum_metrology.mdx | 2 +- website/quantum/hardware/quantum_hardware_101.md | 2 +- website/quantum/hardware/quantum_hardware_102.md | 2 +- website/quantum/hardware/quantum_hardware_103.md | 2 +- website/quantum/hardware/quantum_hardware_104.md | 2 +- website/quantum/hardware/quantum_hardware_105.md | 2 +- website/quantum/qml/qml_001.md | 2 +- website/quantum/qml/qml_101.md | 2 +- website/quantum/qml/qml_102.md | 2 +- website/quantum/qml/qml_103.md | 2 +- website/quantum/qml/qml_104.md | 2 +- 58 files changed, 65 insertions(+), 65 deletions(-) diff --git a/privacy.sh b/privacy.sh index e67314f2e..c5fa465b5 100644 --- a/privacy.sh +++ b/privacy.sh @@ -17,7 +17,7 @@ find . -not -path './.git/*' -not -path '*/node_modules/*' \( \ -o -name "*.json" -o -name "*.yaml" -o -name "*.yml" \ -o -name "*.js" -o -name "*.ts" -o -name "*.tsx" \ \) -exec grep -l "Fred Jendrzejewski" {} \; | while read f; do - sed -i 's/Fred Jendrzejewski/fretchen/g' "$f" + sed -i '' 's/Fred Jendrzejewski/fretchen/g' "$f" echo " ✅ $f" done diff --git a/website/quantum/amo/lecture1.md b/website/quantum/amo/lecture1.md index 889ee3296..14714f150 100644 --- a/website/quantum/amo/lecture1.md +++ b/website/quantum/amo/lecture1.md @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen - Selim Jochim order: 1 title: Lecture 1 - Some cooking recipes for Quantum Mechanics diff --git a/website/quantum/amo/lecture10.mdx b/website/quantum/amo/lecture10.mdx index a34919379..949b97268 100644 --- a/website/quantum/amo/lecture10.mdx +++ b/website/quantum/amo/lecture10.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen order: 10 title: Lecture 10 - Propagation of light in dielectric media --- diff --git a/website/quantum/amo/lecture11.mdx b/website/quantum/amo/lecture11.mdx index 4a0712d58..5ab68e8cb 100644 --- a/website/quantum/amo/lecture11.mdx +++ b/website/quantum/amo/lecture11.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen order: 11 title: Lecture 11 - Laser fundamentals --- diff --git a/website/quantum/amo/lecture12.mdx b/website/quantum/amo/lecture12.mdx index 50d88dbe6..d91e6e61e 100644 --- a/website/quantum/amo/lecture12.mdx +++ b/website/quantum/amo/lecture12.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen - Selim Jochim - Matthias Weidemüller order: 12 diff --git a/website/quantum/amo/lecture13.mdx b/website/quantum/amo/lecture13.mdx index f21f38fb5..6bbd52290 100644 --- a/website/quantum/amo/lecture13.mdx +++ b/website/quantum/amo/lecture13.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen - Selim Jochim - Matthias Weidemüller order: 13 diff --git a/website/quantum/amo/lecture14.mdx b/website/quantum/amo/lecture14.mdx index 7f3f4b914..0a4177bee 100644 --- a/website/quantum/amo/lecture14.mdx +++ b/website/quantum/amo/lecture14.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen - Selim Jochim - Matthias Weidemüller order: 14 diff --git a/website/quantum/amo/lecture15.mdx b/website/quantum/amo/lecture15.mdx index d11f12587..67b631e1f 100644 --- a/website/quantum/amo/lecture15.mdx +++ b/website/quantum/amo/lecture15.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen - Selim Jochim - Matthias Weidemüller order: 15 diff --git a/website/quantum/amo/lecture16.mdx b/website/quantum/amo/lecture16.mdx index ad8ece52c..78f07eeff 100644 --- a/website/quantum/amo/lecture16.mdx +++ b/website/quantum/amo/lecture16.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen - Selim Jochim - Matthias Weidemüller order: 16 diff --git a/website/quantum/amo/lecture17.mdx b/website/quantum/amo/lecture17.mdx index f81a701b0..29e186365 100644 --- a/website/quantum/amo/lecture17.mdx +++ b/website/quantum/amo/lecture17.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen - Selim Jochim - Matthias Weidemüller order: 17 diff --git a/website/quantum/amo/lecture18.mdx b/website/quantum/amo/lecture18.mdx index b663202f0..224afeede 100644 --- a/website/quantum/amo/lecture18.mdx +++ b/website/quantum/amo/lecture18.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen - Selim Jochim - Matthias Weidemüller order: 18 diff --git a/website/quantum/amo/lecture19.mdx b/website/quantum/amo/lecture19.mdx index 34175fd0d..a66c5ffa2 100644 --- a/website/quantum/amo/lecture19.mdx +++ b/website/quantum/amo/lecture19.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen - Selim Jochim - Matthias Weidemüller order: 19 diff --git a/website/quantum/amo/lecture2.md b/website/quantum/amo/lecture2.md index d720b2c2a..f62c58e29 100644 --- a/website/quantum/amo/lecture2.md +++ b/website/quantum/amo/lecture2.md @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen - Selim Jochim order: 2 title: Lecture 2 - A few more cooking recipes for quantum mechanics diff --git a/website/quantum/amo/lecture20.mdx b/website/quantum/amo/lecture20.mdx index c0a7e2dd3..1658563e3 100644 --- a/website/quantum/amo/lecture20.mdx +++ b/website/quantum/amo/lecture20.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen order: 20 title: Lecture 20 - A few words on quantum computing with trapped ions --- diff --git a/website/quantum/amo/lecture3.mdx b/website/quantum/amo/lecture3.mdx index c90999c78..5932c1672 100644 --- a/website/quantum/amo/lecture3.mdx +++ b/website/quantum/amo/lecture3.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen - Selim Jochim order: 3 title: Lecture 3 - The two-level system diff --git a/website/quantum/amo/lecture4.mdx b/website/quantum/amo/lecture4.mdx index a12659e40..0ccdb520c 100644 --- a/website/quantum/amo/lecture4.mdx +++ b/website/quantum/amo/lecture4.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen - Selim Jochim order: 4 title: Lecture 4 - Atoms in oscillating fields diff --git a/website/quantum/amo/lecture5.mdx b/website/quantum/amo/lecture5.mdx index 5f8304a3f..042f05cab 100644 --- a/website/quantum/amo/lecture5.mdx +++ b/website/quantum/amo/lecture5.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen - Selim Jochim order: 5 title: Lecture 5 - The Hydrogen Atom diff --git a/website/quantum/amo/lecture6.mdx b/website/quantum/amo/lecture6.mdx index 76fc63708..f59f89a98 100644 --- a/website/quantum/amo/lecture6.mdx +++ b/website/quantum/amo/lecture6.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen - Selim Jochim order: 6 title: Lecture 6 - The dipole approximation in the hydrogen atom diff --git a/website/quantum/amo/lecture7.mdx b/website/quantum/amo/lecture7.mdx index 39ce63ded..785c52426 100644 --- a/website/quantum/amo/lecture7.mdx +++ b/website/quantum/amo/lecture7.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen - Selim Jochim order: 7 title: Lecture 7 - Beyond the 'boring' hydrogen atom diff --git a/website/quantum/amo/lecture8.mdx b/website/quantum/amo/lecture8.mdx index d88db6659..ad7ff5ab2 100644 --- a/website/quantum/amo/lecture8.mdx +++ b/website/quantum/amo/lecture8.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen - Selim Jochim order: 8 title: Lecture 8 - The Helium atom diff --git a/website/quantum/amo/lecture9.mdx b/website/quantum/amo/lecture9.mdx index d63268ec3..7b94c6ece 100644 --- a/website/quantum/amo/lecture9.mdx +++ b/website/quantum/amo/lecture9.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen - Selim Jochim order: 9 title: Lecture 9 - More on the Helium atom diff --git a/website/quantum/amo/tex_files/Lecture 1 - Some cooking recipes for Quantum Mechanics.tex b/website/quantum/amo/tex_files/Lecture 1 - Some cooking recipes for Quantum Mechanics.tex index 1d29a6a2d..5390f9115 100644 --- a/website/quantum/amo/tex_files/Lecture 1 - Some cooking recipes for Quantum Mechanics.tex +++ b/website/quantum/amo/tex_files/Lecture 1 - Some cooking recipes for Quantum Mechanics.tex @@ -84,7 +84,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \affil[1]{Kirchhoff-Institut für Physik}% \affil[2]{Physikalisches Institut der Universität Heidelberg}% diff --git a/website/quantum/amo/tex_files/Lecture 10 - Propagation of light in dielectric media.tex b/website/quantum/amo/tex_files/Lecture 10 - Propagation of light in dielectric media.tex index b34420ac4..db8fcba1d 100644 --- a/website/quantum/amo/tex_files/Lecture 10 - Propagation of light in dielectric media.tex +++ b/website/quantum/amo/tex_files/Lecture 10 - Propagation of light in dielectric media.tex @@ -89,7 +89,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \affil[1]{Kirchhoff-Institut für Physik}% diff --git a/website/quantum/amo/tex_files/Lecture 11 - Laser fundamentals.tex b/website/quantum/amo/tex_files/Lecture 11 - Laser fundamentals.tex index 6dd5de686..d73ad1d28 100644 --- a/website/quantum/amo/tex_files/Lecture 11 - Laser fundamentals.tex +++ b/website/quantum/amo/tex_files/Lecture 11 - Laser fundamentals.tex @@ -79,7 +79,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \affil[1]{Kirchhoff-Institut für Physik}% diff --git a/website/quantum/amo/tex_files/Lecture 12- Entanglement.tex b/website/quantum/amo/tex_files/Lecture 12- Entanglement.tex index 2cac0c0de..cb687d38e 100644 --- a/website/quantum/amo/tex_files/Lecture 12- Entanglement.tex +++ b/website/quantum/amo/tex_files/Lecture 12- Entanglement.tex @@ -89,7 +89,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \author[2]{Matthias Weidemüller}% \affil[1]{Kirchhoff-Institut für Physik}% diff --git a/website/quantum/amo/tex_files/Lecture 13 - Atoms with many electrons.tex b/website/quantum/amo/tex_files/Lecture 13 - Atoms with many electrons.tex index 97decd840..64def0fc8 100644 --- a/website/quantum/amo/tex_files/Lecture 13 - Atoms with many electrons.tex +++ b/website/quantum/amo/tex_files/Lecture 13 - Atoms with many electrons.tex @@ -90,7 +90,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \author[2]{Matthias Weidemüller}% \affil[1]{Kirchhoff-Institut für Physik}% diff --git a/website/quantum/amo/tex_files/Lecture 14 - The spin in atoms with many electrons.tex b/website/quantum/amo/tex_files/Lecture 14 - The spin in atoms with many electrons.tex index 308ca1caa..88b5f3df8 100644 --- a/website/quantum/amo/tex_files/Lecture 14 - The spin in atoms with many electrons.tex +++ b/website/quantum/amo/tex_files/Lecture 14 - The spin in atoms with many electrons.tex @@ -90,7 +90,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \author[2]{Matthias Weidemüller}% \affil[1]{Kirchhoff-Institut für Physik}% diff --git a/website/quantum/amo/tex_files/Lecture 15 - Diatomic molecules.tex b/website/quantum/amo/tex_files/Lecture 15 - Diatomic molecules.tex index 6d1fb48c1..7cbe394d3 100644 --- a/website/quantum/amo/tex_files/Lecture 15 - Diatomic molecules.tex +++ b/website/quantum/amo/tex_files/Lecture 15 - Diatomic molecules.tex @@ -88,7 +88,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \author[2]{Matthias Weidemüller}% \affil[1]{Kirchhoff-Institut für Physik}% diff --git a/website/quantum/amo/tex_files/Lecture 16 - Molecular Orbitals of Diatomic Molecules.tex b/website/quantum/amo/tex_files/Lecture 16 - Molecular Orbitals of Diatomic Molecules.tex index 1aa731e9e..87eb3d9e9 100644 --- a/website/quantum/amo/tex_files/Lecture 16 - Molecular Orbitals of Diatomic Molecules.tex +++ b/website/quantum/amo/tex_files/Lecture 16 - Molecular Orbitals of Diatomic Molecules.tex @@ -90,7 +90,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \author[2]{Matthias Weidemüller}% \affil[1]{Kirchhoff-Institut für Physik}% diff --git a/website/quantum/amo/tex_files/Lecture 17 - Rotation and Vibration of Molecules.tex b/website/quantum/amo/tex_files/Lecture 17 - Rotation and Vibration of Molecules.tex index 40e69ac75..cd8164acb 100644 --- a/website/quantum/amo/tex_files/Lecture 17 - Rotation and Vibration of Molecules.tex +++ b/website/quantum/amo/tex_files/Lecture 17 - Rotation and Vibration of Molecules.tex @@ -93,7 +93,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \author[2]{Matthias Weidemüller}% \affil[1]{Kirchhoff-Institut für Physik}% diff --git a/website/quantum/amo/tex_files/Lecture 18 - Quantization of the Electromagnetic field.tex b/website/quantum/amo/tex_files/Lecture 18 - Quantization of the Electromagnetic field.tex index 61ff27060..9233fc9d8 100644 --- a/website/quantum/amo/tex_files/Lecture 18 - Quantization of the Electromagnetic field.tex +++ b/website/quantum/amo/tex_files/Lecture 18 - Quantization of the Electromagnetic field.tex @@ -91,7 +91,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \author[2]{Matthias Weidemüller}% \affil[1]{Kirchhoff-Institut für Physik}% diff --git a/website/quantum/amo/tex_files/Lecture 19 - Atom-Light Interactions and Dressed States.tex b/website/quantum/amo/tex_files/Lecture 19 - Atom-Light Interactions and Dressed States.tex index 453529fb0..1a20080af 100644 --- a/website/quantum/amo/tex_files/Lecture 19 - Atom-Light Interactions and Dressed States.tex +++ b/website/quantum/amo/tex_files/Lecture 19 - Atom-Light Interactions and Dressed States.tex @@ -90,7 +90,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \author[2]{Matthias Weidemüller}% \affil[1]{Kirchhoff-Institut für Physik}% diff --git a/website/quantum/amo/tex_files/Lecture 2 - A few more cooking recipes for quantum mechanics.tex b/website/quantum/amo/tex_files/Lecture 2 - A few more cooking recipes for quantum mechanics.tex index 2cc208b7f..a083bbdc6 100644 --- a/website/quantum/amo/tex_files/Lecture 2 - A few more cooking recipes for quantum mechanics.tex +++ b/website/quantum/amo/tex_files/Lecture 2 - A few more cooking recipes for quantum mechanics.tex @@ -88,7 +88,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \affil[1]{Kirchhoff-Institut für Physik}% \affil[2]{Physikalisches Institut der Universität Heidelberg}% diff --git a/website/quantum/amo/tex_files/Lecture 20 - A few words on quantum computing with trapped ions(1).tex b/website/quantum/amo/tex_files/Lecture 20 - A few words on quantum computing with trapped ions(1).tex index b5f3b0878..f4f32493b 100644 --- a/website/quantum/amo/tex_files/Lecture 20 - A few words on quantum computing with trapped ions(1).tex +++ b/website/quantum/amo/tex_files/Lecture 20 - A few words on quantum computing with trapped ions(1).tex @@ -90,7 +90,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \affil[1]{Kirchhoff-Institut für Physik}% diff --git a/website/quantum/amo/tex_files/Lecture 20 - Controlling spontaneous emission and absorption.tex b/website/quantum/amo/tex_files/Lecture 20 - Controlling spontaneous emission and absorption.tex index 85dcfcc78..aa0223532 100644 --- a/website/quantum/amo/tex_files/Lecture 20 - Controlling spontaneous emission and absorption.tex +++ b/website/quantum/amo/tex_files/Lecture 20 - Controlling spontaneous emission and absorption.tex @@ -90,7 +90,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \author[2]{Matthias Weidemüller}% \affil[1]{Kirchhoff-Institut für Physik}% diff --git a/website/quantum/amo/tex_files/Lecture 22 - Quantum degenerate gases.tex b/website/quantum/amo/tex_files/Lecture 22 - Quantum degenerate gases.tex index f3daf126e..e7215f6a9 100644 --- a/website/quantum/amo/tex_files/Lecture 22 - Quantum degenerate gases.tex +++ b/website/quantum/amo/tex_files/Lecture 22 - Quantum degenerate gases.tex @@ -90,7 +90,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \author[2]{Matthias Weidemüller}% \affil[1]{Kirchhoff-Institut für Physik}% diff --git a/website/quantum/amo/tex_files/Lecture 23 - Dipping the toes into quantum computing.tex b/website/quantum/amo/tex_files/Lecture 23 - Dipping the toes into quantum computing.tex index b2b2613d6..10d042dac 100644 --- a/website/quantum/amo/tex_files/Lecture 23 - Dipping the toes into quantum computing.tex +++ b/website/quantum/amo/tex_files/Lecture 23 - Dipping the toes into quantum computing.tex @@ -88,7 +88,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \author[2]{Matthias Weidemüller}% \affil[1]{Kirchhoff-Institut für Physik}% diff --git a/website/quantum/amo/tex_files/Lecture 3 - The two-level system(1).tex b/website/quantum/amo/tex_files/Lecture 3 - The two-level system(1).tex index 7fbe86c59..5b99bfda2 100644 --- a/website/quantum/amo/tex_files/Lecture 3 - The two-level system(1).tex +++ b/website/quantum/amo/tex_files/Lecture 3 - The two-level system(1).tex @@ -88,7 +88,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \affil[1]{Kirchhoff-Institut für Physik}% \affil[2]{Physikalisches Institut der Universität Heidelberg}% diff --git a/website/quantum/amo/tex_files/Lecture 4 - Atoms in oscillating fields.tex b/website/quantum/amo/tex_files/Lecture 4 - Atoms in oscillating fields.tex index 458622620..c31585140 100644 --- a/website/quantum/amo/tex_files/Lecture 4 - Atoms in oscillating fields.tex +++ b/website/quantum/amo/tex_files/Lecture 4 - Atoms in oscillating fields.tex @@ -88,7 +88,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \affil[1]{Kirchhoff-Institut für Physik}% \affil[2]{Physikalisches Institut der Universität Heidelberg}% diff --git a/website/quantum/amo/tex_files/Lecture 5 - The Hydrogen Atom.tex b/website/quantum/amo/tex_files/Lecture 5 - The Hydrogen Atom.tex index 5513c8fec..3f1c37b88 100644 --- a/website/quantum/amo/tex_files/Lecture 5 - The Hydrogen Atom.tex +++ b/website/quantum/amo/tex_files/Lecture 5 - The Hydrogen Atom.tex @@ -89,7 +89,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \affil[1]{Kirchhoff-Institut für Physik}% \affil[2]{Physikalisches Institut der Universität Heidelberg}% diff --git a/website/quantum/amo/tex_files/Lecture 6 - The dipole approximation in the hydrogen atom.tex b/website/quantum/amo/tex_files/Lecture 6 - The dipole approximation in the hydrogen atom.tex index 4d9ee2fc3..12766f0f6 100644 --- a/website/quantum/amo/tex_files/Lecture 6 - The dipole approximation in the hydrogen atom.tex +++ b/website/quantum/amo/tex_files/Lecture 6 - The dipole approximation in the hydrogen atom.tex @@ -92,7 +92,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \affil[1]{Kirchhoff-Institut für Physik}% \affil[2]{Physikalisches Institut für Physik der Universität Heidelberg}% diff --git a/website/quantum/amo/tex_files/Lecture 7 - Beyond the boring hydrogen atom.tex b/website/quantum/amo/tex_files/Lecture 7 - Beyond the boring hydrogen atom.tex index 239ba9abc..b246cbd6b 100644 --- a/website/quantum/amo/tex_files/Lecture 7 - Beyond the boring hydrogen atom.tex +++ b/website/quantum/amo/tex_files/Lecture 7 - Beyond the boring hydrogen atom.tex @@ -91,7 +91,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \affil[1]{Kirchhoff-Institut für Physik}% \affil[2]{Physikalisches Institut der Universität Heidelberg}% diff --git a/website/quantum/amo/tex_files/Lecture 8 - The Helium atom.tex b/website/quantum/amo/tex_files/Lecture 8 - The Helium atom.tex index 8e52c088a..e334362ac 100644 --- a/website/quantum/amo/tex_files/Lecture 8 - The Helium atom.tex +++ b/website/quantum/amo/tex_files/Lecture 8 - The Helium atom.tex @@ -91,7 +91,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \affil[1]{Kirchhoff-Institut für Physik}% \affil[2]{Physikalisches Institut der Universität Heidelberg}% diff --git a/website/quantum/amo/tex_files/Lecture 9 - More on the Helium atom.tex b/website/quantum/amo/tex_files/Lecture 9 - More on the Helium atom.tex index 2ce18e049..18fc78645 100644 --- a/website/quantum/amo/tex_files/Lecture 9 - More on the Helium atom.tex +++ b/website/quantum/amo/tex_files/Lecture 9 - More on the Helium atom.tex @@ -90,7 +90,7 @@ -\author[1]{Fred Jendrzejewski}% +\author[1]{fretchen}% \author[2]{Selim Jochim}% \affil[1]{Kirchhoff-Institut für Physik}% \affil[2]{Physikalisches Institut der Universität Heidelberg}% diff --git a/website/quantum/basics/bell_inequalities.ipynb b/website/quantum/basics/bell_inequalities.ipynb index 689e1f28c..dfd149053 100644 --- a/website/quantum/basics/bell_inequalities.ipynb +++ b/website/quantum/basics/bell_inequalities.ipynb @@ -23,7 +23,7 @@ "status": "ok", "timestamp": 1665986534221, "user": { - "displayName": "Fred Jendrzejewski", + "displayName": "fretchen", "userId": "18233741657522664753" }, "user_tz": -120 @@ -74,7 +74,7 @@ "status": "aborted", "timestamp": 1665986507211, "user": { - "displayName": "Fred Jendrzejewski", + "displayName": "fretchen", "userId": "18233741657522664753" }, "user_tz": -120 @@ -127,7 +127,7 @@ "status": "aborted", "timestamp": 1665986507211, "user": { - "displayName": "Fred Jendrzejewski", + "displayName": "fretchen", "userId": "18233741657522664753" }, "user_tz": -120 @@ -186,7 +186,7 @@ "status": "aborted", "timestamp": 1665986507211, "user": { - "displayName": "Fred Jendrzejewski", + "displayName": "fretchen", "userId": "18233741657522664753" }, "user_tz": -120 @@ -246,7 +246,7 @@ "status": "aborted", "timestamp": 1665986507211, "user": { - "displayName": "Fred Jendrzejewski", + "displayName": "fretchen", "userId": "18233741657522664753" }, "user_tz": -120 @@ -303,7 +303,7 @@ "status": "aborted", "timestamp": 1665986507211, "user": { - "displayName": "Fred Jendrzejewski", + "displayName": "fretchen", "userId": "18233741657522664753" }, "user_tz": -120 @@ -414,7 +414,7 @@ "status": "aborted", "timestamp": 1665986507212, "user": { - "displayName": "Fred Jendrzejewski", + "displayName": "fretchen", "userId": "18233741657522664753" }, "user_tz": -120 @@ -505,7 +505,7 @@ "status": "aborted", "timestamp": 1665986507212, "user": { - "displayName": "Fred Jendrzejewski", + "displayName": "fretchen", "userId": "18233741657522664753" }, "user_tz": -120 diff --git a/website/quantum/basics/bell_inequalities.mdx b/website/quantum/basics/bell_inequalities.mdx index 0afe52db7..6e36f3706 100644 --- a/website/quantum/basics/bell_inequalities.mdx +++ b/website/quantum/basics/bell_inequalities.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen order: 3 title: Tutorial on the nobel prize 2022 - How to win Bell's game --- diff --git a/website/quantum/basics/qtech_intro.mdx b/website/quantum/basics/qtech_intro.mdx index c8c641946..102a928d0 100644 --- a/website/quantum/basics/qtech_intro.mdx +++ b/website/quantum/basics/qtech_intro.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen order: 1 title: Tutorial 1 - Basic concepts of quantum technologies --- diff --git a/website/quantum/basics/quantum_metrology.mdx b/website/quantum/basics/quantum_metrology.mdx index 6803e0d86..6b4f6dcd6 100644 --- a/website/quantum/basics/quantum_metrology.mdx +++ b/website/quantum/basics/quantum_metrology.mdx @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen order: 2 title: Tutorial 2 - Quantum metrology --- diff --git a/website/quantum/hardware/quantum_hardware_101.md b/website/quantum/hardware/quantum_hardware_101.md index aaa6130cb..a8211dc54 100644 --- a/website/quantum/hardware/quantum_hardware_101.md +++ b/website/quantum/hardware/quantum_hardware_101.md @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen order: 1 title: Tutorial 1 - The qubit or the two level system --- diff --git a/website/quantum/hardware/quantum_hardware_102.md b/website/quantum/hardware/quantum_hardware_102.md index d98db9004..43b989e57 100644 --- a/website/quantum/hardware/quantum_hardware_102.md +++ b/website/quantum/hardware/quantum_hardware_102.md @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen order: 2 title: Tutorial 2 - Continuous variables or the quantum harmonic oscillator --- diff --git a/website/quantum/hardware/quantum_hardware_103.md b/website/quantum/hardware/quantum_hardware_103.md index 97df5ad0a..b7c3a3a83 100644 --- a/website/quantum/hardware/quantum_hardware_103.md +++ b/website/quantum/hardware/quantum_hardware_103.md @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen order: 3 title: Tutorial 3 - A few words about quantum computing with trapped ions --- diff --git a/website/quantum/hardware/quantum_hardware_104.md b/website/quantum/hardware/quantum_hardware_104.md index 3d33874b8..dc6e9e1a5 100644 --- a/website/quantum/hardware/quantum_hardware_104.md +++ b/website/quantum/hardware/quantum_hardware_104.md @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen order: 4 title: Tutorial 4 - A few words about quantum computing with superconducting qubits --- diff --git a/website/quantum/hardware/quantum_hardware_105.md b/website/quantum/hardware/quantum_hardware_105.md index 1239e1026..3f9a8991d 100644 --- a/website/quantum/hardware/quantum_hardware_105.md +++ b/website/quantum/hardware/quantum_hardware_105.md @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen order: 5 title: Tutorial 5 - Quantum simulation with cold atoms --- diff --git a/website/quantum/qml/qml_001.md b/website/quantum/qml/qml_001.md index 5af088ff1..c9928d616 100644 --- a/website/quantum/qml/qml_001.md +++ b/website/quantum/qml/qml_001.md @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen order: 0 title: QML 001 - A summary of classical supervised learning --- diff --git a/website/quantum/qml/qml_101.md b/website/quantum/qml/qml_101.md index 9828325dc..05294cacd 100644 --- a/website/quantum/qml/qml_101.md +++ b/website/quantum/qml/qml_101.md @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen order: 1 title: QML 101 - Some basic concepts --- diff --git a/website/quantum/qml/qml_102.md b/website/quantum/qml/qml_102.md index 1f804a0b5..da8290361 100644 --- a/website/quantum/qml/qml_102.md +++ b/website/quantum/qml/qml_102.md @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen order: 2 title: QML 102 - Deeper Classifiers --- diff --git a/website/quantum/qml/qml_103.md b/website/quantum/qml/qml_103.md index d9671dd35..a509d1c1f 100644 --- a/website/quantum/qml/qml_103.md +++ b/website/quantum/qml/qml_103.md @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen order: 3 title: QML 103 - Teaching the circle --- diff --git a/website/quantum/qml/qml_104.md b/website/quantum/qml/qml_104.md index f3b307d25..f46f0e9b3 100644 --- a/website/quantum/qml/qml_104.md +++ b/website/quantum/qml/qml_104.md @@ -1,6 +1,6 @@ --- author: - - Fred Jendrzejewski + - fretchen order: 4 title: QML 104 - More is different ? Working with multiple qubits --- From edf91622a3eaa6f46d8cdf69e17c1a4d5541b9a0 Mon Sep 17 00:00:00 2001 From: fretchen Date: Wed, 13 May 2026 19:17:21 +0200 Subject: [PATCH 3/3] Delete privacy.sh --- privacy.sh | 41 ----------------------------------------- 1 file changed, 41 deletions(-) delete mode 100644 privacy.sh diff --git a/privacy.sh b/privacy.sh deleted file mode 100644 index c5fa465b5..000000000 --- a/privacy.sh +++ /dev/null @@ -1,41 +0,0 @@ -#!/bin/bash -# Skript: Ersetzt "Fred Jendrzejewski" durch "fretchen" im gesamten Repo -# Führe dieses Skript im Root-Verzeichnis deines geklonten Repos aus. - -set -e - -REPO_DIR="${1:-.}" -cd "$REPO_DIR" - -echo "🔍 Suche nach 'Fred Jendrzejewski' ..." -COUNT=$(grep -rn "Fred Jendrzejewski" . --exclude-dir=.git --exclude-dir=node_modules | wc -l) -echo " Gefunden: $COUNT Vorkommen" - -# .mdx, .md, .ipynb, .tex, .json, .yaml, .yml, .js, .ts, .tsx -find . -not -path './.git/*' -not -path '*/node_modules/*' \( \ - -name "*.mdx" -o -name "*.md" -o -name "*.ipynb" -o -name "*.tex" \ - -o -name "*.json" -o -name "*.yaml" -o -name "*.yml" \ - -o -name "*.js" -o -name "*.ts" -o -name "*.tsx" \ -\) -exec grep -l "Fred Jendrzejewski" {} \; | while read f; do - sed -i '' 's/Fred Jendrzejewski/fretchen/g' "$f" - echo " ✅ $f" -done - -REMAINING=$(grep -rn "Fred Jendrzejewski" . --exclude-dir=.git --exclude-dir=node_modules | wc -l || true) -echo "" -if [ "$REMAINING" -eq 0 ]; then - echo "✅ Alle Vorkommen ersetzt!" -else - echo "⚠️ Noch $REMAINING Vorkommen übrig – bitte manuell prüfen." - grep -rn "Fred Jendrzejewski" . --exclude-dir=.git --exclude-dir=node_modules -fi - -echo "" -echo "📋 Geänderte Dateien:" -git diff --stat - -echo "" -echo "💡 Nächster Schritt: commit & push" -echo " git add -A" -echo " git commit -m 'privacy: replace real name with fretchen pseudonym'" -echo " git push" \ No newline at end of file