-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathevents_japan.json
1010 lines (1010 loc) · 37.8 KB
/
events_japan.json
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
[
{
"id": 2,
"name": "瑞穂",
"url": "https://coderdojo-mizuho.connpass.com/",
"event_id": 7838,
"event_title": "No.141 CoderDojo瑞穂 / Mizuho 現地",
"event_date": "2025-01-26T09:30:00.000+09:00",
"event_end_at": "2025-01-26T11:30:00.000+09:00",
"event_url": "https://coderdojo-mizuho.connpass.com/event/338305/",
"prefecture": "愛知",
"participants": 1,
"event_update_at": "2024-11-24T17:53:49.000+09:00",
"address": "名古屋市瑞穂区佐渡町3丁目18番地",
"place": "瑞穂区社会福祉協議会ボランティアセンター",
"limit": 19
},
{
"id": 9,
"name": "さいたま",
"url": "http://coderdojo-saitama.com/",
"event_id": 7957,
"event_title": "第97回CoderDojoさいたま",
"event_date": "2025-01-25T14:00:00.000+09:00",
"event_end_at": "2025-01-25T16:00:00.000+09:00",
"event_url": "https://coderdojo-saitama.connpass.com/event/340248/",
"prefecture": "埼玉",
"participants": 4,
"event_update_at": "2025-01-05T21:26:28.000+09:00",
"address": "埼玉県さいたま市大宮区宮町1-5 銀座ビル6階",
"place": "貸会議室6F",
"limit": 16
},
{
"id": 13,
"name": "こだいら",
"url": "https://coderdojo-kodaira.github.io/",
"event_id": 7816,
"event_title": "第354回 オンライン(Google Meet)",
"event_date": "2025-01-22T19:00:00.000+09:00",
"event_end_at": "2025-01-22T21:00:00.000+09:00",
"event_url": "https://coderdojo-jp-kodaira.connpass.com/event/338015/",
"prefecture": "東京",
"participants": 0,
"event_update_at": "2025-01-17T07:59:54.000+09:00",
"address": "オンライン",
"place": "Google Meet",
"limit": 20
},
{
"id": 18,
"name": "調布",
"url": "https://coderdojochofu.hatenablog.jp/",
"event_id": 7936,
"event_title": "第97回 CoderDojo 調布",
"event_date": "2025-01-26T09:30:00.000+09:00",
"event_end_at": "2025-01-26T12:30:00.000+09:00",
"event_url": "https://coderdojo-chofu.doorkeeper.jp/events/180797",
"prefecture": "東京",
"participants": 5,
"event_update_at": "2025-01-19T19:32:39.441+09:00",
"address": "東京都調布市国領町2丁目5−15",
"place": "あくろす会場",
"limit": 12
},
{
"id": 24,
"name": "流山",
"url": "http://www.code-for-nagareyama.org/?cat=11",
"event_id": 7879,
"event_title": "こども未来ラボプログラミング自習室(2025/2/9(日) CoderDojo流山)",
"event_date": "2025-02-09T10:00:00.000+09:00",
"event_end_at": "2025-02-09T12:00:00.000+09:00",
"event_url": "https://codefornagareyama.connpass.com/event/339859/",
"prefecture": "千葉",
"participants": 1,
"event_update_at": "2024-12-11T10:27:18.000+09:00",
"address": "流山市名都借756番地の4",
"place": "流山東部公民館",
"limit": 10
},
{
"id": 30,
"name": "豊橋",
"url": "https://www.facebook.com/coderdojo.toyohashi/",
"event_id": 7944,
"event_title": "CoderDojo豊橋の開校について(2025年1月の開催予定)",
"event_date": "2025-01-07T16:30:00.000+09:00",
"event_end_at": "2025-01-23T18:00:00.000+09:00",
"event_url": "https://coderdojo-toyohashi.doorkeeper.jp/events/180904",
"prefecture": "愛知",
"participants": 12,
"event_update_at": "2025-01-16T12:55:51.874+09:00",
"address": "〒440-0016 愛知県豊橋市牛川町松下20−1",
"place": "豊橋創造大学D22ゼミ室",
"limit": 15
},
{
"id": 31,
"name": "名古屋",
"url": "https://coderdojo-nagoya.connpass.com/",
"event_id": 8009,
"event_title": "第224回CoderDojo名古屋",
"event_date": "2025-01-26T13:30:00.000+09:00",
"event_end_at": "2025-01-26T16:30:00.000+09:00",
"event_url": "https://coderdojo-nagoya.connpass.com/event/343290/",
"prefecture": "愛知",
"participants": 4,
"event_update_at": "2025-01-19T09:29:04.000+09:00",
"address": "愛知県名古屋市西区二方町15番4",
"place": "山田地域センター",
"limit": null
},
{
"id": 34,
"name": "長岡京",
"url": "https://coderdojo-nagaokakyo.doorkeeper.jp/",
"event_id": 7898,
"event_title": "CoderDojo長岡京〜学生のためのプログラミング道場〜 103回目",
"event_date": "2025-01-26T13:30:00.000+09:00",
"event_end_at": "2025-01-26T16:00:00.000+09:00",
"event_url": "https://coderdojo-nagaokakyo.doorkeeper.jp/events/180605",
"prefecture": "京都",
"participants": 13,
"event_update_at": "2025-01-06T23:25:31.547+09:00",
"address": "〒617-0826 京都府長岡京市開田4丁目2−9 ヘルプビル3F",
"place": "長岡京コワーキングスペース",
"limit": 14
},
{
"id": 35,
"name": "奈良",
"url": "https://coderdojo-nara.github.io/",
"event_id": 7977,
"event_title": "リベンジ【新春2025あけおめ】マインクラフトで遊ぶ会",
"event_date": "2025-01-26T10:00:00.000+09:00",
"event_end_at": "2025-01-26T12:00:00.000+09:00",
"event_url": "https://coderdojo-nara-ikoma.connpass.com/event/342590/",
"prefecture": "奈良",
"participants": 3,
"event_update_at": "2025-01-12T21:56:07.000+09:00",
"address": "オンライン",
"place": "マインクラフトのワールド",
"limit": 10
},
{
"id": 42,
"name": "西宮・梅田",
"url": "https://coderdojo-nishinomiya.info/",
"event_id": 7914,
"event_title": "子ども向けプログラミング道場:コーダー道場159回目@梅田",
"event_date": "2025-02-22T14:00:00.000+09:00",
"event_end_at": "2025-02-22T18:00:00.000+09:00",
"event_url": "https://coderdojo-nishinomiya.doorkeeper.jp/events/179240",
"prefecture": "大阪",
"participants": 5,
"event_update_at": "2024-12-23T17:05:04.311+09:00",
"address": "大阪府大阪市北区大深江町3-1 グランフロント大阪 タワーC 16階",
"place": "gusuku Ashibinaa OSAKA(アールスリーインスティテュート)",
"limit": 0
},
{
"id": 46,
"name": "堺",
"url": "https://coderdojo-sakai.github.io/",
"event_id": 8005,
"event_title": "子ども向けプログラミング道場:コーダー道場74回目@泉北和泉",
"event_date": "2025-01-26T09:30:00.000+09:00",
"event_end_at": "2025-01-26T12:00:00.000+09:00",
"event_url": "https://coderdojo-sakai.connpass.com/event/343310/",
"prefecture": "大阪",
"participants": 0,
"event_update_at": "2025-01-19T17:37:41.000+09:00",
"address": "〒590-0137 大阪府堺市南区城山台2−2−8",
"place": "泉北BASE",
"limit": 8
},
{
"id": 54,
"name": "久留米",
"url": "https://www.facebook.com/CoderDojoKurume/",
"event_id": 7833,
"event_title": "【会場開催】第100回CoderDojo久留米",
"event_date": "2025-01-25T14:00:00.000+09:00",
"event_end_at": "2025-01-25T16:30:00.000+09:00",
"event_url": "https://coderdojo-kurume.connpass.com/event/338121/",
"prefecture": "福岡",
"participants": 10,
"event_update_at": "2025-01-18T13:14:39.000+09:00",
"address": "久留米市六ツ門町3−11(くるめりあ六ツ門6階)",
"place": "みんくる",
"limit": null
},
{
"id": 66,
"name": "高槻",
"url": "https://www.facebook.com/coderdojotakatsuki/",
"event_id": 7866,
"event_title": "CoderDojo高槻 第69回",
"event_date": "2025-02-02T13:15:00.000+09:00",
"event_end_at": "2025-02-02T16:00:00.000+09:00",
"event_url": "https://coderdojo-takatsuki.connpass.com/event/339612/",
"prefecture": "大阪",
"participants": 2,
"event_update_at": "2024-12-07T19:33:31.000+09:00",
"address": "高槻市紺屋町1番2号",
"place": "クロスパル高槻 302会議室",
"limit": 10
},
{
"id": 71,
"name": "尾張",
"url": "https://coderdojoowari.org/",
"event_id": 7873,
"event_title": "第95回 CoderDojo Owari",
"event_date": "2025-02-09T10:00:00.000+09:00",
"event_end_at": "2025-02-09T12:00:00.000+09:00",
"event_url": "https://coderdojoowari.connpass.com/event/336826/",
"prefecture": "愛知",
"participants": 3,
"event_update_at": "2025-01-11T20:08:27.000+09:00",
"address": "愛知県岩倉市本町神明西20",
"place": "岩倉市生涯学習センター",
"limit": null
},
{
"id": 73,
"name": "ひたちなか",
"url": "https://www.facebook.com/coderdojo.hitachinaka/",
"event_id": 7979,
"event_title": "第83回 CoderDojo Hitachinaka",
"event_date": "2025-02-11T13:30:00.000+09:00",
"event_end_at": "2025-02-11T15:30:00.000+09:00",
"event_url": "https://coderdojo-hitachinaka.connpass.com/event/342571/",
"prefecture": "茨城",
"participants": 0,
"event_update_at": "2025-01-13T12:09:25.000+09:00",
"address": "ひたちなか市石川町11-1",
"place": "ふぁみりこらぼ",
"limit": 11
},
{
"id": 79,
"name": "会津",
"url": "https://coderdojoaizu.mystrikingly.com/",
"event_id": 7988,
"event_title": "第14回 Coder Dojo BANDAI",
"event_date": "2025-02-01T13:30:00.000+09:00",
"event_end_at": "2025-02-01T15:45:00.000+09:00",
"event_url": "https://coderdojo-aizu.doorkeeper.jp/events/181245",
"prefecture": "福島",
"participants": 1,
"event_update_at": "2025-01-20T19:42:30.117+09:00",
"address": "福島県耶麻郡磐梯町大字磐梯山道311番地62 磐梯町交流館",
"place": "磐梯町交流館",
"limit": 10
},
{
"id": 92,
"name": "光",
"url": "https://coderdojo-hikari.com/",
"event_id": 7992,
"event_title": "CoderDojo 光 97回目【会場&オンライン 併催】 ~子どものためのプログラミング",
"event_date": "2025-01-26T14:00:00.000+09:00",
"event_end_at": "2025-01-26T16:30:00.000+09:00",
"event_url": "https://coderdojo-hikari.connpass.com/event/342497/",
"prefecture": "山口",
"participants": 0,
"event_update_at": "2025-01-16T19:07:19.000+09:00",
"address": "山口県光市浅江1-4-14 (アイオイビル3F)",
"place": "コワーキングスペース HiKARiBA",
"limit": null
},
{
"id": 98,
"name": "浜松",
"url": "https://coderdojo-hamamatsu.connpass.com/",
"event_id": 7917,
"event_title": "第104回CoderDojo浜松(2025年1月)",
"event_date": "2025-01-26T13:30:00.000+09:00",
"event_end_at": "2025-01-26T15:30:00.000+09:00",
"event_url": "https://coderdojo-hamamatsu.connpass.com/event/340925/",
"prefecture": "静岡",
"participants": 6,
"event_update_at": "2024-12-24T00:26:24.000+09:00",
"address": "静岡県浜松市中央区鴨江町1番地",
"place": "浜松市鴨江アートセンター(201号室)",
"limit": null
},
{
"id": 102,
"name": "福岡",
"url": "https://www.facebook.com/CoderDojoFukuoka/",
"event_id": 8000,
"event_title": "第89回 CoderDojo 福岡 【オンライン】+ 会場:fgn(大名小跡地)",
"event_date": "2025-02-08T14:00:00.000+09:00",
"event_end_at": "2025-02-08T16:00:00.000+09:00",
"event_url": "https://coderdojo-fukuoka.connpass.com/event/343208/",
"prefecture": "福岡",
"participants": 6,
"event_update_at": "2025-01-18T09:38:10.000+09:00",
"address": "福岡県福岡市中央区大名2-6-11",
"place": "オンライン + Fukuoka Growth Next",
"limit": 20
},
{
"id": 110,
"name": "せんなん",
"url": "http://coderdojo-sennan.net/",
"event_id": 7998,
"event_title": "CoderDojoせんなん 第76回道場",
"event_date": "2025-01-26T10:00:00.000+09:00",
"event_end_at": "2025-01-26T12:00:00.000+09:00",
"event_url": "https://coderdojo-sennan.connpass.com/event/342999/",
"prefecture": "大阪",
"participants": 0,
"event_update_at": "2025-01-18T10:48:43.000+09:00",
"address": "大阪府泉南市新家2949",
"place": "新家駅前さくらっこ広場",
"limit": 5
},
{
"id": 117,
"name": "立川",
"url": "https://coderdojotachikawa.github.io/",
"event_id": 7975,
"event_title": "第58回 子どものためのプログラミング道場 - CoderDojo 立川",
"event_date": "2025-02-22T09:30:00.000+09:00",
"event_end_at": "2025-02-22T11:30:00.000+09:00",
"event_url": "https://coderdojotachikawa.doorkeeper.jp/events/181162",
"prefecture": "東京",
"participants": 2,
"event_update_at": "2025-01-12T09:19:32.769+09:00",
"address": "立川市錦町3丁目2番26号",
"place": "立川市子ども未来センター",
"limit": 16
},
{
"id": 124,
"name": "灘",
"url": "https://coderdojo-nada.github.io/",
"event_id": 7960,
"event_title": "CoderDojo Nada(灘) プログラミング勉強会(オンライン参加)",
"event_date": "2025-01-26T14:00:00.000+09:00",
"event_end_at": "2025-01-26T17:00:00.000+09:00",
"event_url": "https://coderdojo-nada.doorkeeper.jp/events/180982",
"prefecture": "兵庫",
"participants": 2,
"event_update_at": "2025-01-18T19:09:07.056+09:00",
"address": null,
"place": null,
"limit": 8
},
{
"id": 130,
"name": "赤羽",
"url": "https://coderdojo-akabane.com/",
"event_id": 7981,
"event_title": "CoderDojo赤羽 #61",
"event_date": "2025-02-16T09:30:00.000+09:00",
"event_end_at": "2025-02-16T11:30:00.000+09:00",
"event_url": "https://coderdojo-akabane.connpass.com/event/342552/",
"prefecture": "東京",
"participants": 3,
"event_update_at": "2025-01-12T10:58:51.000+09:00",
"address": "東京都北区赤羽西1-6-1-301",
"place": "赤羽文化センター 第3学習室",
"limit": 16
},
{
"id": 136,
"name": "香椎",
"url": "https://coderdojo-kashii.connpass.com/",
"event_id": 7999,
"event_title": "第67回CoderDojo香椎",
"event_date": "2025-02-02T09:30:00.000+09:00",
"event_end_at": "2025-02-02T12:00:00.000+09:00",
"event_url": "https://coderdojo-kashii.connpass.com/event/342592/",
"prefecture": "福岡",
"participants": 2,
"event_update_at": "2025-01-18T10:01:40.000+09:00",
"address": "福岡市東区千早4丁目21番45号",
"place": "なみきスクエア 和室",
"limit": 10
},
{
"id": 140,
"name": "厚木",
"url": "https://coderdojo-atsugi.connpass.com/",
"event_id": 8008,
"event_title": "第51回 CoderDojo厚木",
"event_date": "2025-02-24T10:30:00.000+09:00",
"event_end_at": "2025-02-24T12:30:00.000+09:00",
"event_url": "https://coderdojo-atsugi.connpass.com/event/342016/",
"prefecture": "神奈川",
"participants": 0,
"event_update_at": "2025-01-19T12:04:20.000+09:00",
"address": "神奈川県厚木市中町2丁目12-15",
"place": "アミューあつぎ 6F",
"limit": 8
},
{
"id": 145,
"name": "日進",
"url": "https://coderdojo-nisshin.connpass.com/",
"event_id": 7963,
"event_title": "CoderDojo日進 子供向けプログラミング道場(会場&オンライン)2025/01/25",
"event_date": "2025-01-25T09:00:00.000+09:00",
"event_end_at": "2025-01-25T11:00:00.000+09:00",
"event_url": "https://coderdojo-nisshin.connpass.com/event/341932/",
"prefecture": "愛知",
"participants": 3,
"event_update_at": "2025-01-07T15:58:39.000+09:00",
"address": "愛知県日進市蟹甲町中島277-1",
"place": "にぎわい交流館",
"limit": null
},
{
"id": 147,
"name": "稲城",
"url": "https://coderdojo-inagi.doorkeeper.jp/",
"event_id": 7932,
"event_title": "【オフライン開催】子ども向けプログラミング道場:CoderDojo稲城82回 *1月はお休みです",
"event_date": "2025-02-16T13:00:00.000+09:00",
"event_end_at": "2025-02-16T15:00:00.000+09:00",
"event_url": "https://coderdojo-inagi.doorkeeper.jp/events/180803",
"prefecture": "東京",
"participants": 4,
"event_update_at": "2025-01-05T13:16:15.216+09:00",
"address": "東京都稲城市若葉台2丁目5−2",
"place": "稲城市立iプラザ",
"limit": 20
},
{
"id": 153,
"name": "多摩センター",
"url": "https://coderdojo-tamacent.wixsite.com/main",
"event_id": 7934,
"event_title": "子どものためのプログラミング道場 第71回 CoderDojo多摩センター (1月度)",
"event_date": "2025-01-26T10:00:00.000+09:00",
"event_end_at": "2025-01-26T11:30:00.000+09:00",
"event_url": "https://coderdojo-tamacenter.doorkeeper.jp/events/180826",
"prefecture": "東京",
"participants": 7,
"event_update_at": "2025-01-15T00:15:52.282+09:00",
"address": "東京都多摩市落合2-35",
"place": "多摩市立中央図書館 活動室2+3",
"limit": 12
},
{
"id": 156,
"name": "古河",
"url": "https://coderdojokoga.connpass.com/",
"event_id": 8013,
"event_title": "第87回CoderDojo Koga(コーダー道場 古河)",
"event_date": "2025-02-15T13:30:00.000+09:00",
"event_end_at": "2025-02-15T15:30:00.000+09:00",
"event_url": "https://coderdojokoga.connpass.com/event/343401/",
"prefecture": "茨城",
"participants": 1,
"event_update_at": "2025-01-20T14:08:02.000+09:00",
"address": "茨城県古河市鴻巣758",
"place": "三桜工業株式会社 古河事業所",
"limit": 18
},
{
"id": 165,
"name": "喜多方",
"url": "https://www.coderdojo-kitakata.com/",
"event_id": 7929,
"event_title": "第66回 CoderDojo喜多方",
"event_date": "2025-02-15T09:30:00.000+09:00",
"event_end_at": "2025-02-15T11:30:00.000+09:00",
"event_url": "https://coderdojo-kitakata.doorkeeper.jp/events/180762",
"prefecture": "福島",
"participants": 0,
"event_update_at": "2024-12-22T15:14:12.699+09:00",
"address": "未定",
"place": null,
"limit": 13
},
{
"id": 181,
"name": "猪名川",
"url": "https://www.facebook.com/coderdojoinagawa/",
"event_id": 7989,
"event_title": "第65回 CoderDojo猪名川 2025/1/25(土) 14:00~16:30",
"event_date": "2025-01-25T14:00:00.000+09:00",
"event_end_at": "2025-01-25T16:30:00.000+09:00",
"event_url": "https://coderdojo-inagawa.connpass.com/event/342894/",
"prefecture": "兵庫",
"participants": 0,
"event_update_at": "2025-01-15T18:49:36.000+09:00",
"address": "兵庫県川辺郡猪名川町松尾台1-2-1",
"place": "日生中央サピエ 2階 サピエギャラリー",
"limit": 20
},
{
"id": 182,
"name": "瀬戸",
"url": "https://coderdojo-seto.jp/",
"event_id": 7918,
"event_title": "【無料】【見学OK】CoderDojo瀬戸(第137回) 子供プログラミングコミュニティ",
"event_date": "2025-01-26T10:00:00.000+09:00",
"event_end_at": "2025-01-26T12:30:00.000+09:00",
"event_url": "https://coderdojo-seto.connpass.com/event/340933/",
"prefecture": "愛知",
"participants": 15,
"event_update_at": "2024-12-23T10:49:06.000+09:00",
"address": "瀬戸市道泉町53番地の5",
"place": "ぐるっぺ道泉",
"limit": null
},
{
"id": 184,
"name": "あざみ野",
"url": "https://coderdojo-azamino.connpass.com/",
"event_id": 7912,
"event_title": "第76回CoderDojoあざみ野(会議室なのでいつもより狭いです)",
"event_date": "2025-01-26T14:00:00.000+09:00",
"event_end_at": "2025-01-26T16:00:00.000+09:00",
"event_url": "https://coderdojo-azamino.connpass.com/event/340864/",
"prefecture": "神奈川",
"participants": 1,
"event_update_at": "2024-12-21T13:31:21.000+09:00",
"address": "横浜市青葉区あざみ野南1-17-3",
"place": "アートフォーラムあざみ野 3F 会議室2",
"limit": 6
},
{
"id": 186,
"name": "名護",
"url": "https://coderdojo-nago.connpass.com/",
"event_id": 7972,
"event_title": "CoderDojo 名護(名護市マルチメディア館・会議室)",
"event_date": "2025-01-25T10:30:00.000+09:00",
"event_end_at": "2025-01-25T12:00:00.000+09:00",
"event_url": "https://coderdojo-nago.connpass.com/event/342533/",
"prefecture": "沖縄",
"participants": 5,
"event_update_at": "2025-01-12T01:57:11.000+09:00",
"address": "沖縄県名護市豊原224−3",
"place": "名護市マルチメディア館 会議室",
"limit": null
},
{
"id": 189,
"name": "まちだ",
"url": "https://coderdojo-machida.connpass.com/",
"event_id": 7880,
"event_title": "CoderDojoまちだ 第67回(6周年)",
"event_date": "2025-02-11T13:30:00.000+09:00",
"event_end_at": "2025-02-11T16:30:00.000+09:00",
"event_url": "https://coderdojo-machida.connpass.com/event/339817/",
"prefecture": "東京",
"participants": 3,
"event_update_at": "2024-12-10T09:37:29.000+09:00",
"address": "東京都町田市原町田4丁目9−8 サウスフロントタワー町田内",
"place": "町田市民フォーラム",
"limit": null
},
{
"id": 190,
"name": "溝口",
"url": "https://coderdojo-mizonokuchi.connpass.com/",
"event_id": 7895,
"event_title": "1/26無料の子どもプログラミングサークル【第57回CoderDojo溝口】(川崎市,初心者歓迎)",
"event_date": "2025-01-26T14:00:00.000+09:00",
"event_end_at": "2025-01-26T16:00:00.000+09:00",
"event_url": "https://coderdojo-mizonokuchi.connpass.com/event/340269/",
"prefecture": "神奈川",
"participants": 3,
"event_update_at": "2024-12-15T17:10:36.000+09:00",
"address": "〒213-0001 川崎市高津区溝口 2-20-1",
"place": "すくらむ21",
"limit": 9
},
{
"id": 202,
"name": "松原",
"url": "https://coderdojo-matsubara.doorkeeper.jp/",
"event_id": 7994,
"event_title": "【初心者🔰大歓迎!!】子ども向けプログラミング道場!第72回 CoderDojo松原",
"event_date": "2025-02-15T13:00:00.000+09:00",
"event_end_at": "2025-02-15T16:00:00.000+09:00",
"event_url": "https://coderdojo-matsubara.doorkeeper.jp/events/181297",
"prefecture": "大阪",
"participants": 0,
"event_update_at": "2025-01-16T14:32:07.609+09:00",
"address": "〒580-0044 大阪府松原市田井城3丁目104−2",
"place": "まつばらテラス(輝)",
"limit": null
},
{
"id": 218,
"name": "犬山",
"url": "https://coderdojo-inuyama.rgr.jp/",
"event_id": 7983,
"event_title": "第67回 CoderDojo犬山 (午後)",
"event_date": "2025-02-09T13:30:00.000+09:00",
"event_end_at": "2025-02-09T15:30:00.000+09:00",
"event_url": "https://coderdojo-inuyama.doorkeeper.jp/events/181177",
"prefecture": "愛知",
"participants": 0,
"event_update_at": "2025-01-12T21:28:34.477+09:00",
"address": "〒484-0081 犬山市大字犬山字中ノ宮43-1",
"place": "犬山市 丸山地区学習等供用施設",
"limit": null
},
{
"id": 240,
"name": "京都四条",
"url": "https://coderdojo-kyoto-shijo.doorkeeper.jp/",
"event_id": 7928,
"event_title": "子ども向けプログラミング道場:コーダー道場15回目@京都四条",
"event_date": "2025-01-26T13:00:00.000+09:00",
"event_end_at": "2025-01-26T16:00:00.000+09:00",
"event_url": "https://coderdojo-kyoto-shijo.doorkeeper.jp/events/180766",
"prefecture": "京都",
"participants": 3,
"event_update_at": "2025-01-11T12:52:34.775+09:00",
"address": "京都府京都市下京区立売東町20-1 ステラ四條 6F",
"place": "ポノス株式会社",
"limit": 14
},
{
"id": 243,
"name": "大府",
"url": "https://coderdojo-obu.connpass.com/",
"event_id": 7980,
"event_title": "CoderDojo大府(第96回) 子供向けプログラミング道場 2025/02/23",
"event_date": "2025-02-23T09:30:00.000+09:00",
"event_end_at": "2025-02-23T11:30:00.000+09:00",
"event_url": "https://coderdojo-obu.connpass.com/event/342557/",
"prefecture": "愛知",
"participants": 8,
"event_update_at": "2025-01-12T11:34:34.000+09:00",
"address": "〒474-0053 愛知県大府市柊山町6丁目150−1",
"place": "おおぶ文化交流の杜 allobu",
"limit": 19
},
{
"id": 249,
"name": "加西",
"url": "https://coderdojokasai.connpass.com/",
"event_id": 8004,
"event_title": "第54回 CoderDojo加西",
"event_date": "2025-02-09T10:15:00.000+09:00",
"event_end_at": "2025-02-09T12:00:00.000+09:00",
"event_url": "https://coderdojokasai.connpass.com/event/343311/",
"prefecture": "兵庫",
"participants": 0,
"event_update_at": "2025-01-19T17:49:27.000+09:00",
"address": "兵庫県加西市北条町北条28-1",
"place": "加西市立図書館",
"limit": 10
},
{
"id": 260,
"name": "伊勢原",
"url": "https://coderdojo-isehara.connpass.com",
"event_id": 7971,
"event_title": "第46回 CoderDojo伊勢原",
"event_date": "2025-02-08T14:00:00.000+09:00",
"event_end_at": "2025-02-08T16:00:00.000+09:00",
"event_url": "https://coderdojo-isehara.connpass.com/event/341758/",
"prefecture": "神奈川",
"participants": 1,
"event_update_at": "2025-01-10T07:01:56.000+09:00",
"address": "伊勢原市田中297番地",
"place": "伊勢原市民活動サポートセンター",
"limit": 10
},
{
"id": 261,
"name": "江別",
"url": "https://coderdojo-ebetsu.connpass.com/",
"event_id": 7996,
"event_title": "第35回 CoderDojo江別",
"event_date": "2025-02-15T14:00:00.000+09:00",
"event_end_at": "2025-02-15T16:00:00.000+09:00",
"event_url": "https://coderdojo-ebetsu.connpass.com/event/343241/",
"prefecture": "北海道",
"participants": 0,
"event_update_at": "2025-01-18T16:02:54.000+09:00",
"address": "北海道江別市東野幌本町6-43",
"place": "市民交流施設 ぷらっと",
"limit": null
},
{
"id": 265,
"name": "八戸@吹上",
"url": "https://coderdojo-hachinohe.aomori.jp/",
"event_id": 7903,
"event_title": "やってみよう!プログラミング ! 第39回 CoderDojo八戸@鮫のゲストハウスDrop in",
"event_date": "2025-02-09T10:00:00.000+09:00",
"event_end_at": "2025-02-09T12:00:00.000+09:00",
"event_url": "https://coderdojo-hachinohe.doorkeeper.jp/events/180602",
"prefecture": "青森",
"participants": 3,
"event_update_at": "2025-01-16T16:23:35.915+09:00",
"address": "青森県八戸市蟻子5-11",
"place": "鮫のゲストハウス Drop in",
"limit": 4
},
{
"id": 270,
"name": "長門",
"url": "https://sites.google.com/view/coderdojonagato",
"event_id": 7973,
"event_title": "子どもたちのためのプログラミング初心者/未経験者向け【CoderDojo長門】43回",
"event_date": "2025-02-22T14:00:00.000+09:00",
"event_end_at": "2025-02-22T16:00:00.000+09:00",
"event_url": "https://coderdojonagato.connpass.com/event/340846/",
"prefecture": "山口",
"participants": 9,
"event_update_at": "2025-01-11T18:01:57.000+09:00",
"address": "山口県長門市仙崎312-1",
"place": "長門市しごとセンター",
"limit": 24
},
{
"id": 274,
"name": "麹町@アドバンスト・ソフト",
"url": "https://coderdojo-kojimachi.connpass.com/",
"event_id": 8012,
"event_title": "第36回 CoderDojo麹町",
"event_date": "2025-02-16T14:00:00.000+09:00",
"event_end_at": "2025-02-16T16:00:00.000+09:00",
"event_url": "https://coderdojo-kojimachi.connpass.com/event/343396/",
"prefecture": "東京",
"participants": 8,
"event_update_at": "2025-01-20T18:23:45.000+09:00",
"address": "東京都千代田区麹町3-1 麹町昭文社HDビル7階",
"place": "株式会社アドバンスト・ソフト",
"limit": 14
},
{
"id": 277,
"name": "富谷",
"url": "https://coderdojotomiyajp.github.io/",
"event_id": 7840,
"event_title": "第62回 CoderDojo富谷(現地開催)",
"event_date": "2025-01-26T10:00:00.000+09:00",
"event_end_at": "2025-01-26T12:00:00.000+09:00",
"event_url": "https://coderdojotomiya.doorkeeper.jp/events/180087",
"prefecture": "宮城",
"participants": 0,
"event_update_at": "2024-11-23T11:14:37.544+09:00",
"address": "宮城県富谷市成田5丁目20−8",
"place": "成田5丁目会館",
"limit": 15
},
{
"id": 278,
"name": "武蔵小杉",
"url": "https://coderdojo-musashikosugi.connpass.com/",
"event_id": 7948,
"event_title": "第55回 CoderDojo武蔵小杉【レギュラー回】※初めての方歓迎",
"event_date": "2025-02-02T13:15:00.000+09:00",
"event_end_at": "2025-02-02T16:00:00.000+09:00",
"event_url": "https://coderdojo-musashikosugi.connpass.com/event/341570/",
"prefecture": "神奈川",
"participants": 6,
"event_update_at": "2024-12-31T14:16:19.000+09:00",
"address": "〒211-0004 川崎市中原区新丸子東3-1100-12 1階",
"place": "かわさき市民活動センター 会議室A/B",
"limit": 19
},
{
"id": 280,
"name": "西那須野",
"url": "https://coder-dojo-nishinasuno.connpass.com/",
"event_id": 7931,
"event_title": "出張版 CoderDojo西那須野 in くるる (第三十七回)",
"event_date": "2025-02-08T14:00:00.000+09:00",
"event_end_at": "2025-02-08T16:00:00.000+09:00",
"event_url": "https://coder-dojo-nishinasuno.connpass.com/event/340302/",
"prefecture": "栃木",
"participants": 3,
"event_update_at": "2024-12-24T23:38:38.000+09:00",
"address": "栃木県那須塩原市本町6番32号",
"place": "那須塩原市まちなか交流センター「くるる」",
"limit": 20
},
{
"id": 288,
"name": "横浜師岡",
"url": "https://coderdojo-morooka.connpass.com",
"event_id": 8002,
"event_title": "CoderDojo横浜師岡(第29回)",
"event_date": "2025-02-09T09:30:00.000+09:00",
"event_end_at": "2025-02-09T11:30:00.000+09:00",
"event_url": "https://coderdojo-morooka.connpass.com/event/343337/",
"prefecture": "神奈川",
"participants": 2,
"event_update_at": "2025-01-19T22:37:38.000+09:00",
"address": "横浜市港北区師岡町700番地 トレッサ横浜 南棟3F",
"place": "横浜市師岡コミュニティハウス",
"limit": 14
},
{
"id": 292,
"name": "二本松",
"url": "https://coderdojo-nihonmatsu.com/",
"event_id": 7915,
"event_title": "子どものためのプログラミング道場「CoderDojo二本松」#22",
"event_date": "2025-01-26T10:00:00.000+09:00",
"event_end_at": "2025-01-26T12:00:00.000+09:00",
"event_url": "https://dojonihonmatsu.doorkeeper.jp/events/180753",
"prefecture": "福島",
"participants": 12,
"event_update_at": "2025-01-15T09:46:14.920+09:00",
"address": "福島県二本松市油井濡石3",
"place": "二本松市安達公民館 1階 集会室",
"limit": 16
},
{
"id": 300,
"name": "磐田",
"url": "https://coderdojo-iwata.connpass.com",
"event_id": 8003,
"event_title": "第21回 CoderDojo磐田",
"event_date": "2025-02-22T13:30:00.000+09:00",
"event_end_at": "2025-02-22T16:30:00.000+09:00",
"event_url": "https://coderdojo-iwata.connpass.com/event/343325/",
"prefecture": "静岡",
"participants": 6,
"event_update_at": "2025-01-19T20:27:07.000+09:00",
"address": "〒438-0831 静岡県磐田市上新屋678番地1",
"place": "磐田市民文化会館 創作活動室1",
"limit": 10
},
{
"id": 301,
"name": "岩国",
"url": "https://coderdojo-iwakuni.connpass.com/",
"event_id": 7911,
"event_title": "CodeDojo 岩国 20回目(子供たちのプログラミングクラブ活動)",
"event_date": "2025-01-25T14:00:00.000+09:00",
"event_end_at": "2025-01-25T16:00:00.000+09:00",
"event_url": "https://coderdojo-iwakuni.connpass.com/event/340766/",
"prefecture": "山口",
"participants": 0,
"event_update_at": "2025-01-17T10:34:29.000+09:00",
"address": "山口県岩国市周東町下久原1208-1",
"place": "岩国市周東中央公民館2階",
"limit": 26
},
{
"id": 303,
"name": "鶴岡",
"url": "https://coderdojo-tsuruoka.connpass.com/",
"event_id": 7922,
"event_title": "第19回 CoderDojo Tsuruoka",
"event_date": "2025-01-25T10:00:00.000+09:00",
"event_end_at": "2025-01-25T12:00:00.000+09:00",
"event_url": "https://coderdojo-tsuruoka.connpass.com/event/340911/",
"prefecture": "山形",
"participants": 6,
"event_update_at": "2024-12-22T10:17:08.000+09:00",
"address": "山形県鶴岡市山王町8-18 古今cocon",
"place": "古今cocon",
"limit": 12
},
{
"id": 307,
"name": "末広町@アミュレット",
"url": "https://coderdojosuehirocho.connpass.com/",
"event_id": 7938,
"event_title": "CoderDojo末広町 第71回",
"event_date": "2025-01-25T10:00:00.000+09:00",
"event_end_at": "2025-01-25T12:00:00.000+09:00",
"event_url": "https://coderdojosuehirocho.connpass.com/event/341393/",
"prefecture": "東京",
"participants": 9,
"event_update_at": "2024-12-28T12:01:50.000+09:00",
"address": "東京都千代田区外神田3ー5ー11",
"place": "神田キリスト教会 1階ホール",
"limit": 24
},
{
"id": 308,
"name": "新代田",
"url": "https://coder-dojo-shindaita.connpass.com/",
"event_id": 7891,
"event_title": "小中学生向けプログラミング道場 CoderDojo新代田第16回(無料)",
"event_date": "2025-02-15T13:00:00.000+09:00",
"event_end_at": "2025-02-15T14:00:00.000+09:00",
"event_url": "https://coder-dojo-shindaita.connpass.com/event/339576/",
"prefecture": "東京",
"participants": 2,
"event_update_at": "2024-12-07T10:57:44.000+09:00",
"address": "東京都世田谷区代田6丁目34番13号",
"place": "代田区民センター 2階 和室",
"limit": 14
},
{
"id": 312,
"name": "稲毛海岸",
"url": "https://coderdojo-inagekaigan.connpass.com/",
"event_id": 7997,
"event_title": "※開催場所が変更になりました!!※CoderDojo稲毛海岸 第15回目",
"event_date": "2025-02-15T10:00:00.000+09:00",
"event_end_at": "2025-02-15T12:00:00.000+09:00",
"event_url": "https://coderdojo-inagekaigan.connpass.com/event/343219/",
"prefecture": "千葉",
"participants": 0,
"event_update_at": "2025-01-18T12:06:58.000+09:00",
"address": "日本、〒261-0003 千葉県千葉市美浜区高浜4丁目10−31",
"place": "高浜北住宅集会所",
"limit": 25
},
{
"id": 316,
"name": "飯田",
"url": "https://coderdojoiida.github.io/",
"event_id": 7987,
"event_title": "CoderDojo飯田#30",
"event_date": "2025-02-08T13:30:00.000+09:00",
"event_end_at": "2025-02-08T15:30:00.000+09:00",
"event_url": "https://coderdojoiida.connpass.com/event/342680/",
"prefecture": "長野",
"participants": 0,
"event_update_at": "2025-01-14T08:39:32.000+09:00",
"address": "飯田市上郷別府2689−1",
"place": "ロジカランド株式会社",
"limit": 15
},
{
"id": 317,
"name": "仙台若林",
"url": "https://coderdojo-sendai-wakabayashi.connpass.com/",
"event_id": 8006,
"event_title": "CoderDojo仙台若林#24 AM",
"event_date": "2025-01-26T09:30:00.000+09:00",
"event_end_at": "2025-01-26T11:40:00.000+09:00",
"event_url": "https://coderdojo-sendai-wakabayashi.connpass.com/event/343302/",
"prefecture": "宮城",
"participants": 0,
"event_update_at": "2025-01-19T17:31:15.000+09:00",
"address": "仙台市若林区保春院前丁3番1号",
"place": "若林区中央市民センター(別棟)",
"limit": 10
},
{
"id": 319,
"name": "日本橋",
"url": "https://coderdojo-nihonbashi.connpass.com/",
"event_id": 7974,
"event_title": "CoderDojo日本橋 #4",
"event_date": "2025-02-22T09:15:00.000+09:00",
"event_end_at": "2025-02-22T11:45:00.000+09:00",
"event_url": "https://coderdojo-nihonbashi.connpass.com/event/338234/",
"prefecture": "東京",
"participants": 0,
"event_update_at": "2025-01-11T10:20:23.000+09:00",
"address": "東京都中央区東日本橋2-22-4",
"place": "中央区立産業会館(第2集会室)",
"limit": 13
},
{
"id": 320,
"name": "長野",
"url": "https://coderdojo-nagano.connpass.com",
"event_id": 8011,
"event_title": "CoderDojo長野 第5回",
"event_date": "2025-03-02T14:00:00.000+09:00",
"event_end_at": "2025-03-02T16:00:00.000+09:00",
"event_url": "https://coderdojo-nagano.connpass.com/event/343291/",
"prefecture": "長野",
"participants": 1,
"event_update_at": "2025-01-19T20:04:13.000+09:00",
"address": "長野市若里1-1-4",
"place": "長野県立図書館3F",
"limit": 17
},
{
"id": 323,
"name": "なかもず",
"url": "https://coderdojo-nakamozu.connpass.com/",
"event_id": 7986,
"event_title": "第5回 CoderDojo なかもず",
"event_date": "2025-02-09T09:30:00.000+09:00",
"event_end_at": "2025-02-09T12:00:00.000+09:00",
"event_url": "https://coderdojo-nakamozu.connpass.com/event/336548/",
"prefecture": "大阪",
"participants": 3,
"event_update_at": "2025-01-14T09:01:53.000+09:00",
"address": "大阪府堺市北区長曽根町130-42 (S-Cube)",
"place": "S-Cube",
"limit": 25
},
{
"id": 326,
"name": "晴海",
"url": "https://coderdojo-harumi.connpass.com/",
"event_id": 7916,
"event_title": "#5 CoderDojo HARUMI 2025年1月26日 at 晴海図書館",
"event_date": "2025-01-26T09:30:00.000+09:00",