diff --git a/notebooks/seminar05.ipynb b/notebooks/seminar05.ipynb
index 53888cf34d8020fa50c096a20a9ab6c7d49ab881..3722412b6ef65069150dfedc965493b56bce3f84 100644
--- a/notebooks/seminar05.ipynb
+++ b/notebooks/seminar05.ipynb
@@ -46,7 +46,8 @@
     "print(dez_zu_allem(42, \"01\"))\n",
     "print(dez_zu_allem(42, \"0123456789\"))\n",
     "print(dez_zu_allem(42, \"01234567\"))\n",
-    "print(dez_zu_allem(42, \"0123456789ABCDEF\"))"
+    "print(dez_zu_allem(42, \"0123456789ABCDEF\"))\n",
+    "print(dez_zu_allem(42, \"0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ\"))"
    ]
   },
   {
@@ -239,7 +240,7 @@
     "\n",
     "Auch wenn Ihnen diese Symbole wahrscheinlich bekannt vorkommen, so sind sie doch anders als ihre mathematischen Äquivalente. Ein üblicher Fehler ist, das einfache Gleichheitszeichen (`=`) statt des doppelten Gleichheitszeichens (`==`) zu verwenden. Wir merken uns: `=` ist der Zuweisungsoperator und `==` ist ein relationaler Operator. Die Operatoren `=<` und `=>` gibt es nicht.\n",
     "\n",
-    "![](https://imgs.xkcd.com/comics/formal_logic.png)\n",
+    "![Note that this implies you should NOT honk solely because I stopped for a pedestrian and you&#39;re behind me.](https://imgs.xkcd.com/comics/formal_logic.png)\n",
     "\n",
     "([Formal Logic](https://xkcd.com/1033/), Randall Munroe)"
    ]