From 7245a3fc9ba4c4e5d122c66a5cd38a91ad8cef60 Mon Sep 17 00:00:00 2001 From: Leo Vivier Date: Thu, 29 Sep 2022 20:18:44 +0200 Subject: Change deadline for receiving prerecs --- 2022/organizers-notebook.md | 272 ++++++++++++++++++++++++++++++++------------ 1 file changed, 197 insertions(+), 75 deletions(-) (limited to '2022/organizers-notebook.md') diff --git a/2022/organizers-notebook.md b/2022/organizers-notebook.md index 078b1642..9babcd26 100644 --- a/2022/organizers-notebook.md +++ b/2022/organizers-notebook.md @@ -40,6 +40,12 @@ Planned dates and phases: + +[2022-10-02 Sun] +Confirm time allocations for early submissions + + + [2022-10-07 Fri] Yes/no comments for late submissions @@ -71,7 +77,7 @@ Planned dates and phases: -[2022-11-05 Sat] +[2022-11-04 Fri] Target date to receive prerecs; earlier is better @@ -104,7 +110,7 @@ Planned dates and phases: Current phase: No prerecs to process yet, so it's a good time to focus on infrastructure -## TODO Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#orgf454f74), Oct 7 for everything :organizers: +## TODO Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#orgce14af5), Oct 7 for everything :organizers: - zaeph: will start reviewing on Sep 21 @@ -141,10 +147,19 @@ Extra stuff to consider adding: - Sacha: Add submissions to emacsconf-2022-private, draft 2-day schedule by Oct 10 -## DONE Copy things over from previous notebooks :sachac: +## TODO Publish talk pages :sachac: + +## TODO Send early acceptances :sachac: -## TODO Double-check sachac’s timezone conversions for availability :corwin: +Ideal sequence: + +1. publish /2022/prepare (zaeph) +2. publish wiki pages +3. send acceptance e-mails + - Allocate at most 20 minutes, say we'll try to add more time depending on the schedule (probably know by Sept 30 or Oct 1) + - Include review comments +4. Send an additional e-mail introducing speakers who may want to coordinate ## TODO Investigate streaming options, maybe OBS in the cloud :corwin: @@ -201,15 +216,42 @@ That will help more people subtitle things ## TODO Create Org heading for scheduling caption team's live IRC duty shifts :dto: +## TODO Review metadata for speakers in conf.org :zaeph: + +See the bottom of conf.org for some automated validation + + +## TODO Write viewing instructions :zaeph: + +Extra stuff to consider adding: + +- Suggestions for mpv-filter to invert colourscape. + + ## DONE Write volunteer page :sachac: -## TODO Review metadata for speakers in conf.org :zaeph: +## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#orgce14af5), Oct 7 for everything :organizers: + +- zaeph: will start reviewing on Sep 21 + +## DONE Double-check sachac’s timezone conversions for availability :zaeph: -## TODO :zaeph:bandali: +zaeph helped with this, even catching some based on e-mail timestamps + + +## DONE Copy things over from previous notebooks :sachac: + + +## TODO Allocate extra time if possible; send e-mail :sachac: + + + + +# Things to figure out / decisions to make ## TODO Do we want to use JS on the wiki? @@ -231,11 +273,6 @@ gitolite should have some options to do this Might not be necessary. - - -# Things to figure out / decisions to make - - ## What ideas do we want to borrow from other conferences? - FOSDEM had a conference track @@ -541,7 +578,7 @@ We tried using q56 before, but it was a little too aggressive. Q=32 is the defau ### Test stream setup -[Stream](#org531b5e1) +[Stream](#org32dc51f) ### Set up MPV for captions @@ -858,7 +895,7 @@ Exceptions: ### Send thanks -[Thank you, next steps](#orgb3500be) +[Thank you, next steps](#org1e235d7) ### Extract the opening and closing remarks @@ -1009,7 +1046,7 @@ Probably focus on grabbing the audio first and seeing what's worth keeping Make a table of the form - +
@@ -1290,48 +1327,147 @@ Thanks! Sacha -## TODO Early speaker notification +## TODO Early speaker notification :sachac: We can accept early or send people a note saying notification of acceptance will be on Oct 15, because of the extended CFP. +Right before this e-mail: + +- Publish the wiki pages + +Objectives for this e-mail: + +- Notify people of acceptance +- Tell them the number of minutes to plan for\* (might get more) +- Tell them about the target date +- Get them to reply +- Ask for public contact information or any changes to the wiki page + + (defun emacsconf-draft-early-acceptance-for-email-group (group &optional template) + "GROUP is (email . (talk talk))." + (interactive + (list + (save-window-excursion + (let* ((emacsconf-talk-info-functions (append emacsconf-talk-info-functions '(emacsconf-get-talk-comments-from-subtree))) + (info (emacsconf-filter-talks (emacsconf-get-talk-info))) + (grouped (seq-group-by (lambda (o) (plist-get o :email)) info)) + (slug (emacsconf-get-slug-from-string (emacsconf-complete-talk))) + (email (plist-get (seq-find (lambda (o) (string= (plist-get o :slug) slug)) info) :email))) + (assoc email grouped))))) + (let* ((template (or template (emacsconf-mail-merge-get-template "early-acceptance"))) + (talks (cdr group)) + (first (car talks)) + (reply-by-date (date-to-time "2022-10-08")) + (prerec-target (date-to-time "2022-11-07")) + (attrs `(:speakers-short + ,(plist-get first :speakers-short) + :email + ,(plist-get first :email) + :year + ,(or (plist-get first :year) emacsconf-year) + :reply-date + ,(format-time-string "%b %e (%a)" reply-by-date) + :titles + ,(mapconcat (lambda (o) (format "\"%s\"" (plist-get o :title))) talks " and ") + :prerec-target + ,(format-time-string "%b %e (%a)" prerec-target) + :page-urls + ,(mapconcat (lambda (o) (format "https://emacsconf.org/%s/talks/%s" (plist-get o :year) + (plist-get o :slug))) + talks "\n") + :acceptance-tasks + ,(concat + "* TODO Reply to acceptance e-mail in order to confirm e-mail communication :emacsconf: + DEADLINE: " (format-time-string "<%Y-%m-%d %a>" reply-by-date) "\n Please include public e-mail and/or any extra information you want on\n" + (mapconcat (lambda (o) (format " https://emacsconf.org/%s/talks/%s" + (plist-get o :year) + (plist-get o :slug))) + talks "\n") "\n" + (mapconcat (lambda (o) (format "* Record %s-minute talk for \"%s\" :emacsconf: + DEADLINE: %s\n https://emacsconf.org/%s/prepare/" + (plist-get o :time) + (plist-get o :title) + (format-time-string "<%Y-%m-%d %a>" prerec-target) + (plist-get o :year))) + talks "\n")) + :talk-details-and-comments + ,(mapconcat + (lambda (o) + (format "%s minutes: %s\nhttps://emacsconf.org/%s/talks/%s\n\n%s" + (plist-get o :time) + (plist-get o :title) + (plist-get o :year) + (plist-get o :slug) + (string-fill (emacsconf-replace-plist-in-string o (plist-get o :acceptance-comment)) 72))) + talks "\n---------------------------------------------------------------------\n")))) + (compose-mail + (car group) + (emacsconf-replace-plist-in-string attrs (plist-get template :subject)) + `(("Reply-To" . ,(plist-get template :reply-to)) + ("Mail-Followup-To" . ,(plist-get template :mail-followup-to)) + ("Cc" . ,(plist-get template :cc)))) + (message-goto-body) + (save-excursion (insert (emacsconf-replace-plist-in-string attrs (plist-get template :body)))))) + + (defun emacsconf-draft-all-early-acceptances () + (interactive) + (let* ((emacsconf-talk-info-functions (append emacsconf-talk-info-functions '(emacsconf-get-talk-comments-from-subtree))) + (info (emacsconf-filter-talks (emacsconf-get-talk-info))) + (grouped (seq-group-by (lambda (o) (plist-get o :email)) info)) + (template (emacsconf-mail-merge-get-template "early-acceptance"))) + (mapc (lambda (group) + (emacsconf-draft-early-acceptance-for-email-group group template)) + grouped))) -### Option A: Early speaker notification(?) - -Hi, $name! - -I'm happy to tell you that we've accepted your EmacsConf proposal for "$talk." Thanks for volunteering to share what you're learning about! I know it takes a fair bit of work to prepare a presentation, so I appreciate that you're taking the time to show what's possible with Emacs and encourage people to learn more. - -We've extended the call for participation to Sept 30, so we might get a few more submissions over the next two weeks. That means we'll confirm time allocations on Oct 15. Since you submitted before the original deadline, we wanted to send you your acceptance by the original timeline so that you wouldn't be waiting in uncertainty. - -Just like last year, talks will be prerecorded in order to minimize technical risks, make it easier for speakers to enjoy other people's talks, allow captions, and let attendees catch up or share cool stuff quickly. I hope we get everything together in time so that we can ask volunteers to check for any issues that might come up when we re-encode. (I missed parts of some talks last time because I was rushing. ) - -–— if $time = $max\_time +### Speaker acceptance -You asked for $max\_time minutes for your talk and I think that should be all right. +Hi, ${speakers-short}! -–— else +Summary: +,${acceptance-tasks} -You asked for at most $max\_time minutes for your talk. I think at this moment we can commit to $time minutes, with possibly more time being available depending on other submissions. If you want to plan a pre-recorded talk for that length and then use extra time for a live presentation or as Q&A, that would be great. Alternatively, you can wait until we confirm the schedule in case you want to plan a longer prerecorded talk. +We've accepted your EmacsConf proposal for ${titles}! Thanks for +volunteering to share what you're learning about. I know it takes a +fair bit of work to prepare a presentation, so I appreciate that +you're taking the time to show what's possible with Emacs and +encourage people to learn more. --- -— if Q&A will be live or IRC — - -You'll have some time after your talk for Q&A, so the $time minutes can be just for your talk. Of course, if you like, you can make it shorter. +${talk-details-and-comments} --- -If you want to get a head start on recording your talk, please feel free to do so. We'll be streaming talks at 1920x1280 resolution, so the closer your recording is to that, the easier it will be to process for streaming. .webm format is preferred, but we can convert other formats. $recording has some tips on recording tools and settings that you might find helpful. We'll send you instructions on how to upload files once we get that set up. - -We're going to try to caption as many talks as possible again this year, and extra time helps a lot. People found the captions really helpful while watching the stream, and sending your talk in early will make it more likely that we'll be able to get your captions edited and reviewed before the conference. - -Could you please reply to this email so that we can confirm that I've got the right email address for you and that messages can get properly delivered? - -We'll be putting up the public wiki pages for each talk soon using the information from the talk abstract, and we can put $public\_email as the contact information for you. Please let us know by $publish\_date if you would prefer something else. +You'll have some time after your talk for Q&A, so the allocated time +can be just for your pre-recorded talk. Of course, if you like, you +can make it shorter. + +We've posted preparation tips at . +We'll send you instructions on how to upload files once we get that +set up. + +Could you please plan to ****put your pre-rec together by ${prerec-target}**** +(or even earlier if you want)? We're going to try to caption as many talks +as possible again this year, and extra time helps a lot. People found +the captions really helpful while watching the stream, and sending +your talk in early will make it more likely that we'll be able to get +your captions edited and reviewed before the conference. + +****Please reply to this e-mail by ${reply-date}**** (including +emacsconf-submit@gnu.org in the To: or Cc:) so that we can confirm +that we've got the right email address for you and that messages can +get properly delivered. Would you like us to put ${email} as the +public contact information for you, or would you like us to add +something else to the talk pages? +${page-urls} + +If you have any questions, please e-mail us at +emacsconf-submit@gnu.org or pass by the #emacsconf-org IRC channel on +irc.libera.chat (Web-based: ). Thank you so much! -Sacha +Sacha Chua ### Option B: Just letting them know it's been postponed @@ -1350,29 +1486,14 @@ Sacha ### Acceptance +This is a copy of the previous + #### Code - (defun conf-summarize-times (time timezones) - (let (prev-day) - (mapconcat - (lambda (tz) - (let ((cur-day (format-time-string "%a %b %-e" time tz)) - (cur-time (format-time-string "%H%MH %Z" time tz))) - (if (equal prev-day cur-day) - cur-time - (setq prev-day cur-day) - (concat cur-day " " cur-time)))) - timezones - " / "))) - - ;; (assert (string= (conf-replace-plist-in-string '(:test "ABC") "hello ${test} world") "hello ABC world")) - - - (defun conf-draft-acceptance () + (defun emacsconf-draft-acceptance () (interactive) - (let* ((mustache-key-type 'keyword) - (sched (org-timestamp-from-string (org-entry-get (point) "SCHEDULED"))) + (let* ((sched (org-timestamp-from-string (org-entry-get (point) "SCHEDULED"))) (attrs (append (emacsconf-get-talk-info-for-subtree) :other-notes @@ -1903,7 +2024,6 @@ chatter in the other lists Cc'd on this message. Thank you. (message "No longer asking for confirmation in this buffer") (setq-local emacsconf-danger-allow-dangerous-stuff t) - (org-babel-ref-resolve "elisp-no-confirmation()") (message "Now allowing dangerous stuff. Buckle up, buckaroo!") @@ -1977,25 +2097,27 @@ chatter in the other lists Cc'd on this message. Thank you. (message "Hook is no longer active")) -## Process review comments from pad +## Review agenda + + (defcustom emacsconf-org-tag nil "Tag for your nick, for easier agenda filtering" + :group 'emacsconf + :type 'string) -1. `curl https://etherpad.wikimedia.org/p/[REDACTED]/export/html` -2. Open curl’d html into browser -3. Copy just the text from the page (i.e. not the html) -4. Paste in Emacs buffer +\#+begin\_src emacs-lisp :results silent +(defun emacsconf-show-my-agenda () + (interactive) + (let\* ((org-agenda-files (list (buffer-file-name))) + (tag-filter (if emacsconf-org-tag (concat "" emacsconf-org-tag) "")) + (org-agenda-tag-filter-preset (list (when emacsconf-org-tag (concat "" emacsconf-org-tag)))) + (org-agenda-custom-commands \`(("a" "Agenda" + ((agenda ,tag-filter) + (tags-todo ,(concat tag-filter "-SCHEDULED={.+}-DEADLINE={.+}"))))))) + (org-agenda nil "a"))) -Inside emacs: -1. C-s Comments for -2. C-M-s ^[a-z0-9] -3. M-< -4. C-x 3 -5. C-x b comments.org (new buffer) -6. C-x o -7. Run following kmacro (eval then M-x pad-comments, then C-x e until completion) +## Process review comments from pad - (defalias 'emacsconf-pad-comments - (kmacro "C-s C-s C-a C-SPC C-n C-M-s M-p C-b M-w C-x o C-y C-u -- C-x o")) +see emacsconf-import-comments-from-etherpad-text -- cgit v1.2.3 From 9bce5102c549b1ccf7bc5f50e586e03c1e922996 Mon Sep 17 00:00:00 2001 From: Leo Vivier Date: Thu, 29 Sep 2022 20:30:31 +0200 Subject: Add TODOs --- 2022/organizers-notebook.md | 39 ++++++++++++++++++++++++--------------- 1 file changed, 24 insertions(+), 15 deletions(-) (limited to '2022/organizers-notebook.md') diff --git a/2022/organizers-notebook.md b/2022/organizers-notebook.md index 9babcd26..71e3b324 100644 --- a/2022/organizers-notebook.md +++ b/2022/organizers-notebook.md @@ -110,15 +110,32 @@ Planned dates and phases: Current phase: No prerecs to process yet, so it's a good time to focus on infrastructure -## TODO Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#orgce14af5), Oct 7 for everything :organizers: +## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#org61d4847), Oct 7 for everything :organizers: - zaeph: will start reviewing on Sep 21 -## INPROGRESS Write preparation instructions and decide on deadline for prerecs :zaeph: +## INPROGRESS Write preparation instructions :zaeph: 2021/prepare.md can be reused. +Extra stuff to consider adding: + +- STRT Suggestions for org-reveal, fonts and themes (especially wrt colourscape) +- DONE “Please don’t squeeze your talk by fast-forwarding your speech. Trimming silences and filler words can help, though. Sometimes it's easier to write, record, and edit your voiceover, and then record the video to go along with it." +- DONE Allowing speakers to plant questions, esp. to cover tangential stuff that couldn’t fit in the prerec + + +## TODO Prepare for prerecs :zaeph: + + +### TODO Optimize ffmpeg incantation + +Remember to update 2022/prepare.md with the new incantation. + + +### TODO Figure out workflow for handling submitted prerecs + We need time after the prerecs get submitted to: - convert the videos and check that they've been reencoded properly by watching the re-encoded ones all the way to the end @@ -126,16 +143,8 @@ We need time after the prerecs get submitted to: - capture any extra info - follow up with missing prerecs -zaeph will also figure out the ffmpeg incantation for converting videos and the process for handling submitted prerecs - -Extra stuff to consider adding: - -- STRT Suggestions for org-reveal, fonts and themes (especially wrt colourscape) -- DONE “Please don’t squeeze your talk by fast-forwarding your speech. Trimming silences and filler words can help, though. Sometimes it's easier to write, record, and edit your voiceover, and then record the video to go along with it." -- DONE Allowing speakers to plant questions, esp. to cover tangential stuff that couldn’t fit in the prerec - -## TODO Write viewing instructions :zaeph: +## STANDBY Write viewing instructions :zaeph: Extra stuff to consider adding: @@ -233,7 +242,7 @@ Extra stuff to consider adding: -## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#orgce14af5), Oct 7 for everything :organizers: +## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#org61d4847), Oct 7 for everything :organizers: - zaeph: will start reviewing on Sep 21 @@ -578,7 +587,7 @@ We tried using q56 before, but it was a little too aggressive. Q=32 is the defau ### Test stream setup -[Stream](#org32dc51f) +[Stream](#org28890ab) ### Set up MPV for captions @@ -895,7 +904,7 @@ Exceptions: ### Send thanks -[Thank you, next steps](#org1e235d7) +[Thank you, next steps](#org448aa21) ### Extract the opening and closing remarks @@ -1046,7 +1055,7 @@ Probably focus on grabbing the audio first and seeing what's worth keeping Make a table of the form -
+
-- cgit v1.2.3 From 727f01f9c94afa9187b690a54babd36315f8d1d8 Mon Sep 17 00:00:00 2001 From: Leo Vivier Date: Thu, 29 Sep 2022 20:31:44 +0200 Subject: Add internal link for todo --- 2022/organizers-notebook.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to '2022/organizers-notebook.md') diff --git a/2022/organizers-notebook.md b/2022/organizers-notebook.md index 71e3b324..c4ff7e28 100644 --- a/2022/organizers-notebook.md +++ b/2022/organizers-notebook.md @@ -110,7 +110,7 @@ Planned dates and phases: Current phase: No prerecs to process yet, so it's a good time to focus on infrastructure -## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#org61d4847), Oct 7 for everything :organizers: +## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#orgefe07f3), Oct 7 for everything :organizers: - zaeph: will start reviewing on Sep 21 @@ -131,7 +131,7 @@ Extra stuff to consider adding: ### TODO Optimize ffmpeg incantation -Remember to update 2022/prepare.md with the new incantation. +Remember to update with the new incantation. ### TODO Figure out workflow for handling submitted prerecs @@ -242,7 +242,7 @@ Extra stuff to consider adding: -## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#org61d4847), Oct 7 for everything :organizers: +## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#orgefe07f3), Oct 7 for everything :organizers: - zaeph: will start reviewing on Sep 21 @@ -587,7 +587,7 @@ We tried using q56 before, but it was a little too aggressive. Q=32 is the defau ### Test stream setup -[Stream](#org28890ab) +[Stream](#orge9a7803) ### Set up MPV for captions @@ -904,7 +904,7 @@ Exceptions: ### Send thanks -[Thank you, next steps](#org448aa21) +[Thank you, next steps](#org0a548c0) ### Extract the opening and closing remarks @@ -1055,7 +1055,7 @@ Probably focus on grabbing the audio first and seeing what's worth keeping Make a table of the form -
+
-- cgit v1.2.3 From 70d55ad8987017891d6d48d7bc06b61df15aceb1 Mon Sep 17 00:00:00 2001 From: Leo Vivier Date: Thu, 29 Sep 2022 20:34:21 +0200 Subject: Add todo for finding tech-checkers --- 2022/organizers-notebook.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) (limited to '2022/organizers-notebook.md') diff --git a/2022/organizers-notebook.md b/2022/organizers-notebook.md index c4ff7e28..115ad0a1 100644 --- a/2022/organizers-notebook.md +++ b/2022/organizers-notebook.md @@ -110,7 +110,7 @@ Planned dates and phases: Current phase: No prerecs to process yet, so it's a good time to focus on infrastructure -## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#orgefe07f3), Oct 7 for everything :organizers: +## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#org6bbc0a2), Oct 7 for everything :organizers: - zaeph: will start reviewing on Sep 21 @@ -144,6 +144,9 @@ We need time after the prerecs get submitted to: - follow up with missing prerecs +## TODO Find volunteers for tech-checks :needsowner: + + ## STANDBY Write viewing instructions :zaeph: Extra stuff to consider adding: @@ -242,7 +245,7 @@ Extra stuff to consider adding: -## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#orgefe07f3), Oct 7 for everything :organizers: +## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#org6bbc0a2), Oct 7 for everything :organizers: - zaeph: will start reviewing on Sep 21 @@ -587,7 +590,7 @@ We tried using q56 before, but it was a little too aggressive. Q=32 is the defau ### Test stream setup -[Stream](#orge9a7803) +[Stream](#orgb4dee55) ### Set up MPV for captions @@ -904,7 +907,7 @@ Exceptions: ### Send thanks -[Thank you, next steps](#org0a548c0) +[Thank you, next steps](#orge066418) ### Extract the opening and closing remarks @@ -1055,7 +1058,7 @@ Probably focus on grabbing the audio first and seeing what's worth keeping Make a table of the form -
+
-- cgit v1.2.3 From 16bfe436394b9d1ac3eb2e0afde27c87a6099d74 Mon Sep 17 00:00:00 2001 From: Leo Vivier Date: Thu, 29 Sep 2022 20:40:17 +0200 Subject: Add tech-checker volunteering role and todo the search for volunteers --- 2022/organizers-notebook.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to '2022/organizers-notebook.md') diff --git a/2022/organizers-notebook.md b/2022/organizers-notebook.md index 115ad0a1..d4f90238 100644 --- a/2022/organizers-notebook.md +++ b/2022/organizers-notebook.md @@ -110,7 +110,7 @@ Planned dates and phases: Current phase: No prerecs to process yet, so it's a good time to focus on infrastructure -## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#org6bbc0a2), Oct 7 for everything :organizers: +## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#org70f72f5), Oct 7 for everything :organizers: - zaeph: will start reviewing on Sep 21 @@ -144,7 +144,10 @@ We need time after the prerecs get submitted to: - follow up with missing prerecs -## TODO Find volunteers for tech-checks :needsowner: +## INPROGRESS Find volunteers for tech-checks :needsowner: + + +### DONE Add entry in 2022/volunteer.md ## STANDBY Write viewing instructions :zaeph: @@ -245,7 +248,7 @@ Extra stuff to consider adding: -## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#org6bbc0a2), Oct 7 for everything :organizers: +## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#org70f72f5), Oct 7 for everything :organizers: - zaeph: will start reviewing on Sep 21 @@ -590,7 +593,7 @@ We tried using q56 before, but it was a little too aggressive. Q=32 is the defau ### Test stream setup -[Stream](#orgb4dee55) +[Stream](#org0646614) ### Set up MPV for captions @@ -907,7 +910,7 @@ Exceptions: ### Send thanks -[Thank you, next steps](#orge066418) +[Thank you, next steps](#orgb35292a) ### Extract the opening and closing remarks @@ -1058,7 +1061,7 @@ Probably focus on grabbing the audio first and seeing what's worth keeping Make a table of the form -
+
-- cgit v1.2.3 From 63ce40369ead6b8c57d411a20731dde52b8c8430 Mon Sep 17 00:00:00 2001 From: Leo Vivier Date: Thu, 29 Sep 2022 20:45:41 +0200 Subject: Update TODOs for prepare.md --- 2022/organizers-notebook.md | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) (limited to '2022/organizers-notebook.md') diff --git a/2022/organizers-notebook.md b/2022/organizers-notebook.md index d4f90238..774fd431 100644 --- a/2022/organizers-notebook.md +++ b/2022/organizers-notebook.md @@ -110,22 +110,28 @@ Planned dates and phases: Current phase: No prerecs to process yet, so it's a good time to focus on infrastructure -## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#org70f72f5), Oct 7 for everything :organizers: +## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#orgac86a88), Oct 7 for everything :organizers: - zaeph: will start reviewing on Sep 21 -## INPROGRESS Write preparation instructions :zaeph: +## DONE Write preparation instructions :zaeph: 2021/prepare.md can be reused. Extra stuff to consider adding: -- STRT Suggestions for org-reveal, fonts and themes (especially wrt colourscape) +- DONE Suggestions for themes (especially wrt colourscape) - DONE “Please don’t squeeze your talk by fast-forwarding your speech. Trimming silences and filler words can help, though. Sometimes it's easier to write, record, and edit your voiceover, and then record the video to go along with it." - DONE Allowing speakers to plant questions, esp. to cover tangential stuff that couldn’t fit in the prerec +## STANDBY Add nice-to-have stuff to prepare.md :zaeph: + +- org-reveal config +- SIL fonts choice + + ## TODO Prepare for prerecs :zaeph: @@ -248,7 +254,7 @@ Extra stuff to consider adding: -## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#org70f72f5), Oct 7 for everything :organizers: +## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#orgac86a88), Oct 7 for everything :organizers: - zaeph: will start reviewing on Sep 21 @@ -593,7 +599,7 @@ We tried using q56 before, but it was a little too aggressive. Q=32 is the defau ### Test stream setup -[Stream](#org0646614) +[Stream](#org5f90458) ### Set up MPV for captions @@ -910,7 +916,7 @@ Exceptions: ### Send thanks -[Thank you, next steps](#orgb35292a) +[Thank you, next steps](#orga138575) ### Extract the opening and closing remarks @@ -1061,7 +1067,7 @@ Probably focus on grabbing the audio first and seeing what's worth keeping Make a table of the form -
+
-- cgit v1.2.3 From 2cd3a36d5139b074d2b75a3726000b89216abfde Mon Sep 17 00:00:00 2001 From: Leo Vivier Date: Thu, 29 Sep 2022 20:59:12 +0200 Subject: Add more tasks for tech-checkers --- 2022/organizers-notebook.md | 33 +++++++++++++++++++++++++++------ 1 file changed, 27 insertions(+), 6 deletions(-) (limited to '2022/organizers-notebook.md') diff --git a/2022/organizers-notebook.md b/2022/organizers-notebook.md index 774fd431..20d88c26 100644 --- a/2022/organizers-notebook.md +++ b/2022/organizers-notebook.md @@ -110,7 +110,7 @@ Planned dates and phases: Current phase: No prerecs to process yet, so it's a good time to focus on infrastructure -## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#orgac86a88), Oct 7 for everything :organizers: +## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#orgbb35d27), Oct 7 for everything :organizers: - zaeph: will start reviewing on Sep 21 @@ -150,12 +150,33 @@ We need time after the prerecs get submitted to: - follow up with missing prerecs -## INPROGRESS Find volunteers for tech-checks :needsowner: +## INPROGRESS Find volunteers for tech-checks :zaeph: ### DONE Add entry in 2022/volunteer.md +### INPROGRESS Write protocol for adding tech-checker volunteer + +- Invite volunteer to BBB (ask core organizers) +- Update with new tech-checker info +- Coach tech-checker on the protocol + + +### INPROGRESS Write the tech-checking protocol (formerly referred to as “tech-checklist”) + +From previous years: + +> - Can you speak and be heard? Is there echo? +> - Can you hear the organizer? +> - Can you share your screen? Is the screen readable? +> - If you plan to show your keystrokes, is that display visible? +> - If you want to share your webcam (optional), can you enable it? Is it visible? Will there likely be distractions in the background? +> - Can you view the collaborative pad? Will you be comfortable reviewing questions on your own (perhaps by keeping it open beside your shared window), or will you need a volunteer to relay questions to you? +> - Can you share contact information (ex: phone number) so that we can get in touch with you in case of technical issues or scheduling changes? +> - Do you need help finding your way around IRC so that you can check into \`#emacsconf-org\`? What is your IRC nickname? + + ## STANDBY Write viewing instructions :zaeph: Extra stuff to consider adding: @@ -254,7 +275,7 @@ Extra stuff to consider adding: -## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#orgac86a88), Oct 7 for everything :organizers: +## DONE Review the submissions in the pad (see emacsconf-org-private or conf.org for the link) and add any objections or comments by Sept 26 for possible [early speaker notification](#orgbb35d27), Oct 7 for everything :organizers: - zaeph: will start reviewing on Sep 21 @@ -599,7 +620,7 @@ We tried using q56 before, but it was a little too aggressive. Q=32 is the defau ### Test stream setup -[Stream](#org5f90458) +[Stream](#orgc0a238a) ### Set up MPV for captions @@ -916,7 +937,7 @@ Exceptions: ### Send thanks -[Thank you, next steps](#orga138575) +[Thank you, next steps](#orge71d484) ### Extract the opening and closing remarks @@ -1067,7 +1088,7 @@ Probably focus on grabbing the audio first and seeing what's worth keeping Make a table of the form -
+
-- cgit v1.2.3