diff --git a/content/pages/spam.rst b/content/pages/spam.rst
new file mode 100644
index 0000000000000000000000000000000000000000..ff95a9d8d9c0a7698aa4922dd958eab97c8c9706
--- /dev/null
+++ b/content/pages/spam.rst
@@ -0,0 +1,30 @@
+Spam Nimrod
+###########
+
+:date: 2020-10-23
+:summary: Spam Nimrod
+:slug: spam
+:status: hidden
+
+.. raw:: html
+
+    <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
+    <script>
+        $(document).ready(
+            function(){
+                $("button").click(
+                    function(){
+                        $.post(
+                            "https://patchbay.pub/pubsub/1446c969-9a54-4b5b-83e0-bf88f22f289d",
+                            $("#message").val(),
+                            function(){
+                                alert("Nimrod was spammed.");
+                            }
+                        );
+                    }
+                );
+            }
+        );
+    </script>
+    <textarea id="message" rows="5" cols="50">Hi there.</textarea>
+    <p><button type="button">Spam Nimrod</button></p>