-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
dojos_japan.json
3722 lines (3722 loc) · 108 KB
/
dojos_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,
"url": "https://coderdojo-mizuho.connpass.com/",
"name": "瑞穂",
"logo": "https://coderdojo.jp/img/dojos/mizuho.webp",
"order": "231088",
"counter": 1,
"is_active": true,
"prefecture": "愛知",
"created_at": "2019-04-30T00:00:00.000+09:00",
"description": "名古屋市瑞穂区で月2回開催"
},
{
"id": 3,
"url": "https://www.facebook.com/CoderdojoIzumi",
"name": "泉",
"logo": "https://coderdojo.jp/img/dojos/izumi.webp",
"order": "041009",
"counter": 1,
"is_active": true,
"prefecture": "宮城",
"created_at": "2014-01-23T00:00:00.000+09:00",
"description": "仙台市泉区で不定期開催"
},
{
"id": 4,
"url": "https://www.facebook.com/coderdojo.tome",
"name": "登米",
"logo": "https://coderdojo.jp/img/dojos/default.webp",
"order": "042129",
"counter": 1,
"is_active": false,
"prefecture": "宮城",
"created_at": "2016-04-25T00:00:00.000+09:00",
"description": "登米市で毎月開催"
},
{
"id": 5,
"url": "https://www.facebook.com/CoderDojoNiigata/",
"name": "新潟西",
"logo": "https://coderdojo.jp/img/dojos/default.webp",
"order": "151009",
"counter": 1,
"is_active": false,
"prefecture": "新潟",
"created_at": "2015-09-16T00:00:00.000+09:00",
"description": "新潟市で毎月開催"
},
{
"id": 6,
"url": "https://www.facebook.com/coderdojo.kanazawa/",
"name": "金沢",
"logo": "https://coderdojo.jp/img/dojos/default.webp",
"order": "172014",
"counter": 1,
"is_active": true,
"prefecture": "石川",
"created_at": "2016-11-24T00:00:00.000+09:00",
"description": "金沢市で毎週開催"
},
{
"id": 7,
"url": "https://vtmacs003b.github.io/maebashi.jp/",
"name": "前橋",
"logo": "https://coderdojo.jp/img/dojos/maebashi.webp",
"order": "102016",
"counter": 1,
"is_active": true,
"prefecture": "群馬",
"created_at": "2016-10-17T00:00:00.000+09:00",
"description": "前橋市で毎月開催"
},
{
"id": 8,
"url": "http://coderdojo-moriya.com/",
"name": "守谷",
"logo": "https://coderdojo.jp/img/dojos/moriya.webp",
"order": "082244",
"counter": 1,
"is_active": true,
"prefecture": "茨城",
"created_at": "2016-07-12T00:00:00.000+09:00",
"description": "守谷市で毎月開催"
},
{
"id": 9,
"url": "http://coderdojo-saitama.com/",
"name": "さいたま",
"logo": "https://coderdojo.jp/img/dojos/coderdojo.webp",
"order": "111007",
"counter": 1,
"is_active": true,
"prefecture": "埼玉",
"created_at": "2014-05-26T00:00:00.000+09:00",
"description": "さいたま市で毎月開催"
},
{
"id": 10,
"url": "https://coderdojo.hanare-hibari.info/",
"name": "ひばりヶ丘",
"logo": "https://coderdojo.jp/img/dojos/hibarigaoka.webp",
"order": "112305",
"counter": 1,
"is_active": true,
"prefecture": "埼玉",
"created_at": "2012-07-02T00:00:00.000+09:00",
"description": "新座市で月2回開催"
},
{
"id": 11,
"url": "https://coderdojohanno.com/",
"name": "飯能",
"logo": "https://coderdojo.jp/img/dojos/hanno.webp",
"order": "112097",
"counter": 1,
"is_active": true,
"prefecture": "埼玉",
"created_at": "2015-05-13T00:00:00.000+09:00",
"description": "飯能市で毎月開催"
},
{
"id": 12,
"url": "https://www.facebook.com/CoderDojoTokorozawa/",
"name": "所沢",
"logo": "https://coderdojo.jp/img/dojos/tokorozawa.webp",
"order": "112089",
"counter": 1,
"is_active": false,
"prefecture": "埼玉",
"created_at": "2015-12-01T00:00:00.000+09:00",
"description": "所沢市で不定期開催"
},
{
"id": 13,
"url": "https://coderdojo-kodaira.github.io/",
"name": "こだいら",
"logo": "https://coderdojo.jp/img/dojos/kodaira.webp",
"order": "132110",
"counter": 1,
"is_active": true,
"prefecture": "東京",
"created_at": "2014-05-21T00:00:00.000+09:00",
"description": "小平市で隔週水曜および週末に不定期で開催"
},
{
"id": 14,
"url": "http://coderdojo.code4hachioji.org/",
"name": "八王子",
"logo": "https://coderdojo.jp/img/dojos/hachioji.webp",
"order": "132012",
"counter": 1,
"is_active": false,
"prefecture": "東京",
"created_at": "2015-06-22T00:00:00.000+09:00",
"description": "八王子市で毎月開催"
},
{
"id": 15,
"url": "https://www.facebook.com/coderdojonakano/",
"name": "中野",
"logo": "https://coderdojo.jp/img/dojos/nakano.webp",
"order": "131148",
"counter": 1,
"is_active": false,
"prefecture": "東京",
"created_at": "2016-07-20T00:00:00.000+09:00",
"description": "中野区で毎月開催"
},
{
"id": 16,
"url": "https://coderdojo-suginami.github.io/",
"name": "すぎなみ",
"logo": "https://coderdojo.jp/img/dojos/suginami.webp",
"order": "131156",
"counter": 1,
"is_active": false,
"prefecture": "東京",
"created_at": "2016-09-09T00:00:00.000+09:00",
"description": "杉並区で毎月開催"
},
{
"id": 17,
"url": "https://coderdojo-tokyo.connpass.com/",
"name": "下北沢",
"logo": "https://coderdojo.jp/img/dojos/shimokitazawa.webp",
"order": "131121",
"counter": 1,
"is_active": false,
"prefecture": "東京",
"created_at": "2012-03-12T00:00:00.000+09:00",
"description": "世田谷区で毎週開催"
},
{
"id": 18,
"url": "https://coderdojochofu.hatenablog.jp/",
"name": "調布",
"logo": "https://coderdojo.jp/img/dojos/chofu.webp",
"order": "132080",
"counter": 1,
"is_active": true,
"prefecture": "東京",
"created_at": "2016-09-05T00:00:00.000+09:00",
"description": "調布市で毎月開催"
},
{
"id": 19,
"url": "https://coderdojoshibuya.connpass.com/",
"name": "渋谷",
"logo": "https://coderdojo.jp/img/dojos/shibuya.webp",
"order": "131130",
"counter": 1,
"is_active": true,
"prefecture": "東京",
"created_at": "2020-01-30T00:00:00.000+09:00",
"description": "青山学院大学にて毎月開催"
},
{
"id": 20,
"url": "https://www.facebook.com/coderdojonoda/",
"name": "野田",
"logo": "https://coderdojo.jp/img/dojos/noda.webp",
"order": "122084",
"counter": 1,
"is_active": false,
"prefecture": "千葉",
"created_at": "2016-11-08T00:00:00.000+09:00",
"description": "野田市で不定期開催"
},
{
"id": 21,
"url": "http://urayasu.coderdojo.chiba.jp/",
"name": "浦安",
"logo": "https://coderdojo.jp/img/dojos/urayasu.webp",
"order": "122271",
"counter": 1,
"is_active": true,
"prefecture": "千葉",
"created_at": "2016-11-08T00:00:00.000+09:00",
"description": "浦安市で毎月開催"
},
{
"id": 22,
"url": "https://chiba.coderdojo.chiba.jp/",
"name": "千葉",
"logo": "https://coderdojo.jp/img/dojos/chiba.webp",
"order": "121002",
"counter": 1,
"is_active": false,
"prefecture": "千葉",
"created_at": "2013-07-30T00:00:00.000+09:00",
"description": "千葉市で毎月開催"
},
{
"id": 23,
"url": "https://www.coderdojo-kashiwa.com/",
"name": "柏",
"logo": "https://coderdojo.jp/img/dojos/coderdojo.webp",
"order": "122173",
"counter": 1,
"is_active": true,
"prefecture": "千葉",
"created_at": "2014-09-22T00:00:00.000+09:00",
"description": "柏市で毎月3回開催"
},
{
"id": 24,
"url": "http://www.code-for-nagareyama.org/?cat=11",
"name": "流山",
"logo": "https://coderdojo.jp/img/dojos/default.webp",
"order": "122203",
"counter": 1,
"is_active": true,
"prefecture": "千葉",
"created_at": "2016-04-27T00:00:00.000+09:00",
"description": "流山市で毎月開催"
},
{
"id": 25,
"url": "https://wakaba.coderdojo.chiba.jp/",
"name": "若葉みつわ台",
"logo": "https://coderdojo.jp/img/dojos/wakaba-mitsuwadai.webp",
"order": "121002",
"counter": 1,
"is_active": true,
"prefecture": "千葉",
"created_at": "2016-04-27T00:00:00.000+09:00",
"description": "千葉市若葉区みつわ台で毎月開催"
},
{
"id": 26,
"url": "https://coderdojofujisawa.hatenablog.com/",
"name": "藤沢",
"logo": "https://coderdojo.jp/img/dojos/fujisawa.webp",
"order": "142051",
"counter": 1,
"is_active": false,
"prefecture": "神奈川",
"created_at": "2016-12-14T00:00:00.000+09:00",
"description": "藤沢市で不定期開催"
},
{
"id": 27,
"url": "https://coderdojo.shiojiri.fun/",
"name": "塩尻",
"logo": "https://coderdojo.jp/img/dojos/shiojiri.webp",
"order": "202151",
"counter": 1,
"is_active": true,
"prefecture": "長野",
"created_at": "2012-11-08T00:00:00.000+09:00",
"description": "塩尻市で毎月開催"
},
{
"id": 28,
"url": "https://coderdojo.cowbell.jp/",
"name": "福井",
"logo": "https://coderdojo.jp/img/dojos/coderdojo.webp",
"order": "182010",
"counter": 1,
"is_active": false,
"prefecture": "福井",
"created_at": "2013-08-14T00:00:00.000+09:00",
"description": "福井市で不定期開催"
},
{
"id": 30,
"url": "https://www.facebook.com/coderdojo.toyohashi/",
"name": "豊橋",
"logo": "https://coderdojo.jp/img/dojos/toyohashi.webp",
"order": "232017",
"counter": 1,
"is_active": true,
"prefecture": "愛知",
"created_at": "2016-06-03T00:00:00.000+09:00",
"description": "豊橋市で不定期開催"
},
{
"id": 31,
"url": "https://coderdojo-nagoya.connpass.com/",
"name": "名古屋",
"logo": "https://coderdojo.jp/img/dojos/nagoya.webp",
"order": "231002",
"counter": 1,
"is_active": true,
"prefecture": "愛知",
"created_at": "2014-10-20T00:00:00.000+09:00",
"description": "名古屋市中区で月2回開催"
},
{
"id": 32,
"url": "https://coderdojo-tempaku.hatenablog.com/",
"name": "天白",
"logo": "https://coderdojo.jp/img/dojos/tempaku.webp",
"order": "231002",
"counter": 1,
"is_active": true,
"prefecture": "愛知",
"created_at": "2014-12-08T00:00:00.000+09:00",
"description": "名古屋市天白区で月2回開催"
},
{
"id": 33,
"url": "https://coderdojo-oharu.connpass.com/",
"name": "大治",
"logo": "https://coderdojo.jp/img/dojos/default.webp",
"order": "234249",
"counter": 1,
"is_active": false,
"prefecture": "愛知",
"created_at": "2016-08-12T00:00:00.000+09:00",
"description": "大治町海部郡で毎月開催"
},
{
"id": 34,
"url": "https://coderdojo-nagaokakyo.doorkeeper.jp/",
"name": "長岡京",
"logo": "https://coderdojo.jp/img/dojos/nagaokakyo.webp",
"order": "261009",
"counter": 1,
"is_active": true,
"prefecture": "京都",
"created_at": "2014-10-14T00:00:00.000+09:00",
"description": "長岡京市で毎月開催"
},
{
"id": 35,
"url": "https://coderdojo-nara.github.io/",
"name": "奈良",
"logo": "https://coderdojo.jp/img/dojos/nara.webp",
"order": "292010",
"counter": 1,
"is_active": true,
"prefecture": "奈良",
"created_at": "2014-10-26T00:00:00.000+09:00",
"description": "奈良市で毎月開催"
},
{
"id": 36,
"url": "https://nara-coderdojo.github.io/",
"name": "生駒",
"logo": "https://coderdojo.jp/img/dojos/ikoma.webp",
"order": "292095",
"counter": 1,
"is_active": true,
"prefecture": "奈良",
"created_at": "2016-04-25T00:00:00.000+09:00",
"description": "生駒市で毎月開催"
},
{
"id": 37,
"url": "https://coderdojo-otsu.connpass.com",
"name": "大津",
"logo": "https://coderdojo.jp/img/dojos/otsu.webp",
"order": "252018",
"counter": 1,
"is_active": false,
"prefecture": "滋賀",
"created_at": "2015-09-16T00:00:00.000+09:00",
"description": "大津市で毎月開催"
},
{
"id": 38,
"url": "https://www.facebook.com/coderdojo.kumano",
"name": "熊野",
"logo": "https://coderdojo.jp/img/dojos/kumano.webp",
"order": "302074",
"counter": 1,
"is_active": false,
"prefecture": "和歌山",
"created_at": "2012-11-08T00:00:00.000+09:00",
"description": "新宮市で不定期開催"
},
{
"id": 39,
"url": "http://cdkf.ninja/",
"name": "京都伏見",
"logo": "https://coderdojo.jp/img/dojos/default.webp",
"order": "261009",
"counter": 1,
"is_active": false,
"prefecture": "京都",
"created_at": "2016-03-01T00:00:00.000+09:00",
"description": "京都市伏見区の小学校内で隔月開催"
},
{
"id": 40,
"url": "https://coderdojo-hirakata.org",
"name": "枚方",
"logo": "https://coderdojo.jp/img/dojos/hirakata.webp",
"order": "272108",
"counter": 1,
"is_active": true,
"prefecture": "大阪",
"created_at": "2016-05-18T00:00:00.000+09:00",
"description": "枚方市で毎月開催"
},
{
"id": 41,
"url": "https://www.facebook.com/CoderDojoHigashiosakaYao/",
"name": "東大阪",
"logo": "https://coderdojo.jp/img/dojos/higasi-osaka.webp",
"order": "272272",
"counter": 1,
"is_active": false,
"prefecture": "大阪",
"created_at": "2016-09-01T00:00:00.000+09:00",
"description": "東大阪市で隔月開催"
},
{
"id": 42,
"url": "https://coderdojo-nishinomiya.info/",
"name": "西宮・梅田",
"logo": "https://coderdojo.jp/img/dojos/nishinomiya.webp",
"order": "271004",
"counter": 2,
"is_active": true,
"prefecture": "大阪",
"created_at": "2014-02-11T00:00:00.000+09:00",
"description": "西宮/梅田でそれぞれ毎月開催"
},
{
"id": 43,
"url": "https://zen.coderdojo.com/dojo/jp/osaka-osaka-prefecture/namba-osaka",
"name": "なんば",
"logo": "https://coderdojo.jp/img/dojos/default.webp",
"order": "271004",
"counter": 1,
"is_active": false,
"prefecture": "大阪",
"created_at": "2016-09-27T00:00:00.000+09:00",
"description": "大阪市なんばで毎月開催"
},
{
"id": 44,
"url": "https://coderdojo-osakasayama.doorkeeper.jp/",
"name": "大阪狭山",
"logo": "https://coderdojo.jp/img/dojos/osakasayama.webp",
"order": "271004",
"counter": 1,
"is_active": true,
"prefecture": "大阪",
"created_at": "2016-08-15T00:00:00.000+09:00",
"description": "大阪狭山で毎月開催"
},
{
"id": 45,
"url": "https://www.facebook.com/coderdojo.nishinari.osaka/",
"name": "西成",
"logo": "https://coderdojo.jp/img/dojos/nishinari.webp",
"order": "271004",
"counter": 1,
"is_active": false,
"prefecture": "大阪",
"created_at": "2016-07-13T00:00:00.000+09:00",
"description": "大阪市西成区で毎月開催"
},
{
"id": 46,
"url": "https://coderdojo-sakai.github.io/",
"name": "堺",
"logo": "https://coderdojo.jp/img/dojos/sakai.webp",
"order": "271403",
"counter": 1,
"is_active": true,
"prefecture": "大阪",
"created_at": "2016-03-22T00:00:00.000+09:00",
"description": "堺市で毎月開催"
},
{
"id": 47,
"url": "https://www.facebook.com/coderdojo.wakayama/",
"name": "和歌山",
"logo": "https://coderdojo.jp/img/dojos/wakayama.webp",
"order": "302015",
"counter": 1,
"is_active": true,
"prefecture": "和歌山",
"created_at": "2016-11-01T00:00:00.000+09:00",
"description": "和歌山市で毎月開催"
},
{
"id": 48,
"url": "https://coderdojokobe.wixsite.com/home/",
"name": "神戸",
"logo": "https://coderdojo.jp/img/dojos/kobe.webp",
"order": "281107",
"counter": 1,
"is_active": true,
"prefecture": "兵庫",
"created_at": "2016-09-28T00:00:00.000+09:00",
"description": "神戸市中央区で毎月開催"
},
{
"id": 49,
"url": "https://coderdojo-akashi.connpass.com/",
"name": "明石",
"logo": "https://coderdojo.jp/img/dojos/akashi.webp",
"order": "282031",
"counter": 1,
"is_active": false,
"prefecture": "兵庫",
"created_at": "2016-04-04T00:00:00.000+09:00",
"description": "明石市で毎月開催"
},
{
"id": 50,
"url": "https://www.facebook.com/groups/himeji.coderdojo/",
"name": "姫路",
"logo": "https://coderdojo.jp/img/dojos/himeji.webp",
"order": "282014",
"counter": 1,
"is_active": false,
"prefecture": "兵庫",
"created_at": "2016-03-22T00:00:00.000+09:00",
"description": "姫路市で第3土曜に開催"
},
{
"id": 51,
"url": "https://www.facebook.com/CoderDojo.Fukuyama",
"name": "福山",
"logo": "https://coderdojo.jp/img/dojos/fukuyama.webp",
"order": "342076",
"counter": 1,
"is_active": false,
"prefecture": "広島",
"created_at": "2016-06-01T00:00:00.000+09:00",
"description": "福山市で不定期開催"
},
{
"id": 52,
"url": "https://www.facebook.com/coderdojo.kamiyacho/",
"name": "紙屋町",
"logo": "https://coderdojo.jp/img/dojos/hiroshima.webp",
"order": "341002",
"counter": 1,
"is_active": true,
"prefecture": "広島",
"created_at": "2016-05-04T00:00:00.000+09:00",
"description": "広島市で毎月開催"
},
{
"id": 53,
"url": "https://www.facebook.com/coderdojo.itsukaichi",
"name": "五日市",
"logo": "https://coderdojo.jp/img/dojos/itsukaichi.webp",
"order": "341002",
"counter": 1,
"is_active": false,
"prefecture": "広島",
"created_at": "2016-09-29T00:00:00.000+09:00",
"description": "広島市で毎月開催"
},
{
"id": 54,
"url": "https://www.facebook.com/CoderDojoKurume/",
"name": "久留米",
"logo": "https://coderdojo.jp/img/dojos/kurume.webp",
"order": "402036",
"counter": 1,
"is_active": true,
"prefecture": "福岡",
"created_at": "2016-10-06T00:00:00.000+09:00",
"description": "久留米市で毎月開催"
},
{
"id": 55,
"url": "https://lmlab.net/coderdojo/",
"name": "宮崎",
"logo": "https://coderdojo.jp/img/dojos/miyazaki.webp",
"order": "454419",
"counter": 1,
"is_active": true,
"prefecture": "宮崎",
"created_at": "2016-09-15T00:00:00.000+09:00",
"description": "西臼杵郡で毎月開催"
},
{
"id": 56,
"url": "https://coderdojo-miyakojima.com/",
"name": "宮古島",
"logo": "https://coderdojo.jp/img/dojos/miyakojima.webp",
"order": "472140",
"counter": 1,
"is_active": true,
"prefecture": "沖縄",
"created_at": "2016-11-02T00:00:00.000+09:00",
"description": "宮古島市で不定期開催"
},
{
"id": 57,
"url": "https://coderdojokadena.hatenablog.jp/",
"name": "嘉手納",
"logo": "https://coderdojo.jp/img/dojos/kadena.webp",
"order": "473251",
"counter": 1,
"is_active": true,
"prefecture": "沖縄",
"created_at": "2016-12-19T00:00:00.000+09:00",
"description": "中頭郡嘉手納町で毎月開催"
},
{
"id": 58,
"url": "http://coderdojo-tdbb.com/",
"name": "高田馬場",
"logo": "https://coderdojo.jp/img/dojos/takadanobaba.webp",
"order": "131041",
"counter": 1,
"is_active": false,
"prefecture": "東京",
"created_at": "2017-09-26T00:00:00.000+09:00",
"description": "新宿区高田馬場で毎月開催"
},
{
"id": 59,
"url": "https://www.facebook.com/coderdojoNakaniida/",
"name": "中新田",
"logo": "https://coderdojo.jp/img/dojos/nakaniida.webp",
"order": "044458",
"counter": 1,
"is_active": false,
"prefecture": "宮城",
"created_at": "2016-10-06T00:00:00.000+09:00",
"description": "加美町中新田で不定期開催"
},
{
"id": 60,
"url": "http://ichikawa.coderdojo.chiba.jp",
"name": "市川",
"logo": "https://coderdojo.jp/img/dojos/ichikawa.webp",
"order": "122033",
"counter": 1,
"is_active": true,
"prefecture": "千葉",
"created_at": "2016-12-15T00:00:00.000+09:00",
"description": "市川市で毎月開催"
},
{
"id": 61,
"url": "https://coderdojo-haebaru.doorkeeper.jp/",
"name": "南風原",
"logo": "https://coderdojo.jp/img/dojos/haebaru_2022.webp",
"order": "473502",
"counter": 1,
"is_active": false,
"prefecture": "沖縄",
"created_at": "2012-07-09T00:00:00.000+09:00",
"description": "島尻郡南風原町で不定期開催(次の2024年の南風原とは別のDojo ID in Zen)"
},
{
"id": 62,
"url": "https://coderdojo-ise.jimdofree.com/",
"name": "伊勢",
"logo": "https://coderdojo.jp/img/dojos/ise.webp",
"order": "242039",
"counter": 1,
"is_active": true,
"prefecture": "三重",
"created_at": "2016-12-22T00:00:00.000+09:00",
"description": "伊勢市で毎月開催"
},
{
"id": 64,
"url": "https://coderdojo-sapporo.jp/",
"name": "札幌",
"logo": "https://coderdojo.jp/img/dojos/sapporo.webp",
"order": "011002",
"counter": 1,
"is_active": true,
"prefecture": "北海道",
"created_at": "2016-09-26T00:00:00.000+09:00",
"description": "札幌市で月2回開催"
},
{
"id": 65,
"url": "https://coderdojo-mito.com/",
"name": "水戸",
"logo": "https://coderdojo.jp/img/dojos/mito.webp",
"order": "082015",
"counter": 1,
"is_active": true,
"prefecture": "茨城",
"created_at": "2017-01-03T00:00:00.000+09:00",
"description": "水戸市で毎月開催"
},
{
"id": 66,
"url": "https://www.facebook.com/coderdojotakatsuki/",
"name": "高槻",
"logo": "https://coderdojo.jp/img/dojos/takatsuki.webp",
"order": "272078",
"counter": 1,
"is_active": true,
"prefecture": "大阪",
"created_at": "2017-01-04T00:00:00.000+09:00",
"description": "高槻市で不定期開催"
},
{
"id": 67,
"url": "https://www.facebook.com/KitakobeDojo/",
"name": "北神戸",
"logo": "https://coderdojo.jp/img/dojos/kitakobe.webp",
"order": "281093",
"counter": 1,
"is_active": false,
"prefecture": "兵庫",
"created_at": "2016-09-12T00:00:00.000+09:00",
"description": "神戸市北区で毎月開催"
},
{
"id": 68,
"url": "https://coderdojo-nippa.connpass.com/",
"name": "新羽",
"logo": "https://coderdojo.jp/img/dojos/nippa.webp",
"order": "141097",
"counter": 1,
"is_active": false,
"prefecture": "神奈川",
"created_at": "2017-01-09T00:00:00.000+09:00",
"description": "横浜市港北区の新羽町で不定期開催"
},
{
"id": 69,
"url": "https://coderdojo-nishishinjuku.connpass.com/",
"name": "西新宿",
"logo": "https://coderdojo.jp/img/dojos/nishishinjuku.webp",
"order": "131041",
"counter": 1,
"is_active": false,
"prefecture": "東京",
"created_at": "2017-01-23T00:00:00.000+09:00",
"description": "新宿区で毎月開催"
},
{
"id": 70,
"url": "https://coderdojo-yokohama.connpass.com/",
"name": "横浜",
"logo": "https://coderdojo.jp/img/dojos/default.webp",
"order": "141020",
"counter": 1,
"is_active": false,
"prefecture": "神奈川",
"created_at": "2017-01-30T00:00:00.000+09:00",
"description": "横浜市神奈川区で毎月開催"
},
{
"id": 71,
"url": "https://coderdojoowari.org/",
"name": "尾張",
"logo": "https://coderdojo.jp/img/dojos/owari.webp",
"order": "232289",
"counter": 1,
"is_active": true,
"prefecture": "愛知",
"created_at": "2017-02-17T00:00:00.000+09:00",
"description": "岩倉市で毎月開催"
},
{
"id": 72,
"url": "https://coderdojotondabayashi.github.io/main/",
"name": "富田林",
"logo": "https://coderdojo.jp/img/dojos/tondabayashi.webp",
"order": "272141",
"counter": 1,
"is_active": true,
"prefecture": "大阪",
"created_at": "2017-02-19T00:00:00.000+09:00",
"description": "富田林市で隔月開催"
},
{
"id": 73,
"url": "https://www.facebook.com/coderdojo.hitachinaka/",
"name": "ひたちなか",
"logo": "https://coderdojo.jp/img/dojos/hitachinaka.webp",
"order": "082210",
"counter": 1,
"is_active": true,
"prefecture": "茨城",
"created_at": "2017-03-28T00:00:00.000+09:00",
"description": "ひたちなか市で毎月開催"
},
{
"id": 74,
"url": "https://zen.coderdojo.com/dojo/jp/ri4-ben3-shan1-xing2-xian4-shan1-xing2-shi4/yamagata",
"name": "山形@2017",
"logo": "https://coderdojo.jp/img/dojos/yamagata_2017.webp",
"order": "062014",
"counter": 1,
"is_active": false,
"prefecture": "山形",
"created_at": "2017-03-28T00:00:00.000+09:00",
"description": "山形市で毎月開催"
},
{
"id": 75,
"url": "https://coder-dojo-akita.doorkeeper.jp/",
"name": "秋田",
"logo": "https://coderdojo.jp/img/dojos/akita.webp",
"order": "052019",
"counter": 1,
"is_active": true,
"prefecture": "秋田",
"created_at": "2017-04-03T00:00:00.000+09:00",
"description": "秋田市で毎月1~2回開催"
},
{
"id": 76,
"url": "https://coderdojo-nagatsuta.github.io/",
"name": "長津田",
"logo": "https://coderdojo.jp/img/dojos/nagatsuta.webp",
"order": "141135",
"counter": 1,
"is_active": false,
"prefecture": "神奈川",
"created_at": "2017-04-03T00:00:00.000+09:00",
"description": "横浜市緑区で毎月開催"
},
{
"id": 77,
"url": "https://coderdojokotesashi.github.io/",
"name": "小手指",
"logo": "https://coderdojo.jp/img/dojos/kotesashi.webp",
"order": "112089",
"counter": 1,
"is_active": false,
"prefecture": "埼玉",
"created_at": "2017-03-14T00:00:00.000+09:00",
"description": "所沢市小手指で毎月開催"
},
{
"id": 78,
"url": "http://www.coderdojo-yoshika.com/",
"name": "吉賀",
"logo": "https://coderdojo.jp/img/dojos/yoshika.webp",
"order": "325058",
"counter": 1,
"is_active": false,
"prefecture": "島根",
"created_at": "2017-03-10T00:00:00.000+09:00",
"description": "鹿足郡吉賀町で不定期開催"
},
{
"id": 79,
"url": "https://coderdojoaizu.mystrikingly.com/",
"name": "会津",
"logo": "https://coderdojo.jp/img/dojos/aizu.webp",
"order": "072028",
"counter": 1,
"is_active": true,
"prefecture": "福島",
"created_at": "2017-03-29T00:00:00.000+09:00",
"description": "会津若松市内で第3土曜に開催"
},
{
"id": 81,
"url": "https://www.coderdojo-konan.jp/",
"name": "岡南",
"logo": "https://coderdojo.jp/img/dojos/okayama.webp",
"order": "331007",
"counter": 1,
"is_active": true,
"prefecture": "岡山",
"created_at": "2017-03-20T00:00:00.000+09:00",
"description": "岡山市南区で第3日曜に開催"
},
{
"id": 82,
"url": "https://beyondbb.jp/CDmama/index.html",
"name": "市川真間",
"logo": "https://coderdojo.jp/img/dojos/ichikawa-mama.webp",
"order": "122033",
"counter": 1,
"is_active": true,
"prefecture": "千葉",
"created_at": "2017-03-28T00:00:00.000+09:00",
"description": "JR市川駅近辺で毎月1~2回開催"
},
{
"id": 83,
"url": "https://www.facebook.com/coderdojokisarazu/",
"name": "木更津",
"logo": "https://coderdojo.jp/img/dojos/kisarazu.webp",
"order": "122068",
"counter": 1,
"is_active": true,
"prefecture": "千葉",
"created_at": "2017-04-27T00:00:00.000+09:00",
"description": "木更津市で隔月開催"
},
{
"id": 84,
"url": "https://www.facebook.com/coderdojo.shinshiro/",
"name": "新城",
"logo": "https://coderdojo.jp/img/dojos/default.webp",
"order": "232211",
"counter": 1,
"is_active": false,
"prefecture": "愛知",
"created_at": "2017-05-16T00:00:00.000+09:00",
"description": "新城市で毎月開催"
},
{
"id": 85,
"url": "https://www.facebook.com/CoderDojo-Natori-1379707208756830",
"name": "名取",
"logo": "https://coderdojo.jp/img/dojos/natori.webp",
"order": "042072",
"counter": 1,
"is_active": false,
"prefecture": "宮城",
"created_at": "2017-03-27T00:00:00.000+09:00",
"description": "名取市で第4土曜に開催"
},
{
"id": 86,
"url": "https://funabashi.coderdojo.chiba.jp/",
"name": "船橋",
"logo": "https://coderdojo.jp/img/dojos/funabashi.webp",
"order": "122041",
"counter": 1,
"is_active": true,
"prefecture": "千葉",
"created_at": "2017-05-16T00:00:00.000+09:00",
"description": "船橋市で毎月開催"
},
{
"id": 87,
"url": "https://www.facebook.com/CoderDojoAzumino/",
"name": "安曇野",
"logo": "https://coderdojo.jp/img/dojos/azumino.webp",
"order": "202207",
"counter": 1,
"is_active": false,
"prefecture": "長野",
"created_at": "2017-05-11T00:00:00.000+09:00",
"description": "安曇野市で毎月開催"
},
{
"id": 88,
"url": "https://www.facebook.com/coderdojo.kofu/",