From cf2cac4a53d0f63895187731a2716dd419315f16 Mon Sep 17 00:00:00 2001 From: Sacha Chua Date: Sun, 2 Oct 2022 08:03:46 -0400 Subject: Add idea for advertising --- 2022/organizers-notebook.org | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) (limited to '2022/organizers-notebook.org') diff --git a/2022/organizers-notebook.org b/2022/organizers-notebook.org index d446e37f..b667393e 100644 --- a/2022/organizers-notebook.org +++ b/2022/organizers-notebook.org @@ -196,8 +196,21 @@ Where: - [ ] Public wiki - [ ] Emacsconf-el - [ ] Publishing to the wiki -- [ ] Consult and Embark shortcuts for navigation - +- [ ] Consult and Embark shortcuts for navigation +**** Setup notes + +wget https://emacsconf.org/id_rsa_anon_git_emacsconf +mkdir -p ~/.ssh/ +chmod 600 ~/.ssh/ +mv id_rsa_anon_git_emacsconf ~/.ssh/ +chmod 600 ~/.ssh/id_rsa_anon_git_emacsconf + +git clone https://github.com/emacsconf/emacsconf-el.git +git clone anon@git.emacsconf.org:emacsconf-wiki +git clone git@git.emacsconf.org:emacsconf-2022-private + +[[file:/ssh:publish:~/README.org]] + *** STANDBY Add nice-to-have stuff to prepare.md :zaeph: - org-reveal config - SIL fonts choice @@ -376,6 +389,11 @@ Ideas: - Multiple streams with more space between talks, people choose which stream they want to watch - How other conferences do it - Speakers can attend related talks more easily +** Do we want people to advertise any openings with their companies or any work that they're looking for? + +- Speakers on their page? +- General audience on a wiki page somewhere? + ** Archive *** Where should volunteers e-mail? :LOGBOOK: @@ -1455,7 +1473,8 @@ Objectives for this e-mail: (defun emacsconf-draft-all-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))) + (info (seq-filter (lambda (o) (string= (plist-get o :status) "TO_ACCEPT")) + (emacsconf-filter-talks (emacsconf-get-talk-info)))) (grouped (seq-group-by (lambda (o) (plist-get o :email)) info)) (template (emacsconf-mail-merge-get-template "acceptance"))) (mapc (lambda (group) -- cgit v1.2.3