summaryrefslogtreecommitdiffstats
path: root/2020/emacsconf-2020-cfp.org
blob: d33ea0c129bc42d21a123cf6aca0a5e65741874d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
#+title: EmacsConf 2020
#+subtitle: Online Conference
#+date: November 28 and 29, 2020
#+options: author:nil

The [[https://emacsconf.org/2020/cfp/][Call for Proposals]] for [[https://emacsconf.org/2020/][EmacsConf 2020]] talks is now open, until
*September 30, 2020*.

After a successful EmacsConf 2019, we are back again this year and are
once again calling for your participation!

EmacsConf is the conference about the joy of [[https://www.gnu.org/software/emacs/emacs.html][Emacs]], Emacs Lisp, and
memorizing key sequences.

We are holding EmacsConf 2020 as a virtual (online) conference again
this year, especially now, given the current state of the world with
the ongoing global pandemic.  We remain fully committed to freedom,
and we will continue using our infrastructure and streaming setup
consisting entirely of [[https://www.gnu.org/philosophy/free-sw.html][free software]], much like the last EmacsConf.

We welcome speakers of *all backgrounds* and *all levels of
experience*, including newcomers submitting a proposal to give their
first talk!

* Important dates

| CFP opens             | August 17, 2020          |
| CFP closes            | September 30, 2020       |
| Speaker notifications | October 24, 2020         |
| Schedule published    | November 7, 2020         |
| EmacsConf 2020!       | November 28 and 29, 2020 |

Please note that although we will try our best to stick to the above
dates in the coming months, given the current state of the world, we
may have to move things around a bit in case of unforeseen events.
Thank you for bearing with us as we all navigate these trying times.

* Talk formats

The following are the main formats for EmacsConf 2020 talks:

- *10 minutes* (Lightning talk): Quickly present a cool project,
  concept, or trick in 10 minutes or less!

- *20 minutes* (Standard talk): Introduce the audience to a new Emacs
  mode, concept, or just talk about something not necessarily shiny
  and new but that you find really neat nonetheless.

- *50 minutes* (Extended talk): Take your time going more in depth,
  and/or do a demo!  Extended talks are a great way of really
  educating the audience about something you enjoy.

Q&A time is *included* in the Standard and Extended time slots; please
time your presentation accordingly.  If you would like to take
questions live, we recommend aiming for a 15-minute presentation for
the Standard time slot, and for 40-45 minutes for the Extended time
slot.  However, as the speaker, the exact allocation of your time is
up to you, so long as it does not exceed the allocated time slot.

Other session formats such as tutorials, workshops, and hangouts are
welcome as well, especially considering all that is going on around
the world, in case you would find those other formats preferable to a
traditional talk format.  If you are interested in these or other
session types, please get in touch with us publicly or privately; we
will be happy to work something out with you.

Keynote speaker(s) for EmacsConf 2020 will be introduced in a future
announcement.

* Topic ideas

Not sure what to talk about?  You might find some neat ideas on the
[[https://emacsconf.org/2020/ideas/][ideas]] page (feel free to add yours there too)!  If you're still not
sure, come by our IRC channel =#emacsconf= on =chat.freenode.net= and
say hi.  You can join the chat using [[ircs://chat.freenode.net:6697/emacsconf][your favourite IRC client]], or by
pointing your web browser to [[https://chat.emacsconf.org][chat.emacsconf.org]] which runs our
self-hosted instance of [[https://thelounge.chat][The Lounge]] free software web IRC client.

A great way to get started with writing a proposal is to start by
exploring the programs from previous years: [[https://emacsconf.org/2019/schedule/][2019]], [[https://emacsconf.org/2015/schedule/][2015]], [[https://emacsconf.org/2013/#program][2013]].

* Submission

Once you're ready to submit your proposal, the [[https://emacsconf.org/2020/submit/][submit]] page has the
instructions on how to submit your talk.

We are committed to increasing the participation of speakers belonging
to groups traditionally underrepresented at free software conferences,
including women and people of colour.  If you're comfortable sharing
demographic information, please include them in your submission email,
but your proposal will not be judged negatively if you leave them out.

* Getting involved

If you would like to get involved with the various aspects of
organizing the conference such as planning the sessions or helping
with the infrastructure, come say hi to us at =#emacsconf= on
=chat.freenode.net=.

Don't forget to subscribe to our mailing list, [[https://lists.gnu.org/mailman/listinfo/emacsconf-discuss][emacsconf-discuss]], for
discussion and announcements about the EmacsConf conference.

We look forward to your ideas and submissions!


* COMMENT How to export this file

As of the time of writing this document (Org mode version 9.3.7), the
Org links library (=ol.el=) does not yet recognize =ircs= link types,
and will throw an error if you try to export a file containing them,
such as this file.

To work around that, you can use something along the lines of the
Emacs Lisp code below, by either adding it to your init file, or by
putting the point in the code block and hitting =C-c C-v e= (that is,
hold Ctrl, then hit c followed by v, then release Ctrl, and hit e) to
evaluate the code, working around the issue only for the current
session.

#+begin_src emacs-lisp :results silent
(org-link-set-parameters
 "ircs"
 :export
 (lambda (link description format)
   "Export an ircs link.
See `org-link-parameters' for details about LINK, DESCRIPTION and
FORMAT."
   (let ((desc (or description link)))
     (pcase format
       (`html (format "<a href=\"ircs:%s\">%s</a>" link desc))
       (`md (format "[%s](ircs:%s)" desc link))
       (_ nil)))))
#+end_src