diff options
author | Sacha Chua <sacha@sachachua.com> | 2022-09-21 13:57:25 -0400 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2022-09-21 13:57:25 -0400 |
commit | ecae8e8ad9d9c9d6a83a51e60d190d6bd436e3c2 (patch) | |
tree | 0d7e7f381891414a39bfe6daaee91b9c64f149ec | |
parent | afe439ac96242cecca3d76e4108d9875284d5b2d (diff) | |
parent | 4abd64101eff010e799a243e20e30d130b5c63c3 (diff) | |
download | emacsconf-wiki-ecae8e8ad9d9c9d6a83a51e60d190d6bd436e3c2.tar.xz emacsconf-wiki-ecae8e8ad9d9c9d6a83a51e60d190d6bd436e3c2.zip |
Merge branch 'master' of git.emacsconf.org:emacsconf-wiki
Diffstat (limited to '')
-rw-r--r-- | 2021/playbook.md (renamed from playbook.md) | 0 | ||||
-rw-r--r-- | 2021/playbook.org (renamed from playbook.org) | 0 | ||||
-rw-r--r-- | 2021/playbook/restream-flv.sh (renamed from playbook/restream-flv.sh) | 0 | ||||
-rw-r--r-- | 2021/playbook/restream-lowres.sh (renamed from playbook/restream-lowres.sh) | 0 | ||||
-rw-r--r-- | 2021/playbook/restream-youtube.sh (renamed from playbook/restream-youtube.sh) | 0 | ||||
-rw-r--r-- | 2021/playbook/stream-desktop-and-audio.sh (renamed from playbook/stream-desktop-and-audio.sh) | 0 | ||||
-rw-r--r-- | 2022/organizers-notebook.org | 51 |
7 files changed, 46 insertions, 5 deletions
diff --git a/playbook.md b/2021/playbook.md index cbee525a..cbee525a 100644 --- a/playbook.md +++ b/2021/playbook.md diff --git a/playbook.org b/2021/playbook.org index fe9968d1..fe9968d1 100644 --- a/playbook.org +++ b/2021/playbook.org diff --git a/playbook/restream-flv.sh b/2021/playbook/restream-flv.sh index dc632762..dc632762 100644 --- a/playbook/restream-flv.sh +++ b/2021/playbook/restream-flv.sh diff --git a/playbook/restream-lowres.sh b/2021/playbook/restream-lowres.sh index bd6f5bfb..bd6f5bfb 100644 --- a/playbook/restream-lowres.sh +++ b/2021/playbook/restream-lowres.sh diff --git a/playbook/restream-youtube.sh b/2021/playbook/restream-youtube.sh index 1cc2994b..1cc2994b 100644 --- a/playbook/restream-youtube.sh +++ b/2021/playbook/restream-youtube.sh diff --git a/playbook/stream-desktop-and-audio.sh b/2021/playbook/stream-desktop-and-audio.sh index d3a7e6f8..d3a7e6f8 100644 --- a/playbook/stream-desktop-and-audio.sh +++ b/2021/playbook/stream-desktop-and-audio.sh diff --git a/2022/organizers-notebook.org b/2022/organizers-notebook.org index 2213648e..84726b01 100644 --- a/2022/organizers-notebook.org +++ b/2022/organizers-notebook.org @@ -8,11 +8,46 @@ #+TOC: headlines 4 -* COMMENT How to export this file :noexport: +* How to export this file :noexport: +You can open these links (~C-c C-o~) to run their associated actions: - [[elisp:(progn (org-md-export-to-markdown) (org-babel-tangle))][Export and tangle]] - [[elisp:(emacsconf-org-publish-this-page)][Export, tangle, commit, push]] - [[elisp:(org-babel-execute-buffer)][Execute buffer]] +- [[elisp:(org-babel-ref-resolve "md-export-on-save-toggle-on()")][Export on save]] +- [[elisp:(org-babel-ref-resolve "md-export-on-save-toggle-off()")][Stop exporting on save]] + +** Code +#+name: md-export-on-save-setup +#+begin_src emacs-lisp :eval query +(defun emacsconf-export-md-on-save () + "Export markdown on save. +Meant to be used with `after-save-hook'." + (org-md-export-to-markdown) + (org-babel-tangle)) + +(defvar emacsconf-export-md-on-save-configured t + "Non-nil when the setup code-block has been executed.") +#+end_src + +#+name: md-export-on-save-toggle-on +#+BEGIN_SRC emacs-lisp :eval query +(unless (bound-and-true-p emacsconf-export-md-on-save-configured) + (org-babel-ref-resolve "md-export-on-save-setup()")) + +(add-hook 'after-save-hook #'emacsconf-export-md-on-save nil t) + +(when (memq #'emacsconf-export-md-on-save after-save-hook) + (message "Hook is active")) +#+END_SRC + +#+name: md-export-on-save-toggle-off +#+begin_src emacs-lisp :eval query :outputs none +(remove-hook 'after-save-hook #'emacsconf-export-md-on-save t) + +(unless (memq #'emacsconf-export-md-on-save after-save-hook) + (message "Hook is no longer active")) +#+end_src * Current tasks / status Planned dates and phases: @@ -59,7 +94,7 @@ DEADLINE: <2022-11-20 Sun> ** TODO corwn, zaeph: Work on the OBS scenes :zaeph:corwin: DEADLINE: <2022-11-11 Fri> - [ ] corwin is out from Nov 11-20, and we should start working on them before then. -** TODO ???: Figure out web-based file upload :needsowner: +** TODO ???: Figure out web-based file upload :needsowner: Lesson learned from last year: "Since people kept running into ftp problems, we might want to set up a web-frontend next year to minimise problems." Maybe we could ask some of the volunteers who wanted to help us with the infra? It shouldn’t be complicated to deploy a ready-made solution. ** DONE sacha: Prepare to export talk information to wiki :sacha: @@ -69,6 +104,8 @@ DEADLINE: <2022-10-15 Sat> Tested code in a fork, can publish talk information once talks are approved. ** DONE zaeph: Give access to emacsconf-2022-private to dto :zaeph: CLOSED: [2022-09-21 Wed 01:17] +** TODO dto: create Org heading for scheduling caption team's live IRC duty shifts :dto: +DEADLINE: <2022-09-30 Fri> * Other tasks and processes ** DONE Sacha: Organize volunteer information :sacha: @@ -273,7 +310,7 @@ Each role comprises different responsibilities. A person may have multiple role - #emacsconf-org and #emacsconf channels - (?) Join organizer room S -**** Start streaming :stream: +**** Start streaming :stream: :PROPERTIES: :CUSTOM_ID: start-streaming :END: @@ -534,7 +571,7 @@ Exceptions: - Update Toobnix and Youtube captions with =conf-video-share=. - Update Toobnix and Youtube descriptions with chapters. - Update ${conf-year}/${captions}/${slug}.md in the wiki. To make this from scratch, use =M-x conf-prepare-transcript-directives= from the talk heading in the conference Org file. -*** BLOCKED Downsize the server :bandali: +*** BLOCKED Downsize the server :bandali: ** In case of :PROPERTIES: :CUSTOM_ID: exceptions @@ -624,7 +661,7 @@ Exceptions: command to be the audio monitor, so you get system output as well. - OR: - - [? splitting audio] [[#sound][Set up sinks for sound]] + - [? splitting audio] (look for “Set up sinks for sound” under 2021/) - [? same audio] - Set up audio monitor as the input for FFMPEG - MPV goes to MPV sink, browser goes to recording sink, FFMPEG takes in recording monitor @@ -1366,3 +1403,7 @@ chatter in the other lists Cc'd on this message. Thank you. A copy of these two licenses is available on the EmacsConf wiki, in the [[https://emacsconf.org/COPYING.CC-BY-SA][COPYING.CC-BY-SA]] and [[https://emacsconf.org/COPYING.GPL][COPYING.GPL]] files. + +* COMMENT Local variables +# local variables: +# |