-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfeed.rss
997 lines (813 loc) · 35.2 KB
/
feed.rss
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
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
<channel>
<title>Recent Commits to livecoding8:master with Diff</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description>Recent Commits to livecoding8:master with Diff</description>
<item>
<title>a716897e66ea67b89a46d0879d5b3f3192333f53</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description><
-** 内容未定
+* [AzureStone](http://www.azurestone.org/) さん
+ * 内容未定
+*[けんじ](http://rainbowdevil.jp/) さん
+ * Androidで何かするプログラム
* LiveCoderを募集中です。
* 希望者は [西村(Sixeight)](tomohiro68 at gmail com) まで連絡をお願いします。
@@ -107,6 +109,9 @@ In case the presentation cannot be completed within 20 minutes, requests can be
## CONTENTS
* [AzureStone](http://www.azurestone.org/)
+* [KENJI](http://rainbowdevil.jp/)
+ * Will do somthing with Android.
+
* To be assinged...
</pre>]]></description>
<pubDate>Tue Feb 09 01:31:35 +0900 2010</pubDate>
<dc:date>Tue Feb 09 01:31:35 +0900 2010</dc:date>
</item>
<item>
<title>455d8d3e4c798482835e4d7500db42aaf0fcbf46</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description>< まで。
## 概要(予定)
-* **2010 3月6日 17時半開場、18時開始**
+* **2010 3月6日(土) 17時半開場、18時開始**
* [京都西陣町家スタジオ](http://nishi-jin.net/)
* 参加費: 3000円 (飲食込み)
</pre>]]></description>
<pubDate>Fri Feb 05 00:57:28 +0900 2010</pubDate>
<dc:date>Fri Feb 05 00:57:28 +0900 2010</dc:date>
</item>
<item>
<title>d2bd9bf2388193dc33f86e6ae8c0966cf4fdd46f</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description><
+
* To be assinged...
* Potential applicants, please contact [NISHIMURA (Sixeight)](tomohiro68 at gmail com).
</pre>]]></description>
<pubDate>Fri Feb 05 00:44:43 +0900 2010</pubDate>
<dc:date>Fri Feb 05 00:44:43 +0900 2010</dc:date>
</item>
<item>
<title>fad07da8e1b3efc07f5f0ac429ec469992d91d50</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description><
+** 内容未定
* LiveCoderを募集中です。
* 希望者は [西村(Sixeight)](tomohiro68 at gmail com) まで連絡をお願いします。
</pre>]]></description>
<pubDate>Fri Feb 05 00:43:39 +0900 2010</pubDate>
<dc:date>Fri Feb 05 00:43:39 +0900 2010</dc:date>
</item>
<item>
<title>639a5bd3b712aadd12ce214b621c2fe3b080c812</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description><, [@Sixeight](http://twitter.com/Sixeight) でのアナウンスをお待ちください。
-
-皆様が素晴らしいコーディングをキメられるようお祈り申し上げます。
-
-LiveCoding Staff 西村
-
## お知らせ
LiveCoding#8+1 は現在 LiveCoder を募集中です。
@@ -25,7 +13,7 @@ LiveCoderとはDJよろしく自分のコーディングを披露して観客を
詳しくは [西村(Sixeight)](tomohiro68 at gmail com) まで。
## 概要(予定)
-* **2010-某日 17時半開場、18時開始**
+* **2010 3月6日 17時半開場、18時開始**
* [京都西陣町家スタジオ](http://nishi-jin.net/)
* 参加費: 3000円 (飲食込み)
@@ -62,6 +50,8 @@ LiveCoderが何を作るかについては、自分で決めた上でそれをLi
* 準備中です。
## xxxHackathon
+* Hackathonについては会場の調整中です。
+
* LiveCodingのあとで、そのまま次の日の朝7:00amまで同会場でHackathonなどを行なうかもしれません。
* 案1: LLVM Hackathon
* 案2: Vim Hackathon
</pre>]]></description>
<pubDate>Thu Feb 04 22:45:10 +0900 2010</pubDate>
<dc:date>Thu Feb 04 22:45:10 +0900 2010</dc:date>
</item>
<item>
<title>91b94664332693cfe3eded346bdcd8e35e2407e4</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description><, [@Sixeight](http://twitter.com/Sixeight) でのアナウンスをお待ちください。
+楽しみにしていただいていた皆様には大変申し訳ありません。
+
+次回開催はこのサイトもしくは [@haco_bu](http://twitter.com/haco_bu), [@Sixeight](http://twitter.com/Sixeight) でのアナウンスをお待ちください。
皆様が素晴らしいコーディングをキメられるようお祈り申し上げます。
</pre>]]></description>
<pubDate>Wed Jan 20 23:30:46 +0900 2010</pubDate>
<dc:date>Wed Jan 20 23:30:46 +0900 2010</dc:date>
</item>
<item>
<title>9f06ec03eae390021f3cdf4385945e33ee9af35c</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description><, [@Sixeight](http://twitter.com/Sixeight) でのアナウンスをお待ちください。
+
+皆様が素晴らしいコーディングをキメられるようお祈り申し上げます。
+
+LiveCoding Staff 西村
+
## お知らせ
LiveCoding#8+1 は現在 LiveCoder を募集中です。
</pre>]]></description>
<pubDate>Wed Jan 20 23:27:37 +0900 2010</pubDate>
<dc:date>Wed Jan 20 23:27:37 +0900 2010</dc:date>
</item>
<item>
<title>d09a727e8bd819f6153369c72ff3e0018aa98774</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description>< まで。
## 概要(予定)
-* **2010-01-23 (土) 17時半開場、18時開始**
+* **2010-某日 17時半開場、18時開始**
* [京都西陣町家スタジオ](http://nishi-jin.net/)
* 参加費: 3000円 (飲食込み)
@@ -38,18 +40,14 @@ LiveCoderが何を作るかについては、自分で決めた上でそれをLi
## Contents
-* [ujihisa](http://ujihisa.blogspot.com/) さん
- * LLVMかparse.yかTermtterかVimで何かをします!
-
-* [けんじ](http://rainbowdevil.jp/) さん
- * Androidで何かするプログラム
+* 未定
* LiveCoderを募集中です。
* 希望者は [西村(Sixeight)](tomohiro68 at gmail com) まで連絡をお願いします。
## 一般参加
-* 一般参加受付は1月18日(月)を予定しております。
+* 準備中です。
## xxxHackathon
* LiveCodingのあとで、そのまま次の日の朝7:00amまで同会場でHackathonなどを行なうかもしれません。
@@ -69,7 +67,7 @@ LiveCoderが何を作るかについては、自分で決めた上でそれをLi
# LiveCoding#8+1
## SUMMARY
-* January 23 2010 (Sat) OPEN: 17:30, START: 18:00
+* Someday 2010 OPEN: 17:30, START: 18:00
* [Kyoto Nishijin Machiya Studio (in Japanese)](http://nishi-jin.net/)
* Fee: 3,000 yen
@@ -105,10 +103,7 @@ In case the presentation cannot be completed within 20 minutes, requests can be
## CONTENTS
-* [ujihisa](http://ujihisa.blogspot.com/)
- * Will do something with LLVM, parse.y, Termtter or Vim!
-* [KENJI](http://rainbowdevil.jp/)
- * Will do somthing with Android.
+* To be assinged...
* Potential applicants, please contact [NISHIMURA (Sixeight)](tomohiro68 at gmail com).
@@ -118,3 +113,4 @@ In case the presentation cannot be completed within 20 minutes, requests can be
* Plan 1: LLVM Hackathon
* Plan 2: Vim Hackathon
* Plan 3: Android Hackathon
+
</pre>]]></description>
<pubDate>Tue Jan 19 16:29:50 +0900 2010</pubDate>
<dc:date>Tue Jan 19 16:29:50 +0900 2010</dc:date>
</item>
<item>
<title>8b729d9b484c13b42f031e85567dbe2eb6013b90</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description><![CDATA[<pre>
fix logo
diff --git a/README.md b/README.md
index 13ad6b6..fb23e45 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# <img src="http://farm5.static.flickr.com/4038/4271476099_b95d522b1d_o_d.png" title="LiveCoding#8+1" />
+# <img src="http://farm5.static.flickr.com/4056/4285051339_060632f81e_o_d.png" title="LiveCoding#8+1" />
<div id="path">
Subscribe me <a href="feed.rss"><img alt="feed" src="http://assets1.github.com/images/icons/feed.png?e06bdeb610e33dc41002eaa80ce09d26ae153090" title="Subscribe to the commits for Sixeight/livecoding8 at master" /></a>
</pre>]]></description>
<pubDate>Tue Jan 19 04:08:39 +0900 2010</pubDate>
<dc:date>Tue Jan 19 04:08:39 +0900 2010</dc:date>
</item>
<item>
<title>90c0e4a2e063995f7a82203049c07b470b97c4f3</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description>< さん
* Androidで何かするプログラム
-* [曽川] さん
- * Flashの動的生成もしくは並列処理
-
* LiveCoderを募集中です。
* 希望者は [西村(Sixeight)](tomohiro68 at gmail com) まで連絡をお願いします。
@@ -112,8 +109,6 @@ In case the presentation cannot be completed within 20 minutes, requests can be
* Will do something with LLVM, parse.y, Termtter or Vim!
* [KENJI](http://rainbowdevil.jp/)
* Will do somthing with Android.
-* [Sogawa]
- * Dynamic Flash creation.
* Potential applicants, please contact [NISHIMURA (Sixeight)](tomohiro68 at gmail com).
</pre>]]></description>
<pubDate>Sun Jan 17 17:50:24 +0900 2010</pubDate>
<dc:date>Sun Jan 17 17:50:24 +0900 2010</dc:date>
</item>
<item>
<title>ed351f39173ce74a98d133a026058cce6ce39a0a</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description>< さん
-
* [ujihisa](http://ujihisa.blogspot.com/) さん
* LLVMかparse.yかTermtterかVimで何かをします!
* [けんじ](http://rainbowdevil.jp/) さん
* Androidで何かするプログラム
+* [曽川] さん
+ * Flashの動的生成もしくは並列処理
+
* LiveCoderを募集中です。
* 希望者は [西村(Sixeight)](tomohiro68 at gmail com) まで連絡をお願いします。
@@ -107,11 +108,12 @@ In case the presentation cannot be completed within 20 minutes, requests can be
## CONTENTS
-* [yaotti](http://d.hatena.ne.jp/yaotti/)
* [ujihisa](http://ujihisa.blogspot.com/)
* Will do something with LLVM, parse.y, Termtter or Vim!
* [KENJI](http://rainbowdevil.jp/)
* Will do somthing with Android.
+* [Sogawa]
+ * Dynamic Flash creation.
* Potential applicants, please contact [NISHIMURA (Sixeight)](tomohiro68 at gmail com).
</pre>]]></description>
<pubDate>Sat Jan 16 23:19:36 +0900 2010</pubDate>
<dc:date>Sat Jan 16 23:19:36 +0900 2010</dc:date>
</item>
<item>
<title>072050ab0893ca3a9175d829012ffc1a0a1d3c98</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description><![CDATA[<pre>
use title image
diff --git a/README.md b/README.md
index 6406a04..57e2573 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# LiveCoding#8+1
+# <img src="http://farm5.static.flickr.com/4038/4271476099_b95d522b1d_o_d.png" title="LiveCoding#8+1" />
<div id="path">
Subscribe me <a href="feed.rss"><img alt="feed" src="http://assets1.github.com/images/icons/feed.png?e06bdeb610e33dc41002eaa80ce09d26ae153090" title="Subscribe to the commits for Sixeight/livecoding8 at master" /></a>
</pre>]]></description>
<pubDate>Thu Jan 14 03:05:58 +0900 2010</pubDate>
<dc:date>Thu Jan 14 03:05:58 +0900 2010</dc:date>
</item>
<item>
<title>cfba73108e191883cfd1fe3434ee30034c00ba01</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description>< さん
* LLVMかparse.yかTermtterかVimで何かをします!
+* [けんじ](http://rainbowdevil.jp/) さん
+ * Androidで何かするプログラム
+
* LiveCoderを募集中です。
* 希望者は [西村(Sixeight)](tomohiro68 at gmail com) まで連絡をお願いします。
@@ -107,6 +110,9 @@ In case the presentation cannot be completed within 20 minutes, requests can be
* [yaotti](http://d.hatena.ne.jp/yaotti/)
* [ujihisa](http://ujihisa.blogspot.com/)
* Will do something with LLVM, parse.y, Termtter or Vim!
+* [KENJI](http://rainbowdevil.jp/)
+ * Will do somthing with Android.
+
* Potential applicants, please contact [NISHIMURA (Sixeight)](tomohiro68 at gmail com).
## xxxHackathon
</pre>]]></description>
<pubDate>Wed Jan 13 22:35:21 +0900 2010</pubDate>
<dc:date>Wed Jan 13 22:35:21 +0900 2010</dc:date>
</item>
<item>
<title>f66531cad8ad915e1da8b65b13786e3481f3c446</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description>< さん
+* [ujihisa](http://ujihisa.blogspot.com/) さん
+ * LLVMかparse.yかTermtterかVimで何かをします!
+
* LiveCoderを募集中です。
* 希望者は [西村(Sixeight)](tomohiro68 at gmail com) まで連絡をお願いします。
@@ -102,6 +105,8 @@ In case the presentation cannot be completed within 20 minutes, requests can be
## CONTENTS
* [yaotti](http://d.hatena.ne.jp/yaotti/)
+* [ujihisa](http://ujihisa.blogspot.com/)
+ * Will do something with LLVM, parse.y, Termtter or Vim!
* Potential applicants, please contact [NISHIMURA (Sixeight)](tomohiro68 at gmail com).
## xxxHackathon
</pre>]]></description>
<pubDate>Wed Jan 13 05:21:00 +0900 2010</pubDate>
<dc:date>Wed Jan 13 05:21:00 +0900 2010</dc:date>
</item>
<item>
<title>eba5809625e750ba8d2c6fe155f6f2f0ab9db6f1</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description><![CDATA[<pre>
This is LiveCoding8
diff --git a/README.md b/README.md
index dd55473..c90ee3b 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
# LiveCoding#8+1
<div id="path">
-Subscribe me <a href="feed.rss"><img alt="feed" src="http://assets1.github.com/images/icons/feed.png?e06bdeb610e33dc41002eaa80ce09d26ae153090" title="Subscribe to the commits for Sixeight/livecoding7 at master" /></a>
+Subscribe me <a href="feed.rss"><img alt="feed" src="http://assets1.github.com/images/icons/feed.png?e06bdeb610e33dc41002eaa80ce09d26ae153090" title="Subscribe to the commits for Sixeight/livecoding8 at master" /></a>
</div>
## お知らせ
</pre>]]></description>
<pubDate>Wed Jan 13 05:19:01 +0900 2010</pubDate>
<dc:date>Wed Jan 13 05:19:01 +0900 2010</dc:date>
</item>
<item>
<title>1c29e9b33038e5136053e35a224d17612ca040ad</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description>< まで連絡をお願いします。
+## 一般参加
+
+* 一般参加受付は1月18日(月)を予定しております。
+
## xxxHackathon
* LiveCodingのあとで、そのまま次の日の朝7:00amまで同会場でHackathonなどを行なうかもしれません。
* 案1: LLVM Hackathon
</pre>]]></description>
<pubDate>Wed Jan 13 01:57:19 +0900 2010</pubDate>
<dc:date>Wed Jan 13 01:57:19 +0900 2010</dc:date>
</item>
<item>
<title>db2ae04814a775b6086adebc2f2f0c007d15bb4b</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description><
+* [yaotti](http://d.hatena.ne.jp/yaotti/) さん
* LiveCoderを募集中です。
* 希望者は [西村(Sixeight)](tomohiro68 at gmail com) まで連絡をお願いします。
</pre>]]></description>
<pubDate>Wed Jan 13 01:36:29 +0900 2010</pubDate>
<dc:date>Wed Jan 13 01:36:29 +0900 2010</dc:date>
</item>
<item>
<title>a9fc87408d7f37a974321dc2e574c116ea029650</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description><![CDATA[<pre>
fix typo
diff --git a/README.md b/README.md
index 81b6b60..850bed1 100644
--- a/README.md
+++ b/README.md
@@ -50,7 +50,7 @@ LiveCoderが何を作るかについては、自分で決めた上でそれをLi
* 案3: Android Hackathon
### 補足
-* 場は翌朝まで使用可能ですが、寝具が無いため暖かい格好などを持参いただけると凍死のリスクを最小限に抑えられます。
+* 会場は翌朝まで使用可能ですが、寝具が無いため暖かい格好などを持参いただけると凍死のリスクを最小限に抑えられます。
## LiveCoding#7(前回開催)の様子
@@ -105,4 +105,4 @@ In case the presentation cannot be completed within 20 minutes, requests can be
* After the LiveCoding event, a Hackathon will probably occur straight until 7am the next morning, at the same place.
* Plan 1: LLVM Hackathon
* Plan 2: Vim Hackathon
- * Plan 3: Android Hackathon
\ No newline at end of file
+ * Plan 3: Android Hackathon
</pre>]]></description>
<pubDate>Wed Jan 06 10:34:07 +0900 2010</pubDate>
<dc:date>Wed Jan 06 10:34:07 +0900 2010</dc:date>
</item>
<item>
<title>2dea3915fe62c7b11e6669d515ed36f6fd88333d</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description><![CDATA[<pre>
markdown, not textile
diff --git a/README.md b/README.md
index 4063181..81b6b60 100644
--- a/README.md
+++ b/README.md
@@ -103,6 +103,6 @@ In case the presentation cannot be completed within 20 minutes, requests can be
## xxxHackathon
* After the LiveCoding event, a Hackathon will probably occur straight until 7am the next morning, at the same place.
-** Plan 1: LLVM Hackathon
-** Plan 2: Vim Hackathon
-** Plan 3: Android Hackathon
\ No newline at end of file
+ * Plan 1: LLVM Hackathon
+ * Plan 2: Vim Hackathon
+ * Plan 3: Android Hackathon
\ No newline at end of file
</pre>]]></description>
<pubDate>Wed Jan 06 02:52:08 +0900 2010</pubDate>
<dc:date>Wed Jan 06 02:52:08 +0900 2010</dc:date>
</item>
<item>
<title>6bec9a2967892bde830727bc05ba66a986d6ee44</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description><
* Fee: 3,000 yen
-LiveCoding is a new boom that programmers show their programming techniques live with communication and develop a new software.
-It is amusing that we watch a super technique of a great hacker rowdy.
+LiveCoding is a new trend where programmers present their programming techniques live.
+It is exciting that we have a chance to watch the super techniques of great hackers.
## REGISTRATION
<!--
-Now avairable.
+Now available.
We accept the first 30 people!
-->
Please wait.
## DETAILS
-A "LiveCoder" creates a new software within 20 minutes, and demonstrates it.
-How the LiveCoder is coding is completely going on screen with a projector.
-And "Play-by-Play commentaries" are always explaining what he/she is doing.
+A "LiveCoder" creates new software within 20 minutes, and demonstrates it.
+Everything the LiveCoder does is displayed on a large screen by projector.
+They give "Play-by-Play commentaries" explaining what he/she is doing the entire time.
> A: She is compiling it... Wow! Syntax error has occurred!
>
@@ -88,7 +88,21 @@ And "Play-by-Play commentaries" are always explaining what he/she is doing.
>
> LiveCoder: (///
+The LiveCoder decides what they will present before coming to the LiveCoding event.
+However, their topic can change at the request of the audience.
+In case the presentation cannot be completed within 20 minutes, requests can be ignored.
+
+* There is a case where one LiveCoder can add another person for commentary if done well.
+* A LiveCoder cannot use any previous work done at a prior LiveCoding event. That's not LiveCoding, merely a replay.
+
## CONTENTS
-* Please wait..
+* [yaotti](http://d.hatena.ne.jp/yaotti/)
+* Potential applicants, please contact [NISHIMURA (Sixeight)](tomohiro68 at gmail com).
+
+## xxxHackathon
+* After the LiveCoding event, a Hackathon will probably occur straight until 7am the next morning, at the same place.
+** Plan 1: LLVM Hackathon
+** Plan 2: Vim Hackathon
+** Plan 3: Android Hackathon
\ No newline at end of file
</pre>]]></description>
<pubDate>Wed Jan 06 02:50:27 +0900 2010</pubDate>
<dc:date>Wed Jan 06 02:50:27 +0900 2010</dc:date>
</item>
<item>
<title>62f2e9e44ccb42940b206d4e58545061023151a0</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description>< まで。
@@ -58,7 +58,7 @@ LiveCoderが何を作るかについては、自分で決めた上でそれをLi
----
-# LiveCoding#8
+# LiveCoding#8+1
## SUMMARY
* January 23 2010 (Sat) OPEN: 17:30, START: 18:00
</pre>]]></description>
<pubDate>Wed Jan 06 01:29:54 +0900 2010</pubDate>
<dc:date>Wed Jan 06 01:29:54 +0900 2010</dc:date>
</item>
<item>
<title>cd22c43b5144f4ebebb10e1f4c66512b02cdecd9</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description><![CDATA[<pre>
fix a bit
diff --git a/README.md b/README.md
index 9d7bc79..42c8941 100644
--- a/README.md
+++ b/README.md
@@ -70,10 +70,12 @@ It is amusing that we watch a super technique of a great hacker rowdy.
## REGISTRATION
-//Now avairable.
-//We accept the first 30 people!
-//
-//<http://cotocoto.jp/event/33314>
+<!--
+Now avairable.
+We accept the first 30 people!
+-->
+
+Please wait.
## DETAILS
A "LiveCoder" creates a new software within 20 minutes, and demonstrates it.
</pre>]]></description>
<pubDate>Tue Jan 05 00:51:11 +0900 2010</pubDate>
<dc:date>Tue Jan 05 00:51:11 +0900 2010</dc:date>
</item>
<item>
<title>35cce4711f6af1814b9f070391996cbbf2fab1df</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description><![CDATA[<pre>
minor fix
diff --git a/README.md b/README.md
index 7227a77..9d7bc79 100644
--- a/README.md
+++ b/README.md
@@ -52,7 +52,7 @@ LiveCoderが何を作るかについては、自分で決めた上でそれをLi
### 補足
* 場は翌朝まで使用可能ですが、寝具が無いため暖かい格好などを持参いただけると凍死のリスクを最小限に抑えられます。
-## LiveCoding#6(前回開催)の様子
+## LiveCoding#7(前回開催)の様子
<http://Sixeight.github.com/livecoding7>
</pre>]]></description>
<pubDate>Mon Jan 04 15:58:58 +0900 2010</pubDate>
<dc:date>Mon Jan 04 15:58:58 +0900 2010</dc:date>
</item>
<item>
<title>f8a12faab2198e19737f001b8f5cb3f31b9aba16</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description><
+
* LiveCoderを募集中です。
* 希望者は [西村(Sixeight)](tomohiro68 at gmail com) まで連絡をお願いします。
</pre>]]></description>
<pubDate>Mon Jan 04 15:58:42 +0900 2010</pubDate>
<dc:date>Mon Jan 04 15:58:42 +0900 2010</dc:date>
</item>
<item>
<title>fc6ff669160896859b01a8bcce11c61db49da814</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description>< まで。
## 概要(予定)
</pre>]]></description>
<pubDate>Thu Dec 31 16:14:56 +0900 2009</pubDate>
<dc:date>Thu Dec 31 16:14:56 +0900 2009</dc:date>
</item>
<item>
<title>9ff959cb153d381d5ce00fcb874afc181515a850</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description><![CDATA[<pre>
fix title
diff --git a/README.md b/README.md
index 490cb10..750fff2 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# LiveCoding#7
+# LiveCoding#8
<div id="path">
Subscribe me <a href="feed.rss"><img alt="feed" src="http://assets1.github.com/images/icons/feed.png?e06bdeb610e33dc41002eaa80ce09d26ae153090" title="Subscribe to the commits for Sixeight/livecoding7 at master" /></a>
</pre>]]></description>
<pubDate>Thu Dec 31 16:07:06 +0900 2009</pubDate>
<dc:date>Thu Dec 31 16:07:06 +0900 2009</dc:date>
</item>
<item>
<title>b3a6511aa28a6b4787b4e2ae36c987f7b976abce</title>
<link>http://sixeight.github.com/livecoding8/</link>
<description>< まで。
+
+## 概要(予定)
+* **2010-01-23 (土) 17時半開場、18時開始**
+* [京都西陣町家スタジオ](http://nishi-jin.net/)
+* 参加費: 3000円 (飲食込み)
+
+LiveCodingとは、ライヴでプログラミングの技を披露し合い、つっこみをいれたりして、その場でソフトウェアを開発する新しい潮流です。すごいプログラマーのスーパーテクニックを生で見て、みんなで盛り上がります。かなり楽しいです。
+
+## LiveCodingについて詳しく
+一人の"LiveCoder"が、20分の制限時間で何かソフトウェアを作り、デモをします。
+LiveCoderがどのようにコーディングしているかの全てがプロジェクターで大画面に映し出され、
+さらに解説役が常にLiveCoderの挙動を説明します。
+
+> A 「コンパイル中です・・・、お、おおお、なんと、Syntax error!」
+>
+> B 「これは恥ずかしい…」
+>
+> LiveCoder 「(/// 」
+
+LiveCoderが何を作るかについては、自分で決めた上でそれをLiveCoding前に告知します。
+ただし、観客の要望で仕様が強制的に変更になることがあります。
+どう考えても20分以内に実装できないことが明らかな場合、仕様変更要望は無視できます。
+
+* 一人のLiveCoderに対して二人の解説役が付くことがうまくいくという経験則があります。
+* LiveCoderは過去に作ったものと全く同じものをLiveCodingで作ることが禁止されています。
+ もはやそれはLiveCodingではなく、たんなる動画の再生と見なされます。
+
+## Contents
+
+* LiveCoderを募集中です。
+ * 希望者は [西村(Sixeight)](tomohiro68 at gmail com) まで連絡をお願いします。
+
+## xxxHackathon
+* LiveCodingのあとで、そのまま次の日の朝7:00amまで同会場でHackathonなどを行なうかもしれません。
+ * 案1: LLVM Hackathon
+ * 案2: Vim Hackathon
+ * 案3: Android Hackathon
+
+### 補足
+* 場は翌朝まで使用可能ですが、寝具が無いため暖かい格好などを持参いただけると凍死のリスクを最小限に抑えられます。
+
+## LiveCoding#6(前回開催)の様子
+
+<http://Sixeight.github.com/livecoding7>
+
+----
+
+# LiveCoding#8
+
+## SUMMARY
+* January 23 2010 (Sat) OPEN: 17:30, START: 18:00
+* [Kyoto Nishijin Machiya Studio (in Japanese)](http://nishi-jin.net/)
+* Fee: 3,000 yen
+
+LiveCoding is a new boom that programmers show their programming techniques live with communication and develop a new software.
+It is amusing that we watch a super technique of a great hacker rowdy.
+
+## REGISTRATION
+
+//Now avairable.
+//We accept the first 30 people!
+//
+//<http://cotocoto.jp/event/33314>
+
+## DETAILS
+A "LiveCoder" creates a new software within 20 minutes, and demonstrates it.
+How the LiveCoder is coding is completely going on screen with a projector.
+And "Play-by-Play commentaries" are always explaining what he/she is doing.
+
+> A: She is compiling it... Wow! Syntax error has occurred!
+>
+> B: LOL
+>
+> LiveCoder: (///
+
+## CONTENTS
+
+* Please wait..
+
</pre>]]></description>
<pubDate>Thu Dec 31 16:00:36 +0900 2009</pubDate>
<dc:date>Thu Dec 31 16:00:36 +0900 2009</dc:date>
</item>
</channel>
</rss>