summaryrefslogtreecommitdiffstats
path: root/2022/organizers-notebook.org
diff options
context:
space:
mode:
authorSacha Chua <sacha@sachachua.com>2022-10-02 08:03:46 -0400
committerSacha Chua <sacha@sachachua.com>2022-10-02 08:03:46 -0400
commitcf2cac4a53d0f63895187731a2716dd419315f16 (patch)
tree1269514acefe9f246f3042c39be683bb185faafc /2022/organizers-notebook.org
parentbd73c8608686df510c68a7a653bbf6ae22e75e51 (diff)
downloademacsconf-wiki-cf2cac4a53d0f63895187731a2716dd419315f16.tar.xz
emacsconf-wiki-cf2cac4a53d0f63895187731a2716dd419315f16.zip
Add idea for advertising
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 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)