From 51436d511c0ce94b2b8b90c52a9875b0fea67039 Mon Sep 17 00:00:00 2001 From: chvmvd <104971044+chvmvd@users.noreply.github.com> Date: Sat, 20 Jul 2024 12:59:58 +0900 Subject: [PATCH] =?UTF-8?q?=E3=82=A4=E3=83=B3=E3=83=A9=E3=82=A4=E3=83=B3?= =?UTF-8?q?=E3=82=B3=E3=83=BC=E3=83=89=E3=81=AE=E5=89=8D=E5=BE=8C=E3=81=AE?= =?UTF-8?q?=E5=8D=8A=E8=A7=92=E3=82=B9=E3=83=9A=E3=83=BC=E3=82=B9=E3=82=92?= =?UTF-8?q?=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/1-trial-session/01-get-started/index.mdx | 10 +- docs/1-trial-session/02-html/index.mdx | 36 +++--- docs/1-trial-session/03-javascript/index.mdx | 18 +-- docs/1-trial-session/04-expressions/index.mdx | 32 ++--- docs/1-trial-session/05-variables/index.mdx | 26 ++-- docs/1-trial-session/06-boolean/index.mdx | 50 ++++---- .../1-trial-session/07-if-statement/index.mdx | 18 +-- docs/1-trial-session/08-functions/index.mdx | 30 ++--- docs/1-trial-session/09-loop/index.mdx | 30 ++--- docs/1-trial-session/10-array/index.mdx | 34 ++--- docs/1-trial-session/11-object/index.mdx | 6 +- docs/1-trial-session/12-css/index.mdx | 70 +++++----- docs/1-trial-session/13-dom/index.mdx | 32 ++--- docs/1-trial-session/14-events/index.mdx | 22 ++-- docs/1-trial-session/15-project/index.mdx | 22 ++-- docs/2-browser-apps/01-inspector/index.mdx | 22 ++-- docs/2-browser-apps/02-reference/index.mdx | 14 +- docs/2-browser-apps/03-class/index.mdx | 70 +++++----- .../04-anonymous-function/index.mdx | 26 ++-- .../05-css-arrangement/index.mdx | 68 +++++----- docs/2-browser-apps/06-project/index.mdx | 22 ++-- docs/3-web-servers/01-wsl-setup/index.mdx | 22 ++-- .../3-web-servers/02-linux-commands/index.mdx | 28 ++-- docs/3-web-servers/03-node-js/index.mdx | 18 +-- docs/3-web-servers/04-module/index.mdx | 40 +++--- docs/3-web-servers/05-server/index.mdx | 120 +++++++++--------- docs/3-web-servers/06-form/index.mdx | 32 ++--- docs/3-web-servers/07-get-post/index.mdx | 24 ++-- docs/3-web-servers/08-database/index.mdx | 64 +++++----- docs/3-web-servers/09-cookie/index.mdx | 12 +- .../10-git-github-init/index.mdx | 24 ++-- docs/3-web-servers/11-git/index.mdx | 60 ++++----- docs/3-web-servers/12-github/index.mdx | 56 ++++---- .../13-deploy-on-render/index.mdx | 22 ++-- docs/4-advanced/01-fetch-api/index.mdx | 34 ++--- docs/4-advanced/02-bundler/index.mdx | 30 ++--- docs/4-advanced/03-typescript/index.mdx | 64 +++++----- docs/4-advanced/04-react/index.mdx | 116 ++++++++--------- src/components/Term/definitions.js | 4 +- src/components/Term/type-map.js | 4 +- 40 files changed, 716 insertions(+), 716 deletions(-) diff --git a/docs/1-trial-session/01-get-started/index.mdx b/docs/1-trial-session/01-get-started/index.mdx index e2d70e0d1..1b40615c7 100644 --- a/docs/1-trial-session/01-get-started/index.mdx +++ b/docs/1-trial-session/01-get-started/index.mdx @@ -43,9 +43,9 @@ Visual Studio Codeは、[公式サイト](https://code.visualstudio.com)から ## プロジェクトを格納するフォルダを作成する -これから皆さんはたくさんのプログラムを書いていくことになります。プログラムは他のファイルと扱い方がかなり異なるので、専用のフォルダを作っておきましょう。ホームフォルダ (macOS) /ユーザーフォルダ (Windows) の中に `projects` という名前のフォルダを作り、その中にプロジェクトごとのフォルダを作っていくと良いです。ホームフォルダ (macOS) /ユーザーフォルダ (Windows) の場所については次の動画をご確認ください。 +これから皆さんはたくさんのプログラムを書いていくことになります。プログラムは他のファイルと扱い方がかなり異なるので、専用のフォルダを作っておきましょう。ホームフォルダ (macOS) /ユーザーフォルダ (Windows) の中に`projects`という名前のフォルダを作り、その中にプロジェクトごとのフォルダを作っていくと良いです。ホームフォルダ (macOS) /ユーザーフォルダ (Windows) の場所については次の動画をご確認ください。 -次の例では、`hello-world` の名前でプロジェクト用のフォルダを作成しています。 +次の例では、`hello-world`の名前でプロジェクト用のフォルダを作成しています。 @@ -58,13 +58,13 @@ Visual Studio Codeは、[公式サイト](https://code.visualstudio.com)から :::info -これから作成するプログラムは、さきほど作成したホームフォルダ (macOS) /ユーザーフォルダ (Windows) の中の `projects` フォルダの中に保存するようにしてください。これは、ドキュメントフォルダなどのフォルダはクラウドストレージサービスによって自動的に同期されることがあり、Visual Studio Codeなどの開発ツールが期待通りに動作しなくなってしまうことがあるからです。 +これから作成するプログラムは、さきほど作成したホームフォルダ (macOS) /ユーザーフォルダ (Windows) の中の`projects`フォルダの中に保存するようにしてください。これは、ドキュメントフォルダなどのフォルダはクラウドストレージサービスによって自動的に同期されることがあり、Visual Studio Codeなどの開発ツールが期待通りに動作しなくなってしまうことがあるからです。 ::: ## Visual Studio Codeでプロジェクトフォルダを開く -`File` メニューから `Open Folder...` をクリックして、先ほど作成したフォルダをVS Codeで開きます。 +`File`メニューから`Open Folder...`をクリックして、先ほど作成したフォルダをVS Codeで開きます。 @@ -77,6 +77,6 @@ Visual Studio Codeは、[公式サイト](https://code.visualstudio.com)から :::info -最初にフォルダを開いたとき、`Do you trust the authors of the files in this folder?` と聞かれるのは、インターネットからダウンロードした悪意のあるフォルダをVS Codeで開いたとき、VS Codeによって勝手に実行されてしまうのを防ぐためです。自分で作成したフォルダの場合は問題ありません。 +最初にフォルダを開いたとき、`Do you trust the authors of the files in this folder?`と聞かれるのは、インターネットからダウンロードした悪意のあるフォルダをVS Codeで開いたとき、VS Codeによって勝手に実行されてしまうのを防ぐためです。自分で作成したフォルダの場合は問題ありません。 ::: diff --git a/docs/1-trial-session/02-html/index.mdx b/docs/1-trial-session/02-html/index.mdx index 706fa7a3e..c14808a99 100644 --- a/docs/1-trial-session/02-html/index.mdx +++ b/docs/1-trial-session/02-html/index.mdx @@ -13,7 +13,7 @@ Web開発に必ず用いられる言語があります。**HTML** ## HTMLを書き始める -VS Codeの画面左端には、ファイル一覧が表示されています。新しいファイルを作成して、`index.html` と名付けましょう。ファイルの中身を次のようにした後、保存します。保存にはショートカットキー (command + S (macOS) / Ctrl + S (Windows) ) を用いてください。 +VS Codeの画面左端には、ファイル一覧が表示されています。新しいファイルを作成して、`index.html`と名付けましょう。ファイルの中身を次のようにした後、保存します。保存にはショートカットキー (command + S (macOS) / Ctrl + S (Windows) ) を用いてください。 ```html title="index.html" @@ -32,15 +32,15 @@ VS Codeの画面左端には、ファイル一覧が表示されています。 ## ブラウザでHTMLファイルを開く -前頁で作成したフォルダを開き、`index.html` が作成されていることを確認しましょう。このファイルをダブルクリックして開きます。`Hello World!` (`World` の部分だけ太字) が表示されましたか? +前頁で作成したフォルダを開き、`index.html`が作成されていることを確認しましょう。このファイルをダブルクリックして開きます。`Hello World!` (`World`の部分だけ太字) が表示されましたか?