diff options
author | Sacha Chua <sacha@sachachua.com> | 2022-10-22 09:47:38 -0400 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2022-10-22 09:47:38 -0400 |
commit | e18bffec093541d678f5877590030fc631a9c898 (patch) | |
tree | 0d38935012cc7c06a7ef82e8e8a1fee85950136f /2022 | |
parent | 561c3b9a7467910944d330b6b60fa28b347965f5 (diff) | |
parent | 4e1a45ec6a7e587331920e1dd517f07fd6df4ebf (diff) | |
download | emacsconf-wiki-e18bffec093541d678f5877590030fc631a9c898.tar.xz emacsconf-wiki-e18bffec093541d678f5877590030fc631a9c898.zip |
Merge branch 'master' of git://git.emacsconf.org/emacsconf-wiki
Diffstat (limited to '2022')
-rw-r--r-- | 2022/organizers-notebook.md | 2 | ||||
-rw-r--r-- | 2022/organizers-notebook/index.org | 56 |
2 files changed, 54 insertions, 4 deletions
diff --git a/2022/organizers-notebook.md b/2022/organizers-notebook.md index 465911d6..87c2f3f5 100644 --- a/2022/organizers-notebook.md +++ b/2022/organizers-notebook.md @@ -2281,7 +2281,7 @@ Probably focus on grabbing the audio first and seeing what’s worth keeping Make a table of the form -<table id="org1b57c8d" border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides"> +<table id="org87c63bb" border="2" cellspacing="0" cellpadding="6" rules="groups" frame="hsides"> <colgroup> diff --git a/2022/organizers-notebook/index.org b/2022/organizers-notebook/index.org index 0403fcd3..bb6d2121 100644 --- a/2022/organizers-notebook/index.org +++ b/2022/organizers-notebook/index.org @@ -51,7 +51,7 @@ or ~C-c \~ (~org-match-sparse-tree~) to see anything tagged with your tag. ~org-agenda~ with ~<~ for the file restriction may also be handy. -* Cadence +* Cadence :PROPERTIES: :CUSTOM_ID: cadence :OWNER: sachac @@ -283,7 +283,7 @@ in prod or docker container :Effort: 1:00 :END: :LOGBOOK: -CLOCK: [2022-10-20 Thu 12:36] +[2022-10-20 Thu 12:36] :END: (find-file "/ssh:live|sudo::/etc/icecast2/icecast.xml") @@ -2031,7 +2031,7 @@ Make a table of the form *** People have a hard time seeing dark-mode presentations (or light-mode) mpv --vf=negate $url -* Task archive +* Task archive :PROPERTIES: :CUSTOM_ID: archive :END: @@ -3524,6 +3524,56 @@ Throw an error if ERROR is non-nil, skip otherwise." (message "Back to safety. Phew!") #+end_src +** Prerecs +*** Receive notification when new prerecs are available +#+begin_src sh :eval no :tangle prerecs-wait-new.sh +#!/usr/bin/env sh + +set -eu + +sleep_duration=1800 + +data=prerec-wait-new.data +touch "$data" + +plural() { + if [ "$2" = 1 ] || [ "$2" = -1 ]; then + echo "${1}" + else + case $1 in + "is" ) + "are" + ;; + ,* ) + "${1}s" + esac + fi +} + +notify() { + echo "$1" + notify-send -t 0 "EmacsConf" "$1" +} + +echo "Currently waiting for prerec" + +prerecs_number_past=$(cat "$data") +diff=0 + +while true; do + prerecs_number_current="$(TERM=xterm ssh orga@media.emacsconf.org -- ls -1 /srv/upload | wc -l)" + diff=$((prerecs_number_current - prerecs_number_past)) + if [ $diff -gt 0 ]; then + break + fi + sleep "$sleep_duration" +done + +notify "Yay~, $diff new $(plural "prerec" $diff) $(plural "is" $diff) available!" + +echo "$prerecs_number_current" > "$data" +#+end_src + ** Publish this page #+begin_src emacs-lisp |