Sacha Chua https://sachachua.com/blog/feed/ Emacs, sketches, and life Mon, 02 Oct 2023 14:28:28 GMT en-US daily 1 11ty 2023-10-02 Emacs news https://sachachua.com/blog/2023/10/2023-10-02-emacs-news/ Mon, 02 Oct 2023 14:28:28 GMT emacs emacs-news https://sachachua.com/blog/2023/10/2023-10-02-emacs-news/
  • Upcoming events:
  • Emacs configuration:
  • Emacs Lisp:
  • Navigation:
  • TRAMP:
  • Dired:
  • Writing:
  • Org Mode:
  • Completion:
  • Coding:
  • Shells:
  • Web:
  • Mail, news, and chat:
  • Doom Emacs:
  • Fun:
  • AI:
  • Community:
  • Other:
  • Emacs development:
  • New packages:
  • Links from reddit.com/r/emacs, r/orgmode, r/spacemacs, r/planetemacs, Hacker News, communick.news, lobste.rs, kbin, programming.dev, lemmy, planet.emacslife.com, YouTube, the Emacs NEWS file, Emacs Calendar, and emacs-devel. Thanks to Andrés Ramírez for emacs-devel links, and to David and Jeremy for other links. Do you have an Emacs-related link or announcement? Please e-mail me at sacha@sachachua.com. Thank you!

    ]]>
    #EmacsConf backstage: using e-mail templates for confirmations and acceptances https://sachachua.com/blog/2023/10/emacsconf-backstage-using-e-mail-templates-for-confirmations-and-acceptances/ Sun, 01 Oct 2023 14:40:48 GMT emacsconf emacs https://sachachua.com/blog/2023/10/emacsconf-backstage-using-e-mail-templates-for-confirmations-and-acceptances/ We send a number of e-mails to speakers while coordinating EmacsConf. Here's a rough list of the standard e-mails:

    • confirmation that we've received their proposal and that we'll review it over the following week
    • acceptance
    • coordination with related talks
    • checking tentative schedule to see if people have any requests
    • instructions for uploading files
    • instructions for accessing the backstage area
    • confirmation that we've received their uploaded video
    • captions for review
    • miscellaneous todos
    • any large schedule changes
    • schedule confirmation and check-in instructions
    • thanks and resources
    • thanks and follow-up questions

    Sending e-mails from within Emacs makes it super-easy to automate, of course.

    I started off with putting e-mail templates in our public organizers' notebook because that made it easy to link to the drafts when asking other volunteers for feedback. As the templates settle down, I've been gradually moving some of them into our emacsconf-mail library so that I don't need to copy the template into each year's notebook.

    The e-mail templates use the same template functions we use to make the wiki pages. Here's the function for confirming that we've received a submission and letting the speaker know when to expect comments:

    emacsconf-mail-review: Let the speaker know we’ve received their proposal.
    (defun emacsconf-mail-review (talk)
      "Let the speaker know we've received their proposal."
      (interactive (list (emacsconf-complete-talk-info)))
      (emacsconf-mail-prepare '(:subject "${conf-name} ${year} review: ${title}"
                           :cc "emacsconf-submit@gnu.org"
                           :reply-to "emacsconf-submit@gnu.org, ${email}, ${user-email}"
                           :mail-followup-to "emacsconf-submit@gnu.org, ${email}, ${user-email}"
                           :body "
    Hi, ${speakers-short}!
    
    Thanks for submitting your proposal! (ZZZ TODO: feedback)
    
    We'll wait a week (~ ${notification-date}) in case the other volunteers want to chime in regarding your talk. =)
    
    ${signature}
    ")
                (plist-get talk :email)
                (list
                 :user-email user-mail-address
                 :signature user-full-name
                 :title (plist-get talk :title)
                 :email (plist-get talk :email)
                 :conf-name emacsconf-name
                 :speakers-short (plist-get talk :speakers-short)
                 :year emacsconf-year
                 :notification-date (plist-get talk :date-to-notify))))
    

    I recently extended emacsconf-mail-prepare so that it can insert the template into a reply instead of always starting a new message. This allows the messages to be properly threaded in the emacsconf-submit list archives, which makes it easier to verify that all the submissions have been acknowledged.

    emacsconf-mail-prepare: Prepare the e-mail following TEMPLATE. Send it to EMAIL.
    (defun emacsconf-mail-prepare (template email attrs)
      "Prepare the e-mail following TEMPLATE. Send it to EMAIL.
    Use ATTRS to fill in the template."
      (let ((fields '((:reply-to "Reply-To")
                      (:mail-followup-to "Mail-Followup-To")
                      (:cc "Cc"))))
        (if (and (derived-mode-p 'message-mode) (string-match "unsent mail" (buffer-name)))
            ;; add to headers
            (progn
              (when (plist-get template :subject)
                (message-replace-header
                 "Subject"
                 (format "%s (was %s)"
                         (emacsconf-replace-plist-in-string attrs (or (plist-get template :subject) ""))
                         (message-field-value "Subject"))))
              (mapc (lambda (field)
                      (when (plist-get template (car field))
                        (message-replace-header
                         (cadr field)
                         (concat (emacsconf-replace-plist-in-string attrs (plist-get template (car field)))
                                 (if (message-field-value (cadr field))
                                     (format
                                      (if (string= (cadr field) "Subject")
                                          " (was %s)"
                                        ", %s")
                                      (message-field-value (cadr field)))
                                   "")))))
                    fields))
          ;; compose a new message
          (compose-mail
           email
           (emacsconf-replace-plist-in-string attrs (or (plist-get template :subject) ""))
           (seq-keep (lambda (field)
                       (when (plist-get template (car field))
                         (cons
                          (cadr field)
                          (emacsconf-replace-plist-in-string
                           attrs
                           (plist-get template (car field))))))
                     fields))))
      (message-sort-headers)
      (message-goto-body)
      (save-excursion
        (insert (string-trim (emacsconf-replace-plist-in-string attrs (plist-get template :body)))
                "\n\n")
        (goto-char (point-min))
        (emacsconf-mail-merge-wrap)))
    

    There's a little function that I can add to message-send-hook to prevent me from sending a message if it still has ZZZ in it.

    emacsconf-mail-check-for-zzz-before-sending: Throw an error if the ZZZ todo marker is still in the message.
    (defun emacsconf-mail-check-for-zzz-before-sending ()
      "Throw an error if the ZZZ todo marker is still in the message.
    Good for adding to `message-send-hook'."
      (save-excursion
        (goto-char (point-min))
        (when (re-search-forward "ZZZ" nil t)
          (unless (yes-or-no-p "ZZZ marker found. Send anyway? ")
            (error "ZZZ marker found.")))))
    

    Here's the function for sending an acceptance letter:

    emacsconf-mail-accept-talk: Send acceptance letter.
    (defun emacsconf-mail-accept-talk (talk)
      "Send acceptance letter."
      (interactive (list (emacsconf-complete-talk-info)))
      (emacsconf-mail-prepare '(:subject "${conf-name} ${year} acceptance: ${title}"
                           :cc "emacsconf-submit@gnu.org"
                           :slugs nil
                           :reply-to "emacsconf-submit@gnu.org, ${email}, ${user-email}"
                           :mail-followup-to "emacsconf-submit@gnu.org, ${email}, ${user-email}"
                           :body
                           "
    Hi, ${speakers-short}!
    
    Looks like all systems are a go for your talk. Thanks for
    proposing it! Your talk page is now at ${url} . Please feel free
    to update it or e-mail us if you'd like help with any changes.${fill}
    
    If you want to get started on your talk early, we have some
    instructions at ${base}${year}/prepare/ that might help.
    We strongly encourage speakers to prepare a talk video by
    ${video-target-date} in order to reduce technical risks and make
    things flow more smoothly. Plus, we might be able to get it captioned
    by volunteers, just like the talks last year. We'll save ${time} minutes
    for your talk, not including time for Q&A. Don't sweat it if
    you're a few minutes over or under. If it looks like a much shorter or
    longer talk once you start getting into it, let us know and we might
    be able to adjust.${fill}
    
    I'll follow up with the specific schedule for your talk once things
    settle down. In the meantime, please let us know if you have any
    questions or if there's anything we can do to help out!
    
    ${signature}"
                           :function emacsconf-mail-accept-talk
                           :log-note "accepted talk")
       (plist-get talk :email)
       (list
        :base emacsconf-base-url
        :user-email user-mail-address
        :title (plist-get talk :title)
        :email (plist-get talk :email)
        :time (plist-get talk :time)
        :signature user-full-name
        :conf-name emacsconf-name
        :speakers-short (plist-get talk :speakers-short)
        :url (concat emacsconf-base-url (plist-get talk :url))
        :video-target-date emacsconf-video-target-date
        :year emacsconf-year)))
    

    We send confirmations and acceptances one at a time. Other e-mails are sent to all the speakers and it's easier to draft them in a batch. I'll cover that kind of mail merge in a separate post.

    ]]>
    #EmacsConf backstage: adding a talk to the wiki https://sachachua.com/blog/2023/09/emacsconf-backstage-adding-a-talk-to-the-wiki/ Tue, 26 Sep 2023 18:12:30 GMT emacsconf emacs https://sachachua.com/blog/2023/09/emacsconf-backstage-adding-a-talk-to-the-wiki/ The EmacsConf 2023 call for participation has finished, hooray! We've sent out acceptances and added talks to the wiki. We experimented with early acceptances this year, which was really nice because it gives people quick feedback and allows people to get started on their videos early. That meant that I needed to be able to easily add talks to the wiki throughout the call for participation. We use templates and an Ikiwiki directive to make it easier to consistently format talk pages. This post covers adding a talk to the wiki, and these functions are in the emacsconf-el repository.

    Overview

    Amin Bandali picked Ikiwiki for the wiki for emacsconf.org. I think it's because Ikiwiki works with plain text in a Git repository, which fits nicely with our workflow. I can use Emacs Lisp to generate files that are included in other files, and I can also use Emacs Lisp to generate the starting point for files that may be manually edited later on.

    We organize conference pages by year. Under the directory for this year (2023/), we have:

    talks
    talk descriptions that can be manually edited
    talks/SLUG.md
    the description for the talk. Includes ../info/SLUG-nav.md, ../info/SLUG-before.md, and ../info/SLUG-after.md
    info
    automatically-generated files that are included before and after the talk description, and navigation links between talks
    info/SLUG-nav.md
    navigation links
    info/SLUG-before.md
    navigation links
    info/SLUG-after.md
    navigation links
    schedule-details.md
    list of talks
    organizers-notebook/index.org
    public planning notebook

    The filenames and URLs for each talk are based on the ID for a talk. I store that in the SLUG property to make it easy to differentiate from CUSTOM_ID, since CUSTOM_ID is useful for lots of other things in Org Mode. I usually assign the slugs when I add the talks to our private conf.org file, although sometimes people suggest a specific ID.

    Templating

    Publishing to wiki pages and replying to e-mails are easier if I can substitute text into readable templates. There are a number of templating functions for Emacs Lisp, like the built-in tempo.el or s-lex-format from s.el. I ended up writing something that works with plists instead, since we use property lists (plists) all over the emacsconf-el library.

    emacsconf-replace-plist-in-string: Replace ${keyword} from ATTRS in STRING.
    (defun emacsconf-replace-plist-in-string (attrs string)
      "Replace ${keyword} from ATTRS in STRING."
      (let ((a attrs) name val)
        (while a
          (setq name (pop a) val (pop a))
          (when (stringp val)
            (setq string
                  (replace-regexp-in-string (regexp-quote (concat "${" (substring (symbol-name name) 1) "}"))
                                            (or val "")
                                            string t t))))
        string))
    

    It is also handy to be able to add text around another string only if the string is non-nil, and to provide a different string to use if it isn't specified..

    emacsconf-surround: Concat BEFORE, TEXT, and AFTER if TEXT is specified, or return ALTERNATIVE.
    (defun emacsconf-surround (before text after &optional alternative)
      "Concat BEFORE, TEXT, and AFTER if TEXT is specified, or return ALTERNATIVE."
      (if (and text (not (string= text "")))
          (concat (or before "") text (or after ""))
        alternative))
    

    Getting the talk information

    To get the data to fill in the template, we can run a bunch of different functions. This lets us add or remove functions when we need to. We pass the previous result to the next function in order to accumulate properties or modify them. The result is a property list for the current talk.

    emacsconf-get-talk-info-for-subtree: Run ‘emacsconf-talk-info-functions’ to extract the info for this entry.
    (defun emacsconf-get-talk-info-for-subtree ()
      "Run `emacsconf-talk-info-functions' to extract the info for this entry."
      (seq-reduce (lambda (prev val) (save-excursion (save-restriction (funcall val prev))))
                  emacsconf-talk-info-functions
                  nil))
    

    emacsconf-talk-info-functions: Functions to collect information.
    (defvar emacsconf-talk-info-functions
      '(emacsconf-get-talk-info-from-properties
        emacsconf-get-talk-categories
        emacsconf-get-talk-abstract-from-subtree
        emacsconf-get-talk-logbook
        emacsconf-add-talk-status
        emacsconf-add-checkin-time
        emacsconf-add-timezone-conversions
        emacsconf-add-speakers-with-pronouns
        emacsconf-add-live-info)
      "Functions to collect information.")
    

    Getting the talk abstract

    I add a *** Talk abstract subheading to the talk and put the rest of the submission under a *** Talk details subheading. This allows me to extract the text of the Talk abstract heading (or whatever matches emacsconf-abstract-heading-regexp, which is set to "abstract".).

    emacsconf-get-subtree-entry: Return the text for the subtree matching HEADING-REGEXP.
    (defun emacsconf-get-subtree-entry (heading-regexp)
      "Return the text for the subtree matching HEADING-REGEXP."
      (car
       (delq nil
             (org-map-entries
              (lambda ()
                (when (string-match heading-regexp (org-entry-get (point) "ITEM"))
                  (org-get-entry)))
              nil 'tree))))
    

    emacsconf-get-talk-abstract-from-subtree: Add the abstract from a subheading.
    (defun emacsconf-get-talk-abstract-from-subtree (o)
      "Add the abstract from a subheading.
    The subheading should match `emacsconf-abstract-heading-regexp'."
      (plist-put o :abstract (substring-no-properties (or (emacsconf-get-subtree-entry "abstract") ""))))
    

    I include emacsconf-get-talk-abstract-from-subtree in emacsconf-talk-info-functions so that it retrieves that information when I call emacsconf-get-talk-info-for-subtree.

    Publishing the talk page

    We add accepted talks to the wiki so that people can see what kinds of talks will be at EmacsConf 2023. To add the talk to the wiki, I use emacsconf-publish-add-talk. It'll create the talk page without overwriting anything that's already there and redo the automatically-generated info pages that provide navigation, status, and so on.

    emacsconf-publish-add-talk: Add the current talk to the wiki.
    (defun emacsconf-publish-add-talk ()
      "Add the current talk to the wiki."
      (interactive)
      (emacsconf-publish-talk-page (emacsconf-get-talk-info-for-subtree))
      (emacsconf-publish-info-pages)
      (magit-status-setup-buffer emacsconf-directory))
    

    The talk page includes the description and other resources.

    emacsconf-publish-talk-page: Draft the talk page for O unless the page already exists or FORCE is non-nil.
    (defun emacsconf-publish-talk-page (o &optional force)
      "Draft the talk page for O unless the page already exists or FORCE is non-nil."
      (interactive (list (emacsconf-get-talk-info-for-subtree)
                         (> (prefix-numeric-value current-prefix-arg) 1)))
      (let ((filename (expand-file-name (format "%s.md" (plist-get o :slug))
                                        (expand-file-name "talks" (expand-file-name emacsconf-year emacsconf-directory)))))
        (unless (file-directory-p (expand-file-name "talks" (expand-file-name emacsconf-year emacsconf-directory)))
          (mkdir (expand-file-name "talks" (expand-file-name emacsconf-year emacsconf-directory))))
        (when (or force (null (file-exists-p filename)))
          (with-temp-file filename
            (insert
             (emacsconf-replace-plist-in-string
              (emacsconf-convert-talk-abstract-to-markdown
               (append o (list
                          :speaker-info (emacsconf-publish-format-speaker-info o)
                          :meta "!meta"
                          :categories (if (plist-get o :categories)
                                          (mapconcat (lambda (o) (format "[[!taglink %s]]" o))
                                                     (plist-get o :categories)
                                                     " ")
                                        ""))))
              "[[${meta} title=\"${title}\"]]
    [[${meta} copyright=\"Copyright © ${year} ${speakers}\"]]
    [[!inline pages=\"internal(${year}/info/${slug}-nav)\" raw=\"yes\"]]
    
    <!-- Initially generated with emacsconf-publish-talk-page and then left alone for manual editing -->
    <!-- You can manually edit this file to update the abstract, add links, etc. --->\n
    
    # ${title}
    ${speaker-info}
    
    [[!inline pages=\"internal(${year}/info/${slug}-before)\" raw=\"yes\"]]
    
    ${abstract-md}
    
    [[!inline pages=\"internal(${year}/info/${slug}-after)\" raw=\"yes\"]]
    
    [[!inline pages=\"internal(${year}/info/${slug}-nav)\" raw=\"yes\"]]
    
    ${categories}
    "))))))
    

    Ikiwiki uses Markdown, so we can take advantage of Org's Markdown export.

    emacsconf-convert-talk-abstract-to-markdown: Set the :abstract-md property to a Markdown version of the abstract.
    (defun emacsconf-convert-talk-abstract-to-markdown (o)
      "Set the :abstract-md property to a Markdown version of the abstract."
      (plist-put o :abstract-md (org-export-string-as (or (plist-get o :abstract) "") 'md t)))
    

    Publishing the list of talks

    The list of talks at https://emacsconf.org/2023/talks/ is grouped by track.

    2023-09-26_14-00-19.png
    Figure 1: List of talks

    emacsconf-publish-schedule: Generate the schedule or program.
    (defun emacsconf-publish-schedule (&optional info)
      "Generate the schedule or program."
      (interactive)
      (emacsconf-publish-schedule-svg-snippets)
      (setq info (or info (emacsconf-publish-prepare-for-display info)))
      (with-temp-file (expand-file-name "schedule-details.md"
                                        (expand-file-name emacsconf-year emacsconf-directory))
        (insert
         (if (member emacsconf-publishing-phase '(cfp program))
             (let ((sorted (emacsconf-publish-prepare-for-display (or info (emacsconf-get-talk-info)))))
               (mapconcat
                (lambda (track)
                  (concat
                   "Jump to: "
                   ;; links to other tracks
                   (string-join (seq-keep (lambda (track-link)
                                            (unless (string= (plist-get track-link :id)
                                                             (plist-get track :id))
                                              (format "<a href=\"#%s\">%s</a>"
                                                      (plist-get track-link :id)
                                                      (plist-get track-link :name))))
                                          emacsconf-tracks)
                                " | ")
                   "\n\n"
                   (let ((track-talks (seq-filter (lambda (o) (string= (plist-get o :track)
                                                                       (plist-get track :name)))
                                                  sorted)))
                     (format
                      "<h1 id=\"%s\" class=\"sched-track %s\">%s (%d talks)</h1>\n%s"
                      (plist-get track :id)
                      (plist-get track :name)
                      (plist-get track :name)
                      (length track-talks)
                      (emacsconf-publish-format-main-schedule track-talks)))))
                emacsconf-tracks "\n\n"))
           (emacsconf-publish-format-interleaved-schedule info))))
      (when (member emacsconf-publishing-phase '(cfp program))
        (with-temp-file (expand-file-name
                         "draft-schedule.md"
                         (expand-file-name emacsconf-year emacsconf-directory))
          (insert
           "[[!sidebar content=\"\"]]\n\n" 
           "This is a *DRAFT* schedule.\n"
           (let ((emacsconf-publishing-phase 'schedule))
             (emacsconf-publish-format-interleaved-schedule info))))))
    

    The emacsconf-format-main-schedule function displays the information for the talks in each track. It's pretty straightforward, but I put it in a function because I call it from a number of places.

    emacsconf-publish-format-main-schedule: Include the schedule information for INFO.
    (defun emacsconf-publish-format-main-schedule (info)
      "Include the schedule information for INFO."
      (mapconcat #'emacsconf-publish-sched-directive info "\n"))
    

    We define an Ikiwiki sched directive that conditionally displays things depending on what we specify, so it's easy to add more information during the schedule or conference phase. This is templates/sched.md in the EmacsConf wiki git repository:

    <div data-start="<TMPL_VAR startutc>" data-end="<TMPL_VAR endutc>" class="sched-entry <TMPL_IF track>track-<TMPL_VAR track></TMPL_IF track>">
    <div class="sched-meta">
    <TMPL_IF start>
    <span class="sched-time"><span class="sched-start"><TMPL_VAR start></span>
    <TMPL_IF end> - <span class="sched-end"><TMPL_VAR end></span></TMPL_IF end>
    </span></TMPL_IF start>
    <TMPL_IF track> <span class="sched-track <TMPL_VAR track>"><TMPL_IF watch><a href="<TMPL_VAR watch>"></TMPL_IF><TMPL_VAR track><TMPL_IF watch></a></TMPL_IF></span></TMPL_IF track>
    <TMPL_IF pad> <span class="sched-pad"><a href="<TMPL_VAR pad>">Etherpad</a></TMPL_IF pad>
    <TMPL_IF q-and-a> <span class="sched-q-and-a">Q&amp;A: <TMPL_VAR q-and-a></span> </TMPL_IF q-and-a>
    </div>
    <div class="sched-title"><a href="<TMPL_VAR url>"><TMPL_VAR title></a></div>
    <div class="sched-speakers"><TMPL_VAR speakers> <TMPL_IF note>- <TMPL_VAR note></TMPL_IF note></div>
    <TMPL_IF resources>
    <ul class="resources">
    <TMPL_VAR resources>
    </ul>
    </TMPL_IF resources>
    <TMPL_IF time><span class="sched-duration><TMPL_VAR time></span> minutes</TMPL_IF time>
    <TMPL_IF slug> <span class="sched-slug">id:<TMPL_VAR slug></span></TMPL_IF slug>
    </div>
    

    This Emacs Lisp function converts a talk into that directive.

    emacsconf-publish-sched-directive: Format the schedule directive with info for O.
    (defun emacsconf-publish-sched-directive (o)
      "Format the schedule directive with info for O."
      (format "[[!template id=sched%s]]"
              (let ((result "")
                    (attrs (append
                            (pcase emacsconf-publishing-phase
                              ('program
                               (list
                                :time (plist-get o :time)))
                              ((or 'schedule 'conference)
                               (list
                                :status (pcase (plist-get o :status)
                                          ("CAPTIONED" "captioned")
                                          ("PREREC_RECEIVED" "received")
                                          ("DONE" "done")
                                          ("STARTED" "now playing")
                                          (_ nil))
                                :time (plist-get o :time)
                                :q-and-a (plist-get o :qa-link) 
                                :pad (and emacsconf-publish-include-pads (plist-get o :pad-url))
                                :startutc (format-time-string "%FT%T%z" (plist-get o :start-time) t)
                                :endutc (format-time-string "%FT%T%z" (plist-get o :end-time) t)
                                :start (format-time-string "%-l:%M" (plist-get o :start-time) emacsconf-timezone)
                                :end (format-time-string "%-l:%M" (plist-get o :end-time) emacsconf-timezone)))
                              ('resources
                               (list
                                :pad nil
                                :channel nil
                                :resources (mapconcat (lambda (s) (concat "<li>" s "</li>"))
                                                      (emacsconf-link-file-formats-as-list
                                                       (append o
                                                               (list :base-url (format "%s%s/" emacsconf-media-base-url emacsconf-year)))
                                                       (append emacsconf-main-extensions (list "--answers.webm" "--answers.opus" "--answers.vtt")))
                                                      ""))))
                            (list
                             :title (plist-get o :title)
                             :url (concat "/" (plist-get o :url))
                             :speakers (plist-get o :speakers)
                             :track (if (member emacsconf-publishing-phase '(schedule conference)) (plist-get o :track))
                             :watch (plist-get o :watch-url)
                             :slug (plist-get o :slug)
                             :note
                             (string-join
                              (delq nil
                                    (list
                                     (when (plist-get o :captions-edited)
                                       "captioned")
                                     (when (and (plist-get o :public)
                                                (or (plist-get o :toobnix-url)
                                                    (plist-get o :video-file)))
                                       "video posted")))
                              ", ")
                             )
                            )))
                (while attrs
                  (let ((field (pop attrs))
                        (val (pop attrs)))
                    (when val
                      (setq result (concat result " " (substring (symbol-name field) 1) "=\"\"\"" val "\"\"\"")))))
                result)))
    

    Publishing auto-generated navigation

    It's nice to be able to navigate between talks without going back to the schedule page each time. This is handled by just keeping two extra copies of the list: one with the first talk popped off, and one with an extra element added to the beginning. Then we can use the heads of those lists for next/previous links.

    2023-09-26_14-05-51.png
    Figure 2: Navigation

    emacsconf-publish-nav-pages: Generate links to the next and previous talks.
    (defun emacsconf-publish-nav-pages (&optional talks)
      "Generate links to the next and previous talks.
    During the schedule and conference phase, the talks are sorted by time.
    Otherwise, they're sorted by track and then schedule."
      (interactive (list (emacsconf-publish-prepare-for-display (or emacsconf-schedule-draft (emacsconf-get-talk-info)))))
      (let* ((next-talks (cdr talks))
             (prev-talks (cons nil talks))
             (label (if (member emacsconf-publishing-phase '(schedule conference))
                        "time"
                      "track")))
        (unless (file-directory-p (expand-file-name "info" (expand-file-name emacsconf-year emacsconf-directory)))
          (mkdir (expand-file-name "info" (expand-file-name emacsconf-year emacsconf-directory))))
        (while talks
          (let* ((o (pop talks))
                 (next-talk (emacsconf-format-talk-link (pop next-talks)))
                 (prev-talk (emacsconf-format-talk-link (pop prev-talks))))
            (with-temp-file (expand-file-name (format "%s-nav.md" (plist-get o :slug))
                                              (expand-file-name "info" (expand-file-name emacsconf-year emacsconf-directory)))
              (insert (concat "\n<div class=\"talk-nav\">
    Back to the [[talks]]  \n"
                              (if prev-talk (format "Previous by %s: %s  \n" label prev-talk) "")
                              (if next-talk (format "Next by %s: %s  \n" label next-talk) "")
                              (if (plist-get o :track) ; tagging doesn't work here because ikiwiki will list the nav page
                                  (format "Track: <span class=\"sched-track %s\">%s</span>  \n" (plist-get o :track) (plist-get o :track))
                                "")
                              "</div>
    ")))))))
    

    Before the talk description

    We include some details about the schedule in the talk page, before the description.

    2023-09-26_14-09-07.png
    Figure 3: Description

    emacsconf-publish-before-page: Generate the page that has the info included before the abstract.
    (defun emacsconf-publish-before-page (talk &optional info)
      "Generate the page that has the info included before the abstract.
    This includes the intro note, the schedule, and talk resources."
      (interactive (list (emacsconf-complete-talk-info)))
      (setq info (or info (emacsconf-publish-prepare-for-display (emacsconf-get-talk-info))))
      (with-temp-file (expand-file-name (format "%s-before.md" (plist-get talk :slug))
                                        (expand-file-name "info" (expand-file-name emacsconf-year emacsconf-directory)))
        
        (insert "<!-- Automatically generated by emacsconf-publish-before-page -->\n")
        (insert (emacsconf-surround "" (plist-get talk :intro-note) "\n\n" ""))
        (let ((is-live (emacsconf-talk-live-p talk)))
          (when is-live (emacsconf-publish-captions-in-wiki talk))
          (when (member emacsconf-publishing-phase '(schedule conference))
            (insert (emacsconf-publish-format-talk-schedule-image talk info)))
          (insert (emacsconf-publish-format-talk-schedule-info talk) "\n\n")
          (insert
           (if (plist-get talk :public) (emacsconf-wiki-talk-resources talk) "")
           "\n# Description\n"))
        (insert "<!-- End of emacsconf-publish-before-page -->")))
    

    emacsconf-publish-format-talk-schedule-info: Format schedule information for O.
    (defun emacsconf-publish-format-talk-schedule-info (o)
      "Format schedule information for O."
      (let ((friendly (concat "/" emacsconf-year "/talks/" (plist-get o :slug) ))
            (timestamp (org-timestamp-from-string (plist-get o :scheduled))))
        (emacsconf-replace-plist-in-string
         (append o
                 (list
                  :format
                  (concat (or (plist-get o :video-time)
                              (plist-get o :time))
                          "-min talk"
                          (if (plist-get o :q-and-a)
                              (format " followed by %s Q&A%s"
                                      (plist-get o :q-and-a)
                                      (if (eq emacsconf-publishing-phase 'conference)
                                          (format " (%s)"
                                                  (if (string-match "live" (plist-get o :q-and-a))
                                                      (if (eq 'after (emacsconf-bbb-status o))
                                                          "done"
                                                        (format "<https://emacsconf.org/current/%s/room>" (plist-get o :slug)))
                                                    (emacsconf-publish-webchat-link o)))
                                        ""))
                            ""))
                  :pad-info
                  (if emacsconf-publish-include-pads
                      (format "Etherpad: <https://pad.emacsconf.org/%s-%s>  \n" emacsconf-year (plist-get o :slug))
                    "")
                  :irc-info
                  (format "Discuss on IRC: [#%s](%s)  \n" (plist-get o :channel)
                          (plist-get o :webchat-url))
                  :status-info
                  (if (member emacsconf-publishing-phase '(cfp program schedule conference)) (format "Status: %s  \n" (plist-get o :status-label)) "")
                  :schedule-info
                  (if (and (member emacsconf-publishing-phase '(schedule conference))
                           (not (emacsconf-talk-all-done-p o))
                           (not (string= (plist-get o :status) "CANCELLED")))
                      (let ((start (org-timestamp-to-time (org-timestamp-split-range timestamp)))
                            (end (org-timestamp-to-time (org-timestamp-split-range timestamp t))))
                        (format
                         "<div>Times in different timezones:</div><div class=\"times\" start=\"%s\" end=\"%s\"><div class=\"conf-time\">%s</div><div class=\"others\"><div>which is the same as:</div>%s</div></div><div><a href=\"/%s/watch/%s/\">Find out how to watch and participate</a></div>"
                         (format-time-string "%Y-%m-%dT%H:%M:%SZ" start t)
                         (format-time-string "%Y-%m-%dT%H:%M:%SZ" end t)
                         (emacsconf-timezone-string o emacsconf-timezone)
                         (string-join (emacsconf-timezone-strings
                                       o
                                       (seq-remove (lambda (zone) (string= emacsconf-timezone zone))
                                                   emacsconf-timezones)) "<br />")
                         emacsconf-year
                         (plist-get (emacsconf-get-track (plist-get o :track)) :id)))
                    "")))
         (concat
          "[[!toc  ]]
    Format: ${format}  
    ${pad-info}${irc-info}${status-info}${schedule-info}\n" 
          (if (plist-get o :alternate-apac)
              (format "[[!inline pages=\"internal(%s/inline-alternate)\" raw=\"yes\"]]  \n" emacsconf-year)
            "")
          "\n"))))
    

    After the talk description

    After the talk description, we include a footer that makes it easier for people to e-mail questions using either the PUBLIC_EMAIL property of the talk or the emacsconf-org-private e-mail address.

    2023-09-26_14-10-35.png

    emacsconf-publish-format-email-questions-and-comments: Invite people to e-mail either the public contact for TALK or the private list.
    (defun emacsconf-publish-format-email-questions-and-comments (talk)
      "Invite people to e-mail either the public contact for TALK or the private list."
      (format "Questions or comments? Please e-mail %s"
              (emacsconf-publish-format-public-email talk
                                             (or
                                              (and (string= (plist-get talk :public-email) "t")
                                                   (plist-get talk :email))
                                              (plist-get talk :public-email)
                                              "emacsconf-org-private@gnu.org"))))
    

    emacsconf-publish-after-page: Generate the page with info included after the abstract.
    (defun emacsconf-publish-after-page (talk &optional info)
      "Generate the page with info included after the abstract.
    This includes captions, contact, and an invitation to participate."
      (interactive (list (emacsconf-complete-talk-info)))
      ;; Contact information
      (with-temp-file (expand-file-name (format "%s-after.md" (plist-get talk :slug))
                                        (expand-file-name "info" (expand-file-name emacsconf-year emacsconf-directory)))
        (insert
         "<!-- Automatically generated by emacsconf-publish-after-page -->\n"
         "\n\n"
         ;; main transcript
         (if (plist-get talk :public) (emacsconf-publish-format-captions talk) "")
         (emacsconf-publish-format-email-questions-and-comments talk) "\n"
         (if (eq emacsconf-publishing-phase 'cfp)
             (format "\n----\nGot an idea for an EmacsConf talk or session? We'd love to hear from you! Check out the [[Call for Participation|/%s/cfp]] for details.\n" emacsconf-year)
           "")
         "\n\n<!-- End of emacsconf-publish-after-page -->\n")))
    

    Whenever the schedule changes

    This function makes it easier to regenerate all those dynamic pages that need to be updated whenever the schedule changes.

    emacsconf-publish-info-pages: Populate year/info/*-nav, -before, and -after files.
    (defun emacsconf-publish-info-pages (&optional info)
      "Populate year/info/*-nav, -before, and -after files."
      (interactive (list nil))
      (setq info (or info (emacsconf-publish-prepare-for-display info)))
      (emacsconf-publish-with-wiki-change
        (emacsconf-publish-nav-pages info)
        (emacsconf-publish-schedule info)
        (mapc (lambda (o)
                (emacsconf-publish-before-page o info)
                (emacsconf-publish-after-page o info))
              info)))
    

    Summary

    So once the review period has passed and we're ready to accept the talk, I change the status to WAITING_FOR_PREREC and find room for it in the schedule. Then I use emacsconf-publish-add-talk to add the talk description to the wiki. I review the files it generated, tweak hyperlinks as needed, add the pages to the Git repository, and push the commit to the server. If I rearrange talks or change times, I just need to run emacsconf-publish-info-pages and all the dynamically-generated pages will be updated.

    ]]>
    Org protocol: following Org links from outside Emacs https://sachachua.com/blog/2023/09/org-protocol-following-org-links-from-outside-emacs/ Tue, 26 Sep 2023 13:42:45 GMT org emacs https://sachachua.com/blog/2023/09/org-protocol-following-org-links-from-outside-emacs/ _xor had an interesting idea: can we use org-protocol to link to things inside Emacs, so that we can have a webpage with bookmarks into our Org files? Here's a quick hack that reuses org-store-link and org-link-open.

    (defun org-protocol-open-link (info)
      "Process an org-protocol://open style url with INFO."
      (org-link-open (car (org-element-parse-secondary-string (plist-get info :link) '(link)))))
    
    (defun org-protocol-copy-open-link (arg)
      (interactive "P")
      (kill-new (concat "org-protocol://open?link=" (url-hexify-string (org-store-link arg)))))
    
    (with-eval-after-load 'org
      (add-to-list 'org-protocol-protocol-alist
                   '("org-open" :protocol "open" :function org-protocol-open-link)))
    

    To make exporting and following easier, we also need a little code to handle org-protocol links inside Org.

    (defun org-protocol-follow (path &rest _)
      "Follow the org-protocol link for PATH."
      (org-protocol-check-filename-for-protocol (concat "org-protocol:" path) nil nil))
    
    (defun org-protocol-export (path desc format info)
      "Export an org-protocol link."
      (setq path (concat "org-protocol:" path))
      (setq desc (or desc path))
      (pcase format
        (`html (format "<a href=\"%s\">%s</a>" path desc))
        (`11ty (format "<a href=\"%s\">%s</a>" path desc))
        (`latex (org-latex-link path desc info))
        (`ascii (org-ascii-link path desc info))
        (`md (org-md-link path desc info))
        (_ path)))
    
    (with-eval-after-load 'org
      (org-link-set-parameters "org-protocol"
                               :follow #'org-protocol-follow
                               :export #'org-protocol-export))
    

    Now I can use org-protocol-copy-open-link to copy a link to the current location, and I can put it into my Org files.

    Example bare link to the Org manual, which will work only if you have open in the org-protocol-protocol-alist:

    org-protocol://open?link=%5B%5Binfo%3Aorg%23Protocols%5D%5Borg%23Protocols%5D%5D

    With a description:

    Org manual - Protocols

    This is part of my Emacs configuration.
    ]]>
    2023-09-25 Emacs news https://sachachua.com/blog/2023/09/2023-09-25-emacs-news/ Mon, 25 Sep 2023 12:40:11 GMT emacs emacs-news https://sachachua.com/blog/2023/09/2023-09-25-emacs-news/
  • Upcoming events:
  • Beginner:
  • Emacs configuration:
  • Emacs Lisp:
  • Appearance:
  • Navigation:
  • TRAMP:
  • Writing:
  • Org Mode:
  • Completion:
  • Coding:
  • Shells:
  • Mail, news, and chat:
  • Multimedia:
  • Fun:
  • AI:
  • Community:
  • Other:
  • Emacs development:
  • New packages:
    • aiken-mode: Major mode for Aiken (MELPA)
    • asyncloop: Non-blocking series of functions (MELPA)
    • llm: Interface to pluggable llm backends (GNU ELPA)
    • tam: Manage use of slots in a fixed size table (GNU ELPA)
    • universal-sidecar-elfeed-score: Show Elfeed Score information in sidecar (MELPA)
  • Links from reddit.com/r/emacs, r/orgmode, r/spacemacs, r/planetemacs, Hacker News, lobste.rs, kbin, programming.dev, communick.news, lemmy, planet.emacslife.com, YouTube, the Emacs NEWS file, Emacs Calendar, and emacs-devel. Thanks to Andrés Ramírez for emacs-devel links. Do you have an Emacs-related link or announcement? Please e-mail me at sacha@sachachua.com. Thank you!

    ]]>
    2023-09-18 Emacs news https://sachachua.com/blog/2023/09/2023-09-18-emacs-news/ Mon, 18 Sep 2023 13:02:02 GMT emacs emacs-news https://sachachua.com/blog/2023/09/2023-09-18-emacs-news/
  • Upcoming events:
  • Emacs configuration:
  • Emacs Lisp:
  • Appearance:
  • Navigation:
  • Dired:
  • Org Mode:
  • Completion:
  • Coding:
  • Mail, news, and chat:
  • Fun:
  • AI:
  • Community:
  • Other:
  • Emacs development:
  • New packages:
    • cybercafe-theme: Cybercafe color theme (MELPA)
    • eask: Core Eask APIs, for Eask CLI development (MELPA)
    • graphql-ts-mode: Tree-sitter support for GraphQL (MELPA)
    • helm-comint: Comint prompt navigation for helm (MELPA)
    • iota: Replace marker with increasing integers (MELPA)
    • llama-cpp: A client for llama-cpp server (MELPA)
    • mistty: Shell/Comint alternative based on term.el (MELPA)
    • nushell-ts-mode: Tree-sitter support for Nushell (MELPA)
    • slint-mode: Major-mode for the Slint UI language (MELPA)
    • universal-sidecar: A universal sidecar buffer (MELPA)
    • wat-ts-mode: Major mode for webassembly text format (MELPA)
  • Links from reddit.com/r/emacs, r/orgmode, r/spacemacs, r/planetemacs, Hacker News, lobste.rs, kbin, programming.dev, communick.news, lemmy, planet.emacslife.com, YouTube, the Emacs NEWS file, Emacs Calendar, and emacs-devel. Thanks to Andrés Ramírez for emacs-devel links. Do you have an Emacs-related link or announcement? Please e-mail me at sacha@sachachua.com. Thank you!

    ]]>
    EmacsConf backstage: making it easier to do talk-specific actions https://sachachua.com/blog/2023/09/emacsconf-backstage-making-it-easier-to-do-talk-specific-actions/ Wed, 13 Sep 2023 12:53:35 GMT emacs emacsconf https://sachachua.com/blog/2023/09/emacsconf-backstage-making-it-easier-to-do-talk-specific-actions/ During an EmacsConf talk, we:

    • copy the talk overlay images and use them in the streaming software (OBS)
    • play videos
      • a recorded introduction if it exists
      • any extra videos we want to play
      • the main talk
    • and open up browser windows
      • the BigBlueButton web conference room for a live Q&A session
      • the talk's Etherpad collaborative document for questions
      • the Internet Relay Chat channel, if that's where the speaker wants to handle questions

    To minimize the work involved in copying and pasting filenames and URLs, I wanted to write scripts that could perform the right action given the talk ID. I automated most of it so that it could work from Emacs Lisp, and I also wrote shell scripts so that I (or someone else) could run the appropriate commands from the terminal.

    The shell scripts are in the emacsconf-ansible repository and the Emacs Lisp functions are in emacsconf-stream.el.

    Change the image overlay

    We display the conference logo, talk title, and speaker name on the screen while the video is playing. This is handled with an OBS scene that includes whatever image is at ~/video.png or ~/other.png, since that results in a nicer display than using text in OBS. I'll go into how we make the overlay images in a different blog post. This post focuses on including the right image, which is just a matter of copying the right file over ~/video.png.

    sat-open-video.png
    Figure 1: Sample overlay file
    2023-09-12_10-52-07.png
    Figure 2: OBS scene with the overlay

    This is copied by set-overlay.

    FILE=$1
    if [[ ! -f $FILE ]]; then
        LIST=(/data/emacsconf/assets/stream/emacsconf-[0-9][0-9][0-9][0-9]-$FILE*.webm)
        FILE="${LIST[0]}"
        BY_SLUG=1
    fi
    shift
    SLUG=$(echo "$FILE" | perl -ne 'if (/^emacsconf-[0-9]*-(.*?)--/) { print $1; } else { print; }')
    if [[ -f /data/emacsconf/assets/overlays/$SLUG-other.png ]]; then
        echo "Found other overlay for $SLUG, copying"
        cp /data/emacsconf/assets/overlays/$SLUG-other.png ~/other.png
    else
        echo "Could not find /data/emacsconf/assets/overlays/$SLUG-other.png, please override ~/other.png manually"
        cp /data/emacsconf/assets/overlays/blank-other.png ~/other.png
    fi
    if [[ -f /data/emacsconf/assets/overlays/$SLUG-video.png ]]; then
        echo "Found video overlay for $SLUG, copying"
        cp /data/emacsconf/assets/overlays/$SLUG-video.png ~/video.png
    else
        echo "Could not find /data/emacsconf/assets/overlays/$SLUG-video.png, override ~/video.png manually"
        cp /data/emacsconf/assets/overlays/blank-video.png ~/video.png
    fi
    

    set-overlay is called by the Emacs Lisp function emacsconf-stream-set-overlay:

    emacsconf-stream-set-overlay: Reset the overlay for TALK, just in case.
    (defun emacsconf-stream-set-overlay (talk)
      "Reset the overlay for TALK, just in case.
    With a prefix argument (\\[universal-argument]), clear the overlay."
      (interactive (list
                    (if current-prefix-arg
                        (emacsconf-complete-track)
                      (emacsconf-complete-talk-info))))
      (emacsconf-stream-track-ssh
       (emacsconf-get-track talk)
       "overlay"
       (if current-prefix-arg
           "blank"
         (plist-get talk :slug))))
    

    Play the intro video or display the intro slide

    buttons.png
    Figure 3: Sample intro slide

    We wanted to display the talk titles, speaker names, and URLs for both the previous talk and the next talk. We generated all the intro slides, and then as time permitted, we recorded introduction videos so that we could practise saying people's names instead of panicking during a full day. Actually generating the intro slide or video is a topic for another blog post. This post just focuses on playing the appropriate video or displaying the right image, which is handled by the intro script.

    #!/bin/bash
    # 
    # Kill the background music if playing
    if screen -list | grep -q background; then
        screen -S background -X quit
    fi
    # Update the overlay
    SLUG=$1
    FILE=$1
    if [[ ! -f $FILE ]]; then
        LIST=(/data/emacsconf/assets/stream/emacsconf--$FILE--*.webm)
        FILE="${LIST[0]}"
        BY_SLUG=1
    else
        SLUG=$(echo "$FILE" | perl -ne 'if (/emacsconf-[0-9]*-(.*?)--/) { print $1; } else { print; }')
    fi
    shift
    overlay $SLUG
    if [[ -f /data/emacsconf/assets/intros/$SLUG.webm ]]; then
      mpv /data/emacsconf/assets/intros/$SLUG.webm
    else
      firefox /data/emacsconf/assets/in-between/$SLUG.png
    fi
    

    This is easy to call from Emacs Lisp.

    emacsconf-stream-play-intro: Play the recorded intro or display the in-between slide for TALK.
    (defun emacsconf-stream-play-intro (talk)
      "Play the recorded intro or display the in-between slide for TALK."
      (interactive (list (emacsconf-complete-talk-info)))
      (setq talk (emacsconf-resolve-talk talk))
      (emacsconf-stream-track-ssh talk "nohup" "intro" (plist-get talk :slug)))
    

    Play just the video

    Sometimes we might need to restart a video without playing the introduction again. The ready-to-stream videos are all in one directory following the naming convention emacsconf-year-slug--title--speakers--main.webm. We update the --main.webm video as we go through the process of reencoding the video, normalizing sound, and adding captions. We can play the latest video by doing a wildcard match based on the slug.

    roles/obs/templates/play

    #!/bin/bash
    # Play intro if recorded, then play files
    # 
    
    # Kill the background music if playing
    if screen -list | grep -q background; then
        screen -S background -X quit
    fi
    
    # Update the overlay
    FILE=$1
    if [[ ! -f $FILE ]]; then
        LIST=(/data/emacsconf/assets/stream/emacsconf--$FILE*--main.webm)
        FILE="${LIST[0]}"
        BY_SLUG=1
    fi
    shift
    SLUG=$(echo "$FILE" | perl -ne 'if (/emacsconf-[0-9]*-(.*?)--/) { print $1; } else { print; }')
    overlay $SLUG
    mpv $FILE $* &
    

    emacsconf-stream-play-video: Play just the video for TALK.
    (defun emacsconf-stream-play-video (talk)
      "Play just the video for TALK."
      (interactive (list (emacsconf-complete-talk-info)))
      (setq talk (emacsconf-resolve-talk talk))
      (emacsconf-stream-track-ssh
       talk "nohup" "play" (plist-get talk :slug)))
    

    Play the intro and then the video

    The easiest way to go through a talk is to play the introduction and the video without further manual intervention. This shell script updates the overlay, plays the intro if available, and then continues with the video.

    roles/obs/templates/play-with-intro

    #!/bin/bash
    # Play intro if recorded, then play files
    # 
    
    # Kill the background music if playing
    if screen -list | grep -q background; then
        screen -S background -X quit
    fi
    
    # Update the overlay
    FILE=$1
    if [[ ! -f $FILE ]]; then
        LIST=(/data/emacsconf/assets/stream/emacsconf--$FILE*.webm)
        FILE="${LIST[0]}"
        BY_SLUG=1
    fi
    shift
    SLUG=$(echo "$FILE" | perl -ne 'if (/emacsconf-[0-9]*-(.*?)--/) { print $1; } else { print; }')
    overlay $SLUG
    # Play the video
    if [[ -f /data/emacsconf/assets/intros/$SLUG.webm ]]; then
        intro $SLUG
    fi
    mpv $FILE $* &
    

    Along the lines of minimizing manual work, this more complex Emacs Lisp function considers different combinations of intros and talks:

      Recorded intro Live intro
    Recorded talk automatically play both show intro slide; remind host to play video
    Live talk play intro; host joins BBB join BBB room automatically

    emacsconf-stream-play-talk-on-change: Play the talk.
    (defun emacsconf-stream-play-talk-on-change (talk)
      "Play the talk."
      (interactive (list (emacsconf-complete-talk-info)))
      (setq talk (emacsconf-resolve-talk talk))
      (when (or (not (boundp 'org-state)) (string= org-state "PLAYING"))
        (if (plist-get talk :stream-files)
            (progn
              (emacsconf-stream-track-ssh
               talk
               "overlay"
               (plist-get talk :slug))
              (emacsconf-stream-track-ssh
               talk
               (append
                (list
                 "nohup"
                 "mpv")
                (split-string-and-unquote (plist-get talk :stream-files))
                (list "&"))))
          (emacsconf-stream-track-ssh
           talk
           (cons
            "nohup"
            (cond
             ((and
               (plist-get talk :recorded-intro)
               (plist-get talk :video-file)) ;; recorded intro and recorded talk
              (message "should automatically play intro and recording")
              (list "play-with-intro" (plist-get talk :slug))) ;; todo deal with stream files
             ((and
               (plist-get talk :recorded-intro)
               (null (plist-get talk :video-file))) ;; recorded intro and live talk; play the intro and join BBB
              (message "should automatically play intro; join %s" (plist-get talk :bbb-backstage))
              (list "intro" (plist-get talk :slug)))
             ((and
               (null (plist-get talk :recorded-intro))
               (plist-get talk :video-file)) ;; live intro and recorded talk, show slide and use Mumble; manually play talk
              (message "should show intro slide; play %s afterwards" (plist-get talk :slug))
              (list "intro" (plist-get talk :slug)))
             ((and
               (null (plist-get talk :recorded-intro))
               (null (plist-get talk :video-file))) ;; live intro and live talk, join the BBB
              (message "join %s for live intro and talk" (plist-get talk :bbb-backstage))
              (list "bbb" (plist-get talk :slug)))))))))
    

    Open the Etherpad

    We used Etherpad collaborative documents to collect people's questions during the conference. I made an index page that linked to the Etherpads for the different talks so that I could open it in the browser used for streaming.

    2023-09-13_08-44-52.png
    Figure 4: Backstage index

    I also had an Emacs Lisp function that opened up the pad in the appropriate stream.

    emacsconf-stream-open-pad: Open the Etherpad collaborative document for TALK.
    (defun emacsconf-stream-open-pad (talk)
      "Open the Etherpad collaborative document for TALK."
      (interactive (list (emacsconf-complete-talk-info)))
      (setq talk (emacsconf-resolve-talk talk))
      (emacsconf-stream-track-ssh
       talk
       "nohup"
       "firefox"
       (plist-get talk :pad-url)))
    

    I think I'll add a shell script to make it more consistent, too.

    roles/obs/templates/pad

    #!/bin/bash
    # Display the Etherpad collaborative document
    # 
    
    # Update the overlay
    SLUG=$1
    overlay $SLUG
    firefox https://pad.emacsconf.org/-$SLUG
    

    Open the Big Blue Button web conference

    Most Q&A sessions are done live through a BigBlueButton web conference. We use redirects to make it easier to go to the talk URL. Backstage redirects are protected by a username and password which is shared with volunteers and saved in the browser used for streaming.

    roles/obs/templates/bbb

    #!/bin/bash
    # Open the Big Blue Button room using the backstage link
    # 
    
    # Kill the background music if playing
    if screen -list | grep -q background; then
        screen -S background -X quit
    fi
    
    # Update the overlay
    SLUG=$1
    overlay $SLUG
    firefox https://media.emacsconf.org//backstage/current/room/$SLUG
    

    Public redirect URLs start off with a refresh loop and then are overwritten with a redirect to the actual page when the host is okay with opening up the Q&A for general participation. This is done by changing the TODO status of the talk from CLOSED_Q to OPEN_Q.

    emacsconf-publish-bbb-redirect: Update the publicly-available redirect for TALK.
    (defun emacsconf-publish-bbb-redirect (talk &optional status)
      "Update the publicly-available redirect for TALK."
      (interactive (list (emacsconf-complete-talk-info)))
      (let ((bbb-filename (expand-file-name (format "bbb-%s.html" (plist-get talk :slug))
                                            emacsconf-publish-current-dir))
            (bbb-redirect-url (concat "https://media.emacsconf.org/" emacsconf-year "/current/bbb-" (plist-get talk :slug) ".html"))
            (status (or status (emacsconf-bbb-status (if (boundp 'org-state) (append (list :status org-state) talk) talk)))))
        (with-temp-file bbb-filename
          (insert
           (emacsconf-replace-plist-in-string
            (append talk (list :base-url emacsconf-base-url :bbb-redirect-url bbb-redirect-url))
            (pcase status
              ('open
               "<html><head><meta http-equiv=\"refresh\" content=\"0; URL=${bbb-room}\"></head><body>
    The live Q&A room for ${title} is now open. You should be redirected to <a href=\"${bbb-room}\">${bbb-room}</a> automatically, but if not, please visit the URL manually to join the Q&A.</body></html>")
              ('before
               "<html><head><meta http-equiv=\"refresh\" content=\"5; URL=${bbb-redirect-url}\"></head><body>
    The Q&A room for ${title} is not yet open. This page will refresh every 5 seconds until the BBB room is marked as open, or you can refresh it manually.</body></html>")
              ('after
               "<html><head><body>
    The Q&A room for ${title} has finished. You can find more information about the talk at <a href=\"${base-url}${url}\">${base-url}${url}</a>.</body></html>")
              (_
               "<html><head><body>
    There is no live Q&A room for ${title}. You can find more information about the talk at <a href=\"${base-url}${url}\">${base-url}${url}</a>.</body></html>"
               )))))))
    

    Open up the stream chat

    The IRC chat is the same for the whole track instead of changing for each talk. Since we might close the window, it's useful to be able to quickly open it again.

    emacsconf-stream-join-chat: Join the IRC chat for TALK.
    (defun emacsconf-stream-join-chat (talk)
      "Join the IRC chat for TALK."
      (interactive (list (emacsconf-complete-talk-info)))
      (setq talk (emacsconf-resolve-talk talk))
      (emacsconf-stream-track-ssh
       talk
       "nohup"
       "firefox"
       (plist-get talk :webchat-url)))
    

    Set up for the right Q&A type

    An Emacs Lisp function makes it easier to do the right thing depending on the type of Q&A planned for the talk.

    emacsconf-stream-join-qa: Join the Q&A for TALK.
    (defun emacsconf-stream-join-qa (talk)
      "Join the Q&A for TALK.
    This uses the BBB room if available, or the IRC channel if not."
      (interactive (list (emacsconf-complete-talk-info)))
      (if (and (null (plist-get talk :video-file))
               (string-match "live" (plist-get talk :q-and-a)))
          (emacsconf-stream-track-ssh
           talk
           "nohup"
           "firefox"
           "-new-window"
           (plist-get talk :pad-url)) 
        (emacsconf-stream-track-ssh
         talk
         "nohup"
         "firefox"
         "-new-window"
         (pcase (plist-get talk :q-and-a)
           ((or 'nil "" (rx "Mumble"))
            (plist-get talk :qa-slide-url))
           ((rx "live")
            (plist-get talk :bbb-backstage))
           ((rx "IRC")
            (plist-get talk :webchat-url))
           ((rx "pad")
            (plist-get talk :pad-url))
           (_ (plist-get talk :qa-slide-url))))))
    

    Summary

    Combining shell scripts (roles/obs/templates) and Emacs Lisp functions (emacsconf-stream.el) help us simplify the work of taking talk-specific actions that depend on the kind of talk or Q&A session. Using simple identifiers and consistent file name conventions means that we can refer to talks quickly and use wildcards in shell scripts.

    We started the conference with me jumping around and running most of the commands, since I had hastily written them in the weeks leading up to the conference and I was the most familiar with them. As the conference went on, other organizers got the hang of the commands and took over running their streams. Yay!

    ]]>
    2023-09-11 Emacs news https://sachachua.com/blog/2023/09/2023-09-11-emacs-news/ Mon, 11 Sep 2023 14:31:16 GMT emacs emacs-news https://sachachua.com/blog/2023/09/2023-09-11-emacs-news/
  • Last week of EmacsConf 2023 Call for Participation
  • Emacs 29, 30:
  • Upcoming events:
  • Beginner:
  • Emacs configuration:
  • Emacs Lisp:
  • Appearance:
  • Navigation:
  • Dired:
  • Org Mode:
  • Coding:
  • Shells:
  • Mail, news, and chat:
  • Multimedia:
  • Community:
  • Other:
  • Emacs development:
  • New packages:
  • Links from reddit.com/r/emacs, r/orgmode, r/spacemacs, r/planetemacs, Hacker News, lobste.rs, kbin, programming.dev, communick.news, lemmy, planet.emacslife.com, YouTube, the Emacs NEWS file, Emacs Calendar, and emacs-devel. Thanks to Andrés Ramírez for emacs-devel links. Do you have an Emacs-related link or announcement? Please e-mail me at sacha@sachachua.com. Thank you!

    ]]>
    EmacsConf backstage: jumping to and working with talks using Embark https://sachachua.com/blog/2023/09/emacsconf-backstage-jumping-to-and-working-with-talks-using-embark/ Mon, 11 Sep 2023 01:11:21 GMT emacs emacsconf https://sachachua.com/blog/2023/09/emacsconf-backstage-jumping-to-and-working-with-talks-using-embark/ In the course of organizing and running EmacsConf, I often need to jump to or act on specific talks. I have a function that jumps to the talk heading so that I can look up additional information or add notes.

    output-2023-09-10-14:04:30.gif
    Figure 1: Jumping to a talk

    emacsconf-go-to-talk: Jump to the talk heading matching SEARCH.
    (defun emacsconf-go-to-talk (search)
      "Jump to the talk heading matching SEARCH."
      (interactive (list (emacsconf-complete-talk)))
      (find-file emacsconf-org-file)
      (widen)
      (cond
       ((plist-get search :slug)
        (goto-char (org-find-property "SLUG" (plist-get search :slug))))
       ((emacsconf-get-slug-from-string search)
        (goto-char (org-find-property "SLUG" (emacsconf-get-slug-from-string search))))
       (t
        (goto-char
         (catch 'found
           (org-map-entries
            (lambda ()
              (when (string-match search
                                  (cons
                                   (concat (org-entry-get (point) "SLUG") " - "
                                           (org-entry-get (point) "ITEM") " - "
                                           (org-entry-get (point) "NAME") " - "
                                           (org-entry-get (point) "EMAIL"))
                                   (point)))
                (throw 'found (point))))
            "SLUG={.}")))))
      (org-reveal))
    

    Most of the work is done in a completion function that makes it easy to specify a talk using the slug (talk ID), title, or speaker names.

    emacsconf-complete-talk: Offer talks for completion.
    (defun emacsconf-complete-talk (&optional info)
      "Offer talks for completion.
    If INFO is specified, limit it to that list."
      (let ((choices
             (if (and (null info) emacsconf-complete-talk-cache)
                 emacsconf-complete-talk-cache
               (mapcar (lambda (o)
                         (string-join
                          (delq nil
                                (mapcar (lambda (f) (plist-get o f))
                                        '(:slug :title :speakers :irc)))
                          " - "))
                       (or info (emacsconf-get-talk-info))))))
        (completing-read
         "Talk: " 
         (lambda (string predicate action)
           (if (eq action 'metadata)
               '(metadata (category . emacsconf))
             (complete-with-action action choices string predicate))))))
    

    In addition to jumping to the Org heading for a talk, there are a bunch of other things I might want to do. Embark lets me add a bunch of shortcuts for working with a talk. I could open the caption file, edit the talk's wiki page, change a talk's property, e-mail the speaker, or more. Here's the Embark-related code from emacsconf.el:

    Embark-related code
    ;;; Embark
    (defun emacsconf-embark-finder ()
      "Identify when we're on a talk subtree."
      (when (and (derived-mode-p 'org-mode)
                 (org-entry-get-with-inheritance "SLUG"))
        (cons 'emacsconf (org-entry-get-with-inheritance "SLUG"))))
    
    (defun emacsconf-insert-talk-title (search)
      "Insert the talk title matching SEARCH."
      (interactive (list (emacsconf-complete-talk)))
      (insert (plist-get (emacsconf-search-talk-info search) :title)))
    
    (with-eval-after-load 'embark
      (add-to-list 'embark-target-finders 'emacsconf-embark-finder)
      (defvar-keymap embark-emacsconf-actions
        :doc "Keymap for emacsconf-related things"
        "a" #'emacsconf-announce
        "c" #'emacsconf-find-captions-from-slug
        "d" #'emacsconf-find-caption-directives-from-slug
        "p" #'emacsconf-set-property-from-slug
        "w" #'emacsconf-edit-wiki-page
        "s" #'emacsconf-set-start-time-for-slug
        "W" #'emacsconf-browse-wiki-page
        "u" #'emacsconf-update-talk
        "t" #'emacsconf-insert-talk-title
        "m" #'emacsconf-mail-speaker-from-slug
        "n" #'emacsconf-notmuch-search-mail-from-entry
        "f" #'org-forward-heading-same-level
        "b" #'org-backward-heading-same-level
        "RET" #'emacsconf-go-to-talk)
      (add-to-list 'embark-keymap-alist '(emacsconf . embark-emacsconf-actions)))
    
    ;;; Status updates
    

    For example, I sometimes need to open the wiki page for a talk in order to update the talk description.

    emacsconf-edit-wiki-page: Open the wiki page for the talk matching SEARCH.
    ;;; Embark
    (defun emacsconf-embark-finder ()
      "Identify when we're on a talk subtree."
      (when (and (derived-mode-p 'org-mode)
                 (org-entry-get-with-inheritance "SLUG"))
        (cons 'emacsconf (org-entry-get-with-inheritance "SLUG"))))
    

    Embark can also act on completion candidates, so I can call any of those actions from my C-c e t shortcut for emacsconf-go-to-talk. This is specified by the (metadata (category . emacsconf)) in emacsconf-complete-talk and the (add-to-list 'embark-keymap-alist '(emacsconf . embark-emacsconf-actions)) in my Embark configuration.

    C-. is the embark-act shortcut in my configuration. When I need to remember what the shortcuts are, I can use C-h (embark-keymap-help) to list the keyboard shortcuts or select the command with completion.

    output-2023-09-10-20:45:31.gif
    Figure 2: Embark help for Emacsconf talks

    The code above and related functions are in emacsconf.el or other files in the emacsconf-el repository.

    ]]>
    EmacsConf backstage: scheduling with SVGs https://sachachua.com/blog/2023/09/emacsconf-backstage-scheduling-with-svgs/ Sun, 10 Sep 2023 15:39:26 GMT emacs emacsconf https://sachachua.com/blog/2023/09/emacsconf-backstage-scheduling-with-svgs/ The EmacsConf 2023 call for participation deadline is coming up next Friday (Sept 15), so I'm getting ready to draft the schedule.

    Here's a quick overview of how I experiment with schedules for EmacsConf. I have all the talk details in Org subtrees. There's a SLUG property that has the talk ID, a TIME property that says how long a talk is, and a Q_AND_A property that says what kind of Q&A the speaker wants: live, IRC, Etherpad, or after the event. Some talks have fixed starting times, like the opening remarks. Others start when the Q&A for the previous session ends. I generate an SVG so that I can quickly see how the schedule looks. Are there big gaps? Did I follow everyone's availability constraints? Does the schedule flow reasonably logically?

    Code to define a schedule
    (require 'emacsconf-schedule)
    (setq emacsconf-schedule-tracks
          '((:label "Saturday"
                    :start "2023-12-02 9:00"
                    :end "2023-12-02 18:00"
                    :tracks ("General"))
            (:label "Sunday"
                    :start "2023-12-03 9:00"
                    :end "2023-12-03 18:00"
                    :tracks ("General"))))
    (setq emacsconf-schedule-default-buffer-minutes 10
          emacsconf-schedule-default-buffer-minutes-for-live-q-and-a 30
          emacsconf-schedule-break-time 10
          emacsconf-schedule-lunch-time 60
          emacsconf-schedule-max-time 30
          emacsconf-schedule-strategies
          '(emacsconf-schedule-allocate-buffer-time
            emacsconf-schedule-set-all-tracks-to-general))
    (setq emacsconf-schedule-plan
          '(("GEN Saturday, Dec 2" :start "2023-12-02 09:00")
            sat-open
            adventure writing one uni lunch hyperdrive ref mentor flat        (hn :start "15:30")
            (web :start "16:00") 
            ("GEN Sunday, Dec 3" :start "2023-12-03 09:00")
            sun-open
            windows extending lunch lspocaml sharing emacsen
            voice llm))
    (setq emacsconf-schedule-draft (emacsconf-schedule-prepare (emacsconf-schedule-inflate-sexp emacsconf-schedule-plan)))
    (emacsconf-schedule-validate emacsconf-schedule-draft)
    (let ((emacsconf-schedule-svg-modify-functions
           '(emacsconf-schedule-svg-color-by-status)))
      (with-temp-file "schedule.svg"
        (svg-print (emacsconf-schedule-svg 800 200 emacsconf-schedule-draft))))
    (clear-image-cache)
    
    schedule.svg
    Figure 1: Sample schedule draft

    Common functions are in emacsconf-schedule.el in the emacsconf-el repository, while conference-specific code is in our private conf.org file.

    Motivation

    I was working on the schedule for EmacsConf 2022 when I ran into a problem. I wanted more talks than could fit into the time that we had, even if I scheduled it as tightly as possible with just a few minutes of transition between talks. This had been the scheduling strategy we used in previous years, squishing all the talks together with just enough time to let people know where they could go to ask questions. We had experimented with an alternate track for Q&A during EmacsConf 2021, so that had given us a little more space for discussion, but it wasn't going to be enough to fit in all the talks we wanted for EmacsConf 2022.

    Could I convince the other organizers to take on the extra work needed for a multi-track conference? I knew it would be a lot of extra technical risk, and we'd need another host and streamer too. Could I make the schedule easy to understand on the wiki if we had two tracks? The Org Mode table I'd been using for previous years was not going to be enough. I was getting lost in the text.

    2023-09-10-11-41-42.svg
    Figure 2: Scheduling using Org Mode tables

    Visualizing the schedule as an SVG

    I'd been playing around with SVGs in Emacs. It was pretty straightforward to write a function that used time for the X axis and displayed different tracks. That showed us how full the conference was going to be if I tried to pack everything into two days.

    schedule-option-one-full-day.svg
    Figure 3: One full day

    emacsconf-schedule-svg-track: Draw the actual rectangles and text for the talks.
    (defun emacsconf-schedule-svg-track (svg base-x base-y width height start-time end-time info)
      "Draw the actual rectangles and text for the talks."
      (let ((scale (/ width (float-time (time-subtract end-time start-time)))))
        (mapc
         (lambda (o)
           (let* ((offset (floor (* scale (float-time (time-subtract (plist-get o :start-time) start-time)))))
                  (size (floor (* scale (float-time (time-subtract (plist-get o :end-time) (plist-get o :start-time))))))
                  (x (+ base-x offset))
                  (y base-y)
                  (node (dom-node
                         'rect
                         (list
                          (cons 'x x)
                          (cons 'y y)
                          (cons 'opacity "0.8")
                          (cons 'width size)
                          (cons 'height (1- height))
                          (cons 'stroke "black")
                          (cons 'stroke-dasharray
                                (if (string-match "live" (or (plist-get o :q-and-a) "live"))
                                    ""
                                  "5,5,5"))
                          (cons 'fill
                                (cond
                                 ((string-match "BREAK\\|LUNCH" (plist-get o :title)) "white")
                                 ((plist-get o :invalid) "red")
                                 ((string-match "EST"
                                                (or (plist-get o :availability) ""))
                                  "lightgray")
                                 (t "lightgreen"))))))
                  (parent (dom-node
                           'a
                           (list
                            (cons 'href
                                  (concat
                                   (if emacsconf-use-absolute-url
                                       emacsconf-base-url
                                     "/")
                                   (plist-get o :url)))
                            (cons 'title (plist-get o :title))
                            (cons 'data-slug (plist-get o :slug)))
                           (dom-node 'title nil
                                     (concat (format-time-string "%l:%M-" (plist-get o :start-time) emacsconf-timezone)
                                             (format-time-string "%l:%M " (plist-get o :end-time) emacsconf-timezone)
                                             (plist-get o :title)))
                           node
                           (dom-node
                            'g
                            `((transform . ,(format "translate(%d,%d)"
                                                    (+ x size -2) (+ y height -2))))
                            (dom-node
                             'text
                             (list
                              (cons 'fill "black")
                              (cons 'x 0)
                              (cons 'y 0)
                              (cons 'font-size 10)
                              (cons 'transform "rotate(-90)"))
                             (svg--encode-text (or (plist-get o :slug) (plist-get o :title))))))))
             (run-hook-with-args
              'emacsconf-schedule-svg-modify-functions
              o node parent)
             (dom-append-child
              svg
              parent)))
         info)))
    

    emacsconf-schedule-svg-day: Add the time scale and the talks on a given day.
    (defun emacsconf-schedule-svg-day (elem label width height start end tracks)
      "Add the time scale and the talks on a given day."
      (let* ((label-margin 15)
             (track-height (/ (- height (* 2 label-margin)) (length tracks)))
             (x 0) (y label-margin)
             (scale (/ width (float-time (time-subtract end start))))
             (time start))
        (dom-append-child elem (dom-node 'title nil (concat "Schedule for " label)))
        (svg-rectangle elem 0 0 width height :fill "white")
        (svg-text elem label :x 3 :y (- label-margin 3) :fill "black" :font-size "10")
        (mapc (lambda (track)
                (emacsconf-schedule-svg-track
                 elem x y width track-height
                 start end track)
                (setq y (+ y track-height)))
              tracks)
        ;; draw grid
        (while (time-less-p time end)
          (let ((x (* (float-time (time-subtract time start)) scale)))
            (dom-append-child
             elem
             (dom-node
              'g
              `((transform . ,(format "translate(%d,%d)" x label-margin)))
              (dom-node
               'line
               `((stroke . "darkgray")
                 (x1 . 0)
                 (y1 . 0)
                 (x2 . 0)
                 (y2 . ,(- height label-margin label-margin))))
              (dom-node
               'text
               `((fill . "black")
                 (x . 0)
                 (y . ,(- height 2 label-margin))
                 (font-size . 10)
                 (text-anchor . "left"))
               (svg--encode-text (format-time-string "%-l %p" time emacsconf-timezone)))))
            (setq time (time-add time (seconds-to-time 3600)))))
        elem))
    

    emacsconf-schedule-svg-days: Display multiple days.
    (defun emacsconf-schedule-svg-days (width height days)
      "Display multiple days."
      (let ((svg (svg-create width height))
            (day-height (/ height (length days)))
            (y 0))
        (dom-append-child svg (dom-node 'title nil "Graphical view of the schedule"))
        (mapc
         (lambda (day)
           (let ((group (dom-node 'g `((transform . ,(format "translate(0,%d)" y))))))
             (dom-append-child svg group)
             (emacsconf-schedule-svg-day group
                       (plist-get day :label)
                       width day-height
                       (date-to-time (plist-get day :start))
                       (date-to-time (plist-get day :end))
                       (plist-get day :tracks)))
           (setq y (+ y day-height)))
         days)
        svg))
    

    emacsconf-schedule-svg: Make the schedule SVG for INFO.
    (defun emacsconf-schedule-svg (width height &optional info)
      "Make the schedule SVG for INFO."
      (setq info (emacsconf-prepare-for-display (or info (emacsconf-get-talk-info))))
      (let ((days (seq-group-by (lambda (o)
                                  (format-time-string "%Y-%m-%d" (plist-get o :start-time) emacsconf-timezone))
                                (sort (seq-filter (lambda (o)
                                                    (or (plist-get o :slug)
                                                        (plist-get o :include-in-info)))
                                                  info)
                                      #'emacsconf-sort-by-scheduled))))
        (emacsconf-schedule-svg-days
         width height
         (mapcar (lambda (o)
                   (let ((start (concat (car o) "T" emacsconf-schedule-start-time emacsconf-timezone-offset))
                         (end (concat (car o) "T" emacsconf-schedule-end-time emacsconf-timezone-offset)))
                     (list :label (format-time-string "%A" (date-to-time (car o)))
                           :start start
                           :end end
                           :tracks (emacsconf-by-track (cdr o)))))
                 days))))
    

    With that, I was able to show the other organizers what a two-track conference could look like.

    schedule-option-gen-and-dev.svg
    Figure 4: Two-track conference
    Defining a schedule with two tracks
    (emacsconf-schedule-test
     filename
     (emacsconf-time-constraints '(("LUNCH" "11:30" "13:30")))
     (emacsconf-schedule-default-buffer-minutes 15)
     (emacsconf-schedule-default-buffer-minutes-for-live-q-and-a 25)
     (arranged
      (emacsconf-schedule-inflate-sexp
       '(("GEN Saturday, December 3" . "2022-12-03 09:00")
         "Saturday opening remarks"
         survey orgyear rolodex
         break
         links buttons 
         lunch
         hyperorg        realestate    health 
         break
         jupyter workflows
         
         ("Saturday closing remarks" . "2022-12-03 17:00")
         ("GEN Sunday, December 4" . "2022-12-04 09:00")
         "Sunday opening remarks"
         journalism
         handwritten
         break
                   school  science   lunch
                   meetups buddy
                   community 
          orgvm indieweb  fanfare
         ("Sunday closing remarks" . "2022-12-04 17:00")
         ("DEV Saturday, December 3" . "2022-12-03 10:00")
         localizing  treesitter lspbridge
         lunch sqlite
         
    mail     eev python break wayland (haskell . "2022-12-03 16:00")
         ("DEV Sunday, December 4" . "2022-12-04 10:00")
         justl eshell 
         detached rde 
         lunch
                    tramp async
         break
         asmblox dbus maint           )) )
     (emacsconf-schedule-break-time 10)
     (emacsconf-schedule-lunch-time 60)
     (emacsconf-schedule-max-time 30)
     (emacsconf-schedule-tweaked-allocations '(("indieweb" . 20)
                                               ("maint" . 20)
                                               ("workflows" . 20)))
     (emacsconf-scheduling-strategies '(emacsconf-schedule-override-breaks
                                        emacsconf-schedule-allocate-buffer-time
                                        ))
     (tracks '((:label "Saturday"
                       :start "2022-12-03 9:00"
                       :end "2022-12-03 18:00"
                       :tracks (("^GEN Sat" "^GEN Sun")
                                ("^DEV Sat" "^DEV Sun")))
              (:label "Sunday"
                      :start "2022-12-04 9:00"
                      :end "2022-12-04 18:00"
                      :tracks (("^GEN Sun" "^DEV Sat")
                               ("^DEV Sun"))))))
                         
    

    When the other organizers saw the two schedules, they were strongly in favour of the two-track option. Yay!

    Changing scheduling strategies

    As I played around with the schedule, I wanted a quick way to test different scheduling strategies, such as changing the length of Q&A sessions for live web conferences versus IRC/Etherpad/email Q&A. Putting those into variables allowed me to easily override them with a let form, and I used a list of functions to calculate or modify the schedule from the Org trees.

    output-2023-09-10-12:20:14.gif
    Figure 5: Changing the default Q&A times

    emacsconf-schedule-allocate-buffer-time: Allocate buffer time based on whether INFO has live Q&A.
    (defun emacsconf-schedule-allocate-buffer-time (info)
      "Allocate buffer time based on whether INFO has live Q&A.
    Uses `emacsconf-schedule-default-buffer-minutes' and
    `emacsconf-schedule-default-buffer-minutes-for-live-q-and-a'."
      (mapcar (lambda (o)
                (when (plist-get o :slug)
                  (unless (plist-get o :buffer)
                    (plist-put o :buffer
                               (number-to-string 
                                (if (string-match "live" (or (plist-get o :q-and-a) "live"))
                                    emacsconf-schedule-default-buffer-minutes-for-live-q-and-a
                                  emacsconf-schedule-default-buffer-minutes)))))
                o)
              info))
    

    This is actually applied by emacsconf-schedule-prepare, which runs through the list of strategies defined in emacsconf-schedule-strategies.

    emacsconf-schedule-prepare: Apply ‘emacsconf-schedule-strategies’ to INFO to determine the schedule.
    (defun emacsconf-schedule-prepare (&optional info)
      "Apply `emacsconf-schedule-strategies' to INFO to determine the schedule."
      (emacsconf-schedule-based-on-info
       (seq-reduce (lambda (prev val) (funcall val prev))
                   emacsconf-schedule-strategies
                   (or info (emacsconf-get-talk-info)))))
    

    Type of Q&A

    I wanted to see which sessions had live Q&A via web conference and which ones had IRC/Etherpad/asynchronous Q&A. I set the talk outlines so that dashed lines mean asynchronous Q&A and solid lines mean live. Live Q&As take a little more work on our end because the host starts it up and reads questions, but they're more interactive. This is handled by

    (cons 'stroke-dasharray
          (if (string-match "live" (or (plist-get o :q-and-a) "live"))
              ""
            "5,5,5"))
    

    in the emacsconf-schedule-svg-track function.

    Moving talks around

    I wanted to be able to quickly reorganize talks by moving their IDs around in a list instead of just using the order of the subtrees in my Org Mode file. I wrote a function that took a list of symbols, looked up each of the talks, and returned a list of talk info property lists. I also added the ability to override some things about talks, such as whether something started at a fixed time.

    emacsconf-schedule-inflate-sexp: Takes a list of talk IDs and returns a list that includes the scheduling info.
    (defun emacsconf-schedule-inflate-sexp (sequence &optional info include-time)
      "Takes a list of talk IDs and returns a list that includes the scheduling info.
    Pairs with `emacsconf-schedule-dump-sexp'."
      (setq info (or info (emacsconf-get-talk-info)))
      (let ((by-assoc (mapcar (lambda (o) (cons (intern (plist-get o :slug)) o))
                              (emacsconf-filter-talks info)))
            date)
        (mapcar
         (lambda (seq)
           (unless (listp seq) (setq seq (list seq)))
           
           (if include-time
               (error "Not yet implemented")
             (let ((start-prop (or (plist-get (cdr seq) :start)
                                   (and (stringp (cdr seq)) (cdr seq))))
                   (time-prop (or (plist-get (cdr seq) :time) ; this is duration in minutes
                                  (and (numberp (cdr seq)) (cdr seq))))
                   (track-prop (plist-get (cdr seq) :track)))
               (append
                ;; overriding 
                (when start-prop
                  (if (string-match "-" start-prop)
                      (setq date (format-time-string "%Y-%m-%d" (date-to-time start-prop)))
                    (setq start-prop  (concat date " " start-prop)))
                  (list
                   :scheduled (format-time-string (cdr org-time-stamp-formats) (date-to-time start-prop)
                                                  emacsconf-timezone)
                   :start-time (date-to-time start-prop)
                   :fixed-time t))
                (when track-prop
                  (list :track track-prop))
                (when time-prop
                  (list :time (if (numberp time-prop) (number-to-string time-prop) time-prop)))
                ;; base entity
                (cond
                 ((eq (car seq) 'lunch)
                  (list :title "LUNCH" :time (number-to-string emacsconf-schedule-lunch-time)))
                 ((eq (car seq) 'break)
                  (list :title "BREAK" :time (number-to-string emacsconf-schedule-break-time)))
                 ((symbolp (car seq))
                  (assoc-default (car seq) by-assoc))
                 ((stringp (car seq))
                  (or (seq-find (lambda (o) (string= (plist-get o :title) (car seq))) info)
                      (list :title (car seq))))
                 (t (error "Unknown %s" (prin1-to-string seq))))))))
         sequence)))
    

    That allowed me to specify a test schedule like this:

    (setq emacsconf-schedule-plan
          '(("GEN Saturday, Dec 2" :start "2023-12-02 09:00")
            sat-open
            adventure writing one uni lunch hyperdrive ref mentor flat
            (hn :start "15:30")
            (web :start "16:00") 
            ("GEN Sunday, Dec 3" :start "2023-12-03 09:00")
            sun-open
            windows extending lunch lspocaml sharing emacsen
            voice llm))
    (setq emacsconf-schedule-draft
          (emacsconf-schedule-prepare
           (emacsconf-schedule-inflate-sexp emacsconf-schedule-plan)))
    

    Validating the schedule

    Now that I could see the schedule visually, it made sense to add some validation. As mentioned in my post about timezones, I wanted to validate live Q&A against the speaker's availability and colour sessions red if they were outside the times I'd written down.

    I also wanted to arrange the schedule so that live Q&A sessions didn't start at the same time, giving me a little time to switch between sessions in case I needed to help out. I wrote a function that checked if the Q&A for a session started within five minutes of the previous one. This turned out to be pretty useful, since I ended up mostly taking care of playing the videos and opening the browsers for both streams. With that in place, I could just move the talks around until everything fit well together.

    emacsconf-schedule-validate-live-q-and-a-sessions-are-staggered: Try to avoid overlapping the start of live Q&A sessions.
    (defun emacsconf-schedule-validate-live-q-and-a-sessions-are-staggered (schedule)
      "Try to avoid overlapping the start of live Q&A sessions.
    Return nil if there are no errors."
      (when emacsconf-schedule-validate-live-q-and-a-sessions-buffer
        (let (last-end)
          (delq nil
                (mapcar (lambda (o)
                          (prog1
                              (when (and last-end
                                         (time-less-p
                                          (plist-get o :end-time)
                                          (time-add last-end (seconds-to-time (* emacsconf-schedule-validate-live-q-and-a-sessions-buffer 60)))))
                                (plist-put o :invalid (format "%s live Q&A starts at %s within %d minutes of previous live Q&A at %s"
                                                              (plist-get o :slug)
                                                              (format-time-string "%m-%d %-l:%M"
                                                                                  (plist-get o :end-time))
                                                              emacsconf-schedule-validate-live-q-and-a-sessions-buffer
                                                              (format-time-string "%m-%d %-l:%M"
                                                                                  last-end)))
                                (plist-get o :invalid))
                            (setq last-end (plist-get o :end-time))))
                        (sort 
                         (seq-filter (lambda (o) (string-match "live" (or (plist-get o :q-and-a) "")))
                                     schedule)
                         (lambda (a b)
                           (time-less-p (plist-get a :end-time) (plist-get b :end-time)))
                         ))))))
    

    Publishing SVGs in the wiki

    When the schedule settled down, it made perfect sense to include the image on the schedule page as well as on each talk page. I wanted people to be able to click on a rectangle and load the talk page. That meant including the SVG in the markup and allowing the attributes in ikiwiki's HTML sanitizer. In our htmlscrubber.pm, I needed to add svg rect text g title line to allow, and add version xmlns x y x1 y1 x2 y2 fill font-size font-weight stroke stroke-width stroke-dasharray transform opacity to the default attributes.

    opening-talk.gif
    Figure 6: Opening a talk from the SVG

    For the public-facing pages, I wanted to colour the talks based on track. I specified the colours in emacsconf-tracks (peachpuff and skyblue) and used them in emacsconf-schedule-svg-color-by-track.

    emacsconf-schedule-svg-color-by-track: Color sessions based on track.
    (defun emacsconf-schedule-svg-color-by-track (o node &optional parent)
      "Color sessions based on track."
      (let ((track (emacsconf-get-track (plist-get o :track))))
        (when track
          (dom-set-attribute node 'fill (plist-get track :color)))))
    

    I wanted talk pages to highlight the talk on the schedule so that people could easily find other sessions that conflict. Because a number of people in the Emacs community browse with Javascript turned off, I used Emacs Lisp to generate a copy of the SVG with the current talk highlighted.

    emacsconf-publish-format-talk-page-schedule: Add the schedule image for TALK based on INFO.
    (defun emacsconf-publish-format-talk-page-schedule (talk info)
      "Add the schedule image for TALK based on INFO."
      (concat
       "\nThe following image shows where the talk is in the schedule for "
       (format-time-string "%a %Y-%m-%d" (plist-get talk :start-time) emacsconf-timezone) ". Solid lines show talks with Q&A via BigBlueButton. Dashed lines show talks with Q&A via IRC or Etherpad."
       (format "<div class=\"schedule-in-context schedule-svg-container\" data-slug=\"%s\">\n" (plist-get talk :slug))           
       (let* ((width 800) (height 150)
              (talk-date (format-time-string "%Y-%m-%d" (plist-get talk :start-time) emacsconf-timezone))
              (start (date-to-time (concat talk-date "T" emacsconf-schedule-start-time emacsconf-timezone-offset)))
              (end (date-to-time (concat talk-date "T" emacsconf-schedule-end-time emacsconf-timezone-offset)))
              svg)
         (with-temp-buffer
           (setq svg (emacsconf-schedule-svg-day
                      (svg-create width height)
                      (format-time-string "%A" (plist-get talk :start-time) emacsconf-timezone)
                      width height
                      start end
                      (emacsconf-by-track
                       (seq-filter (lambda (o) (string= (format-time-string "%Y-%m-%d" (plist-get o :start-time) emacsconf-timezone)
                                                        talk-date))
                                   info))))
           (mapc (lambda (node)
                   (let ((rect (car (dom-by-tag node 'rect))))
                     (if (string= (dom-attr node 'data-slug) (plist-get talk :slug))
                         (progn
                           (dom-set-attribute rect 'opacity "0.8")
                           (dom-set-attribute rect 'stroke-width "3")
                           (dom-set-attribute (car (dom-by-tag node 'text)) 'font-weight "bold"))
                       (dom-set-attribute rect 'opacity "0.5"))))
                 (dom-by-tag svg 'a))
           (svg-print svg)
           (buffer-string)))
       "\n</div>\n"
       "\n"
       (emacsconf-format-talk-schedule-info talk) "\n\n"))
    

    Colouring talks based on status

    As the conference approached, I wanted to colour talks based on their status, so I could see how much of our schedule already had videos and even how many had been captioned. That was just a matter of adding a modifier function to change the SVG rectangle colour depending on the TODO status.

    output-2023-09-10-13:20:12.gif
    Figure 7: Changing talk colour based on status

    emacsconf-schedule-svg-color-by-status: Set talk color based on status.
    (defun emacsconf-schedule-svg-color-by-status (o node &optional _)
      "Set talk color based on status.
    Processing: palegoldenrod,
    Waiting to be assigned a captioner: yellow,
    Captioning in progress: lightgreen,
    Ready to stream: green,
    Other status: gray"
      (unless (plist-get o :invalid)
        (dom-set-attribute node 'fill
                           (pcase (plist-get o :status)
                             ((rx (or "TO_PROCESS"
                                      "PROCESSING"
                                      "TO_AUTOCAP"))
                              "palegoldenrod")
                             ((rx (or "TO_ASSIGN"))
                              "yellow")
                             ((rx (or "TO_CAPTION"))
                              "lightgreen")
                             ((rx (or "TO_STREAM"))
                              "green")
                             (_ "gray")))))
    

    Summary

    Common functions are in emacsconf-schedule.el in the emacsconf-el repository, while conference-specific code is in our private conf.org file.

    Some information is much easier to work with graphically than in plain text. Seeing the schedules as images made it easier to spot gaps or errors, tinker with parameters, and communicate with other people. Writing Emacs Lisp functions to modify my data made it easier to try out different things without rearranging the text in my Org file. Because Emacs can display images inside the editor, it was easy for me to make changes and see the images update right away. Using SVG also made it possible to export the image and make it interactive. Handy technique!

    ]]>