-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
799 lines (696 loc) · 23.9 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
<?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>= 関西Emacs勉強会</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/>
<meta name="title" content="= 関西Emacs勉強会"/>
<meta name="generator" content="Org-mode"/>
<meta name="generated" content="2013-10-06T11:44+0900"/>
<meta name="author" content="peccu"/>
<meta name="description" content=""/>
<meta name="keywords" content="emacs"/>
<style type="text/css">
<!--/*--><![CDATA[/*><!--*/
html { font-family: Times, serif; font-size: 12pt; }
.title { text-align: center; }
.todo { color: red; }
.done { color: green; }
.tag { background-color: #add8e6; font-weight:normal }
.target { }
.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;}
p.verse { margin-left: 3% }
pre {
border: 1pt solid #AEBDCC;
background-color: #F3F5F7;
padding: 5pt;
font-family: courier, monospace;
font-size: 90%;
overflow:auto;
}
table { border-collapse: collapse; }
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; }
div.figure { padding: 0.5em; }
div.figure p { text-align: center; }
div.inlinetask {
padding:10px;
border:2px solid gray;
margin:10px;
background: #ffffcc;
}
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="org.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="preamble">
</div>
<div id="content">
<h1 class="title">= 関西Emacs勉強会</h1>
<div id="fb-root"></div>
<a href="http://peccu.sytes.net/ke/" class="hatena-bookmark-button" data-hatena-bookmark-title="kansai" data-hatena-bookmark-layout="standard" title="このエントリーをはてなブックマークに追加"><img src="http://b.st-hatena.com/images/entry-button/button-only.gif" alt="このエントリーをはてなブックマークに追加" width="20" height="20" style="border: none;" /></a><script type="text/javascript" src="http://b.st-hatena.com/js/bookmark_button.js" charset="utf-8" async="async"></script>
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://peccu.sytes.net/ke/" data-via="peccu" data-lang="ja" data-count="none" data-hashtags="関西Emacs">ツイート</a>
<div class="fb-like" data-href="http://peccu.sytes.net/ke/" data-send="false" data-width="450" data-show-faces="true"></div>
<div id="table-of-contents">
<h2>Table of Contents</h2>
<div id="text-table-of-contents">
<ul>
<li><a href="#sec-1">1 関西Emacs勉強会</a>
<ul>
<li><a href="#sec-1-1">1.1 概要</a></li>
<li><a href="#sec-1-2">1.2 次回予告</a></li>
<li><a href="#sec-1-3">1.3 試み</a>
<ul>
<li><a href="#sec-1-3-1">1.3.1 Ust</a></li>
<li><a href="#sec-1-3-2">1.3.2 ポジションペーパー</a></li>
<li><a href="#sec-1-3-3">1.3.3 ワールドカフェ</a></li>
</ul>
</li>
<li><a href="#sec-1-4">1.4 参加者層</a></li>
<li><a href="#sec-1-5">1.5 開催時期</a></li>
<li><a href="#sec-1-6">1.6 開催場所</a></li>
<li><a href="#sec-1-7">1.7 ハッシュタグ</a></li>
<li><a href="#sec-1-8">1.8 姉妹イベント</a></li>
<li><a href="#sec-1-9">1.9 過去の記録</a>
<ul>
<li><a href="#sec-1-9-1">1.9.1 第7回 関西Emacs勉強会</a></li>
<li><a href="#sec-1-9-2">1.9.2 第6回 関西Emacs勉強会</a></li>
<li><a href="#sec-1-9-3">1.9.3 第5回 関西Emacs勉強会</a></li>
<li><a href="#sec-1-9-4">1.9.4 第4回 関西Emacs勉強会</a></li>
<li><a href="#sec-1-9-5">1.9.5 第3回 関西Emacs勉強会</a></li>
<li><a href="#sec-1-9-6">1.9.6 第2回 関西Emacs勉強会</a></li>
<li><a href="#sec-1-9-7">1.9.7 第1回 関西Emacs勉強会</a></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div id="outline-container-1" class="outline-2">
<h2 id="sec-1"><span class="section-number-2">1</span> 関西Emacs勉強会</h2>
<div class="outline-text-2" id="text-1">
</div>
<div id="outline-container-1-1" class="outline-3">
<h3 id="sec-1-1"><span class="section-number-3">1.1</span> 概要</h3>
<div class="outline-text-3" id="text-1-1">
<p> Emacs好きが集まって,拡張方法や使い方を紹介し合ったり,FPS on Emacsで遊んだり,今後のEmacsの発展を話し合ったりする勉強会です.
</p></div>
</div>
<div id="outline-container-1-2" class="outline-3">
<h3 id="sec-1-2"><span class="section-number-3">1.2</span> 次回予告</h3>
<div class="outline-text-3" id="text-1-2">
<ul>
<li>日程
<span class="timestamp-wrapper"> <span class="timestamp">2013-10-26 土</span></span><br/>
</li>
<li>場所
株式会社はてな セミナールーム
</li>
<li>ATND
<a href="http://atnd.org/events/44155">http://atnd.org/events/44155</a>
</li>
<li>告知記事
未作成
</li>
</ul>
</div>
</div>
<div id="outline-container-1-3" class="outline-3">
<h3 id="sec-1-3"><span class="section-number-3">1.3</span> 試み</h3>
<div class="outline-text-3" id="text-1-3">
</div>
<div id="outline-container-1-3-1" class="outline-4">
<h4 id="sec-1-3-1"><span class="section-number-4">1.3.1</span> Ust</h4>
<div class="outline-text-4" id="text-1-3-1">
<p> USTREAMで配信しています.第6回,第7回は準備不足で配信できませんでした.
</p>
<p>
第3回以降→<a href="http://www.ustream.tv/user/kansai-emacs/videos">kansai-emacs's Videos on USTREAM.</a>
</p>
<p>
<a href="http://www.ustream.tv/recorded/9802764">第2回その1</a>, <a href="http://www.ustream.tv/recorded/9804685">第2回その2</a>, <a href="http://www.ustream.tv/recorded/5604331">第1回</a>
</p></div>
</div>
<div id="outline-container-1-3-2" class="outline-4">
<h4 id="sec-1-3-2"><span class="section-number-4">1.3.2</span> ポジションペーパー</h4>
<div class="outline-text-4" id="text-1-3-2">
<p> 全員が能動的に参加できるように,参加者はA4のポジションペーパーを用意し,勉強会開始時に自己紹介します.
</p>
<p>
第1回から毎回実施しています.紙での配布から事前アップロードなど少しずつ改善しています.
</p>
<p>
<a href="http://eto.com/d/PositionPaper.html">ポジションペーパ方式 - eto.com/d</a>
</p>
<p>
<a href="http://wiki.fdiary.net/rails/?rails-tokyo-guide">Rails' Wiki - Rails勉強会@東京のしおり</a>
</p></div>
</div>
<div id="outline-container-1-3-3" class="outline-4">
<h4 id="sec-1-3-3"><span class="section-number-4">1.3.3</span> ワールドカフェ</h4>
<div class="outline-text-4" id="text-1-3-3">
<p> 一つのテーマについてテーブルにわかれて議論する方法の一つです.
第4回で導入しました.
</p>
<p>
メンバーを途中で入れ替える事で他のテーブルで話し合った内容を共有し,より深く議論する事ができます.
</p></div>
</div>
</div>
<div id="outline-container-1-4" class="outline-3">
<h3 id="sec-1-4"><span class="section-number-3">1.4</span> 参加者層</h3>
<div class="outline-text-3" id="text-1-4">
<p> 学生から社会人まで幅広く,遠いところでは福岡,香川,愛媛?,東京,石川?,名古屋などからもこられています.
</p>
<p>
女性の参加者もほぼ毎回おられます.
</p>
<p>
一度るびきちさんも参加できそうでしたが,京都への移動時間が足りず,なんばで食事だけご一緒できました.
</p></div>
</div>
<div id="outline-container-1-5" class="outline-3">
<h3 id="sec-1-5"><span class="section-number-3">1.5</span> 開催時期</h3>
<div class="outline-text-3" id="text-1-5">
<p> 半年に1回.4月と10月に開催しています.これまでに7回開催しました.
</p></div>
</div>
<div id="outline-container-1-6" class="outline-3">
<h3 id="sec-1-6"><span class="section-number-3">1.6</span> 開催場所</h3>
<div class="outline-text-3" id="text-1-6">
<p> 過去の開催場所は大阪NPOプラザ(大阪),(株)クロノス (大阪),株式会社アックス(京都),株式会社はてな(京都)と,関西で場所を探しています.
</p></div>
</div>
<div id="outline-container-1-7" class="outline-3">
<h3 id="sec-1-7"><span class="section-number-3">1.7</span> ハッシュタグ</h3>
<div class="outline-text-3" id="text-1-7">
<p> #関西emacs <a href="https://twitter.com/#!/search/#関西Emacs">Twitter / Search - #関西Emacs</a>
(旧)#kansai_emacs <a href="https://twitter.com/search/#kansai_emacs">Twitter / Search - kansai_emacs</a>
</p></div>
</div>
<div id="outline-container-1-8" class="outline-3">
<h3 id="sec-1-8"><span class="section-number-3">1.8</span> 姉妹イベント</h3>
<div class="outline-text-3" id="text-1-8">
<ul>
<li>Emacs Advent Calendar
</li>
<li>Emacs/Lisp温泉
</li>
</ul>
</div>
</div>
<div id="outline-container-1-9" class="outline-3">
<h3 id="sec-1-9"><span class="section-number-3">1.9</span> 過去の記録</h3>
<div class="outline-text-3" id="text-1-9">
</div>
<div id="outline-container-1-9-1" class="outline-4">
<h4 id="sec-1-9-1"><span class="section-number-4">1.9.1</span> 第7回 関西Emacs勉強会</h4>
<div class="outline-text-4" id="text-1-9-1">
<ul>
<li id="sec-1-9-1-1">日付<br/>
<span class="timestamp-wrapper"> <span class="timestamp">2013-04-27 土</span></span><br/>
</li>
</ul>
<ul>
<li id="sec-1-9-1-2">場所<br/>
株式会社はてな セミナールーム
</li>
</ul>
<ul>
<li id="sec-1-9-1-3">参加者<br/>
21名(うち女性1名)
</li>
</ul>
<ul>
<li id="sec-1-9-1-4">発表者<br/>
6名
</li>
</ul>
<ul>
<li id="sec-1-9-1-5">ATND<br/>
<ul>
<li><a href="http://atnd.org/event/ke7">(kansai-emacs #x07) #関西Emacs | 集客ならイベントアテンド</a>
</li>
</ul>
</li>
</ul>
<ul>
<li id="sec-1-9-1-6">Ustream<br/>
<ul>
<li>すみません配信できませんでした
</li>
</ul>
</li>
</ul>
<ul>
<li id="sec-1-9-1-7">ブログ(告知,まとめなど)<br/>
<ul>
<li><a href="http://d.hatena.ne.jp/peccu/20130407/ke7">= kansai-emacs #7 #関西Emacs - ぺっくブログミラー@peccul</a>
</li>
<li><a href="http://togetter.com/li/494875">kansai-emacs #7 #関西Emacs - Togetter</a>
</li>
<li><a href="http://hitode909.hatenablog.com/entry/2013/04/27/223406">hitode909の日記</a>
</li>
<li><a href="http://d.hatena.ne.jp/syohex/20130428/1367115991">第 7回関西 Emacsに参加/発表してきました。 - Life is very short</a>
</li>
<li><a href="http://kozo2.hatenablog.com/entry/2013/04/28/024543">関西Emacsに行ってきた(MELPAの話をしてきた件) - kozo2's blog</a>
</li>
<li><a href="http://shibayu36.hatenablog.com/entry/2013/04/28/161030">#関西Emacs に参加して、open-github-from-here.elの発表をしました - $shibayu36->blog;</a>
</li>
<li>他に見かけたら教えてくださると嬉しいです
</li>
</ul>
</li>
</ul>
</div>
</div>
<div id="outline-container-1-9-2" class="outline-4">
<h4 id="sec-1-9-2"><span class="section-number-4">1.9.2</span> 第6回 関西Emacs勉強会</h4>
<div class="outline-text-4" id="text-1-9-2">
<ul>
<li id="sec-1-9-2-1">日付<br/>
<span class="timestamp-wrapper"> <span class="timestamp">2012-10-20 土</span></span><br/>
</li>
</ul>
<ul>
<li id="sec-1-9-2-2">場所<br/>
京大理学部三号館110教室
</li>
</ul>
<ul>
<li id="sec-1-9-2-3">参加者<br/>
32名
</li>
</ul>
<ul>
<li id="sec-1-9-2-4">発表者<br/>
5名
</li>
</ul>
<ul>
<li id="sec-1-9-2-5">ATND<br/>
<ul>
<li><a href="http://atnd.org/events/31090">(kansai-emacs #x06) : ATND</a>
</li>
</ul>
</li>
</ul>
<ul>
<li id="sec-1-9-2-6">Ustream<br/>
<ul>
<li>すみません配信できませんでした
</li>
</ul>
</li>
</ul>
<ul>
<li id="sec-1-9-2-7">ブログ(告知,まとめなど)<br/>
<ul>
<li><a href="http://d.hatena.ne.jp/syohex/20121020/1350747056">第六回 関西 Emacs勉強会に参加してきました。 - Life is very short</a>
</li>
<li><a href="http://gongo.hatenablog.com/entry/2012/10/22/210932">第6回 関西Emacs勉強会に参加してきました - Thanks Driven Life</a>
</li>
<li><a href="http://nanasess.azurewebsites.net/entry/kansai-emacs-x06.md">第6回関西Emacs勉強会 - Think Different.</a>
</li>
<li><a href="http://poulenc.eng.kagawa-u.ac.jp/Member/KBIT/event/201210-emacs.html">第7回 関西Emacs勉強会 - KBIT Web Site</a> (タイトルが違う?)
</li>
<li><a href="http://d.hatena.ne.jp/tarao/20121021/1350844264">Emacs上のターミナルを最強に: term+.el - 貳佰伍拾陸夜日記</a>
</li>
<li>他に見かけたら教えてくださると嬉しいです
</li>
</ul>
</li>
</ul>
</div>
</div>
<div id="outline-container-1-9-3" class="outline-4">
<h4 id="sec-1-9-3"><span class="section-number-4">1.9.3</span> 第5回 関西Emacs勉強会</h4>
<div class="outline-text-4" id="text-1-9-3">
<ul>
<li id="sec-1-9-3-1">日付<br/>
<span class="timestamp-wrapper"> <span class="timestamp">2012-04-28 土</span></span><br/>
</li>
</ul>
<ul>
<li id="sec-1-9-3-2">場所<br/>
京大理学部三号館108教室
</li>
</ul>
<ul>
<li id="sec-1-9-3-3">参加者<br/>
29名
</li>
</ul>
<ul>
<li id="sec-1-9-3-4">発表者<br/>
6名
</li>
</ul>
<ul>
<li id="sec-1-9-3-5">ATND<br/>
<ul>
<li><a href="http://atnd.org/events/27168">(kansai-emacs #x05) : ATND</a>
</li>
</ul>
</li>
</ul>
<ul>
<li id="sec-1-9-3-6">Ustream<br/>
<ul>
<li><a href="http://www.ustream.tv/user/kansai-emacs">kansai-emacs @ Ustream.TV - 関西Emacs勉強会のUst用アカウントです. 無料ライブ配信</a>
</li>
<li><a href="http://www.ustream.tv/recorded/22179880">1. ポジションペーパーで自己紹介, Recorded on 04/28/12. コンピュータ…</a>
</li>
<li><a href="http://www.ustream.tv/recorded/22181555">2. きわなみさんの発表, Emacs Application Development. コンピュータ…</a>
</li>
<li><a href="http://www.ustream.tv/recorded/22182983">3.たかさんの発表, org-mode マニュアル 日本語翻訳について. コンピュータ…</a>
</li>
<li><a href="http://www.ustream.tv/recorded/22183797">4.syohexさんの発表, quickrun.elの紹介. コンピュータ</a>
</li>
<li><a href="http://www.ustream.tv/recorded/22184233">5.ありさわさんの発表, 快適Emacs Lisp生活を目指して. コンピュータ…</a>
</li>
<li><a href="http://www.ustream.tv/recorded/22184538">6.kozo2さんの発表, 多様なelispインストール手法に関する一考察. コンピュータ…</a>
</li>
</ul>
</li>
</ul>
<ul>
<li id="sec-1-9-3-7">ブログ(告知,まとめなど)<br/>
<ul>
<li><a href="http://kimiboku.wordpress.com/2012/04/28/kannsai-emacs05/">(kansai-emacs #x05)に行ってきました #kansai_emacs | i pensieri stretti & il viso sciolto.</a>
</li>
<li><a href="http://d.hatena.ne.jp/peccu/20120412/kansai_emacs5">= kansai-emacs #5 - ぺっくブログミラー@peccul</a>
</li>
<li><a href="http://d.hatena.ne.jp/peccu/20120429/ke5">= #kansai_emacs 5 終了 - ぺっくブログミラー@peccul</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div id="outline-container-1-9-4" class="outline-4">
<h4 id="sec-1-9-4"><span class="section-number-4">1.9.4</span> 第4回 関西Emacs勉強会</h4>
<div class="outline-text-4" id="text-1-9-4">
<p> 定例にしようということで2011年後期分の開催です.
</p><ul>
<li id="sec-1-9-4-1">日付<br/>
<span class="timestamp-wrapper"> <span class="timestamp">2011-10-08 土</span></span><br/>
</li>
</ul>
<ul>
<li id="sec-1-9-4-2">場所<br/>
セミナールーム in はてな
</li>
</ul>
<ul>
<li id="sec-1-9-4-3">参加者<br/>
25名
</li>
</ul>
<ul>
<li id="sec-1-9-4-4">発表者<br/>
6名
</li>
</ul>
<ul>
<li id="sec-1-9-4-5">ATND<br/>
作りすぎました
<ul>
<li><a href="http://atnd.org/events/20332">(kansai-emacs #x04) for 運営ミーティング用 : ATND</a>
</li>
<li><a href="http://atnd.org/events/20329">(kansai-emacs #x04) for 参加者 : ATND</a>
</li>
<li><a href="http://atnd.org/events/20330">(kansai-emacs #x04) for 発表者 : ATND</a>
</li>
<li><a href="http://atnd.org/events/20331">(kansai-emacs #x04) for 懇親会 : ATND</a>
</li>
</ul>
</li>
</ul>
<ul>
<li id="sec-1-9-4-6">Ustream<br/>
<ul>
<li><a href="http://www.ustream.tv/recorded/5604331">Ust一覧</a>
</li>
</ul>
</li>
</ul>
<ul>
<li id="sec-1-9-4-7">ブログ(告知,まとめなど)<br/>
<ul>
<li><a href="http://d.hatena.ne.jp/peccu/20111004/kansai_emacs_4th">= (kansai-emacs #x04) ;=&gt; "第四回関西Emacs勉強会" - ぺっくブログミラー@peccul</a>
</li>
<li><a href="http://d.hatena.ne.jp/peccu/20111023/kansai_emacs_4th">= (prin1 (kansai-emacs #x04)) ; =&gt; 第四回関西Emacs勉強会まとめ - ぺっくブログミラー@peccul</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div id="outline-container-1-9-5" class="outline-4">
<h4 id="sec-1-9-5"><span class="section-number-4">1.9.5</span> 第3回 関西Emacs勉強会</h4>
<div class="outline-text-4" id="text-1-9-5">
<p> るびきちさんが大阪に来られるとの事で開催しました.結局お会いできましたが食事だけだったのが残念.
</p>
<p>
懇親会2次会にむりやりとしぁさんを連れ出したのはいい思い出.
</p><ul>
<li id="sec-1-9-5-1">日付<br/>
<span class="timestamp-wrapper"> <span class="timestamp">2011-04-10 日</span></span><br/>
</li>
</ul>
<ul>
<li id="sec-1-9-5-2">場所<br/>
株式会社アックス
</li>
</ul>
<ul>
<li id="sec-1-9-5-3">参加者<br/>
35名
</li>
</ul>
<ul>
<li id="sec-1-9-5-4">発表者<br/>
5名
</li>
</ul>
<ul>
<li id="sec-1-9-5-5">ATND<br/>
<ul>
<li><a href="http://atnd.org/events/13379">(kansai-emacs #x03) : ATND</a>
</li>
</ul>
</li>
</ul>
<ul>
<li id="sec-1-9-5-6">Ustream<br/>
<ul>
<li><a href="http://www.ustream.tv/recorded/5604331">Ust一覧</a>
</li>
</ul>
</li>
</ul>
<ul>
<li id="sec-1-9-5-7">ブログ(告知,まとめなど)<br/>
<ul>
<li><a href="http://d.hatena.ne.jp/peccu/20110402/kansai_emacs_3rd">= (kansai-emacs #x03) =&gt; "第三回関西Emacs勉強会" - ぺっくブログミラー@peccul</a>
</li>
<li>すみませんまとめ記事書いてないです…
</li>
<li>きわなみさんの <a href="http://d.hatena.ne.jp/kiwanami/20110413/1302683171">関西Emacsに行ってきた - 技術日記@kiwanami</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div id="outline-container-1-9-6" class="outline-4">
<h4 id="sec-1-9-6"><span class="section-number-4">1.9.6</span> 第2回 関西Emacs勉強会</h4>
<div class="outline-text-4" id="text-1-9-6">
<p> ともやさんが日本に帰ってきているとの事で開催しました.
</p>
<p>
女性初参加.
</p><ul>
<li id="sec-1-9-6-1">日付<br/>
<span class="timestamp-wrapper"> <span class="timestamp">2010-09-25 土</span></span><br/>
</li>
</ul>
<ul>
<li id="sec-1-9-6-2">場所<br/>
(株)クロノス
</li>
</ul>
<ul>
<li id="sec-1-9-6-3">参加者<br/>
29名
</li>
</ul>
<ul>
<li id="sec-1-9-6-4">発表者<br/>
7名
</li>
</ul>
<ul>
<li id="sec-1-9-6-5">ATND<br/>
<ul>
<li><a href="http://atnd.org/events/7161">(kansai-emacs #x02) : ATND</a>
</li>
</ul>
</li>
</ul>
<ul>
<li id="sec-1-9-6-6">Ustream<br/>
<ul>
<li><a href="http://www.ustream.tv/recorded/9802764">第2回その1</a>Ust
</li>
<li><a href="http://www.ustream.tv/recorded/9804685">第2回その2Ust</a>
</li>
</ul>
</li>
</ul>
<ul>
<li id="sec-1-9-6-7">ブログ(告知,まとめなど)<br/>
<ul>
<li><a href="http://d.hatena.ne.jp/peccu/20100810/kansai_emacs">= (append event (kansai-emacs #x02)) 第二回関西Emacs勉強会開催予定(2010/9/25 Sat) - ぺっくブログミラー@peccul</a>
</li>
<li><a href="http://d.hatena.ne.jp/peccu/20100925/kansai_emacs">= (message (kansai-emacs #x02)) - ぺっくブログミラー@peccul</a>
</li>
<li><a href="http://d.hatena.ne.jp/peccu/20100925/kansai_emacs_now">= (kansai-emacs #x02) - ぺっくブログミラー@peccul</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div id="outline-container-1-9-7" class="outline-4">
<h4 id="sec-1-9-7"><span class="section-number-4">1.9.7</span> 第1回 関西Emacs勉強会</h4>
<div class="outline-text-4" id="text-1-9-7">
<p> 初回はVim勉強会と抱き合わせでした.
</p>
<p>
今思うと初回はぐだぐだだったなーと.だいぶ改善されてきてると思う.
</p><ul>
<li id="sec-1-9-7-1">日付<br/>
<span class="timestamp-wrapper"> <span class="timestamp">2010-02-03 水</span></span><br/>
</li>
</ul>
<ul>
<li id="sec-1-9-7-2">場所<br/>
大阪NPOプラザ(大阪)
</li>
</ul>
<ul>
<li id="sec-1-9-7-3">参加者<br/>
20名
</li>
</ul>
<ul>
<li id="sec-1-9-7-4">発表者<br/>
4名
</li>
</ul>
<ul>
<li id="sec-1-9-7-5">ATND<br/>
<ul>
<li><a href="http://atnd.org/events/3436">(kansai-emacs #x01) 発表者用 : ATND</a>
</li>
<li><a href="http://atnd.org/events/3435">(kansai-emacs #x01) 参加者用 : ATND</a>
</li>
</ul>
</li>
</ul>
<ul>
<li id="sec-1-9-7-6">Ustream<br/>
<ul>
<li><a href="http://www.ustream.tv/recorded/5604331">第1回Ust</a>
</li>
</ul>
</li>
</ul>
<ul>
<li id="sec-1-9-7-7">ブログ(告知,まとめなど)<br/>
<ul>
<li><a href="http://d.hatena.ne.jp/peccu/20100303/kansaiemacs">(kansai-emacs #x01)第1回関西Emacs勉強会の詳細決定,通知 - ぺっくブログミラー@peccul</a>
</li>
<li><a href="http://d.hatena.ne.jp/peccu/20100330/kansaiemacs">(message (kansai-emacs #x01)) - ぺっくブログミラー@peccul</a>
</li>
</ul>
<script type="text/javascript" src="org.js"></script>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div id="postamble">
<p class="date">Date: 2013-10-06T11:44+0900</p>
<p class="author">Author: peccu</p>
<p class="creator"><a href="http://orgmode.org">Org</a> version 7.9.3e with <a href="http://www.gnu.org/software/emacs/">Emacs</a> version 24</p>
<a href="http://validator.w3.org/check?uri=referer">Validate XHTML 1.0</a>
</div>
</body>
</html>