-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathevents_japan.json
1234 lines (1234 loc) · 46.4 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": 8037,
"event_title": "No.144 CoderDojo瑞穂 / ブラザーミュージアム",
"event_date": "2025-03-08T10:00:00.000+09:00",
"event_end_at": "2025-03-08T12:00:00.000+09:00",
"event_url": "https://coderdojo-mizuho.connpass.com/event/344033/",
"prefecture": "愛知",
"participants": 13,
"event_update_at": "2025-01-31T11:56:33.000+09:00",
"address": "愛知県名古屋市瑞穂区塩入町5番15号",
"place": "ブラザーミュージアム",
"limit": 24
},
{
"id": 9,
"name": "さいたま",
"url": "http://coderdojo-saitama.com/",
"event_id": 8170,
"event_title": "第99回CoderDojoさいたま",
"event_date": "2025-03-29T14:00:00.000+09:00",
"event_end_at": "2025-03-29T16:00:00.000+09:00",
"event_url": "https://coderdojo-saitama.connpass.com/event/347896/",
"prefecture": "埼玉",
"participants": 1,
"event_update_at": "2025-03-03T10:31:56.000+09:00",
"address": "埼玉県さいたま市大宮区宮町1-5 銀座ビル6階",
"place": "貸会議室6F",
"limit": 16
},
{
"id": 11,
"name": "飯能",
"url": "https://coderdojohanno.com/",
"event_id": 8108,
"event_title": "CoderDojo Hanno 第86回稽古",
"event_date": "2025-03-16T13:30:00.000+09:00",
"event_end_at": "2025-03-16T15:30:00.000+09:00",
"event_url": "https://coderdojohanno.doorkeeper.jp/events/182130",
"prefecture": "埼玉",
"participants": 1,
"event_update_at": "2025-02-17T19:12:10.461+09:00",
"address": "埼玉県飯能市大字双柳1−16",
"place": "飯能市富士見地区行政センター 2F 第二会議室",
"limit": 20
},
{
"id": 13,
"name": "こだいら",
"url": "https://coderdojo-kodaira.github.io/",
"event_id": 8053,
"event_title": "第358回 あすぴあ会議室(現地)",
"event_date": "2025-03-08T14:00:00.000+09:00",
"event_end_at": "2025-03-08T16:30:00.000+09:00",
"event_url": "https://coderdojo-jp-kodaira.connpass.com/event/344528/",
"prefecture": "東京",
"participants": 0,
"event_update_at": "2025-02-26T12:42:28.000+09:00",
"address": "小平市小川東町4-2-1 ",
"place": "小平元気村おがわ東 あすぴあ会議室",
"limit": 20
},
{
"id": 18,
"name": "調布",
"url": "https://coderdojochofu.hatenablog.jp/",
"event_id": 8176,
"event_title": "第99・100回 CoderDojo 調布",
"event_date": "2025-03-30T10:00:00.000+09:00",
"event_end_at": "2025-03-30T16:00:00.000+09:00",
"event_url": "https://coderdojo-chofu.doorkeeper.jp/events/182461",
"prefecture": "東京",
"participants": 2,
"event_update_at": "2025-03-04T14:54:01.201+09:00",
"address": "東京都調布市国領町2丁目5−15",
"place": "あくろす会場",
"limit": 50
},
{
"id": 24,
"name": "流山",
"url": "http://www.code-for-nagareyama.org/?cat=11",
"event_id": 7965,
"event_title": "こども未来ラボプログラミング自習室(2025/3/9(日) CoderDojo流山)",
"event_date": "2025-03-09T10:00:00.000+09:00",
"event_end_at": "2025-03-09T12:00:00.000+09:00",
"event_url": "https://codefornagareyama.connpass.com/event/339860/",
"prefecture": "千葉",
"participants": 2,
"event_update_at": "2024-12-11T10:27:08.000+09:00",
"address": "流山市名都借756番地の4",
"place": "流山東部公民館",
"limit": 10
},
{
"id": 30,
"name": "豊橋",
"url": "https://www.facebook.com/coderdojo.toyohashi/",
"event_id": 8171,
"event_title": "CoderDojo豊橋 & ComputerClubHouse豊橋(2025年3月の開催予定)",
"event_date": "2025-03-04T16:30:00.000+09:00",
"event_end_at": "2025-03-27T18:00:00.000+09:00",
"event_url": "https://coderdojo-toyohashi.doorkeeper.jp/events/182472",
"prefecture": "愛知",
"participants": 14,
"event_update_at": "2025-03-04T18:51:14.395+09:00",
"address": "〒440-0016 愛知県豊橋市牛川町松下20−1",
"place": "豊橋創造大学D22ゼミ室",
"limit": 17
},
{
"id": 31,
"name": "名古屋",
"url": "https://coderdojo-nagoya.connpass.com/",
"event_id": 8161,
"event_title": "第228回CoderDojo名古屋",
"event_date": "2025-03-16T13:30:00.000+09:00",
"event_end_at": "2025-03-16T16:30:00.000+09:00",
"event_url": "https://coderdojo-nagoya.connpass.com/event/347827/",
"prefecture": "愛知",
"participants": 0,
"event_update_at": "2025-03-02T17:45:10.000+09:00",
"address": "愛知県名古屋市西区二方町15番4",
"place": "山田地域センター",
"limit": null
},
{
"id": 34,
"name": "長岡京",
"url": "https://coderdojo-nagaokakyo.doorkeeper.jp/",
"event_id": 8109,
"event_title": "CoderDojo長岡京〜学生のためのプログラミング道場〜 105回目",
"event_date": "2025-03-16T13:30:00.000+09:00",
"event_end_at": "2025-03-16T16:00:00.000+09:00",
"event_url": "https://coderdojo-nagaokakyo.doorkeeper.jp/events/182121",
"prefecture": "京都",
"participants": 14,
"event_update_at": "2025-03-02T13:28:08.692+09:00",
"address": "〒617-0826 京都府長岡京市開田4丁目2−9 ヘルプビル3F",
"place": "長岡京コワーキングスペース",
"limit": 16
},
{
"id": 35,
"name": "奈良",
"url": "https://coderdojo-nara.github.io/",
"event_id": 8167,
"event_title": "【奈良開催】:子どもと大人のプログラミングクラブ(No.89)",
"event_date": "2025-03-15T13:00:00.000+09:00",
"event_end_at": "2025-03-15T16:00:00.000+09:00",
"event_url": "https://coderdojo-nara-ikoma.connpass.com/event/348035/",
"prefecture": "奈良",
"participants": 2,
"event_update_at": "2025-03-03T23:44:52.000+09:00",
"address": "奈良県奈良市大宮町3丁目5-41",
"place": "社会福祉法人ぷろぼの5Fセミナールーム",
"limit": 20
},
{
"id": 40,
"name": "枚方",
"url": "https://coderdojo-hirakata.org",
"event_id": 8140,
"event_title": "CoderDojo枚方 第50回プログラミング体験会",
"event_date": "2025-03-30T14:00:00.000+09:00",
"event_end_at": "2025-03-30T16:00:00.000+09:00",
"event_url": "https://coderdojo-hirakata.connpass.com/event/344765/",
"prefecture": "大阪",
"participants": 5,
"event_update_at": "2025-02-25T09:08:27.000+09:00",
"address": "大阪府枚方市新町2-1-60",
"place": "枚方市総合文化芸術センター マルチスペース1",
"limit": 10
},
{
"id": 42,
"name": "西宮・梅田",
"url": "https://coderdojo-nishinomiya.info/",
"event_id": 8017,
"event_title": "子ども向けプログラミング道場:コーダー道場160回目@梅田",
"event_date": "2025-03-22T14:00:00.000+09:00",
"event_end_at": "2025-03-22T18:00:00.000+09:00",
"event_url": "https://coderdojo-nishinomiya.doorkeeper.jp/events/180164",
"prefecture": "大阪",
"participants": 9,
"event_update_at": "2025-02-28T16:27:23.670+09:00",
"address": "大阪府大阪市北区大深江町3-1 グランフロント大阪 タワーC 16階",
"place": "gusuku Ashibinaa OSAKA(アールスリーインスティテュート)",
"limit": 0
},
{
"id": 65,
"name": "水戸",
"url": "https://coderdojo-mito.com/",
"event_id": 8169,
"event_title": "第105回 CoderDojo Mito",
"event_date": "2025-03-16T13:30:00.000+09:00",
"event_end_at": "2025-03-16T15:30:00.000+09:00",
"event_url": "https://coderdojo-mito.connpass.com/event/347862/",
"prefecture": "茨城",
"participants": 0,
"event_update_at": "2025-03-03T15:58:56.000+09:00",
"address": "茨城県水戸市内原町1395-6",
"place": "水戸市内原市民センター",
"limit": 28
},
{
"id": 66,
"name": "高槻",
"url": "https://www.facebook.com/coderdojotakatsuki/",
"event_id": 8174,
"event_title": "CoderDojo高槻 第70回",
"event_date": "2025-05-05T13:15:00.000+09:00",
"event_end_at": "2025-05-05T16:00:00.000+09:00",
"event_url": "https://coderdojo-takatsuki.connpass.com/event/346674/",
"prefecture": "大阪",
"participants": 1,
"event_update_at": "2025-02-19T22:54:16.000+09:00",
"address": "高槻市紺屋町1番2号",
"place": "クロスパル高槻 302会議室",
"limit": 10
},
{
"id": 71,
"name": "尾張",
"url": "https://coderdojoowari.org/",
"event_id": 7990,
"event_title": "第96回 CoderDojo Owari",
"event_date": "2025-03-16T10:00:00.000+09:00",
"event_end_at": "2025-03-16T12:00:00.000+09:00",
"event_url": "https://coderdojoowari.connpass.com/event/339492/",
"prefecture": "愛知",
"participants": 9,
"event_update_at": "2025-02-01T13:32:29.000+09:00",
"address": "愛知県岩倉市本町神明西20",
"place": "岩倉市生涯学習センター",
"limit": null
},
{
"id": 72,
"name": "富田林",
"url": "https://coderdojotondabayashi.github.io/main/",
"event_id": 8173,
"event_title": "CoderDojo富田林 第45回:子ども向けプログラミングクラブ",
"event_date": "2025-03-15T15:30:00.000+09:00",
"event_end_at": "2025-03-15T17:30:00.000+09:00",
"event_url": "https://coderdojotondabayashi.connpass.com/event/348084/",
"prefecture": "大阪",
"participants": 0,
"event_update_at": "2025-03-04T09:50:28.000+09:00",
"address": "日本、〒584-0073 大阪府富田林市寺池台1丁目9 70(S3号棟)",
"place": "金剛地区魅力向上拠点『∞KON ROOM』",
"limit": 5
},
{
"id": 73,
"name": "ひたちなか",
"url": "https://www.facebook.com/coderdojo.hitachinaka/",
"event_id": 8136,
"event_title": "第84回 CoderDojo Hitachinaka",
"event_date": "2025-03-20T13:30:00.000+09:00",
"event_end_at": "2025-03-20T15:30:00.000+09:00",
"event_url": "https://coderdojo-hitachinaka.connpass.com/event/347172/",
"prefecture": "茨城",
"participants": 1,
"event_update_at": "2025-02-24T17:57:06.000+09:00",
"address": "ひたちなか市石川町11-1",
"place": "ふぁみりこらぼ",
"limit": 11
},
{
"id": 79,
"name": "会津",
"url": "https://coderdojoaizu.mystrikingly.com/",
"event_id": 8135,
"event_title": "【デジミラ併催】第84回 CoderDojo Aizu ",
"event_date": "2025-03-15T13:30:00.000+09:00",
"event_end_at": "2025-03-15T16:00:00.000+09:00",
"event_url": "https://coderdojo-aizu.doorkeeper.jp/events/182309",
"prefecture": "福島",
"participants": 4,
"event_update_at": "2025-03-02T17:27:02.950+09:00",
"address": "會津稽古堂",
"place": "美術工芸スタジオ",
"limit": 20
},
{
"id": 88,
"name": "甲府",
"url": "https://www.facebook.com/coderdojo.kofu/",
"event_id": 8054,
"event_title": "子ども向けプログラミングクラブ コーダー道場甲府#38",
"event_date": "2025-03-16T09:30:00.000+09:00",
"event_end_at": "2025-03-16T11:30:00.000+09:00",
"event_url": "https://coderdojokofu.connpass.com/event/344481/",
"prefecture": "山梨",
"participants": 1,
"event_update_at": "2025-01-30T14:25:11.000+09:00",
"address": "〒400-0812 山梨県甲府市和戸町 1303",
"place": "山梨県立青少年センター",
"limit": 13
},
{
"id": 89,
"name": "さくら",
"url": "https://coderdojo-sakura.github.io/",
"event_id": 8073,
"event_title": "第77回CoderDojo さくら",
"event_date": "2025-03-23T10:00:00.000+09:00",
"event_end_at": "2025-03-23T12:00:00.000+09:00",
"event_url": "https://coderdojosakura.connpass.com/event/344901/",
"prefecture": "栃木",
"participants": 0,
"event_update_at": "2025-02-06T18:41:22.000+09:00",
"address": "〒329-2151 栃木県矢板市幸岡1498−1",
"place": "HCCソフト(株)研究開発センター(旧矢板西小学校)",
"limit": 10
},
{
"id": 98,
"name": "浜松",
"url": "https://coderdojo-hamamatsu.connpass.com/",
"event_id": 8138,
"event_title": "第106回CoderDojo 浜松(2025年3月)",
"event_date": "2025-03-30T13:30:00.000+09:00",
"event_end_at": "2025-03-30T15:30:00.000+09:00",
"event_url": "https://coderdojo-hamamatsu.connpass.com/event/345213/",
"prefecture": "静岡",
"participants": 6,
"event_update_at": "2025-02-24T13:31:23.000+09:00",
"address": "静岡県浜松市中央区鴨江町1番地",
"place": "浜松市鴨江アートセンター(201号室)",
"limit": null
},
{
"id": 102,
"name": "福岡",
"url": "https://www.facebook.com/CoderDojoFukuoka/",
"event_id": 8101,
"event_title": "第90回 CoderDojo 福岡 【オンライン】+ 会場:fgn(大名小跡地)※2階です",
"event_date": "2025-03-08T14:00:00.000+09:00",
"event_end_at": "2025-03-08T16:00:00.000+09:00",
"event_url": "https://coderdojo-fukuoka.connpass.com/event/346194/",
"prefecture": "福岡",
"participants": 11,
"event_update_at": "2025-02-15T18:11:35.000+09:00",
"address": "福岡県福岡市中央区大名2-6-11",
"place": "オンライン + Fukuoka Growth Next",
"limit": 20
},
{
"id": 109,
"name": "滝沢",
"url": "https://www.facebook.com/CoderDojoTakizawa/",
"event_id": 8143,
"event_title": "【日曜午前開催】 3/9(日)第76回CoderDojo滝沢 ",
"event_date": "2025-03-09T10:00:00.000+09:00",
"event_end_at": "2025-03-09T12:00:00.000+09:00",
"event_url": "https://coderdojo-takizawa.doorkeeper.jp/events/182360",
"prefecture": "岩手",
"participants": 5,
"event_update_at": "2025-03-04T20:01:05.576+09:00",
"address": "岩手県滝沢市巣子152-409",
"place": "滝沢市IPU第二イノベーションセンター",
"limit": null
},
{
"id": 114,
"name": "松戸",
"url": "https://code4matsudo.org/category/coder-dojo-matsudo/",
"event_id": 8152,
"event_title": "第43回コーダー道場まつど開催案内 3月8日 (土)14時30分",
"event_date": "2025-03-08T14:30:00.000+09:00",
"event_end_at": "2025-03-08T16:30:00.000+09:00",
"event_url": "https://coderdojomatsudo.connpass.com/event/347074/",
"prefecture": "千葉",
"participants": 4,
"event_update_at": "2025-03-01T00:01:09.000+09:00",
"address": "千葉県松戸市本町7−3",
"place": "松戸観光案内所2階",
"limit": 9
},
{
"id": 117,
"name": "立川",
"url": "https://coderdojotachikawa.github.io/",
"event_id": 8099,
"event_title": "第59回 子どものためのプログラミング道場 - CoderDojo 立川",
"event_date": "2025-03-22T09:30:00.000+09:00",
"event_end_at": "2025-03-22T11:30:00.000+09:00",
"event_url": "https://coderdojotachikawa.doorkeeper.jp/events/181958",
"prefecture": "東京",
"participants": 3,
"event_update_at": "2025-03-02T19:30:03.996+09:00",
"address": "立川市錦町3丁目2番26号",
"place": "立川市子ども未来センター",
"limit": 16
},
{
"id": 118,
"name": "安城",
"url": "https://sites.google.com/coderdojo.com/anjo/",
"event_id": 8151,
"event_title": "【第54回】小中高生のプログラミング道場 CoderDojo Anjo",
"event_date": "2025-03-15T09:30:00.000+09:00",
"event_end_at": "2025-03-15T11:30:00.000+09:00",
"event_url": "https://coderdojo-anjo.doorkeeper.jp/events/182389",
"prefecture": "愛知",
"participants": 4,
"event_update_at": "2025-03-01T09:12:04.463+09:00",
"address": "愛知県安城市大東町11−3",
"place": "安城市民交流センター(わくわくセンター)",
"limit": null
},
{
"id": 124,
"name": "灘",
"url": "https://coderdojo-nada.github.io/",
"event_id": 8177,
"event_title": "CoderDojo Nada(灘) プログラミング勉強会(オンライン参加)",
"event_date": "2025-03-30T14:00:00.000+09:00",
"event_end_at": "2025-03-30T16:20:00.000+09:00",
"event_url": "https://coderdojo-nada.doorkeeper.jp/events/182490",
"prefecture": "兵庫",
"participants": 1,
"event_update_at": "2025-03-03T14:43:05.032+09:00",
"address": null,
"place": null,
"limit": 8
},
{
"id": 129,
"name": "三島・沼津",
"url": "https://coderdojo-mn.com/",
"event_id": 8075,
"event_title": "第37回 CoderDojo 三島/沼津",
"event_date": "2025-03-09T10:00:00.000+09:00",
"event_end_at": "2025-03-09T12:00:00.000+09:00",
"event_url": "https://coderdojo-mn.connpass.com/event/345201/",
"prefecture": "静岡",
"participants": 0,
"event_update_at": "2025-02-06T12:01:46.000+09:00",
"address": "沼津市大岡4044-24",
"place": "静岡県立工科短期大学校 沼津キャンパス(旧:沼津テクノカレッジ)",
"limit": 10
},
{
"id": 130,
"name": "赤羽",
"url": "https://coderdojo-akabane.com/",
"event_id": 8139,
"event_title": "CoderDojo赤羽 #62",
"event_date": "2025-03-23T09:30:00.000+09:00",
"event_end_at": "2025-03-23T11:30:00.000+09:00",
"event_url": "https://coderdojo-akabane.connpass.com/event/347224/",
"prefecture": "東京",
"participants": 6,
"event_update_at": "2025-02-25T10:58:35.000+09:00",
"address": "東京都北区赤羽西1-6-1-301",
"place": "赤羽文化センター 第3学習室",
"limit": 16
},
{
"id": 145,
"name": "日進",
"url": "https://coderdojo-nisshin.connpass.com/",
"event_id": 8120,
"event_title": "CoderDojo日進 子供向けプログラミング道場(会場&オンライン)2025/03/08",
"event_date": "2025-03-08T09:00:00.000+09:00",
"event_end_at": "2025-03-08T11:00:00.000+09:00",
"event_url": "https://coderdojo-nisshin.connpass.com/event/346607/",
"prefecture": "愛知",
"participants": 3,
"event_update_at": "2025-02-19T15:20:01.000+09:00",
"address": "愛知県日進市蟹甲町中島277-1",
"place": "にぎわい交流館",
"limit": null
},
{
"id": 147,
"name": "稲城",
"url": "https://coderdojo-inagi.doorkeeper.jp/",
"event_id": 8111,
"event_title": "【オフライン開催】子ども向けプログラミング道場:CoderDojo稲城84回 ",
"event_date": "2025-03-30T13:00:00.000+09:00",
"event_end_at": "2025-03-30T15:00:00.000+09:00",
"event_url": "https://coderdojo-inagi.doorkeeper.jp/events/182129",
"prefecture": "東京",
"participants": 4,
"event_update_at": "2025-03-03T00:25:39.321+09:00",
"address": "東京都稲城市若葉台2丁目5−2",
"place": "稲城市立iプラザ",
"limit": 20
},
{
"id": 148,
"name": "静岡",
"url": "https://coderdojo-shizuoka.org/",
"event_id": 8172,
"event_title": "62回CoderDojo静岡",
"event_date": "2025-03-30T09:30:00.000+09:00",
"event_end_at": "2025-03-30T11:40:00.000+09:00",
"event_url": "https://coderdojo-shizuoka.connpass.com/event/348132/",
"prefecture": "静岡",
"participants": 8,
"event_update_at": "2025-03-04T15:58:34.000+09:00",
"address": "静岡市葵区 一番町50",
"place": "静岡市番町市民活動センター(大会議室)",
"limit": 19
},
{
"id": 153,
"name": "多摩センター",
"url": "https://coderdojo-tamacent.wixsite.com/main",
"event_id": 8142,
"event_title": "子どものためのプログラミング道場 第73回 CoderDojo多摩センター (3月度)",
"event_date": "2025-03-30T10:00:00.000+09:00",
"event_end_at": "2025-03-30T11:30:00.000+09:00",
"event_url": "https://coderdojo-tamacenter.doorkeeper.jp/events/182321",
"prefecture": "東京",
"participants": 5,
"event_update_at": "2025-03-02T19:56:53.143+09:00",
"address": "東京都多摩市落合2-35",
"place": "多摩市立中央図書館 活動室2+3",
"limit": 12
},
{
"id": 156,
"name": "古河",
"url": "https://coderdojokoga.connpass.com/",
"event_id": 8089,
"event_title": "第89回CoderDojo Koga(コーダー道場 古河)",
"event_date": "2025-03-15T10:00:00.000+09:00",
"event_end_at": "2025-03-15T12:00:00.000+09:00",
"event_url": "https://coderdojokoga.connpass.com/event/345768/",
"prefecture": "茨城",
"participants": 3,
"event_update_at": "2025-02-11T21:26:50.000+09:00",
"address": "茨城県古河市鴻巣758",
"place": "三桜工業株式会社 古河事業所",
"limit": 18
},
{
"id": 165,
"name": "喜多方",
"url": "https://www.coderdojo-kitakata.com/",
"event_id": 8159,
"event_title": "第67回 CoderDojo喜多方 in 会陽館",
"event_date": "2025-03-15T09:30:00.000+09:00",
"event_end_at": "2025-03-15T11:30:00.000+09:00",
"event_url": "https://coderdojo-kitakata.doorkeeper.jp/events/182453",
"prefecture": "福島",
"participants": 2,
"event_update_at": "2025-03-04T14:32:08.604+09:00",
"address": "福島県喜多方市東町4088-1",
"place": "東町蔵屋敷「会陽館」多目的スペース",
"limit": 10
},
{
"id": 181,
"name": "猪名川",
"url": "https://www.facebook.com/coderdojoinagawa/",
"event_id": 8144,
"event_title": "第67回 CoderDojo猪名川 2025/3/15(土) 14:00~16:30",
"event_date": "2025-03-15T14:00:00.000+09:00",
"event_end_at": "2025-03-15T16:30:00.000+09:00",
"event_url": "https://coderdojo-inagawa.connpass.com/event/347484/",
"prefecture": "兵庫",
"participants": 1,
"event_update_at": "2025-02-26T21:02:34.000+09:00",
"address": "兵庫県川辺郡猪名川町松尾台1-2-1",
"place": "日生中央サピエ 2階 サピエギャラリー",
"limit": 20
},
{
"id": 182,
"name": "瀬戸",
"url": "https://coderdojo-seto.jp/",
"event_id": 8064,
"event_title": "【無料】【見学OK】CoderDojo瀬戸(第140回) 子供プログラミングコミュニティ",
"event_date": "2025-03-09T10:00:00.000+09:00",
"event_end_at": "2025-03-09T12:30:00.000+09:00",
"event_url": "https://coderdojo-seto.connpass.com/event/344735/",
"prefecture": "愛知",
"participants": 18,
"event_update_at": "2025-02-02T09:45:51.000+09:00",
"address": "瀬戸市道泉町53番地の5",
"place": "ぐるっぺ道泉",
"limit": null
},
{
"id": 184,
"name": "あざみ野",
"url": "https://coderdojo-azamino.connpass.com/",
"event_id": 8061,
"event_title": "第78回CoderDojoあざみ野",
"event_date": "2025-03-29T14:00:00.000+09:00",
"event_end_at": "2025-03-29T16:00:00.000+09:00",
"event_url": "https://coderdojo-azamino.connpass.com/event/344747/",
"prefecture": "神奈川",
"participants": 1,
"event_update_at": "2025-02-02T13:45:56.000+09:00",
"address": "横浜市青葉区あざみ野南1-17-3",
"place": "アートフォーラムあざみ野 2F セミナールーム1",
"limit": 9
},
{
"id": 186,
"name": "名護",
"url": "https://coderdojo-nago.connpass.com/",
"event_id": 7991,
"event_title": "CoderDojo Onna@OIST (Conference Center)",
"event_date": "2025-03-16T10:30:00.000+09:00",
"event_end_at": "2025-03-16T12:00:00.000+09:00",
"event_url": "https://coderdojo-nago.connpass.com/event/339241/",
"prefecture": "沖縄",
"participants": 18,
"event_update_at": "2025-03-02T14:27:50.000+09:00",
"address": "恩納村字谷茶1919-1",
"place": "沖縄科学技術大学院大学 OIST・ ミーティング・ルーム棟・ミーティングルーム棟 ミーティングルーム1",
"limit": null
},
{
"id": 189,
"name": "まちだ",
"url": "https://coderdojo-machida.connpass.com/",
"event_id": 8023,
"event_title": "CoderDojoまちだ 第68回",
"event_date": "2025-03-23T13:30:00.000+09:00",
"event_end_at": "2025-03-23T16:30:00.000+09:00",
"event_url": "https://coderdojo-machida.connpass.com/event/342699/",
"prefecture": "東京",
"participants": 6,
"event_update_at": "2025-01-14T11:15:03.000+09:00",
"address": "東京都町田市原町田4丁目9−8 サウスフロントタワー町田内",
"place": "町田市民フォーラム",
"limit": null
},
{
"id": 190,
"name": "溝口",
"url": "https://coderdojo-mizonokuchi.connpass.com/",
"event_id": 8119,
"event_title": "3/30無料の子どもプログラミングサークル【第59回CoderDojo溝口】(川崎市,初心者歓迎)",
"event_date": "2025-03-30T14:00:00.000+09:00",
"event_end_at": "2025-03-30T16:00:00.000+09:00",
"event_url": "https://coderdojo-mizonokuchi.connpass.com/event/346662/",
"prefecture": "神奈川",
"participants": 2,
"event_update_at": "2025-02-19T21:07:33.000+09:00",
"address": "〒213-0001 川崎市高津区溝口 2-20-1",
"place": "すくらむ21",
"limit": 9
},
{
"id": 200,
"name": "岐阜",
"url": "https://coderdojo-gifu.org/",
"event_id": 8168,
"event_title": "第70回 CoderDojo岐阜",
"event_date": "2025-03-15T09:30:00.000+09:00",
"event_end_at": "2025-03-15T11:30:00.000+09:00",
"event_url": "https://coderdojo-gifu.connpass.com/event/347997/",
"prefecture": "岐阜",
"participants": 0,
"event_update_at": "2025-03-03T20:33:31.000+09:00",
"address": "岐阜県岐阜市司町40番地5",
"place": "みんなの森 ぎふメディアコスモス「おどるスタジオ」",
"limit": 16
},
{
"id": 202,
"name": "松原",
"url": "https://coderdojo-matsubara.doorkeeper.jp/",
"event_id": 8104,
"event_title": "【初心者🔰大歓迎!!】子ども向けプログラミング道場!第73回 CoderDojo松原",
"event_date": "2025-03-15T13:00:00.000+09:00",
"event_end_at": "2025-03-15T16:00:00.000+09:00",
"event_url": "https://coderdojo-matsubara.doorkeeper.jp/events/182107",
"prefecture": "大阪",
"participants": 1,
"event_update_at": "2025-02-24T19:12:32.175+09:00",
"address": "〒580-0044 大阪府松原市田井城3丁目104−2",
"place": "まつばらテラス(輝)",
"limit": null
},
{
"id": 218,
"name": "犬山",
"url": "https://coderdojo-inuyama.rgr.jp/",
"event_id": 8095,
"event_title": "第68回 CoderDojo犬山 (午後)",
"event_date": "2025-03-16T13:30:00.000+09:00",
"event_end_at": "2025-03-16T15:30:00.000+09:00",
"event_url": "https://coderdojo-inuyama.doorkeeper.jp/events/182041",
"prefecture": "愛知",
"participants": 0,
"event_update_at": "2025-02-13T09:56:57.588+09:00",
"address": "〒484-0081 犬山市大字犬山字中ノ宮43-1",
"place": "犬山市 丸山地区学習等供用施設",
"limit": null
},
{
"id": 226,
"name": "伊予",
"url": "https://coderdojo-iyo.com/",
"event_id": 8137,
"event_title": "第65回 CoderDojo伊予 子どものためのプログラミング道場",
"event_date": "2025-03-09T13:00:00.000+09:00",
"event_end_at": "2025-03-09T15:30:00.000+09:00",
"event_url": "https://coderdojo-iyo.connpass.com/event/347170/",
"prefecture": "愛媛",
"participants": 0,
"event_update_at": "2025-02-24T17:43:26.000+09:00",
"address": "愛媛県伊予市尾崎3-1 伊予市総合保健福祉センター3階",
"place": "みんくる",
"limit": null
},
{
"id": 240,
"name": "京都四条",
"url": "https://coderdojo-kyoto-shijo.doorkeeper.jp/",
"event_id": 8155,
"event_title": "子ども向けプログラミング道場:コーダー道場16回目@京都四条",
"event_date": "2025-03-09T13:00:00.000+09:00",
"event_end_at": "2025-03-09T16:00:00.000+09:00",
"event_url": "https://coderdojo-kyoto-shijo.doorkeeper.jp/events/182448",
"prefecture": "京都",
"participants": 3,
"event_update_at": "2025-03-02T11:01:28.725+09:00",
"address": "京都府京都市下京区立売東町20-1 ステラ四條 6F",
"place": "ポノス株式会社",
"limit": 14
},
{
"id": 241,
"name": "西尾",
"url": "https://www.coderdojo-nishio.com/",
"event_id": 8166,
"event_title": "3月度 CoderDojo Nishio(こーだーどうじょうにしお)",
"event_date": "2025-03-08T10:00:00.000+09:00",
"event_end_at": "2025-03-08T11:30:00.000+09:00",
"event_url": "https://coderdojo-nishio.doorkeeper.jp/events/182471",
"prefecture": "愛知",
"participants": 4,
"event_update_at": "2025-03-03T06:07:16.249+09:00",
"address": "愛知県西尾市鶴ケ崎町6−2",
"place": "アクティ西尾 3F 3B",
"limit": 15
},
{
"id": 243,
"name": "大府",
"url": "https://coderdojo-obu.connpass.com/",
"event_id": 8049,
"event_title": "CoderDojo大府(第98回) 子供向けプログラミング道場 2025/03/30",
"event_date": "2025-03-30T09:30:00.000+09:00",
"event_end_at": "2025-03-30T11:30:00.000+09:00",
"event_url": "https://coderdojo-obu.connpass.com/event/342559/",
"prefecture": "愛知",
"participants": 10,
"event_update_at": "2025-01-12T11:38:43.000+09:00",
"address": "〒474-0053 愛知県大府市柊山町6丁目150−1",
"place": "おおぶ文化交流の杜 allobu",
"limit": 19
},
{
"id": 248,
"name": "矢吹",
"url": "https://coderdojoyabuki.connpass.com/",
"event_id": 8163,
"event_title": "第51回CoderDojo Yabuki",
"event_date": "2025-03-22T10:00:00.000+09:00",
"event_end_at": "2025-03-22T12:00:00.000+09:00",
"event_url": "https://coderdojoyabuki.connpass.com/event/343716/",
"prefecture": "福島",
"participants": 1,
"event_update_at": "2025-03-02T10:29:50.000+09:00",
"address": "福島県西白河郡矢吹町中町259番地",
"place": "株式会社コミクリ 東北DXセンター",
"limit": 12
},
{
"id": 249,
"name": "加西",
"url": "https://coderdojokasai.connpass.com/",
"event_id": 8022,
"event_title": "第55回 CoderDojo加西",
"event_date": "2025-03-23T10:15:00.000+09:00",
"event_end_at": "2025-03-23T12:00:00.000+09:00",
"event_url": "https://coderdojokasai.connpass.com/event/343313/",
"prefecture": "兵庫",
"participants": 0,
"event_update_at": "2025-01-19T17:49:53.000+09:00",
"address": "兵庫県加西市北条町北条28-1",
"place": "加西市立図書館",
"limit": 10
},
{
"id": 254,
"name": "青梅",
"url": "https://coderdojoome.github.io/",
"event_id": 8165,
"event_title": "オンライン限定【CoderDojo青梅】第104回",
"event_date": "2025-03-08T14:30:00.000+09:00",
"event_end_at": "2025-03-08T16:00:00.000+09:00",
"event_url": "https://coderdojo-ome.connpass.com/event/347780/",
"prefecture": "東京",
"participants": 1,
"event_update_at": "2025-03-02T08:48:52.000+09:00",
"address": "オンライン",
"place": "オンライン",
"limit": 5
},
{
"id": 260,
"name": "伊勢原",
"url": "https://coderdojo-isehara.connpass.com",
"event_id": 8078,
"event_title": "第47回 CoderDojo伊勢原",
"event_date": "2025-03-08T14:00:00.000+09:00",
"event_end_at": "2025-03-08T16:00:00.000+09:00",
"event_url": "https://coderdojo-isehara.connpass.com/event/344674/",
"prefecture": "神奈川",
"participants": 2,
"event_update_at": "2025-02-07T07:01:40.000+09:00",
"address": "伊勢原市田中297番地",
"place": "伊勢原市民活動サポートセンター",
"limit": 10
},
{
"id": 261,
"name": "江別",
"url": "https://coderdojo-ebetsu.connpass.com/",
"event_id": 8100,
"event_title": "第36回 CoderDojo江別",
"event_date": "2025-03-22T15:00:00.000+09:00",
"event_end_at": "2025-03-22T17:00:00.000+09:00",
"event_url": "https://coderdojo-ebetsu.connpass.com/event/346209/",
"prefecture": "北海道",
"participants": 0,
"event_update_at": "2025-02-15T20:23:04.000+09:00",
"address": "北海道江別市東野幌本町6-43",
"place": "市民交流施設 ぷらっと",
"limit": null
},
{
"id": 262,
"name": "宇治",
"url": "https://coderdojo-uji.blogspot.com/",
"event_id": 8122,
"event_title": "日程変更【4/20】第9回 CoderDojo宇治",
"event_date": "2025-04-20T13:30:00.000+09:00",
"event_end_at": "2025-04-20T16:00:00.000+09:00",
"event_url": "https://coderdojo-uji.connpass.com/event/346585/",
"prefecture": "京都",
"participants": 1,
"event_update_at": "2025-02-20T15:25:19.000+09:00",
"address": "京都府宇治市宇治壱番3",
"place": "京都文教大学サテライトキャンパス",
"limit": 4
},
{
"id": 265,
"name": "八戸@吹上",
"url": "https://coderdojo-hachinohe.aomori.jp/",
"event_id": 8086,
"event_title": "やってみよう!プログラミング ! 第40回 CoderDojo八戸@鮫のゲストハウスDrop in",
"event_date": "2025-03-09T10:00:00.000+09:00",
"event_end_at": "2025-03-09T12:00:00.000+09:00",
"event_url": "https://coderdojo-hachinohe.doorkeeper.jp/events/181937",
"prefecture": "青森",
"participants": 4,
"event_update_at": "2025-02-23T18:42:24.277+09:00",
"address": "青森県八戸市蟻子5-11",
"place": "鮫のゲストハウス Drop in",
"limit": 4
},
{
"id": 270,
"name": "長門",
"url": "https://sites.google.com/view/coderdojonagato",
"event_id": 8126,
"event_title": "子どもたちのためのプログラミング初心者/未経験者向け【CoderDojo長門】44回",
"event_date": "2025-03-22T14:00:00.000+09:00",
"event_end_at": "2025-03-22T16:00:00.000+09:00",
"event_url": "https://coderdojonagato.connpass.com/event/340848/",
"prefecture": "山口",
"participants": 11,
"event_update_at": "2025-02-24T19:31:18.000+09:00",
"address": "山口県長門市仙崎312-1",
"place": "長門市しごとセンター",
"limit": 24
},
{
"id": 274,
"name": "麹町@アドバンスト・ソフト",
"url": "https://coderdojo-kojimachi.connpass.com/",
"event_id": 8115,
"event_title": "第37回 CoderDojo麹町",
"event_date": "2025-03-16T14:00:00.000+09:00",
"event_end_at": "2025-03-16T16:00:00.000+09:00",
"event_url": "https://coderdojo-kojimachi.connpass.com/event/346327/",
"prefecture": "東京",
"participants": 12,
"event_update_at": "2025-02-17T12:11:30.000+09:00",
"address": "東京都千代田区麹町3-1 麹町昭文社HDビル7階",
"place": "株式会社アドバンスト・ソフト",
"limit": 17
},
{
"id": 277,
"name": "富谷",
"url": "https://coderdojotomiyajp.github.io/",
"event_id": 8016,
"event_title": "第64回 CoderDojo富谷(現地開催)",
"event_date": "2025-03-22T10:00:00.000+09:00",
"event_end_at": "2025-03-22T12:00:00.000+09:00",
"event_url": "https://coderdojotomiya.doorkeeper.jp/events/180089",
"prefecture": "宮城",
"participants": 0,
"event_update_at": "2024-11-23T11:16:06.027+09:00",
"address": "宮城県富谷市成田5丁目20−8",
"place": "成田5丁目会館",
"limit": 15
},
{
"id": 278,
"name": "武蔵小杉",
"url": "https://coderdojo-musashikosugi.connpass.com/",
"event_id": 8158,
"event_title": "第57回 CoderDojo武蔵小杉【レギュラー回】※初めての方歓迎",
"event_date": "2025-04-19T13:15:00.000+09:00",
"event_end_at": "2025-04-19T16:00:00.000+09:00",
"event_url": "https://coderdojo-musashikosugi.connpass.com/event/347730/",
"prefecture": "神奈川",
"participants": 5,
"event_update_at": "2025-03-01T11:44:21.000+09:00",
"address": "〒211-0004 川崎市中原区新丸子東3-1100-12 1階",
"place": "かわさき市民活動センター 会議室A/B",
"limit": 25
},
{
"id": 280,
"name": "西那須野",
"url": "https://coder-dojo-nishinasuno.connpass.com/",
"event_id": 8106,
"event_title": "第三十九回 CoderDojo西那須野",
"event_date": "2025-03-16T14:00:00.000+09:00",
"event_end_at": "2025-03-16T16:00:00.000+09:00",
"event_url": "https://coder-dojo-nishinasuno.connpass.com/event/346218/",
"prefecture": "栃木",
"participants": 1,
"event_update_at": "2025-02-16T21:37:57.000+09:00",
"address": "栃木県那須塩原市二区町401",
"place": "那須塩原市南公民館",
"limit": 20
},
{
"id": 286,
"name": "池田石橋",
"url": "https://coderdojo-ikeda.connpass.com/",
"event_id": 8160,
"event_title": "CoderDojo 池田石橋@正福寺 - 29",
"event_date": "2025-03-23T09:30:00.000+09:00",
"event_end_at": "2025-03-23T12:30:00.000+09:00",
"event_url": "https://coderdojo-ikeda.connpass.com/event/347855/",
"prefecture": "大阪",
"participants": 2,
"event_update_at": "2025-03-02T22:11:01.000+09:00",
"address": "大阪府池田市石橋4ー15ー14",
"place": "正福寺 ナムのひろば文化会館",
"limit": 10
},
{
"id": 288,
"name": "横浜師岡",
"url": "https://coderdojo-morooka.connpass.com",
"event_id": 8085,
"event_title": "CoderDojo横浜師岡(第30回)",
"event_date": "2025-03-23T09:30:00.000+09:00",
"event_end_at": "2025-03-23T11:30:00.000+09:00",
"event_url": "https://coderdojo-morooka.connpass.com/event/345509/",
"prefecture": "神奈川",
"participants": 1,
"event_update_at": "2025-02-09T09:12:42.000+09:00",
"address": "横浜市港北区師岡町700番地 トレッサ横浜 南棟3F",
"place": "横浜市師岡コミュニティハウス",
"limit": 14
},
{
"id": 289,
"name": "たまち",
"url": "https://coderdojo-tamachi.connpass.com/",
"event_id": 8153,
"event_title": "第26回CoderDojoたまち",
"event_date": "2025-03-16T09:30:00.000+09:00",