diff --git a/.gitattributes b/.gitattributes
deleted file mode 100644
index 5a547a9..0000000
--- a/.gitattributes
+++ /dev/null
@@ -1,19 +0,0 @@
-# Example of a `.gitattributes` file which reclassifies `.rb` files as Java:
-#
-# *.rb linguist-language=Java
-#
-# See: https://github.com/github-linguist/linguist/blob/master/docs/overrides.md
-
-# Mark Jekyll-based markups as Ruby
-index.html linguist-language=Ruby
-_includes/* linguist-language=Ruby
-_layouts/* linguist-language=Ruby
-_sass/* linguist-language=Ruby
-
-# Exclude vendored files from statistics.
-js/header_fix.js linguist-vendored
-js/jquery.easing.1.3.js linguist-vendored
-js/jscript.js linguist-vendored
-js/slick.css linguist-vendored
-responsive.css linguist-vendored
-style.css linguist-vendored
diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
deleted file mode 100644
index f017cc6..0000000
--- a/.github/FUNDING.yml
+++ /dev/null
@@ -1,12 +0,0 @@
-# These are supported funding model platforms
-
-github: coderdojo-japan # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
-patreon: # Replace with a single Patreon username
-open_collective: # Replace with a single Open Collective username
-ko_fi: # Replace with a single Ko-fi username
-tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
-community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
-liberapay: # Replace with a single Liberapay username
-issuehunt: # Replace with a single IssueHunt username
-otechie: # Replace with a single Otechie username
-custom: # Now approved by GitHub and no need to set this 'coderdojo.jp/partnership'
diff --git a/.github/workflows/scheduler_daily.yml b/.github/workflows/scheduler_daily.yml
deleted file mode 100644
index 1182b4d..0000000
--- a/.github/workflows/scheduler_daily.yml
+++ /dev/null
@@ -1,71 +0,0 @@
-name: Daily Update
-
-# NOTE: GitHub Action's scheduler is always set to UTC+0. So 9am should be set at 0am for JST (UTC+9)
-# https://docs.github.com/en/actions/reference/events-that-trigger-workflows#scheduled-events-schedule
-
-# '0 23 * * *' == 8am in JST (UTC+9)
-# '0 0 * * *' == 9am in JST (UTC+9)
-# '0 1 * * *' == 10am in JST (UTC+9)
-# '59 23 * * *' task will be completed after 9am in JST
-on:
- schedule:
- - cron: '59 20 * * *'
-
- # [DEBUG ONLY] Every 5 minutes
- # https://github.blog/changelog/2019-11-01-github-actions-scheduled-jobs-maximum-frequency-is-changing
- #- cron: '*/5 * * * *'
-
- # Allows you to run this workflow manually from the Actions tab
- workflow_dispatch:
-
-jobs:
- build:
- runs-on: ubuntu-latest
-
- steps:
- - name: 📥 Download codes from GitHub
- uses: actions/checkout@v4
- with:
- fetch-depth: 2
-
- - name: 💎 Set up Ruby
- uses: ruby/setup-ruby@v1
- #with:
- # bundler-cache: true
- #ruby-version: 3.2 # Not necessary if .ruby-version is given
-
- - name: 🧪 Install Ruby gems
- run: |
- bundle install
-
- - name: 📊 Update dojo stats of Japan
- run: |
- bundle exec ruby update_profile.rb
-
- - name: 🆙 Update profile if updated
- run: |
- echo "IS_UPDATED=false" >> $GITHUB_ENV
- if [ -n "$(git status --porcelain)" ]; then
- echo "IS_UPDATED=true" >> $GITHUB_ENV
- git config --global user.name "Yohei Yasukawa"
- git config --global user.email "yohei@yasslab.jp"
- git checkout main
- git add _data/stats.yml
- git commit -m '🤖 Update dojo stats'
- git push origin main
- fi
- env:
- GITHUB_TOKEN:
-
- - name: 🔧 Build & Test
- run: |
- JEKYLL_ENV=production bundle exec jekyll build
- JEKYLL_ENV=production bundle exec jekyll doctor
- SKIP_BUILD=true bundle exec rake test
-
- - name: 🚀 Deploy to GitHub Pages
- if: github.ref == 'refs/heads/main' && job.status == 'success' && env.IS_UPDATED == 'true'
- uses: peaceiris/actions-gh-pages@v4
- with:
- personal_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./_site
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
deleted file mode 100644
index 5bed944..0000000
--- a/.github/workflows/test.yml
+++ /dev/null
@@ -1,67 +0,0 @@
-name: Test & Deploy
-on:
- push:
- branches:
- - main
- pull_request:
- branches:
- - "*"
- # Allows you to run this workflow manually from the Actions tab
- # https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow
- workflow_dispatch:
-
-jobs:
- # Test job is always triggered as continuous integration
- test:
- runs-on: ubuntu-latest
- steps:
- - name: ☑️ Checkout code
- uses: actions/checkout@v4
- with:
- fetch-depth: 2
-
- - name: 💎 Setup Ruby
- uses: ruby/setup-ruby@v1
- with:
- bundler-cache: true
-
- - name: 🧪 Install gems
- run: |
- bundle install
-
- - name: 🔧 Build & Test
- run: |
- JEKYLL_ENV=test bundle exec jekyll build
- JEKYLL_ENV=test bundle exec jekyll doctor
- SKIP_BUILD=true bundle exec rake test
-
- # Deploy job is triggered only pushed to main branch && CI passed
- deploy:
- if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
- needs: test
- runs-on: ubuntu-latest
- steps:
- - name: ☑️ Checkout code
- uses: actions/checkout@v4
- with:
- fetch-depth: 2
-
- - name: 💎 Setup Ruby
- uses: ruby/setup-ruby@v1
- with:
- bundler-cache: true
-
- - name: 🧪 Install gems
- run: |
- bundle install
-
- - name: 🔧 Build
- run: |
- JEKYLL_ENV=production bundle exec jekyll build
-
- - name: 🚀 Deploy to GitHub Pages
- if: github.ref == 'refs/heads/main' && job.status == 'success'
- uses: peaceiris/actions-gh-pages@v4
- with:
- personal_token: ${{ secrets.GITHUB_TOKEN }}
- publish_dir: ./_site
diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 337e272..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,64 +0,0 @@
-# Ignore files for Jekyll
-_site
-.sass-cache
-.jekyll-cache
-.jekyll-metadata
-vendor
-
-# Ignore files for Ruby
-*.gem
-*.rbc
-/.config
-/coverage/
-/InstalledFiles
-/pkg/
-/spec/reports/
-/spec/examples.txt
-/test/tmp/
-/test/version_tmp/
-/tmp/
-
-# Used by dotenv library to load environment variables.
-# .env
-
-# Ignore Byebug command history file.
-.byebug_history
-
-## Specific to RubyMotion:
-.dat*
-.repl_history
-build/
-*.bridgesupport
-build-iPhoneOS/
-build-iPhoneSimulator/
-
-## Specific to RubyMotion (use of CocoaPods):
-#
-# We recommend against adding the Pods directory to your .gitignore. However
-# you should judge for yourself, the pros and cons are mentioned at:
-# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
-#
-# vendor/Pods/
-
-## Documentation cache and generated files:
-/.yardoc/
-/_yardoc/
-/doc/
-/rdoc/
-
-## Environment normalization:
-/.bundle/
-/vendor/bundle
-/lib/bundler/man/
-
-# for a library or gem, you might want to ignore these files since the code is
-# intended to run in multiple environments; otherwise, check them in:
-# Gemfile.lock
-# .ruby-version
-# .ruby-gemset
-
-# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
-.rvmrc
-
-# Used by RuboCop. Remote config files pulled in from inherit_from directive.
-# .rubocop-https?--*
diff --git a/.nojekyll b/.nojekyll
new file mode 100644
index 0000000..e69de29
diff --git a/.ruby-version b/.ruby-version
deleted file mode 100644
index f989260..0000000
--- a/.ruby-version
+++ /dev/null
@@ -1 +0,0 @@
-3.4.4
diff --git a/2016/07/29/go-global.html b/2016/07/29/go-global.html
new file mode 100644
index 0000000..8ef9622
--- /dev/null
+++ b/2016/07/29/go-global.html
@@ -0,0 +1,11 @@
+
+
+
+
Redirecting…
+
+
+
+
+ Redirecting…
+ Click here if you are not redirected.
+
diff --git a/2016/09/04/coderdojo-japan-was-established.html b/2016/09/04/coderdojo-japan-was-established.html
new file mode 100644
index 0000000..08d2d7b
--- /dev/null
+++ b/2016/09/04/coderdojo-japan-was-established.html
@@ -0,0 +1,11 @@
+
+
+
+ Redirecting…
+
+
+
+
+ Redirecting…
+ Click here if you are not redirected.
+
diff --git a/Gemfile b/Gemfile
deleted file mode 100644
index 2a47576..0000000
--- a/Gemfile
+++ /dev/null
@@ -1,17 +0,0 @@
-source 'https://rubygems.org'
-
-gem 'jekyll'
-gem 'jekyll-redirect-from'
-gem 'rake'
-
-group :jekyll_plugins do
- gem 'jekyll-feed'
- gem 'jekyll-sitemap'
-end
-
-group :development, :test do
- gem 'html-proofer'
-end
-
-# Declare to install bundled gems to fix warnings:
-gem 'logger'
diff --git a/Gemfile.lock b/Gemfile.lock
deleted file mode 100644
index 2d79241..0000000
--- a/Gemfile.lock
+++ /dev/null
@@ -1,204 +0,0 @@
-GEM
- remote: https://rubygems.org/
- specs:
- Ascii85 (2.0.1)
- addressable (2.8.7)
- public_suffix (>= 2.0.2, < 7.0)
- afm (0.2.2)
- async (2.24.0)
- console (~> 1.29)
- fiber-annotation
- io-event (~> 1.9)
- metrics (~> 0.12)
- traces (~> 0.15)
- base64 (0.2.0)
- bigdecimal (3.1.9)
- colorator (1.1.0)
- concurrent-ruby (1.3.5)
- console (1.30.2)
- fiber-annotation
- fiber-local (~> 1.1)
- json
- csv (3.3.4)
- em-websocket (0.5.3)
- eventmachine (>= 0.12.9)
- http_parser.rb (~> 0)
- ethon (0.16.0)
- ffi (>= 1.15.0)
- eventmachine (1.2.7)
- ffi (1.17.2-aarch64-linux-gnu)
- ffi (1.17.2-aarch64-linux-musl)
- ffi (1.17.2-arm-linux-gnu)
- ffi (1.17.2-arm-linux-musl)
- ffi (1.17.2-arm64-darwin)
- ffi (1.17.2-x86_64-darwin)
- ffi (1.17.2-x86_64-linux-gnu)
- ffi (1.17.2-x86_64-linux-musl)
- fiber-annotation (0.2.0)
- fiber-local (1.1.0)
- fiber-storage
- fiber-storage (1.0.1)
- forwardable-extended (2.6.0)
- google-protobuf (4.31.0)
- bigdecimal
- rake (>= 13)
- google-protobuf (4.31.0-aarch64-linux-gnu)
- bigdecimal
- rake (>= 13)
- google-protobuf (4.31.0-aarch64-linux-musl)
- bigdecimal
- rake (>= 13)
- google-protobuf (4.31.0-arm64-darwin)
- bigdecimal
- rake (>= 13)
- google-protobuf (4.31.0-x86_64-darwin)
- bigdecimal
- rake (>= 13)
- google-protobuf (4.31.0-x86_64-linux-gnu)
- bigdecimal
- rake (>= 13)
- google-protobuf (4.31.0-x86_64-linux-musl)
- bigdecimal
- rake (>= 13)
- hashery (2.1.2)
- html-proofer (5.0.10)
- addressable (~> 2.3)
- async (~> 2.1)
- nokogiri (~> 1.13)
- pdf-reader (~> 2.11)
- rainbow (~> 3.0)
- typhoeus (~> 1.3)
- yell (~> 2.0)
- zeitwerk (~> 2.5)
- http_parser.rb (0.8.0)
- i18n (1.14.7)
- concurrent-ruby (~> 1.0)
- io-event (1.10.1)
- jekyll (4.4.1)
- addressable (~> 2.4)
- base64 (~> 0.2)
- colorator (~> 1.0)
- csv (~> 3.0)
- em-websocket (~> 0.5)
- i18n (~> 1.0)
- jekyll-sass-converter (>= 2.0, < 4.0)
- jekyll-watch (~> 2.0)
- json (~> 2.6)
- kramdown (~> 2.3, >= 2.3.1)
- kramdown-parser-gfm (~> 1.0)
- liquid (~> 4.0)
- mercenary (~> 0.3, >= 0.3.6)
- pathutil (~> 0.9)
- rouge (>= 3.0, < 5.0)
- safe_yaml (~> 1.0)
- terminal-table (>= 1.8, < 4.0)
- webrick (~> 1.7)
- jekyll-feed (0.17.0)
- jekyll (>= 3.7, < 5.0)
- jekyll-redirect-from (0.16.0)
- jekyll (>= 3.3, < 5.0)
- jekyll-sass-converter (3.1.0)
- sass-embedded (~> 1.75)
- jekyll-sitemap (1.4.0)
- jekyll (>= 3.7, < 5.0)
- jekyll-watch (2.2.1)
- listen (~> 3.0)
- json (2.12.0)
- kramdown (2.5.1)
- rexml (>= 3.3.9)
- kramdown-parser-gfm (1.1.0)
- kramdown (~> 2.0)
- liquid (4.0.4)
- listen (3.9.0)
- rb-fsevent (~> 0.10, >= 0.10.3)
- rb-inotify (~> 0.9, >= 0.9.10)
- logger (1.7.0)
- mercenary (0.4.0)
- metrics (0.12.2)
- nokogiri (1.18.9-aarch64-linux-gnu)
- racc (~> 1.4)
- nokogiri (1.18.9-aarch64-linux-musl)
- racc (~> 1.4)
- nokogiri (1.18.9-arm-linux-gnu)
- racc (~> 1.4)
- nokogiri (1.18.9-arm-linux-musl)
- racc (~> 1.4)
- nokogiri (1.18.9-arm64-darwin)
- racc (~> 1.4)
- nokogiri (1.18.9-x86_64-darwin)
- racc (~> 1.4)
- nokogiri (1.18.9-x86_64-linux-gnu)
- racc (~> 1.4)
- nokogiri (1.18.9-x86_64-linux-musl)
- racc (~> 1.4)
- pathutil (0.16.2)
- forwardable-extended (~> 2.6)
- pdf-reader (2.14.1)
- Ascii85 (>= 1.0, < 3.0, != 2.0.0)
- afm (~> 0.2.1)
- hashery (~> 2.0)
- ruby-rc4
- ttfunk
- public_suffix (6.0.2)
- racc (1.8.1)
- rainbow (3.1.1)
- rake (13.2.1)
- rb-fsevent (0.11.2)
- rb-inotify (0.11.1)
- ffi (~> 1.0)
- rexml (3.4.1)
- rouge (4.5.2)
- ruby-rc4 (0.1.5)
- safe_yaml (1.0.5)
- sass-embedded (1.89.0-aarch64-linux-gnu)
- google-protobuf (~> 4.31)
- sass-embedded (1.89.0-aarch64-linux-musl)
- google-protobuf (~> 4.31)
- sass-embedded (1.89.0-arm-linux-gnueabihf)
- google-protobuf (~> 4.31)
- sass-embedded (1.89.0-arm-linux-musleabihf)
- google-protobuf (~> 4.31)
- sass-embedded (1.89.0-arm64-darwin)
- google-protobuf (~> 4.31)
- sass-embedded (1.89.0-x86_64-darwin)
- google-protobuf (~> 4.31)
- sass-embedded (1.89.0-x86_64-linux-gnu)
- google-protobuf (~> 4.31)
- sass-embedded (1.89.0-x86_64-linux-musl)
- google-protobuf (~> 4.31)
- terminal-table (3.0.2)
- unicode-display_width (>= 1.1.1, < 3)
- traces (0.15.2)
- ttfunk (1.8.0)
- bigdecimal (~> 3.1)
- typhoeus (1.4.1)
- ethon (>= 0.9.0)
- unicode-display_width (2.6.0)
- webrick (1.9.1)
- yell (2.2.2)
- zeitwerk (2.7.3)
-
-PLATFORMS
- aarch64-linux-gnu
- aarch64-linux-musl
- arm-linux-gnu
- arm-linux-gnueabihf
- arm-linux-musl
- arm-linux-musleabihf
- arm64-darwin
- x86_64-darwin
- x86_64-linux
- x86_64-linux-gnu
- x86_64-linux-musl
-
-DEPENDENCIES
- html-proofer
- jekyll
- jekyll-feed
- jekyll-redirect-from
- jekyll-sitemap
- logger
- rake
-
-BUNDLED WITH
- 2.6.9
diff --git a/Rakefile b/Rakefile
deleted file mode 100644
index 209a60f..0000000
--- a/Rakefile
+++ /dev/null
@@ -1,37 +0,0 @@
-task default: 'test'
-
-# cf. GitHub - gjtorikian/html-proofer
-# https://github.com/gjtorikian/html-proofer
-require 'html-proofer'
-task test: [:build] do
- options = {
- checks: ['Links', 'Images', 'Scripts', 'OpenGraph', 'Favicon'],
- allow_hash_href: true,
- disable_external: ENV['TEST_EXTERNAL_LINKS'] != 'true',
- enforce_https: true,
-
- # NOTE: Ignore file, URL, and response as follows
- ignore_files: [
- /google(.*)\.html/,
- ],
- ignore_urls: [
- # URL should be perfect-matching
- # e.g. 'http://example.com/foobar',
-
- # Use REGEX to ignore URLs by domains
- %r{^http://www.coderdojo-urasoe.com},
- ],
- #ignore_status_codes: [0, 500, 999],
- }
-
- HTMLProofer.check_directory('_site', options).run
-end
-
-# Enable 'build' to flush cache files via 'clean'
-task build: [:clean] do
- system 'JEKYLL_ENV=test bundle exec jekyll build' unless ENV['SKIP_BUILD'] == 'true'
-end
-
-task :clean do
- system 'bundle exec jekyll clean' unless ENV['SKIP_BUILD'] == 'true'
-end
diff --git a/_config.yml b/_config.yml
deleted file mode 100644
index 132f131..0000000
--- a/_config.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-title: DojoCon Japan - CoderDojo Conference
-title_short: DojoCon Japan
-title_long: DojoCon Japan - 年1回の CoderDojo カンファレンス
-description: DojoCon Japan とは、日本の CoderDojo コミュニティメンバーが全国から集まる年に1度のカンファレンスイベントです。
-url: https://dojocon.coderdojo.jp
-eye_catch_video: https://youtube.com/watch?v=16lvmFgqslQ
-link_to_youtube: https://youtube.com/@DojoConJapan
-link_to_twitter: https://twitter.com/DojoConJapan
-link_to_facebook: https://facebook.com/DojoConJapan
-link_to_github: https://github.com/coderdojo-japan/dojocon.coderdojo.jp
-link_to_coderdojo: https://coderdojo.jp
-link_to_decadojo: https://decadojo.coderdojo.jp
-link_to_privacy: https://coderdojo.jp/privacy
-copyright: DojoCon Japan & CoderDojo Japan
-
-# Build settings
-plugins:
- - jekyll-redirect-from
- - jekyll-feed
- - jekyll-sitemap # This must be LAST to include contents generated by gems above
-
-# Feed settings: https://github.com/jekyll/jekyll-feed
-feed:
- path: /feed.xml
- posts_limit: 1000
-
-exclude:
- - .sass-cache/
- - .jekyll-cache/
- - Gemfile
- - Gemfile.lock
- - Rakefile
-
-sass:
- style: compressed
- sourcemap: always
diff --git a/_data/events.yml b/_data/events.yml
deleted file mode 100644
index a986d4f..0000000
--- a/_data/events.yml
+++ /dev/null
@@ -1,102 +0,0 @@
----
-
-# url: 公式サイトへのURL
-# img: サムネイル画像のファイル名 (画像は `img/events/` ディレクトリに置きます)
-# date: 開催日 (日付は `yyyy/mm/dd (曜日)` 形式で書きます)
-# venue: 開催地 (都道府県単位)
-# description: >-
-# ココに説明文を書きます。一部の Markdown や HTML にも対応しています。
-
-- url: https://dojocon2025.coderdojo.jp/
- img: 2025.webp
- date: 2025/10/25 (土)
- venue: 福岡
- description: >-
- "Inspire Next 〜好奇心に火をつけよう〜"
-
- 【開催場所 福岡県久留米市 久留米シティプラザ】
-
- SAVE THE DATE...
-
-- url: https://dojocon2024.coderdojo.jp/
- img: 2024.webp
- date: 2024/09/15 (日)
- venue: 岡山
- description: >-
- 2016から始まったDojoCon Japanも数えること今回で9回を迎えます。
-
- 今年のDojoCon Japanは、チャンピオン、メンターのお祭りに終わらせず、ワークショップ、セッションを通してCoderDojoコミュニティに繋がる人の 「夢」 を大切にしたいと考えています。また、CoderDojoに関わっている人だけでなく、「関わりたいと思っている」人の為にも参加していただきたいです。
-
- 「Dream Up!」 には、「新たなアイデアや計画を思いつく、または創造する」という意味があり、独創的な「夢」を実現するという意味も込めました。DojoCon Japan 2024が参加者のみなさんがそれぞれの 「夢」 を 「見つけ」 て、その先の 「実現」 に繋げていただくきっかけになればと考えています。
-
-- url: https://dojocon2023.coderdojo.jp/
- img: 2023.webp
- date: 2023/08/27 (日)
- venue: 奈良
- description: >-
- 2012年に日本で最初の CoderDojo が始まって昨年で10年が経ち、現在では多くの企業や組織から支援を受けられるようになりました。これは CoderDojo が任意かつ自律的な活動であるにも関わらず信頼を得られている証だと考えられます。
-
- これからの10年も CoderDojo が信頼される "Cool" な活動であり続けられるように、DojoCon Japan 2023 ではそのきっかけを作っていきます。
-
-- url: https://dojocon2022.coderdojo.jp/
- img: 2022.webp
- date: 2022/11/27 (日)
- venue: 富山
- description: >-
- 2016・2017年は大阪、2018年は東京、2019年は名古屋で開催しました。2020年・2021年はコロナウイルスの流行の影響でオンラインでの開催となりました。そして7回目の今年は現地開催を復活して富山県で開催!
-
- 2022年の DojoCon Japan では「Try something new 〜 新たな挑戦 〜」をテーマとしました。DojoCon Japan の初回開催から7年、日本全国で道場は大幅に増えました。道場にも多様性が生まれ、豊富なアイデアで満ちています。何事も試してみなければ始まらない。情熱と好奇心を持って取り組み、それを共有することが、良い結果を生み出すでしょう。新たな挑戦を続ける全国の道場のパワーを集め、さらに飛躍するエンジンとなるような DojoCon Japan を目指します。
-
-- url: https://dojocon2021.coderdojo.jp/
- img: 2021.webp
- date: 2021/12/18 (土)
- venue: オンライン
- description: >-
- 2021年は CoderDojo が10周年を迎え、DojoCon Japan も昨年の開催で通算5回目を数えました。とてもめでたいので皆で集まってお祝いしましょう。
-
- 長く CoderDojo を続けている方も、今年始めたばかりの方も、ちょっと休止中の方も、新しい道に進んだ方も、メンター・Ninja にかかわらず、これまで各地で行ってきた取り組みを振り返り、オンラインでここに持ち寄ってください。
-
- ここまでの長い道のりを CoderDojo 10周年とともに振り返りながら、次の10年を一緒に見渡してみませんか。
-
-- url: https://dojocon2020.coderdojo.jp/
- img: 2020.webp
- date: 2020/12/27 (日)
- venue: オンライン
- description: >-
- DojoCon Japan が初めて開催された2016年から比べて、現在に至るまで約4倍の成長率で全国的に広がりを見せています。今年は初めてのオンライン開催となります。私たちの日常生活には様々な“距離“が存在していて、またコロナ禍の中、CoderDojo コミュニティでも大きな変化が訪れていますが、DojoCon Japan 2020 では、“Beyond the Distance” というテーマのもと、様々な距離 (心理的距離、地理的距離など) を乗り越えて、コミュニティのより一層の発展と盛り上がりのきっかけになることを目指しています。
-
-- url: https://dojocon2019.coderdojo.jp/
- img: 2019.webp
- date: 2019/12/21 (土)
- venue: 名古屋
- description: >-
- 2019年の DojoCon Japan では 「つぎのSTEP」をテーマとしました。 初期の段階では Scratch などでプログラミングの場を子どもたちに提供するという枠組みからスタートする Dojo が多かったと思いますが、今ではそれぞれの Dojo でその枠組みを超えて様々な活動を提供していたり、様々な子どもたちを対象としていたり、CoderDojo という枠を超えて他の団体や人との関わりや繋がりをもって活動している Dojo もでてきました。そんな新たな取り組みを DojoCon で共有し、それぞれの Dojo が「つぎのSTEP」を踏み出せるきっかけになる DojoCon になればと考えています。「つぎのSTEP」を積み重ね、CoderDojo コミュニティが進化していき、子どもたちにとってよりよいプログラミングを学ぶ場になっていくことを願います。
-
-- url: https://dojocon2018.coderdojo.jp/
- img: 2018.webp
- date: 2018/08/25 (土)
- venue: 東京
- description: >-
- 一昨年と昨年は大阪で開催され、イベント開催時 45 箇所だった日本の Dojo が今では約 150 箇所を超えるコミュニティに成長しました。
-
- 今回は「ひろがる plus one」をテーマに CoderDojo コミュニティに新しい風を巻き起こし、チャンピオン、メンター、ニンジャに関係なく、プラスワンの発見をすることのできる DojoCon Japan を目標にしています。
-
-- url: https://dojocon2017.coderdojo.jp/
- img: 2017.webp
- date: 2017/11/04 (土)
- venue: 大阪
- description: >-
- 今回は、「つながる Dojo to Dojo 」をテーマに、全国の CoderDojo 関係者が集まることで交流や意見交換を行ったり、一生付き合える仲間づくりをすることで、日本の CoderDojo コミュニティの絆を強めることを目的に開催します。DojoCon Japan に参加してもらうことで、「CoderDojo」という同じ活動をしているのに、他の Dojo のことを余り知らないという課題を解決し、相互理解を深めることでそこから新しい何かが生まれることを期待しています。また、これまで CoderDojo を知らなかった方にもこの機会に知っていただき、地元の Dojo に参加したり、新しく Dojo を立ち上げるきっかけになってほしいと願っています。
-
-- url: https://dojocon2016.coderdojo.jp/
- img: 2016.webp
- date: 2016/08/27 (土)
- venue: 大阪
- description: >-
- 初開催の DojoCon Japan。THE MORE DOJOS, THE MORE COOL CODERS をテーマに開催。
-
- 国内での CoderDojo に携わるメンターの交流
- プログラミング教育、コミュニティー運営、アートなどの各分野に関するエキサイティングなスピーカーを揃えたセッション
- 新しいテクノロジーやサービスに触れるショーケース
-
- を中心に構成され、これから日本各地で CoderDojo が増え、それぞれがいっそう楽しく、より地域に根ざし、そしてクリエイティブなものになっていくことで次世代のテクノロジスト育成の促進を目指します。
diff --git a/_data/stats.yml b/_data/stats.yml
deleted file mode 100644
index c1d96f2..0000000
--- a/_data/stats.yml
+++ /dev/null
@@ -1,2 +0,0 @@
----
-active_dojos: 207
diff --git a/feed.xml b/feed.xml
new file mode 100644
index 0000000..8739a2a
--- /dev/null
+++ b/feed.xml
@@ -0,0 +1 @@
+Jekyll 2025-07-23T15:48:14+00:00 https://dojocon.coderdojo.jp/feed.xml DojoCon Japan - CoderDojo Conference DojoCon Japan とは、日本の CoderDojo コミュニティメンバーが全国から集まる年に1度のカンファレンスイベントです。
\ No newline at end of file
diff --git a/index.html b/index.html
index 0d61beb..3c7b5a1 100644
--- a/index.html
+++ b/index.html
@@ -1,6 +1,3 @@
----
----
-
@@ -20,21 +17,21 @@
- {{ site.title_long }}
-
+ DojoCon Japan - 年1回の CoderDojo カンファレンス
+
-
-
-
-
-
+
+
+
+
+
-
-
+
+
@@ -156,8 +153,8 @@
+ alt="DojoCon Japan - CoderDojo Conference"
+ title="DojoCon Japan - CoderDojo Conference" />
Start content
@@ -167,7 +164,7 @@
-
+
@@ -225,50 +222,339 @@
- {% for event in site.data.events %}
- {% assign index = forloop.index0 | modulo: 3 %}
- {% if index == 0 %}
+
+
+
+
+
+
+
+
+
+
+
2025/10/25 (土) @ 福岡
+
+
+
“Inspire Next 〜好奇心に火をつけよう〜” 【開催場所 福岡県久留米市 久留米シティプラザ】 SAVE THE DATE…
+
+
+
+
詳細を見る
+
+
+
+
+
+
+
+
+
+
+
+
2024/09/15 (日) @ 岡山
+
+
+
2016から始まったDojoCon Japanも数えること今回で9回を迎えます。 今年のDojoCon Japanは、チャンピオン、メンターのお祭りに終わらせず、ワークショップ、セッションを通してCoderDojoコミュニティに繋がる人の 「夢」 を大切にしたいと考えています。また、CoderDojoに関わっている人だけでなく、「関わりたいと思っている」人の為にも参加していただきたいです。 「Dream Up!」 には、「新たなアイデアや計画を思いつく、または創造する」という意味があり、独創的な「夢」を実現するという意味も込めました。DojoCon Japan 2024が参加者のみなさんがそれぞれの 「夢」 を 「見つけ」 て、その先の 「実現」 に繋げていただくきっかけになればと考えています。
+
+
+
+
詳細を見る
+
+
+
+
+
+
+
+
+
+
+
+
2023/08/27 (日) @ 奈良
+
+
+
2012年に日本で最初の CoderDojo が始まって昨年で10年が経ち、現在では多くの企業や組織から支援を受けられるようになりました。これは CoderDojo が任意かつ自律的な活動であるにも関わらず信頼を得られている証だと考えられます。 これからの10年も CoderDojo が信頼される “Cool” な活動であり続けられるように、DojoCon Japan 2023 ではそのきっかけを作っていきます。
+
+
+
+
詳細を見る
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
2022/11/27 (日) @ 富山
+
+
+
2016・2017年は大阪、2018年は東京、2019年は名古屋で開催しました。2020年・2021年はコロナウイルスの流行の影響でオンラインでの開催となりました。そして7回目の今年は現地開催を復活して富山県で開催! 2022年の DojoCon Japan では「Try something new 〜 新たな挑戦 〜」をテーマとしました。DojoCon Japan の初回開催から7年、日本全国で道場は大幅に増えました。道場にも多様性が生まれ、豊富なアイデアで満ちています。何事も試してみなければ始まらない。情熱と好奇心を持って取り組み、それを共有することが、良い結果を生み出すでしょう。新たな挑戦を続ける全国の道場のパワーを集め、さらに飛躍するエンジンとなるような DojoCon Japan を目指します。
+
+
+
+
詳細を見る
+
+
+
+
+
+
+
+
+
+
+
+
2021/12/18 (土) @ オンライン
+
+
+
2021年は CoderDojo が10周年を迎え、DojoCon Japan も昨年の開催で通算5回目を数えました。とてもめでたいので皆で集まってお祝いしましょう。 長く CoderDojo を続けている方も、今年始めたばかりの方も、ちょっと休止中の方も、新しい道に進んだ方も、メンター・Ninja にかかわらず、これまで各地で行ってきた取り組みを振り返り、オンラインでここに持ち寄ってください。 ここまでの長い道のりを CoderDojo 10周年とともに振り返りながら、次の10年を一緒に見渡してみませんか。
+
+
+
+
詳細を見る
+
+
+
+
+
+
+
+
+
+
+
+
2020/12/27 (日) @ オンライン
+
+
+
DojoCon Japan が初めて開催された2016年から比べて、現在に至るまで約4倍の成長率で全国的に広がりを見せています。今年は初めてのオンライン開催となります。私たちの日常生活には様々な“距離“が存在していて、またコロナ禍の中、CoderDojo コミュニティでも大きな変化が訪れていますが、DojoCon Japan 2020 では、“Beyond the Distance” というテーマのもと、様々な距離 (心理的距離、地理的距離など) を乗り越えて、コミュニティのより一層の発展と盛り上がりのきっかけになることを目指しています。
+
+
+
+
詳細を見る
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
2019/12/21 (土) @ 名古屋
+
+
+
2019年の DojoCon Japan では 「つぎのSTEP」をテーマとしました。 初期の段階では Scratch などでプログラミングの場を子どもたちに提供するという枠組みからスタートする Dojo が多かったと思いますが、今ではそれぞれの Dojo でその枠組みを超えて様々な活動を提供していたり、様々な子どもたちを対象としていたり、CoderDojo という枠を超えて他の団体や人との関わりや繋がりをもって活動している Dojo もでてきました。そんな新たな取り組みを DojoCon で共有し、それぞれの Dojo が「つぎのSTEP」を踏み出せるきっかけになる DojoCon になればと考えています。「つぎのSTEP」を積み重ね、CoderDojo コミュニティが進化していき、子どもたちにとってよりよいプログラミングを学ぶ場になっていくことを願います。
+
+
+
+
詳細を見る
+
+
+
+
+
+
+
+
+
+
+
+
2018/08/25 (土) @ 東京
+
+
+
一昨年と昨年は大阪で開催され、イベント開催時 45 箇所だった日本の Dojo が今では約 150 箇所を超えるコミュニティに成長しました。 今回は「ひろがる plus one」をテーマに CoderDojo コミュニティに新しい風を巻き起こし、チャンピオン、メンター、ニンジャに関係なく、プラスワンの発見をすることのできる DojoCon Japan を目標にしています。
+
+
+
+
詳細を見る
+
+
+
+
+
+
+
+
+
+
+
+
2017/11/04 (土) @ 大阪
+
+
+
今回は、「つながる Dojo to Dojo 」をテーマに、全国の CoderDojo 関係者が集まることで交流や意見交換を行ったり、一生付き合える仲間づくりをすることで、日本の CoderDojo コミュニティの絆を強めることを目的に開催します。DojoCon Japan に参加してもらうことで、「CoderDojo」という同じ活動をしているのに、他の Dojo のことを余り知らないという課題を解決し、相互理解を深めることでそこから新しい何かが生まれることを期待しています。また、これまで CoderDojo を知らなかった方にもこの機会に知っていただき、地元の Dojo に参加したり、新しく Dojo を立ち上げるきっかけになってほしいと願っています。
+
+
+
+
詳細を見る
+
+
+
+
+
+
+
+
- {% endif %}
+
- {% assign event_year = event.date | split: '/' | first %}
-
-
+
+
+
-
{{ event.date }} @ {{ event.venue }}
+
2016/08/27 (土) @ 大阪
- {{ event.description | markdownify }}
+
初開催の DojoCon Japan。THE MORE DOJOS, THE MORE COOL CODERS をテーマに開催。
+
+ 国内での CoderDojo に携わるメンターの交流
+ プログラミング教育、コミュニティー運営、アートなどの各分野に関するエキサイティングなスピーカーを揃えたセッション
+ 新しいテクノロジーやサービスに触れるショーケース
+
+
を中心に構成され、これから日本各地で CoderDojo が増え、それぞれがいっそう楽しく、より地域に根ざし、そしてクリエイティブなものになっていくことで次世代のテクノロジスト育成の促進を目指します。
+
-
詳細を見る
+
詳細を見る
- {% if forloop.last or index == 2 %}
+
- {% endif %}
- {% endfor %}
+
+
- Copyright © {{ site.copyright }}
+ Copyright © DojoCon Japan & CoderDojo Japan
diff --git a/redirects.json b/redirects.json
new file mode 100644
index 0000000..f755ae1
--- /dev/null
+++ b/redirects.json
@@ -0,0 +1 @@
+{"/2016/07/29/go-global.html":"https://dojocon2016.coderdojo.jp/2016/07/29/go-global.html","/2016/09/04/coderdojo-japan-was-established.html":"https://dojocon2016.coderdojo.jp/2016/09/04/coderdojo-japan-was-established.html","/sponsor/":"https://dojocon2016.coderdojo.jp/2016/08/08/sponsors.html"}
\ No newline at end of file
diff --git a/redirects/2016-go-global.md b/redirects/2016-go-global.md
deleted file mode 100644
index 768c47b..0000000
--- a/redirects/2016-go-global.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-# https://dojocon2016.coderdojo.jp/assets/pdf/2016-report.pdf
-title: DojoCon Jpan 2016 Report
-permalink: /2016/07/29/go-global.html
-redirect_to: https://dojocon2016.coderdojo.jp/2016/07/29/go-global.html
----
diff --git a/redirects/2016-report.md b/redirects/2016-report.md
deleted file mode 100644
index 92432b6..0000000
--- a/redirects/2016-report.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-# https://dojocon2016.coderdojo.jp/assets/pdf/2016-report.pdf
-title: DojoCon Jpan 2016 Report
-permalink: /2016/09/04/coderdojo-japan-was-established.html
-redirect_to: https://dojocon2016.coderdojo.jp/2016/09/04/coderdojo-japan-was-established.html
----
diff --git a/redirects/2016-sponsor.md b/redirects/2016-sponsor.md
deleted file mode 100644
index 48e96aa..0000000
--- a/redirects/2016-sponsor.md
+++ /dev/null
@@ -1,6 +0,0 @@
----
-# https://dojocon2016.coderdojo.jp/assets/pdf/sponsor.pdf
-title: DojoCon Jpan 2016 Sponsor
-permalink: /sponsor/
-redirect_to: https://dojocon2016.coderdojo.jp/2016/08/08/sponsors.html
----
diff --git a/robots.txt b/robots.txt
new file mode 100644
index 0000000..db784da
--- /dev/null
+++ b/robots.txt
@@ -0,0 +1 @@
+Sitemap: https://dojocon.coderdojo.jp/sitemap.xml
diff --git a/site.webmanifest b/site.webmanifest
index fb8130c..c4aa964 100644
--- a/site.webmanifest
+++ b/site.webmanifest
@@ -1,9 +1,6 @@
----
----
-
{
- "name": "{{ site.title_short }}",
- "short_name": "{{ site.title_short }}",
+ "name": "DojoCon Japan",
+ "short_name": "DojoCon Japan",
"icons": [
{
"src": "/img/android-chrome-192x192.png",
diff --git a/sitemap.xml b/sitemap.xml
new file mode 100644
index 0000000..08c6283
--- /dev/null
+++ b/sitemap.xml
@@ -0,0 +1,6 @@
+
+
+
+https://dojocon.coderdojo.jp/
+
+
diff --git a/sponsor/index.html b/sponsor/index.html
new file mode 100644
index 0000000..531935d
--- /dev/null
+++ b/sponsor/index.html
@@ -0,0 +1,11 @@
+
+
+
+ Redirecting…
+
+
+
+
+ Redirecting…
+ Click here if you are not redirected.
+
pFad - Phonifier reborn
Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.
Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.
Alternative Proxies:
Alternative Proxy
pFad Proxy
pFad v3 Proxy
pFad v4 Proxy