summaryrefslogtreecommitdiffstats
path: root/2022/organizers-notebook.org
diff options
context:
space:
mode:
Diffstat (limited to '2022/organizers-notebook.org')
-rw-r--r--2022/organizers-notebook.org25
1 files changed, 22 insertions, 3 deletions
diff --git a/2022/organizers-notebook.org b/2022/organizers-notebook.org
index d7591df1..8b148b6e 100644
--- a/2022/organizers-notebook.org
+++ b/2022/organizers-notebook.org
@@ -198,8 +198,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
@@ -378,6 +391,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:
@@ -1457,7 +1475,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)