-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathindex.html
executable file
·1173 lines (1104 loc) · 43.4 KB
/
index.html
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>EmacsConf 2015 Planning Doc</title>
<!-- 2015-08-11 Tue 16:37 -->
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<meta name="generator" content="Org-mode" />
<meta name="author" content="Samer Masterson" />
<style type="text/css">
<!--/*--><![CDATA[/*><!--*/
.title { text-align: center; }
.todo { font-family: monospace; color: red; }
.done { color: green; }
.tag { background-color: #eee; font-family: monospace;
padding: 2px; font-size: 80%; font-weight: normal; }
.timestamp { color: #bebebe; }
.timestamp-kwd { color: #5f9ea0; }
.right { margin-left: auto; margin-right: 0px; text-align: right; }
.left { margin-left: 0px; margin-right: auto; text-align: left; }
.center { margin-left: auto; margin-right: auto; text-align: center; }
.underline { text-decoration: underline; }
#postamble p, #preamble p { font-size: 90%; margin: .2em; }
p.verse { margin-left: 3%; }
pre {
border: 1px solid #ccc;
box-shadow: 3px 3px 3px #eee;
padding: 8pt;
font-family: monospace;
overflow: auto;
margin: 1.2em;
}
pre.src {
position: relative;
overflow: visible;
padding-top: 1.2em;
}
pre.src:before {
display: none;
position: absolute;
background-color: white;
top: -10px;
right: 10px;
padding: 3px;
border: 1px solid black;
}
pre.src:hover:before { display: inline;}
pre.src-sh:before { content: 'sh'; }
pre.src-bash:before { content: 'sh'; }
pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
pre.src-R:before { content: 'R'; }
pre.src-perl:before { content: 'Perl'; }
pre.src-java:before { content: 'Java'; }
pre.src-sql:before { content: 'SQL'; }
table { border-collapse:collapse; }
caption.t-above { caption-side: top; }
caption.t-bottom { caption-side: bottom; }
td, th { vertical-align:top; }
th.right { text-align: center; }
th.left { text-align: center; }
th.center { text-align: center; }
td.right { text-align: right; }
td.left { text-align: left; }
td.center { text-align: center; }
dt { font-weight: bold; }
.footpara:nth-child(2) { display: inline; }
.footpara { display: block; }
.footdef { margin-bottom: 1em; }
.figure { padding: 1em; }
.figure p { text-align: center; }
.inlinetask {
padding: 10px;
border: 2px solid gray;
margin: 10px;
background: #ffffcc;
}
#org-div-home-and-up
{ text-align: right; font-size: 70%; white-space: nowrap; }
textarea { overflow-x: auto; }
.linenr { font-size: smaller }
.code-highlighted { background-color: #ffff00; }
.org-info-js_info-navigation { border-style: none; }
#org-info-js_console-label
{ font-size: 10px; font-weight: bold; white-space: nowrap; }
.org-info-js_search-highlight
{ background-color: #ffff00; color: #000000; font-weight: bold; }
/*]]>*/-->
</style>
<link rel="stylesheet" type="text/css" href="css/foundation.min.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/org-export.css" />
<script type="text/javascript">
/*
@licstart The following is the entire license notice for the
JavaScript code in this tag.
Copyright (C) 2012-2013 Free Software Foundation, Inc.
The JavaScript code in this tag is free software: you can
redistribute it and/or modify it under the terms of the GNU
General Public License (GNU GPL) as published by the Free Software
Foundation, either version 3 of the License, or (at your option)
any later version. The code is distributed WITHOUT ANY WARRANTY;
without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
As additional permission under GNU GPL version 3 section 7, you
may distribute non-source (e.g., minimized or compacted) forms of
that code without the copy of the GNU GPL normally required by
section 4, provided you include this license notice and a URL
through which recipients can access the Corresponding Source.
@licend The above is the entire license notice
for the JavaScript code in this tag.
*/
<!--/*--><![CDATA[/*><!--*/
function CodeHighlightOn(elem, id)
{
var target = document.getElementById(id);
if(null != target) {
elem.cacheClassElem = elem.className;
elem.cacheClassTarget = target.className;
target.className = "code-highlighted";
elem.className = "code-highlighted";
}
}
function CodeHighlightOff(elem, id)
{
var target = document.getElementById(id);
if(elem.cacheClassElem)
elem.className = elem.cacheClassElem;
if(elem.cacheClassTarget)
target.className = elem.cacheClassTarget;
}
/*]]>*///-->
</script>
</head>
<body>
<div id="content">
<h1 class="title">EmacsConf 2015 Planning Doc</h1>
<div id="outline-container-sec-1" class="outline-2">
<h2 id="sec-1">Emacs Conference 2015! – <a href="http://emacsconf2015.org">http://emacsconf2015.org</a></h2>
<div class="outline-text-2" id="text-1">
<p>
Let's make it happen! Contribute to this repository at
<a href="https://github.com/emacsconf/emacsconf2015">https://github.com/emacsconf/emacsconf2015</a>, or e-mail <a href="mailto:[email protected]">[email protected]</a> . Web version:
<a href="http://emacsconf.github.io/emacsconf2015/">http://emacsconf.github.io/emacsconf2015/</a>
</p>
<p>
<b>Interested?</b> Register for EmacsConf 2015 by going to <a href="http://emacsconf2015.org/">http://emacsconf2015.org/</a> or by emailing [email protected] with your name or nickname.
</p>
<p>
Want to help plan the conference? Join the IRC (#emacsconf on irc.freenode.net) and our Discourse: <a href="http://discourse.emacsconf2015.org">http://discourse.emacsconf2015.org</a>.
</p>
<p>
Also, check out this Google+ event - Aug 29, 2015? <a href="https://plus.google.com/events/cgd1kva6f473osvgvq6biuinhn4">https://plus.google.com/events/cgd1kva6f473osvgvq6biuinhn4</a>
</p>
</div>
<div id="outline-container-sec-1-1" class="outline-3">
<h3 id="sec-1-1">What is EmacsConf?</h3>
<div class="outline-text-3" id="text-1-1">
<p>
EmacsConf is a conference about the joy of Emacs, Emacs Lisp, and memorizing key sequences.
</p>
<p>
EmacsConf is about bringing the people that use Emacs together. EmacsConf, like Emacs itself, is wholely owned by the community, and anyone may contribute to it (see "How to get involved!").
</p>
</div>
</div>
<div id="outline-container-sec-1-2" class="outline-3">
<h3 id="sec-1-2">When & Where?</h3>
<div class="outline-text-3" id="text-1-2">
<p>
EmacsConf will be on August 29nd (a Saturday). The IRL component will be in the GoodShop San Francisco office at 550 Montgomery St, San Francisco, CA, and Sacha will be hosting an online component. All of the talks and events will be livestreamed.
</p>
</div>
</div>
<div id="outline-container-sec-1-3" class="outline-3">
<h3 id="sec-1-3">How to get involved!</h3>
<div class="outline-text-3" id="text-1-3">
<p>
First, join our google group emacsconf-org (<a href="https://groups.google.com/forum/#!forum/emacsconf-org">https://groups.google.com/forum/#!forum/emacsconf-org</a>). All important messages & announcements go through there. If you want to help, please ping the list or our IRC channel! We're super friendly, so don't stress about getting in contact with us :)
</p>
<p>
If you have a small idea or improvement, send us a pull request or open an issue!
</p>
</div>
</div>
<div id="outline-container-sec-1-4" class="outline-3">
<h3 id="sec-1-4">To-do state explanation</h3>
<div class="outline-text-3" id="text-1-4">
<ul class="org-ul">
<li>IDEA (or none): Might be a good talk. No one has signed up for it yet
</li>
<li>IDENTIFIED: Potential speakers for this have been identified
</li>
<li>INVITED: Someone has actually reached out to the potential speakers and invited them =)
</li>
<li>ACCEPTED: A speaker for this has accepted
</li>
<li>SCHED: We actually have a timeslot and everything =D
</li>
</ul>
</div>
</div>
<div id="outline-container-sec-1-5" class="outline-3">
<h3 id="sec-1-5">Current plans</h3>
<div class="outline-text-3" id="text-1-5">
<ul class="org-ul">
<li>Baseline: Google Hangout all day, very informal, might even just be a couple of people learning about Emacs and occasionally talking about what they discover.
</li>
<li>Better: Google Hangout, spontaneous talks occur. Sacha edits the videos afterwards and posts highlights.
</li>
<li>Even better: There are scheduled talks which people prepare for. (See talk ideas below.) Sacha edits the videos afterwards and posts chunks for easy reviewing.
</li>
<li>Amazing: We have so much planned, we end up with parallel tracks or additional Hangouts.
</li>
</ul>
</div>
</div>
<div id="outline-container-sec-1-6" class="outline-3">
<h3 id="sec-1-6">Ideas for sessions</h3>
<div class="outline-text-3" id="text-1-6">
</div><div id="outline-container-sec-1-6-1" class="outline-4">
<h4 id="sec-1-6-1"><span class="todo IDENTIFIED">IDENTIFIED</span> The State of Emacs</h4>
<div class="outline-text-4" id="text-1-6-1">
<p>
The kernel of this idea is basically to have a "State of the Union" address, where the Union is Emacs. I think it would be awesome if someone really embedded in Emacs development (specifically thinking of Stefan) talked about the current state of Emacs development with regards to
</p>
<ul class="org-ul">
<li>how development today is functioning. What are major development process problems that need to be fixed but haven't? What do the maintainers of Emacs stress about (letting patches rot in debbugs, having bugs rot in debbugs, being unsure of the general brokenness of Emacs because of the lack of testing), and what processes can be put in place to ease their anxieties?
</li>
<li>new contributors. Making Emacs easier for new contributors was a <b>huge</b> topic in the Fall of 2014 on emacs-devel. The switch to git was seen as the first step, what were the next steps and how did they work?
</li>
<li>whether anything surprisingly good/bad has happened this year.
</li>
<li>the general state of emacs-devel.
</li>
<li>and what we can do to help! :D
</li>
</ul>
<p>
(suggested by Samer)
</p>
<p>
Possible people:
</p>
<ul class="org-ul">
<li>Stefan Monnier?
</li>
</ul>
</div>
</div>
<div id="outline-container-sec-1-6-2" class="outline-4">
<h4 id="sec-1-6-2"><span class="todo IDEA">IDEA</span> What's new in Emacs 25?</h4>
<div class="outline-text-4" id="text-1-6-2">
<p>
Roadmap, how we can help
</p>
</div>
<ul class="org-ul"><li><a id="sec-1-6-2-1" name="sec-1-6-2-1"></a>What's new for users?<br /></li>
<li><a id="sec-1-6-2-2" name="sec-1-6-2-2"></a>What's new for developers?<br /></li></ul>
</div>
<div id="outline-container-sec-1-6-3" class="outline-4">
<h4 id="sec-1-6-3"><span class="todo IDEA">IDEA</span> Hearing from Emacs beginners</h4>
<div class="outline-text-4" id="text-1-6-3">
<p>
:interested: Daniel Gopar and Miguel Flores
</p>
<ul class="org-ul">
<li>What's the experience like?
</li>
<li>What got you interested?
</li>
<li>What helped?
</li>
<li>How can we help more beginners like you get deeper into Emacs?
</li>
</ul>
</div>
</div>
<div id="outline-container-sec-1-6-4" class="outline-4">
<h4 id="sec-1-6-4"><span class="todo IDEA">IDEA</span> Q&A for new Emacs users</h4>
</div>
<div id="outline-container-sec-1-6-5" class="outline-4">
<h4 id="sec-1-6-5"><span class="todo IDEA">IDEA</span> Things you want more people to know about Emacs</h4>
<div class="outline-text-4" id="text-1-6-5">
<ul class="org-ul">
<li>Tips, tricks, workflow ideas
</li>
</ul>
</div>
</div>
<div id="outline-container-sec-1-6-6" class="outline-4">
<h4 id="sec-1-6-6">Updates on interesting things</h4>
<div class="outline-text-4" id="text-1-6-6">
</div><ul class="org-ul"><li><a id="sec-1-6-6-1" name="sec-1-6-6-1"></a><span class="todo IDENTIFIED">IDENTIFIED</span> Guile Emacs<br /><div class="outline-text-5" id="text-1-6-6-1">
<p>
I think it would be awesome if Robin Templeton or BT Templeton (there is a chance that they're the same person, I'm still not clear on that…) talked about the state of Guile Emacs.
</p>
<ul class="org-ul">
<li>What works? What's left to be done?
</li>
<li>What does Guile replace in the core Emacs engine?
</li>
<li><b>Is Guile Emacs the future of Emacs?</b> Is Guile Emacs going to <b>happen</b> and be merged into trunk at some point in the future? If so, what's needed to get us there, otherwise, why not?
</li>
</ul>
<p>
And what can we do to help! :D :D
</p>
<p>
Suggested by Samer
</p>
</div>
</li>
<li><a id="sec-1-6-6-2" name="sec-1-6-6-2"></a><span class="todo IDEA">IDEA</span> Emacs forks and variants?<br /><div class="outline-text-5" id="text-1-6-6-2">
<p>
What's going on with Emacs variants? Interesting news?
</p>
</div>
</li></ul>
</div>
<div id="outline-container-sec-1-6-7" class="outline-4">
<h4 id="sec-1-6-7">What are good workflows for common needs?</h4>
<div class="outline-text-4" id="text-1-6-7">
</div><ul class="org-ul"><li><a id="sec-1-6-7-1" name="sec-1-6-7-1"></a>Programming<br /><div class="outline-text-5" id="text-1-6-7-1">
<ul class="org-ul">
<li>C/C++
</li>
<li>Rails
</li>
<li>Javascript
</li>
<li>Java
</li>
<li>Clojure
</li>
<li>Scala
</li>
<li>Python
</li>
</ul>
</div>
<ul class="org-ul"><li><a id="sec-1-6-7-1-1" name="sec-1-6-7-1-1"></a><span class="todo IDEA">IDEA</span> interactive development<br /><div class="outline-text-6" id="text-1-6-7-1-1">
<p>
I'd love some talks about <b>interactive</b> development with Emacs: making changes in code and getting immediate feedback. (Think lighttable.) The Emacs Rocks episode about swank-js is a perfect example of what I mean: <a href="http://emacsrocks.com/e11.html">http://emacsrocks.com/e11.html</a>.
</p>
<p>
Suggested by Tikhon Jelvis
</p>
</div>
</li></ul>
</li>
<li><a id="sec-1-6-7-2" name="sec-1-6-7-2"></a>Writing and research<br /><div class="outline-text-5" id="text-1-6-7-2">
<ul class="org-ul">
<li>Reproducible research
</li>
<li>Writing prose
</li>
<li>Org for publishing
</li>
<li>Knowledge management
</li>
<li>Efficiently managing and using bibliographic databases
</li>
</ul>
</div>
<ul class="org-ul"><li><a id="sec-1-6-7-2-1" name="sec-1-6-7-2-1"></a><span class="todo IDEA">IDEA</span> Reproducible research<br /><div class="outline-text-6" id="text-1-6-7-2-1">
<ul class="org-ul">
<li>How do you manage your literature review?
</li>
<li>How do you analyze your data?
</li>
<li>How do you work with charts and graphs?
</li>
<li>How can you publish in the required formats?
</li>
<li>What have your experiences been like using this? Advantages? Gaps?
</li>
</ul>
</div>
</li>
<li><a id="sec-1-6-7-2-2" name="sec-1-6-7-2-2"></a><span class="todo IDEA">IDEA</span> How can a student use Emacs/org-mode effectively?<br /><div class="outline-text-6" id="text-1-6-7-2-2">
<ul class="org-ul">
<li>Note-taking
</li>
<li>Agenda
</li>
<li>Scheduling
</li>
<li>Writing papers
<ul class="org-ul">
<li>Outlines
</li>
<li>Export
</li>
</ul>
</li>
<li>Attachments
</li>
</ul>
</div>
</li></ul>
</li>
<li><a id="sec-1-6-7-3" name="sec-1-6-7-3"></a><span class="todo IDEA">IDEA</span> Data science<br /><div class="outline-text-5" id="text-1-6-7-3">
<ul class="org-ul">
<li>ESS
</li>
<li>Org Mode and reproducible research
</li>
</ul>
</div>
</li></ul>
</div>
<div id="outline-container-sec-1-6-8" class="outline-4">
<h4 id="sec-1-6-8"><span class="todo ACCEPTED">ACCEPTED</span> How to start an Emacs Meetup!</h4>
<div class="outline-text-4" id="text-1-6-8">
<p>
Talk by Harry Schwartz, founder of the NYC Emacs Group
</p>
<ul class="org-ul">
<li>Experiences
</li>
<li>Encouraging people to give talks
</li>
</ul>
<p>
:interested: Harry Schwartz
</p>
<p>
Maybe also hear from the London Meetup?
</p>
</div>
<ul class="org-ul"><li><a id="sec-1-6-8-1" name="sec-1-6-8-1"></a>Identifying people by area who might be interested in an Emacs meetup<br /><div class="outline-text-5" id="text-1-6-8-1">
<p>
See also Samer's Google Form
</p>
<ul class="org-ul">
<li>San Francisco: Samer
</li>
</ul>
</div>
</li></ul>
</div>
<div id="outline-container-sec-1-6-9" class="outline-4">
<h4 id="sec-1-6-9"><span class="todo IDEA">IDEA</span> Introductory Emacs Lisp</h4>
<div class="outline-text-4" id="text-1-6-9">
<p>
:interested: Harry Schwartz
</p>
<ul class="org-ul">
<li>How to read Emacs Lisp
</li>
<li>How to start writing your own
</li>
<li>Modifying other people's code
</li>
<li>Writing your own
</li>
</ul>
</div>
</div>
<div id="outline-container-sec-1-6-10" class="outline-4">
<h4 id="sec-1-6-10"><span class="todo IDEA">IDEA</span> Talk on engine-mode (and defining other conveniences?)</h4>
<div class="outline-text-4" id="text-1-6-10">
<p>
:interested: Harry Schwartz
</p>
<p>
This would be a great short demo. If you want, you can also flesh it
out into a behind-the-scenes "this is how to write stuff like this",
or describe other little conveniences along these lines that people
can use. - Sacha
</p>
</div>
</div>
<div id="outline-container-sec-1-6-11" class="outline-4">
<h4 id="sec-1-6-11">What are some surprising uses of Emacs?</h4>
<div class="outline-text-4" id="text-1-6-11">
</div><ul class="org-ul"><li><a id="sec-1-6-11-1" name="sec-1-6-11-1"></a><span class="todo IDEA">IDEA</span> Update from the Emacs music scene?<br /></li>
<li><a id="sec-1-6-11-2" name="sec-1-6-11-2"></a><span class="todo ACCEPTED">ACCEPTED</span> Literate Devops<br /><div class="outline-text-5" id="text-1-6-11-2">
<p>
Howard Abrams
</p>
<ul class="org-ul">
<li>Why sysads should consider Emacs
</li>
<li>Neat things you can do
</li>
<li>Demonstration
</li>
</ul>
</div>
</li></ul>
</div>
<div id="outline-container-sec-1-6-12" class="outline-4">
<h4 id="sec-1-6-12"><span class="todo IDEA">IDEA</span> How can people contribute to Emacs core?</h4>
<div class="outline-text-4" id="text-1-6-12">
<p>
Walkthrough of how to:
</p>
<ul class="org-ul">
<li>find a small bug to work on
</li>
<li>navigate the source code
</li>
<li>prepare a patch
</li>
<li>work with emacs-devel
</li>
</ul>
</div>
</div>
<div id="outline-container-sec-1-6-13" class="outline-4">
<h4 id="sec-1-6-13"><span class="todo IDEA">IDEA</span> Where is the Emacs package system going?</h4>
<div class="outline-text-4" id="text-1-6-13">
<p>
Nic Ferrier? Steve Purcell? Milkypostman? Tom Tromey?
</p>
</div>
</div>
<div id="outline-container-sec-1-6-14" class="outline-4">
<h4 id="sec-1-6-14">What can we build with interesting capabilities available in Emacs? How?</h4>
<div class="outline-text-4" id="text-1-6-14">
</div><ul class="org-ul"><li><a id="sec-1-6-14-1" name="sec-1-6-14-1"></a><span class="todo IDENTIFIED">IDENTIFIED</span> What can you do with a web server?<br /><div class="outline-text-5" id="text-1-6-14-1">
<ul class="org-ul">
<li>httpd, elnode, skewer, impatient, etc. - @skeeto or Nic Ferrier?
</li>
</ul>
</div>
</li>
<li><a id="sec-1-6-14-2" name="sec-1-6-14-2"></a><span class="todo IDENTIFIED">IDENTIFIED</span> What can you do with REPLs?<br /><div class="outline-text-5" id="text-1-6-14-2">
<ul class="org-ul">
<li>comint, NREPL
</li>
</ul>
</div>
</li></ul>
</div>
<div id="outline-container-sec-1-6-15" class="outline-4">
<h4 id="sec-1-6-15"><span class="todo IDENTIFIED">IDENTIFIED</span> Design and Evolution of <a href="https://github.com/syl20bnr/spacemacs/">Spacemacs</a> by @syl20bnr</h4>
<div class="outline-text-4" id="text-1-6-15">
<ul class="org-ul">
<li>Why evil + spacebar
</li>
<li>Why guide-key
</li>
<li>Why layers
</li>
<li>Vim concepts being brought over - Vundle, etc.
</li>
<li>State of evil - what is not ideal yet? what are missing features from the ecosystem?
</li>
<li>How can contributors help?
</li>
</ul>
</div>
</div>
<div id="outline-container-sec-1-6-16" class="outline-4">
<h4 id="sec-1-6-16"><span class="todo IDEA">IDEA</span> What can improve the usability of Emacs?</h4>
<div class="outline-text-4" id="text-1-6-16">
<p>
Concrete tips, demonstrations
</p>
<ul class="org-ul">
<li>tutorials
</li>
<li>discoverability
</li>
<li>command mode / god-mode / composable commands
</li>
<li>Hydra
</li>
</ul>
<p>
People: Xah Lee? bbatsov? Steve Purcell? abo-abo?
</p>
</div>
<ul class="org-ul"><li><a id="sec-1-6-16-1" name="sec-1-6-16-1"></a>Improving discoverability<br /><div class="outline-text-5" id="text-1-6-16-1">
<p>
With all the tools that are available, this could be a separate talk:
</p>
<ul class="org-ul">
<li>Ido
</li>
<li>Ido Ubiquitous
</li>
<li>Smex
</li>
<li>Guide Key
</li>
<li>Helm (helm-M-x, helm-descbinds)
</li>
<li>Hydra
</li>
<li>…
</li>
</ul>
</div>
</li></ul>
</div>
<div id="outline-container-sec-1-6-17" class="outline-4">
<h4 id="sec-1-6-17"><span class="todo IDENTIFIED">IDENTIFIED</span> What are good development practices for Emacs Lisp?</h4>
<div class="outline-text-4" id="text-1-6-17">
<ul class="org-ul">
<li>Automated testing
</li>
<li>Continuous integration and testing on multiple Emacsen
</li>
<li>Code coverage reporting
</li>
<li>Emacs Lisp style and package linting
</li>
<li>Refactoring
</li>
<li>Performance
</li>
</ul>
<p>
I'm working on a series with John Wiegley on this topic, so we might
be able to spread this one out over lots of little demos. - Sacha
</p>
</div>
<ul class="org-ul"><li><a id="sec-1-6-17-1" name="sec-1-6-17-1"></a><span class="todo IDENTIFIED">IDENTIFIED</span> Useful utilities<br /><div class="outline-text-5" id="text-1-6-17-1">
<p>
Maybe with before/after code?
</p>
<ul class="org-ul">
<li>s.el
</li>
<li>f.el
</li>
<li>dash.el
</li>
<li>writing asynchronous code
</li>
</ul>
<p>
I think Magnar would be able to talk a lot about this. =) - Sacha
</p>
</div>
</li></ul>
</div>
<div id="outline-container-sec-1-6-18" class="outline-4">
<h4 id="sec-1-6-18">How can we get more people from beginner to intermediate?</h4>
</div>
<div id="outline-container-sec-1-6-19" class="outline-4">
<h4 id="sec-1-6-19"><span class="todo IDENTIFIED">IDENTIFIED</span> How can we get more people to begin using Emacs and stick with it for a while?</h4>
</div>
<div id="outline-container-sec-1-6-20" class="outline-4">
<h4 id="sec-1-6-20">Lightning talks: Workflow tips and favourite packages</h4>
<div class="outline-text-4" id="text-1-6-20">
</div><ul class="org-ul"><li><a id="sec-1-6-20-1" name="sec-1-6-20-1"></a>Magit<br /></li>
<li><a id="sec-1-6-20-2" name="sec-1-6-20-2"></a>Ebib<br /></li>
<li><a id="sec-1-6-20-3" name="sec-1-6-20-3"></a>EWW<br /></li>
<li><a id="sec-1-6-20-4" name="sec-1-6-20-4"></a>ESS<br /></li>
<li><a id="sec-1-6-20-5" name="sec-1-6-20-5"></a><span class="todo IDENTIFIED">IDENTIFIED</span> Hydra<br /><div class="outline-text-5" id="text-1-6-20-5">
<p>
abo-abo, naturally.
I'd love demonstrations of what people use this for =) - Sacha
</p>
</div>
</li>
<li><a id="sec-1-6-20-6" name="sec-1-6-20-6"></a>Org contrib<br /></li></ul>
</div>
<div id="outline-container-sec-1-6-21" class="outline-4">
<h4 id="sec-1-6-21">Hackathons/workshops/demos</h4>
<div class="outline-text-4" id="text-1-6-21">
</div><ul class="org-ul"><li><a id="sec-1-6-21-1" name="sec-1-6-21-1"></a>How can you create a package and submit it to the Emacs package repositories?<br /></li>
<li><a id="sec-1-6-21-2" name="sec-1-6-21-2"></a>How can you add tests and coverage reporting to a package?<br /><div class="outline-text-5" id="text-1-6-21-2">
<p>
I can prepare something along these lines - Sacha
</p>
</div>
</li>
<li><a id="sec-1-6-21-3" name="sec-1-6-21-3"></a><span class="todo IDENTIFIED">IDENTIFIED</span> How can you build better interactive tutorials?<br /><div class="outline-text-5" id="text-1-6-21-3">
<ul class="org-ul">
<li>Phillip Lord?
</li>
</ul>
</div>
</li></ul>
</div>
</div>
<div id="outline-container-sec-1-7" class="outline-3">
<h3 id="sec-1-7">Volunteers</h3>
<div class="outline-text-3" id="text-1-7">
</div><div id="outline-container-sec-1-7-1" class="outline-4">
<h4 id="sec-1-7-1">Harry Schwartz</h4>
<div class="outline-text-4" id="text-1-7-1">
<ul class="org-ul">
<li>A/V
</li>
<li>Drum up speakers
</li>
<li>General volunteer work
</li>
<li>emacsconf2015 planning
</li>
</ul>
</div>
</div>
<div id="outline-container-sec-1-7-2" class="outline-4">
<h4 id="sec-1-7-2">Aleksandar Simić (dotemacs)</h4>
<div class="outline-text-4" id="text-1-7-2">
<ul class="org-ul">
<li>(potentially) being responsible for our twitter, emacsconf.org domain, heroku accounts.
</li>
</ul>
</div>
</div>
<div id="outline-container-sec-1-7-3" class="outline-4">
<h4 id="sec-1-7-3">Sacha Chua</h4>
<div class="outline-text-4" id="text-1-7-3">
<ul class="org-ul">
<li>Hosting hangouts
</li>
<li>Keeping an eye out for questions
</li>
<li>Managing our Google+ EmacsConf & hangouts pages.
</li>
</ul>
</div>
</div>
<div id="outline-container-sec-1-7-4" class="outline-4">
<h4 id="sec-1-7-4">Samer Masterson</h4>
<div class="outline-text-4" id="text-1-7-4">
<ul class="org-ul">
<li>Drumming up interest
</li>
<li>emacsconf2015 planning
</li>
</ul>
</div>
</div>
<div id="outline-container-sec-1-7-5" class="outline-4">
<h4 id="sec-1-7-5">Ryan Rix</h4>
<div class="outline-text-4" id="text-1-7-5">
<ul class="org-ul">
<li>emacsconf2015 planning
</li>
</ul>
</div>
</div>
<div id="outline-container-sec-1-7-6" class="outline-4">
<h4 id="sec-1-7-6">Sufyan Adam</h4>
<div class="outline-text-4" id="text-1-7-6">
<ul class="org-ul">
<li>emacsconf2015 planning
</li>
</ul>
</div>
</div>
<div id="outline-container-sec-1-7-7" class="outline-4">
<h4 id="sec-1-7-7">Carlos Sosa</h4>
<div class="outline-text-4" id="text-1-7-7">
<ul class="org-ul">
<li>emacsconf2015 planning
</li>
</ul>
</div>
</div>
</div>
<div id="outline-container-sec-1-8" class="outline-3">
<h3 id="sec-1-8">Tasks</h3>
<div class="outline-text-3" id="text-1-8">
</div><div id="outline-container-sec-1-8-1" class="outline-4">
<h4 id="sec-1-8-1"><span class="done DONE">DONE</span> Collect ideas for sessions</h4>
<div class="outline-text-4" id="text-1-8-1">
<p>
What makes a good session?
</p>
<ul class="org-ul">
<li>Something that's great as a demonstration instead of a blog post with screenshots
</li>
<li>Something that people have lots of questions about
</li>
<li>Something that benefits from multiple perspectives (like a panel)
</li>
</ul>
</div>
</div>
<div id="outline-container-sec-1-8-2" class="outline-4">
<h4 id="sec-1-8-2"><span class="done DONE">DONE</span> Set up some kind of mailing list for announcements</h4>
<div class="outline-text-4" id="text-1-8-2">
</div>
</div>
<div id="outline-container-sec-1-8-3" class="outline-4">
<h4 id="sec-1-8-3"><span class="done DONE">DONE</span> Decide on a date - Aug 22?</h4>
<div class="outline-text-4" id="text-1-8-3">
<p>
August, maybe a Saturday?
</p>
</div>
</div>
<div id="outline-container-sec-1-8-4" class="outline-4">
<h4 id="sec-1-8-4"><span class="todo TODO">TODO</span> Find speakers   <span class="tag"><span class="ryan">ryan</span></span></h4>
<div class="outline-text-4" id="text-1-8-4">
</div><ul class="org-ul"><li><a id="sec-1-8-4-1" name="sec-1-8-4-1"></a><span class="todo TODO">TODO</span> make list of potential speakers   <span class="tag"><span class="ryan">ryan</span></span><br /><div class="outline-text-5" id="text-1-8-4-1">
</div>
</li>
<li><a id="sec-1-8-4-2" name="sec-1-8-4-2"></a><span class="todo TODO">TODO</span> reach out to potential speakers   <span class="tag"><span class="ryan">ryan</span></span><br /></li></ul>
</div>
<div id="outline-container-sec-1-8-5" class="outline-4">
<h4 id="sec-1-8-5"><span class="todo TODO">TODO</span> Set up schedule</h4>
</div>
<div id="outline-container-sec-1-8-6" class="outline-4">
<h4 id="sec-1-8-6"><span class="todo TODO">TODO</span> Facilitate sessions and questions</h4>
</div>
<div id="outline-container-sec-1-8-7" class="outline-4">
<h4 id="sec-1-8-7"><span class="done DONE">DONE</span> Gather list of companies to contact for space</h4>
<div class="outline-text-4" id="text-1-8-7">
</div>
<ul class="org-ul"><li><a id="sec-1-8-7-1" name="sec-1-8-7-1"></a><span class="done DONE">DONE</span> SF   <span class="tag"><span class="samer">samer</span> <span class="ryan">ryan</span> <span class="sufyan">sufyan</span> <span class=""></span></span><br /><div class="outline-text-5" id="text-1-8-7-1">
<ul class="org-ul">
<li>GitHub
</li>
<li>Internet Archive
</li>
<li>UCSF (Golden Gate Ruby Conf was there)
</li>
<li>Stanford
</li>
<li>UC Berkeley
</li>
<li>Stripe
</li>
<li>Goodsearch
</li>
<li>Uber
</li>
<li>Dropbox
</li>
<li>Yelp
</li>
<li>Twilio
</li>
<li>Rackspace
</li>
<li>Scribd
</li>
</ul>
</div>
</li>
<li><a id="sec-1-8-7-2" name="sec-1-8-7-2"></a><span class="done DONE">DONE</span> NYC   <span class="tag"><span class="harry">harry</span></span><br /></li>
<li><a id="sec-1-8-7-3" name="sec-1-8-7-3"></a><span class="done DONE">DONE</span> Boston<br /><div class="outline-text-5" id="text-1-8-7-3">
<p>
(only if we can get some allies in Boston, talk to mattl)
</p>
<ul class="org-ul">
<li>MIT
</li>
</ul>
</div>
</li></ul>
</div>
<div id="outline-container-sec-1-8-8" class="outline-4">
<h4 id="sec-1-8-8"><span class="done DONE">DONE</span> Contact companies for space</h4>
<div class="outline-text-4" id="text-1-8-8">
</div><ul class="org-ul"><li><a id="sec-1-8-8-1" name="sec-1-8-8-1"></a><span class="done DONE">DONE</span> outreach template email   <span class="tag"><span class="samer">samer</span></span><br /><div class="outline-text-5" id="text-1-8-8-1">
<p>
todo
</p>
</div>
</li>
<li><a id="sec-1-8-8-2" name="sec-1-8-8-2"></a><span class="done CANCELLED">CANCELLED</span> rackspace   <span class="tag"><span class="ryan">ryan</span></span><br /></li>
<li><a id="sec-1-8-8-3" name="sec-1-8-8-3"></a><span class="done CANCELLED">CANCELLED</span> twilio   <span class="tag"><span class="ryan">ryan</span></span><br /></li>
<li><a id="sec-1-8-8-4" name="sec-1-8-8-4"></a><span class="done CANCELLED">CANCELLED</span> uber   <span class="tag"><span class="ryan">ryan</span></span><br /></li>
<li><a id="sec-1-8-8-5" name="sec-1-8-8-5"></a><span class="done CANCELLED">CANCELLED</span> UCSF (through Golden Gate Ruby Conf)   <span class="tag"><span class="ryan">ryan</span></span><br /></li>
<li><a id="sec-1-8-8-6" name="sec-1-8-8-6"></a><span class="done CANCELLED">CANCELLED</span> yelp   <span class="tag"><span class="samer">samer</span></span><br /><div class="outline-text-5" id="text-1-8-8-6">
<p>
sent an email to [email protected]
reached out to SF Big Analytics & Designers + Geeks b/c they both use Yelp's meetup space.
</p>
</div>
</li>
<li><a id="sec-1-8-8-7" name="sec-1-8-8-7"></a><span class="done CANCELLED">CANCELLED</span> uc berkeley   <span class="tag"><span class="samer">samer</span></span><br /></li>
<li><a id="sec-1-8-8-8" name="sec-1-8-8-8"></a><span class="done CANCELLED">CANCELLED</span> stanford   <span class="tag"><span class="samer">samer</span></span><br /></li>
<li><a id="sec-1-8-8-9" name="sec-1-8-8-9"></a><span class="done CANCELLED">CANCELLED</span> stripe   <span class="tag"><span class="samer">samer</span></span><br /><div class="outline-text-5" id="text-1-8-8-9">
<p>
reached out to a friend
</p>
</div>
</li>
<li><a id="sec-1-8-8-10" name="sec-1-8-8-10"></a><span class="done CANCELLED">CANCELLED</span> dropbox   <span class="tag"><span class="samer">samer</span></span><br /><div class="outline-text-5" id="text-1-8-8-10">
<p>
reached out to a friend
</p>
</div>
</li>
<li><a id="sec-1-8-8-11" name="sec-1-8-8-11"></a><span class="done DONE">DONE</span> zendesk   <span class="tag"><span class="sufyan">sufyan</span></span><br /><div class="outline-text-5" id="text-1-8-8-11">
<p>
not interested
</p>
</div>
</li>
<li><a id="sec-1-8-8-12" name="sec-1-8-8-12"></a><span class="done DONE">DONE</span> goodsearch   <span class="tag"><span class="sufyan">sufyan</span></span><br /><div class="outline-text-5" id="text-1-8-8-12">
<p>
Will host
</p>
</div>
</li></ul>
</div>
<div id="outline-container-sec-1-8-9" class="outline-4">
<h4 id="sec-1-8-9"><span class="todo TODO">TODO</span> misc</h4>
<div class="outline-text-4" id="text-1-8-9">
</div><ul class="org-ul"><li><a id="sec-1-8-9-1" name="sec-1-8-9-1"></a><span class="todo TODO">TODO</span> verify 30-50 people   <span class="tag"><span class="samer">samer</span></span><br /><div class="outline-text-5" id="text-1-8-9-1">
<p>
w/ dotemacs person, nic, or sacha.
</p>
</div>
</li>
<li><a id="sec-1-8-9-2" name="sec-1-8-9-2"></a><span class="done DONE">DONE</span> send this to harry   <span class="tag"><span class="samer">samer</span></span><br /><div class="outline-text-5" id="text-1-8-9-2">
</div>
</li>
<li><a id="sec-1-8-9-3" name="sec-1-8-9-3"></a><span class="todo TODO">TODO</span> talk to mattl & the fsf   <span class="tag"><span class="samer">samer</span></span><br /><div class="outline-text-5" id="text-1-8-9-3">
<p>
see if boston would be interested in this.
</p>
</div>
</li>
<li><a id="sec-1-8-9-4" name="sec-1-8-9-4"></a><span class="todo TODO">TODO</span> add another organizer to CoC contact list   <span class="tag"><span class="samer">samer</span></span><br /></li></ul>
</div>
<div id="outline-container-sec-1-8-10" class="outline-4">
<h4 id="sec-1-8-10"><span class="todo TODO">TODO</span> website</h4>
<div class="outline-text-4" id="text-1-8-10">
</div><ul class="org-ul"><li><a id="sec-1-8-10-1" name="sec-1-8-10-1"></a><span class="todo TODO">TODO</span> transfer github repos to emacsconf org   <span class="tag"><span class="alex">alex</span></span><br /><div class="outline-text-5" id="text-1-8-10-1">
<ul class="org-ul">
<li><code>[ ]</code> <a href="https://github.com/dotemacs/emacsconf">https://github.com/dotemacs/emacsconf</a> (as emacsconf)
</li>
<li><code>[ ]</code> <a href="https://github.com/dotemacs/emacsconf-organisation">https://github.com/dotemacs/emacsconf-organisation</a> (as emacsconf2013)
</li>
</ul>
</div>
</li></ul>
</div>
<div id="outline-container-sec-1-8-11" class="outline-4">
<h4 id="sec-1-8-11"><span class="todo TODO">TODO</span> set up website</h4>
<div class="outline-text-4" id="text-1-8-11">
</div><ul class="org-ul"><li><a id="sec-1-8-11-1" name="sec-1-8-11-1"></a><span class="todo TODO">TODO</span> point emacsconf.org to the ideas page?   <span class="tag"><span class="samer">samer</span> <span class="alex">alex</span> <span class=""></span></span><br /><div class="outline-text-5" id="text-1-8-11-1">
<p>
or do something nice with it
email alex about this.
</p>
</div>
</li>
<li><a id="sec-1-8-11-2" name="sec-1-8-11-2"></a><span class="todo TODO">TODO</span> figure out what to do with the emacsconf heroku app?   <span class="tag"><span class="samer">samer</span> <span class="alex">alex</span> <span class=""></span></span><br /><div class="outline-text-5" id="text-1-8-11-2">
<p>
how can we use technology to cure our ills?
think about setting us up for future conferences.
can we make it super easy for people to discuss talks? create a space for discussions? (potentially w/ discourse or another forum thing).
</p>
</div>
</li></ul>
</div>