From e5b417ab08b874f8d02c500cbd87c30817d9049a Mon Sep 17 00:00:00 2001
From: Sacha Chua <sacha@sachachua.com>
Date: Wed, 4 Dec 2024 09:01:40 -0500
Subject: Try to add LambdaMOO tutorial

---
 2024/talks/mcclim.md | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

(limited to '2024/talks')

diff --git a/2024/talks/mcclim.md b/2024/talks/mcclim.md
index 432a0180..36780992 100644
--- a/2024/talks/mcclim.md
+++ b/2024/talks/mcclim.md
@@ -98,6 +98,34 @@ Bib:
       }
 ```
 
+**Q&A in LambdaMOO**:
+
+As an experiment, screwlisp will also be taking
+questions from LambdaMOO. Here's how to join:
+
+1. Use `M-x telnet` to connect to `lambda.moo.mud.org 8888`. Alternatively, you can use a web-based client like https://mudslinger.net/play/ or rmoo.el (see rmoo.el note below)
+2. `connect Guest` to connect as a guest. If that doesn't work, please ask in `#emacsconf-org` and we'll try to get you sorted out.
+3. Agree to the terms by typing `YES`.
+4. Teleport to where the speaker is by typing `@join screwtape`.
+
+To say something, start with `"` and omit the ending quotation mark, like this: `"Hello everyone!`. To say something to a specific person, start with a backtick (`` ` ``) and the person's nick, then your message, like this: `` `sachac I made it to LambdaMOO``. Use `help communication` to learn more about other communication tools, such as `:` for emoting and `whisper` for sending private messages.
+
+rmoo.el note: You may need to define process-kill-without-query if it doesn't exist on your computer. Here's a use-package declaration that might be a good starting point. If your version of use-package doesn't support `:vc` yet, you can check out the code from https://github.com/toddsundsted/rmoo and add it to your load-path, or use `M-x telnet` for now.
+
+```
+(use-package rmoo
+	:vc "https://github.com/toddsundsted/rmoo"
+	:init
+	(unless (fboundp 'process-kill-without-query)
+		(defun process-kill-without-query (process &optional flag)
+			(set-process-query-on-exit-flag process nil)
+			t))
+	:config
+	(rmoo-worlds-add-new-moo "LambdaMOO" "lambda.moo.mud.org" "8888"))
+```
+
+You can also ask questions via BigBlueButton, Etherpad, or IRC, and the host will try to make sure your question gets to the speaker. Enjoy!
+
 About the speaker:
 
 I'm screwlisp from the lispy gopher climate, a weekly Wednesday
-- 
cgit v1.2.3