-
-
Notifications
You must be signed in to change notification settings - Fork 102
/
Copy pathdojos.yaml
4049 lines (4049 loc) · 87.9 KB
/
dojos.yaml
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: 64
order: '011002'
created_at: '2016-09-26'
name: 札幌
prefecture_id: 1
url: https://coderdojo-sapporo.connpass.com/
logo: "/img/dojos/sapporo.webp"
description: 札幌市で月2回開催
tags:
- Scratch
- micro:bit
- Arduino
- ラズベリーパイ
- 電子工作
- id: 104
order: '011002'
is_active: false
created_at: '2016-09-26'
name: 札幌東
prefecture_id: 1
url: https://coderdojo-sapporo-east.blogspot.jp/
logo: "/img/dojos/default.webp"
description: 札幌市で月2回開催
tags:
- Scratch
- micro:bit
- ラズベリーパイ
- Python
- Unity
- id: 253
order: '012050'
is_active: false
note: https://www.facebook.com/search/top/?q=coderdojo室蘭
created_at: '2020-09-10'
name: 室蘭
prefecture_id: 1
url: https://www.npokuru2.net/coderdojo%E5%AE%A4%E8%98%AD
logo: "/img/dojos/default.webp"
description: 室蘭市で毎月開催
tags:
- Scratch
- 電子工作
- id: 100
order: '012319'
created_at: '2017-09-20'
name: 恵庭
prefecture_id: 1
url: https://coderdojo-eniwa.fathercomputer.com/
logo: "/img/dojos/eniwa.webp"
description: 恵庭市で月2回開催
tags:
- Scratch
- Progate
- Minecraft
- 電子工作
- id: 261
order: '012173'
created_at: '2021-01-09'
name: 江別
prefecture_id: 1
logo: "/img/dojos/ebetsu.webp"
url: https://coderdojo-ebetsu.connpass.com/
description: 江別市で毎月開催
tags:
- Scratch
- Python
- micro:bit
- PHP
- java
- id: 265
order: '022039'
created_at: '2021-02-28'
name: 八戸@吹上
prefecture_id: 2
logo: "/img/dojos/hachinohe.webp"
url: https://coderdojo-hachinohe.aomori.jp/
description: 八戸市内で第1日曜に開催
tags:
- Scratch
- Webサイト
- 電子工作
- Ruby
- JavaScript
- id: 259
order: '032093'
is_active: false
created_at: '2020-12-15'
name: 一関平泉
prefecture_id: 3
url: https://www.facebook.com/CoderDojoIchinosekiHiraizumi
logo: "/img/dojos/coderdojo.webp"
description: 一関市で不定期開催
tags:
- Scratch
- ラズベリーパイ
- Python
- Arduino
- Webサイト
- id: 201
order: '032026'
is_active: false
created_at: '2019-02-14'
name: 宮古
prefecture_id: 3
url: https://www.facebook.com/CoderDojoMiyako/
logo: "/img/dojos/miyako.webp"
description: 宮古市で毎月開催
tags:
- Scratch
- micro:bit
- id: 143
order: '032107'
created_at: '2018-04-21'
name: 陸前高田
prefecture_id: 3
url: https://www.facebook.com/CoderDojoRikuzentakata
logo: "/img/dojos/rikuzentakata.webp"
description: 陸前高田市で毎月開催
tags:
- Scratch
- micro:bit
- id: 109
order: '032166'
created_at: '2017-09-25'
name: 滝沢
prefecture_id: 3
url: https://www.facebook.com/CoderDojoTakizawa/
logo: "/img/dojos/takizawa.webp"
description: 滝沢市で毎月開催
tags:
- Scratch
- micro:bit
- ラズベリーパイ
- id: 107
order: '032069'
is_active: false
created_at: '2017-06-20'
name: きたかみ
prefecture_id: 3
url: https://www.facebook.com/CoderDojoKTKM
logo: "/img/dojos/kitakami.webp"
description: 北上市で不定期開催
tags:
- Scratch
- Webサイト
- micro:bit
- id: 3
order: '041009'
created_at: '2014-01-23'
name: 泉
prefecture_id: 4
url: https://www.facebook.com/CoderdojoIzumi
logo: "/img/dojos/izumi.webp"
description: 仙台市泉区で不定期開催
tags:
- Scratch
- id: 90
order: '041009'
is_active: false
created_at: '2017-07-01'
name: 愛子
prefecture_id: 4
url: https://www.facebook.com/CoderDojo-Ayashi-277617015979351/
logo: "/img/dojos/default.webp"
description: 仙台市青葉区愛子で不定期開催
tags:
- Scratch
- Webサイト
- ゲーム
- id: 317
order: '041033'
created_at: '2024-05-01'
name: 仙台若林
prefecture_id: 4
logo: "/img/dojos/sendai-wakabayashi.webp"
url: https://coderdojo-sendai-wakabayashi.connpass.com/
description: 仙台市若林区で月2回開催
tags:
- Scratch
- Minecraft
- Webサイト
- Linux
- BASIC
- id: 85
order: '042072'
is_active: false
created_at: '2017-03-27'
name: 名取
prefecture_id: 4
url: https://www.facebook.com/CoderDojo-Natori-1379707208756830
logo: "/img/dojos/natori.webp"
description: 名取市で第4土曜に開催
tags:
- Scratch
- Webサイト
- ゲーム
- id: 4
order: '042129'
is_active: false
created_at: '2016-04-25'
name: 登米
prefecture_id: 4
logo: "/img/dojos/default.webp"
url: https://www.facebook.com/coderdojo.tome
description: 登米市で毎月開催
tags:
- Scratch
- 3Dプリンター
- 3D CAD
- Pepper
- micro:bit
- id: 277
order: '042129'
created_at: '2021-10-18'
name: 富谷
prefecture_id: 4
logo: "/img/dojos/tomiya.webp"
url: https://coderdojotomiyajp.github.io/
description: 富谷市で毎月開催
tags:
- Scratch
- Java
- JavaScript
- micro:bit
- MakeyMakey
- id: 59
order: '044458'
is_active: false
created_at: '2016-10-06'
name: 中新田
prefecture_id: 4
logo: "/img/dojos/nakaniida.webp"
url: https://www.facebook.com/coderdojoNakaniida/
description: 加美町中新田で不定期開催
tags:
- Scratch
- id: 75
order: '052019'
created_at: '2017-04-03'
name: 秋田
prefecture_id: 5
url: https://coder-dojo-akita.doorkeeper.jp/
logo: "/img/dojos/akita.webp"
description: 秋田市で毎月1~2回開催
tags:
- Scratch
- Minecraft
- Webサイト
- 電子工作
- 3Dプリンター
- id: 139
order: '052035'
is_active: false
created_at: '2018-03-27'
name: 増田
prefecture_id: 5
url: https://sites.google.com/view/coderdojo-masuda/home
logo: "/img/dojos/masuda.webp"
description: 横手市増田で毎月開催
tags:
- Scratch
- Minecraft
- id: 74
order: '062014'
is_active: false
created_at: '2017-03-28'
name: 山形@2017
prefecture_id: 6
logo: "/img/dojos/yamagata_2017.webp"
url: https://zen.coderdojo.com/dojo/jp/ri4-ben3-shan1-xing2-xian4-shan1-xing2-shi4/yamagata
description: 山形市で毎月開催
tags:
- Scratch
- センサー
- ロボット
- AI
- id: 324
order: '062014'
created_at: '2024-08-17'
name: 山形
prefecture_id: 6
logo: "/img/dojos/yamagata.webp"
url: https://coderdojo-yamagata.connpass.com/
description: 山形市で毎月開催
tags:
- Scratch
- micro:bit
- Unity
- Minecraft
- id: 303
order: '062031'
created_at: '2023-07-12'
name: 鶴岡
prefecture_id: 6
logo: "/img/dojos/tsuruoka.webp"
url: https://coderdojo-tsuruoka.connpass.com/
description: 鶴岡市で毎月開催
tags:
- Scratch
- Webサイト
- micro:bit
- Java
- ラズベリーパイ
- id: 325
order: '062081'
created_at: '2024-08-17'
name: 村山
prefecture_id: 6
logo: "/img/dojos/murayama.webp"
url: https://coderdojo-murayama.connpass.com/
description: 村山市で毎月開催
tags:
- Scratch
- micro:bit
- Unity
- Minecraft
- id: 215
order: '063410'
is_active: false
created_at: '2019-04-24'
name: 大石田@PCチャレンジ倶楽部
prefecture_id: 6
logo: "/img/dojos/default.webp"
url: https://www.facebook.com/DojoPcc/
description: 大石田町町民交流センター「虹のプラザ」で毎月開催
tags:
- Scratch
- micro:bit
- ラズベリーパイ
- id: 79
order: '072028'
created_at: '2017-03-29'
name: 会津
prefecture_id: 7
logo: "/img/dojos/aizu.webp"
url: https://coderdojoaizu.mystrikingly.com/
description: 会津若松市内で第3土曜に開催
tags:
- Scratch
- micro:bit
- ラズベリーパイ
- ロボット工作
- 電子工作
- id: 165
order: '072087'
created_at: '2018-08-13'
name: 喜多方
prefecture_id: 7
logo: "/img/dojos/kitakata.webp"
url: https://www.coderdojo-kitakata.com/
description: 喜多方市で毎月開催
tags:
- Scratch
- micro:bit
- ラズベリーパイ
- Webサイト
- Ruby
- id: 292
order: '072109'
created_at: '2022-11-27'
name: 二本松
prefecture_id: 7
logo: "/img/dojos/nihonmatsu.webp"
url: https://coderdojo-nihonmatsu.com/
description: 二本松市で毎月開催
tags:
- Scratch
- Viscuit
- micro:bit
- Unity
- ゲーム開発
- id: 149
order: '072052'
created_at: '2018-05-29'
name: 白河
prefecture_id: 7
logo: "/img/dojos/shirakawa.webp"
url: https://coderdojoshirakawa.hateblo.jp/entry/top
description: 白河市で毎月開催
tags:
- Scratch
- Webサイト
- Python
- micro:bit
- id: 223
order: '075213'
created_at: '2019-08-26'
name: 三春
prefecture_id: 7
logo: "/img/dojos/coderdojo.webp"
url: https://www.coderdojo-miharu.com/
description: 田村郡三春町で毎月開催
tags:
- Scratch
- Webサイト
- Ruby
- Python
- tello
- id: 248
order: '074667'
created_at: '2020-06-20'
name: 矢吹
prefecture_id: 7
logo: "/img/dojos/yabuki.webp"
url: https://coderdojoyabuki.connpass.com/
description: 矢吹町で毎月開催
tags:
- Scratch
- micro:bit
- IchigoJam
- id: 156
order: '082040'
created_at: '2018-07-09'
name: 古河
prefecture_id: 8
logo: "/img/dojos/koga.webp"
url: https://coderdojokoga.connpass.com/
description: 古河市で毎月開催
tags:
- Scratch
- ラズベリーパイ
- micro:bit
- id: 134
order: '082201'
created_at: '2017-03-28'
name: つくば
prefecture_id: 8
logo: "/img/dojos/tsukuba.webp"
url: https://coderdojo-tsukuba.com/
description: つくば市で毎月開催
tags:
- Scratch
- id: 73
order: '082210'
created_at: '2017-03-28'
name: ひたちなか
prefecture_id: 8
logo: "/img/dojos/hitachinaka.webp"
url: https://www.facebook.com/coderdojo.hitachinaka/
description: ひたちなか市で毎月開催
tags:
- Scratch
- IslayTouch
- id: 203
order: '082210'
is_active: false
created_at: '2019-02-23'
name: 六ツ野
prefecture_id: 8
logo: "/img/dojos/mutsuno.webp"
url: https://www.facebook.com/CoderDojo.Mutsuno/
description: ひたちなか市で毎月開催
tags:
- Scratch
- micro:bit
- id: 65
order: '082015'
created_at: '2017-01-03'
name: 水戸
prefecture_id: 8
logo: "/img/dojos/mito.webp"
url: https://coderdojo-mito.com/
description: 水戸市で毎月開催
tags:
- Scratch
- Islay
- id: 222
order: '082015'
is_active: false
created_at: '2019-07-23'
name: 三の丸
prefecture_id: 8
logo: "/img/dojos/sannomaru.webp"
url: https://www.facebook.com/CoderDojo3nomaru
description: 水戸市で毎月開催
tags:
- Scratch
- C言語
- id: 176
order: '082023'
is_active: false
created_at: '2018-10-08'
name: 日立
prefecture_id: 8
logo: "/img/dojos/default.webp"
url: https://coderdojohitachi.amebaownd.com/
description: 日立市で毎月開催
tags:
- Scratch
- Islay
- id: 8
order: '082244'
created_at: '2016-07-12'
name: 守谷
prefecture_id: 8
logo: "/img/dojos/moriya.webp"
url: http://coderdojo-moriya.com/
description: 守谷市で毎月開催
tags:
- Scratch
- IoT
- 電子工作
- id: 246
order: '092011'
is_active: false
created_at: '2020-03-11'
name: 宇都宮
prefecture_id: 9
logo: "/img/dojos/default.webp"
url: https://coderdojo-utsunomiya.github.io/
description: 宇都宮市で毎月開催
tags:
- Scratch
- Hour of Code
- Webサイト
- LEGO
- Python
- id: 306
order: '092029'
created_at: '2023-08-02'
name: 足利
prefecture_id: 9
logo: "/img/dojos/ashikaga.webp"
url: https://coderdojo-ashikaga.com/
description: 足利市で毎月開催
tags:
- Scratch
- Minecraft
- Webサイト
- id: 242
order: '092100'
is_active: false
created_at: '2020-02-20'
name: おおたわら
prefecture_id: 9
logo: "/img/dojos/otawara.webp"
url: https://www.facebook.com/CoderDojo%E3%81%8A%E3%81%8A%E3%81%9F%E3%82%8F%E3%82%89-190082468144048/
description: 大田原市で毎月開催
tags:
- Hour of Code
- Scratch
- micro:bit
- Viscuit
is_private: true
- id: 280
order: '092134'
created_at: '2022-03-09'
name: 西那須野
prefecture_id: 9
logo: "/img/dojos/default.webp"
url: https://coder-dojo-nishinasuno.connpass.com/
description: 那須塩原市で毎月開催
tags:
- Scratch
- Viscuit
- micro:bit
- Ruby
- id: 89
order: '092142'
created_at: '2017-06-21'
name: さくら
prefecture_id: 9
logo: "/img/dojos/sakura.webp"
url: https://coderdojo-sakura.github.io/
description: さくら市で毎月開催
tags:
- Scratch
- ラズベリーパイ
- Java
- PHP
- Webサイト
- id: 7
order: '102016'
created_at: '2016-10-17'
name: 前橋
prefecture_id: 10
logo: "/img/dojos/maebashi.webp"
url: https://vtmacs003b.github.io/maebashi.jp/
description: 前橋市で毎月開催
tags:
- Scratch
- Minecraft
- ラズベリーパイ
- ゲーム
- id: 180
order: '102075'
is_active: false
created_at: '2018-08-08'
name: 館林
prefecture_id: 10
logo: "/img/dojos/tatebayashi.webp"
url: https://www.facebook.com/cd.tatebayashi/
description: 館林市で不定期開催
tags:
- Scratch
- Webサイト
- Hour of Code
- id: 9
order: '111007'
created_at: '2014-05-26'
name: さいたま
prefecture_id: 11
url: http://coderdojo-saitama.com/
logo: "/img/dojos/coderdojo.webp"
description: さいたま市で毎月開催
tags:
- Scratch
- Webサイト
- アプリ
- id: 263
order: '111074'
created_at: '2021-01-16'
name: 浦和@Urawa Minecraft Club
prefecture_id: 11
logo: "/img/dojos/urawa.webp"
url: https://www.urawa-minecraftclub.com/
description: さいたま市浦和区で毎週日曜開催
tags:
- Minecraft
- Makecode
- Scratch
- micro:bit
- Unity
- id: 12
order: '112089'
is_active: false
created_at: '2015-12-01'
name: 所沢
prefecture_id: 11
url: https://www.facebook.com/CoderDojoTokorozawa/
logo: "/img/dojos/tokorozawa.webp"
description: 所沢市で不定期開催
tags:
- Scratch
- id: 77
order: '112089'
is_active: false
created_at: '2017-03-14'
name: 小手指
prefecture_id: 11
url: https://coderdojokotesashi.github.io/
logo: "/img/dojos/kotesashi.webp"
description: 所沢市小手指で毎月開催
tags:
- Scratch
- id: 287
order: '112089'
created_at: '2022-09-20'
name: 新所沢
prefecture_id: 11
url: https://coderdojoshintokorozawa.github.io/
logo: "/img/dojos/default.webp"
description: 埼玉県所沢市新所沢で毎月開催
tags:
- Scratch
- Unity
- Processing
- micro:bit
- Python
- id: 11
order: '112097'
note: Re-activated @ 2024-08-19 https://www.facebook.com/groups/coderdojo.jp/posts/8010099192436743/
is_active: true
created_at: '2015-05-13'
name: 飯能
prefecture_id: 11
url: https://coderdojohanno.com/
logo: "/img/dojos/hanno.webp"
description: 飯能市で毎月開催
tags:
- Scratch
- Webサイト
- JavaScript
- micro:bit
- id: 227
order: '112241'
created_at: '2019-10-07'
name: 戸田公園
prefecture_id: 11
url: https://coderdojo-todakoen.com/
logo: "/img/dojos/default.webp"
description: 戸田市で毎月開催
tags:
- Scratch
- micro:bit
- Unity
- id: 10
order: '112305'
created_at: '2012-07-02'
name: ひばりヶ丘
prefecture_id: 11
url: https://coderdojo.hanare-hibari.info/
logo: "/img/dojos/hibarigaoka.webp"
description: 新座市で月2回開催
tags:
- Scratch
- ラズベリーパイ
- micro:bit
- 8x9Craft
- Unity
- id: 238
order: '112305'
is_active: false
created_at: '2020-02-03'
name: 新座志木
prefecture_id: 11
url: https://coderdojo-niizashiki.doorkeeper.jp/
logo: "/img/dojos/default.webp"
description: 新座市で毎月開催
tags:
- Scratch
- id: 22
order: '121002'
is_active: false
created_at: '2013-07-30'
name: 千葉
prefecture_id: 12
logo: "/img/dojos/chiba.webp"
url: https://chiba.coderdojo.chiba.jp/
description: 千葉市で毎月開催
tags:
- Scratch
- Webサイト
- PHP
- Ruby
- Minecraft
- id: 25
order: '121002'
created_at: '2016-04-27'
is_active: false
note: 'Inactived at 2025/03/01'
name: 若葉みつわ台
prefecture_id: 12
logo: "/img/dojos/wakaba-mitsuwadai.webp"
url: https://wakaba.coderdojo.chiba.jp/
description: 千葉市若葉区みつわ台で毎月開催
tags:
- Scratch
- Webサイト
- 3Dモデリング
- 映像制作
- MESH
- id: 151
order: '121002'
created_at: '2018-04-24'
name: 若葉若松
prefecture_id: 12
logo: "/img/dojos/wakaba-wakamatsu.webp"
url: https://coderdojo-wakaba-wakamatsu.github.io/
description: 千葉市若葉区若松で毎月開催
tags:
- Scratch
- id: 159
order: '121003'
created_at: '2018-12-02'
name: 土気
prefecture_id: 12
logo: "/img/dojos/default.webp"
url: https://www.facebook.com/CoderDojoTOKE/
description: 千葉市緑区で毎月開催
tags:
- Scratch
- Viscuit
- id: 312
order: '121003'
created_at: '2023-11-01'
name: 稲毛海岸
prefecture_id: 12
logo: "/img/dojos/inagekaigan.webp"
url: https://coderdojo-inagekaigan.connpass.com/
description: 千葉市の稲毛海岸駅付近で毎月開催
tags:
- Scratch
- micro:bit
- M5Stack
- ラズベリーパイ
- id: 60
order: '122033'
created_at: '2016-12-15'
name: 市川
prefecture_id: 12
logo: "/img/dojos/ichikawa.webp"
url: http://ichikawa.coderdojo.chiba.jp
description: 市川市で毎月開催
tags:
- Scratch
- micro:bit
- Python
- id: 82
order: '122033'
created_at: '2017-03-28'
name: 市川真間
prefecture_id: 12
logo: "/img/dojos/ichikawa-mama.webp"
url: https://beyondbb.jp/CDmama/index.html
description: JR市川駅近辺で毎月1~2回開催
tags:
- Scratch
- Python
- Minecraft
- micro:bit
- toio
- id: 86
order: '122041'
created_at: '2017-05-16'
name: 船橋
prefecture_id: 12
logo: "/img/dojos/funabashi.webp"
url: https://funabashi.coderdojo.chiba.jp/
description: 船橋市で毎月開催
tags:
- Scratch
- micro:bit
- Mindstorms
- id: 83
order: '122068'
created_at: '2017-04-27'
name: 木更津
prefecture_id: 12
logo: "/img/dojos/kisarazu.webp"
url: https://www.facebook.com/coderdojokisarazu/
description: 木更津市で隔月開催
tags:
- Scratch
- id: 114
order: '122076'
created_at: '2017-09-06'
name: 松戸
prefecture_id: 12
logo: "/img/dojos/default.webp"
url: https://code4matsudo.org/category/coder-dojo-matsudo/
description: 松戸市で隔月開催
tags:
- Scratch
- id: 20
order: '122084'
is_active: false
created_at: '2016-11-08'
name: 野田
prefecture_id: 12
logo: "/img/dojos/noda.webp"
url: https://www.facebook.com/coderdojonoda/
description: 野田市で不定期開催
tags:
- Scratch
- id: 283
order: '122084'
is_active: false
created_at: '2022-04-21'
name: 野田
prefecture_id: 12
logo: "/img/dojos/default.webp"
url: https://mamejuku.org/coderdojonoda/
description: 野田市で毎月開催
tags:
- Scratch
- id: 23
order: '122173'
created_at: '2014-09-22'
name: 柏
prefecture_id: 12
url: https://www.coderdojo-kashiwa.com/
logo: "/img/dojos/coderdojo.webp"
description: 柏市で毎月3回開催
tags:
- Scratch
- id: 125
order: '122173'
is_active: false
created_at: '2018-01-27'
name: 柏沼南
prefecture_id: 12
url: https://www.coderdojo-kashiwa.com/
logo: "/img/dojos/kashiwa-shounan.webp"
description: 柏市沼南で第2土曜に開催
tags:
- Scratch
- id: 112
order: '122173'
created_at: '2017-09-26'
name: 南柏
prefecture_id: 12
url: https://www.coderdojo-kashiwa.com/
logo: "/img/dojos/minami-kashiwa.webp"
description: 柏市光ヶ丘で第3土曜に開催
tags:
- Scratch
- id: 311
order: '122173'
created_at: '2023-09-18'
name: 柏の葉
prefecture_id: 12
url: https://coderdojo-kashiwa.com/
logo: "/img/dojos/kashiwa-no-ha.webp"
description: 柏市で毎月開催
tags:
- Scratch
- micro:bit
- id: 24
order: '122203'
created_at: '2016-04-27'
name: 流山
prefecture_id: 12
logo: "/img/dojos/default.webp"
url: http://www.code-for-nagareyama.org/?cat=11
description: 流山市で毎月開催
tags:
- Scratch
- micro:bit
- id: 284
order: '122211'
created_at: '2022-06-17'
name: 八千代
prefecture_id: 12
logo: "/img/dojos/yachiyo.webp"
url: https://coderdojo-yachiyo.connpass.com/
description: 八千代市で毎月開催
tags:
- Scratch
- Webサイト
- JavaScript
- Node.js
- micro:bit
- id: 251
order: '122246'
created_at: '2020-07-29'
name: 鎌ケ谷
prefecture_id: 12
logo: "/img/dojos/kamagaya.webp"
url: https://cd-kamagaya.com/
description: 鎌ケ谷市で毎月第4日曜に開催
tags:
- Scratch
- LEGO
- micro:bit
- Python
- Webサイト
- id: 21
order: '122271'
created_at: '2016-11-08'
name: 浦安
prefecture_id: 12
logo: "/img/dojos/urayasu.webp"
url: http://urayasu.coderdojo.chiba.jp/
description: 浦安市で毎月開催
tags:
- Scratch
- Webサイト
- PHP
- Ruby
- id: 152
order: '122301'
is_active: false
created_at: '2018-06-30'
name: やちまた
prefecture_id: 12
logo: "/img/dojos/yachimata.webp"
url: https://peraichi.com/landing_pages/view/coderdojoyachimata
description: 八街市で毎月開催
tags:
- Scratch
- id: 219
order: '122319'
is_active: false
created_at: '2019-06-26'
name: 印西
prefecture_id: 12
logo: "/img/dojos/default.webp"
url: https://inzai.coderdojo.chiba.jp/
description: 印西市で毎月開催
tags:
- Scratch
- micro:bit
- Unity
- Minecraft
- id: 157
order: '122302'
is_active: false
created_at: '2018-11-25'
name: 酒々井
prefecture_id: 12
logo: "/img/dojos/shisui.webp"
url: https://home.omegane-pr.com/coderdojo/
description: 印旛郡酒々井町で毎月開催
tags:
- Scratch
- 映像制作
- id: 158
order: '122303'
note: Re-actived @ 2024/03/16 https://twitter.com/KEITAROinNRT/status/1768837516835352825
is_active: true
created_at: '2018-11-17'
name: 成田
prefecture_id: 12
logo: "/img/dojos/narita.webp"
url: https://coderdojo.narita-area.com/
description: 成田市で毎月開催
tags:
- Scratch