diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 0078391a..e22e3903 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -34,3 +34,11 @@ jobs: node_modules/.astro/assets restore-keys: ${{ runner.os }}-astro-build - run: bun run build + dirs-small: + name: All dirs must be small (<5MB) + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: cachix/install-nix-action@v31 + - run: nix run github:ut-code/internal-helpers#disallow-large-dir contents/articles/*/* + - run: nix run github:ut-code/internal-helpers#disallow-large-dir contents/members/* diff --git a/README.md b/README.md index 6dcd411b..790d8aaf 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,23 @@ - できないかつクロップが許容できない場合は、 `fit: contain` と背景色 (`bg_color:`) を指定してください。 - 画像サイズは 1MB 未満に抑えてください。 ffmpeg や ImageMagick を使い、解像度を下げたり、画質 (Quality) を下げたり、WebP (or AVIF) に変換するなどができます。 + - 参考 + - 例: + + - `mogrify -resize 800x -quality 80 -fromat webp *.png *.jpg *.jpeg` + - 見ての通り。 + - `ffmpeg -i ./input.png -vf 'scale=1920:-1' -crf 10 output.avif` + - -> 50~300kb 程度になります。AVIF の場合、多少 (数秒~1分程度) 時間がかかります。 + - `-vf scale={width}:{height}`: 画像の横幅。height が -1 のときは、横幅から計算する。 + - `-crf`: 画像の圧縮率。大きいほうが圧縮率が高い。 + + - HEIC は対応していないので、 ImageMagick で他のフォーマットに変換してください。 + - 例: `magick picture.HEIC picture.webp` + +- 各記事のファイルサイズの合計は5 MB までに抑えてください。 + - 理想は 1MB 未満です。 + - ファイルサイズの確認には、`ncdu` が使いやすいです。 ### プロジェクト diff --git a/contents/articles/2019/09-30_2019a-first-lecture/index.mdx b/contents/articles/2019/09-30_2019a-first-lecture/index.mdx index 7809a034..54c5e0fd 100644 --- a/contents/articles/2019/09-30_2019a-first-lecture/index.mdx +++ b/contents/articles/2019/09-30_2019a-first-lecture/index.mdx @@ -30,4 +30,4 @@ ut.code();では、水曜 6 限、土曜 2 限の時間で、全 8 回の学習 ## 参考: オープンスペース -![駒場キャンパスオープンスペース](./komaba-open-space.jpg) +![駒場キャンパスオープンスペース](./komaba-open-space.webp) diff --git a/contents/articles/2019/09-30_2019a-first-lecture/komaba-open-space.jpg b/contents/articles/2019/09-30_2019a-first-lecture/komaba-open-space.jpg deleted file mode 100644 index c4109196..00000000 Binary files a/contents/articles/2019/09-30_2019a-first-lecture/komaba-open-space.jpg and /dev/null differ diff --git a/contents/articles/2019/09-30_2019a-first-lecture/komaba-open-space.webp b/contents/articles/2019/09-30_2019a-first-lecture/komaba-open-space.webp new file mode 100644 index 00000000..241f0ec8 Binary files /dev/null and b/contents/articles/2019/09-30_2019a-first-lecture/komaba-open-space.webp differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/index.mdx b/contents/articles/2019/10-01_windows-home-to-education/index.mdx index 3c9021f2..3889f570 100644 --- a/contents/articles/2019/10-01_windows-home-to-education/index.mdx +++ b/contents/articles/2019/10-01_windows-home-to-education/index.mdx @@ -11,42 +11,42 @@ image: +/images/no-image.svg 提供されるライセンスは kivuto 社の管理の下で提供されているようです。アップグレード専用のライセンスのため、仮想環境等にクリーンインストールすることはできません。 -![](./windows-01.png) +![](./windows-01.webp) まずは[こちら](https://utokyo.onthehub.com/)にアクセスして、Windows 10 を選択しましょう。 -![](./windows-02.png) +![](./windows-02.webp) 「カートに追加」と書いてあるので有料のように見えますが、もちろん無料です。 -![](./windows-03.png) +![](./windows-03.webp) 東京大学の学生であることを証明するため、いつもの UTokyo Account でログインします。 -![](./windows-05.png) +![](./windows-05.webp) こちらも怖いですが同じく「ご注文手続き」をクリックです。 -![](./windows-07.png) +![](./windows-07.webp) 連絡先を入力します。 -![](./windows-08.png) +![](./windows-08.webp) おめでとうございます!Windows 10 Education のプロダクトキーが発行されました! -![](./windows-09.png) +![](./windows-09.webp) スタートメニューから「ライセンス認証」と検索し、「ライセンス認証の設定」をクリックします。 -![](./windows-10.png) +![](./windows-10.webp) 「プロダクト キーの変更」をクリックします。 -![](./windows-11.png) +![](./windows-11.webp) 先ほど発行されたプロダクトキーを入力しましょう。 -![](./windows-12.png) +![](./windows-12.webp) 作業を全て終了し、「開始」ボタンを押せば完了です。自動的に再起動し、30 分程度でアップグレードが完了するはずです。 diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-01.png b/contents/articles/2019/10-01_windows-home-to-education/windows-01.png deleted file mode 100644 index eab5d5b1..00000000 Binary files a/contents/articles/2019/10-01_windows-home-to-education/windows-01.png and /dev/null differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-01.webp b/contents/articles/2019/10-01_windows-home-to-education/windows-01.webp new file mode 100644 index 00000000..c8bf925c Binary files /dev/null and b/contents/articles/2019/10-01_windows-home-to-education/windows-01.webp differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-02.png b/contents/articles/2019/10-01_windows-home-to-education/windows-02.png deleted file mode 100644 index fc89cbd3..00000000 Binary files a/contents/articles/2019/10-01_windows-home-to-education/windows-02.png and /dev/null differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-02.webp b/contents/articles/2019/10-01_windows-home-to-education/windows-02.webp new file mode 100644 index 00000000..b2b9af20 Binary files /dev/null and b/contents/articles/2019/10-01_windows-home-to-education/windows-02.webp differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-03.png b/contents/articles/2019/10-01_windows-home-to-education/windows-03.png deleted file mode 100644 index d33e7095..00000000 Binary files a/contents/articles/2019/10-01_windows-home-to-education/windows-03.png and /dev/null differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-03.webp b/contents/articles/2019/10-01_windows-home-to-education/windows-03.webp new file mode 100644 index 00000000..01774c35 Binary files /dev/null and b/contents/articles/2019/10-01_windows-home-to-education/windows-03.webp differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-05.png b/contents/articles/2019/10-01_windows-home-to-education/windows-05.png deleted file mode 100644 index 77d13a23..00000000 Binary files a/contents/articles/2019/10-01_windows-home-to-education/windows-05.png and /dev/null differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-05.webp b/contents/articles/2019/10-01_windows-home-to-education/windows-05.webp new file mode 100644 index 00000000..55414102 Binary files /dev/null and b/contents/articles/2019/10-01_windows-home-to-education/windows-05.webp differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-07.png b/contents/articles/2019/10-01_windows-home-to-education/windows-07.png deleted file mode 100644 index 6ee95d96..00000000 Binary files a/contents/articles/2019/10-01_windows-home-to-education/windows-07.png and /dev/null differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-07.webp b/contents/articles/2019/10-01_windows-home-to-education/windows-07.webp new file mode 100644 index 00000000..0a1bbb19 Binary files /dev/null and b/contents/articles/2019/10-01_windows-home-to-education/windows-07.webp differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-08.png b/contents/articles/2019/10-01_windows-home-to-education/windows-08.png deleted file mode 100644 index 39a77c6d..00000000 Binary files a/contents/articles/2019/10-01_windows-home-to-education/windows-08.png and /dev/null differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-08.webp b/contents/articles/2019/10-01_windows-home-to-education/windows-08.webp new file mode 100644 index 00000000..4b738283 Binary files /dev/null and b/contents/articles/2019/10-01_windows-home-to-education/windows-08.webp differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-09.png b/contents/articles/2019/10-01_windows-home-to-education/windows-09.png deleted file mode 100644 index 2ec04b42..00000000 Binary files a/contents/articles/2019/10-01_windows-home-to-education/windows-09.png and /dev/null differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-09.webp b/contents/articles/2019/10-01_windows-home-to-education/windows-09.webp new file mode 100644 index 00000000..49c2cf47 Binary files /dev/null and b/contents/articles/2019/10-01_windows-home-to-education/windows-09.webp differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-10.png b/contents/articles/2019/10-01_windows-home-to-education/windows-10.png deleted file mode 100644 index edafb022..00000000 Binary files a/contents/articles/2019/10-01_windows-home-to-education/windows-10.png and /dev/null differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-10.webp b/contents/articles/2019/10-01_windows-home-to-education/windows-10.webp new file mode 100644 index 00000000..9206530d Binary files /dev/null and b/contents/articles/2019/10-01_windows-home-to-education/windows-10.webp differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-11.png b/contents/articles/2019/10-01_windows-home-to-education/windows-11.png deleted file mode 100644 index 8ff30d2e..00000000 Binary files a/contents/articles/2019/10-01_windows-home-to-education/windows-11.png and /dev/null differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-11.webp b/contents/articles/2019/10-01_windows-home-to-education/windows-11.webp new file mode 100644 index 00000000..42dce405 Binary files /dev/null and b/contents/articles/2019/10-01_windows-home-to-education/windows-11.webp differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-12.png b/contents/articles/2019/10-01_windows-home-to-education/windows-12.png deleted file mode 100644 index e6cd4532..00000000 Binary files a/contents/articles/2019/10-01_windows-home-to-education/windows-12.png and /dev/null differ diff --git a/contents/articles/2019/10-01_windows-home-to-education/windows-12.webp b/contents/articles/2019/10-01_windows-home-to-education/windows-12.webp new file mode 100644 index 00000000..cc76d2da Binary files /dev/null and b/contents/articles/2019/10-01_windows-home-to-education/windows-12.webp differ diff --git a/contents/articles/2019/10-03_2019a-first-lecture-record/analogy.png b/contents/articles/2019/10-03_2019a-first-lecture-record/analogy.png deleted file mode 100644 index 9103f4cd..00000000 Binary files a/contents/articles/2019/10-03_2019a-first-lecture-record/analogy.png and /dev/null differ diff --git a/contents/articles/2019/10-03_2019a-first-lecture-record/analogy.webp b/contents/articles/2019/10-03_2019a-first-lecture-record/analogy.webp new file mode 100644 index 00000000..e43d6a25 Binary files /dev/null and b/contents/articles/2019/10-03_2019a-first-lecture-record/analogy.webp differ diff --git a/contents/articles/2019/10-03_2019a-first-lecture-record/autocomplete.png b/contents/articles/2019/10-03_2019a-first-lecture-record/autocomplete.png deleted file mode 100644 index 41d9ff45..00000000 Binary files a/contents/articles/2019/10-03_2019a-first-lecture-record/autocomplete.png and /dev/null differ diff --git a/contents/articles/2019/10-03_2019a-first-lecture-record/autocomplete.webp b/contents/articles/2019/10-03_2019a-first-lecture-record/autocomplete.webp new file mode 100644 index 00000000..d0cb834e Binary files /dev/null and b/contents/articles/2019/10-03_2019a-first-lecture-record/autocomplete.webp differ diff --git a/contents/articles/2019/10-03_2019a-first-lecture-record/format.png b/contents/articles/2019/10-03_2019a-first-lecture-record/format.png deleted file mode 100644 index ef32515a..00000000 Binary files a/contents/articles/2019/10-03_2019a-first-lecture-record/format.png and /dev/null differ diff --git a/contents/articles/2019/10-03_2019a-first-lecture-record/format.webp b/contents/articles/2019/10-03_2019a-first-lecture-record/format.webp new file mode 100644 index 00000000..0cf8216f Binary files /dev/null and b/contents/articles/2019/10-03_2019a-first-lecture-record/format.webp differ diff --git a/contents/articles/2019/10-03_2019a-first-lecture-record/index.mdx b/contents/articles/2019/10-03_2019a-first-lecture-record/index.mdx index 83280122..eeb68b3d 100644 --- a/contents/articles/2019/10-03_2019a-first-lecture-record/index.mdx +++ b/contents/articles/2019/10-03_2019a-first-lecture-record/index.mdx @@ -60,7 +60,7 @@ Console.WriteLine(100 * 15); 最近のエディタ(プログラムを編集するためのソフトウェア)では、プログラマの支援のための豊富な機能が搭載されています。その中でも最も使用頻度が高いのがこのエディタの補完と呼ばれる機能で、曖昧な知識をコンピューターが自動的に補ってくれます。 -![補完が表示されている様子](./autocomplete.png) +![補完が表示されている様子](./autocomplete.webp) C#は比較的「厳しい」言語なので、コンピューターにより容易にプログラムが解析できます。したがってエディタ上で表示される候補は(今回の環境では)「完璧」な候補であり、補完に従って書いている限りエラーになることはありませんし、補完に現れない書き方をしたらエラーとなります。 @@ -211,7 +211,7 @@ Console.WriteLine(i); ### フォーマッタにかけてみる -![フォーマッターの起動の様子](./format.png) +![フォーマッターの起動の様子](./format.webp) \[Command / Ctrl\] + \[Shift\] + \[P\]に続いて、「Format Document」を選択しましょう。コードが正しければ、変化はほとんどないはずです。自分が書いたコードと見比べて、どのように直すべきなのか考えましょう。 @@ -288,7 +288,7 @@ double Factorial(int number) ### 実世界に例えてみよう -![](./analogy.png) +![](./analogy.webp) 「犬」という現実世界の物体を考えてみましょう。犬を特徴できる要素として、「名前」「年齢」「体調」といった値があるのに対し、「鳴く」「吠える」「走る」といった動作も存在しています。これらをまとめて「犬」を抽象化した「定義」を作成します。 diff --git a/contents/articles/2019/10-03_2019a-first-lecture-report/image.jpg b/contents/articles/2019/10-03_2019a-first-lecture-report/image.jpg deleted file mode 100644 index c99fd108..00000000 Binary files a/contents/articles/2019/10-03_2019a-first-lecture-report/image.jpg and /dev/null differ diff --git a/contents/articles/2019/10-03_2019a-first-lecture-report/image.webp b/contents/articles/2019/10-03_2019a-first-lecture-report/image.webp new file mode 100644 index 00000000..37454aaa Binary files /dev/null and b/contents/articles/2019/10-03_2019a-first-lecture-report/image.webp differ diff --git a/contents/articles/2019/10-03_2019a-first-lecture-report/index.mdx b/contents/articles/2019/10-03_2019a-first-lecture-report/index.mdx index 511ec18b..8d689d7c 100644 --- a/contents/articles/2019/10-03_2019a-first-lecture-report/index.mdx +++ b/contents/articles/2019/10-03_2019a-first-lecture-report/index.mdx @@ -3,12 +3,12 @@ title: "「エンジニアになろう」講習会初回講義を実施しまし date: 2019-10-03T12:01:25+09:00 categories: - "info" -image: ./image.jpg +image: ./image.webp author: tnagaya --- 10/3 (水) 6 限、本セメスターの最初の活動として、[「エンジニアになろう」講習会](https://utcode.net/2019/info/2019a-schedule/)第一回を実施しました。 -![](./people.jpg) +![](./people.webp) 6限での実施だったのにもかかわらず、たくさんの方にご参加いただきました!本当にありがとうございました。[今回の講座と同内容の講座](https://utcode.net/2019/info/2019a-first-lecture/)を今週の土曜日(10/5)に実施します!事前申込・事前準備等一切不要なので、ぜひお気軽にお越しください! diff --git a/contents/articles/2019/10-03_2019a-first-lecture-report/people.jpg b/contents/articles/2019/10-03_2019a-first-lecture-report/people.jpg deleted file mode 100644 index 63bb9f0f..00000000 Binary files a/contents/articles/2019/10-03_2019a-first-lecture-report/people.jpg and /dev/null differ diff --git a/contents/articles/2019/10-03_2019a-first-lecture-report/people.webp b/contents/articles/2019/10-03_2019a-first-lecture-report/people.webp new file mode 100644 index 00000000..d4148a63 Binary files /dev/null and b/contents/articles/2019/10-03_2019a-first-lecture-report/people.webp differ diff --git a/contents/articles/2019/10-05_2019a-first-saturday-lecture/image.jpg b/contents/articles/2019/10-05_2019a-first-saturday-lecture/image.jpg deleted file mode 100644 index 18e936b4..00000000 Binary files a/contents/articles/2019/10-05_2019a-first-saturday-lecture/image.jpg and /dev/null differ diff --git a/contents/articles/2019/10-05_2019a-first-saturday-lecture/image.webp b/contents/articles/2019/10-05_2019a-first-saturday-lecture/image.webp new file mode 100644 index 00000000..3b0704e8 Binary files /dev/null and b/contents/articles/2019/10-05_2019a-first-saturday-lecture/image.webp differ diff --git a/contents/articles/2019/10-05_2019a-first-saturday-lecture/index.mdx b/contents/articles/2019/10-05_2019a-first-saturday-lecture/index.mdx index c39508bd..25f6b686 100644 --- a/contents/articles/2019/10-05_2019a-first-saturday-lecture/index.mdx +++ b/contents/articles/2019/10-05_2019a-first-saturday-lecture/index.mdx @@ -3,7 +3,7 @@ title: "第一回「エンジニアになろう」講習会土曜日の部を実 date: 2019-10-06T08:59:05+09:00 categories: - "info" -image: ./image.jpg +image: ./image.webp author: tnagaya --- diff --git a/contents/articles/2019/11-03_utcode-lectures-01/command-palette.png b/contents/articles/2019/11-03_utcode-lectures-01/command-palette.png deleted file mode 100644 index 11cd8386..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-01/command-palette.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-01/command-palette.webp b/contents/articles/2019/11-03_utcode-lectures-01/command-palette.webp new file mode 100644 index 00000000..ab29304d Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-01/command-palette.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-01/connection-string.png b/contents/articles/2019/11-03_utcode-lectures-01/connection-string.png deleted file mode 100644 index 8a1035c6..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-01/connection-string.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-01/connection-string.webp b/contents/articles/2019/11-03_utcode-lectures-01/connection-string.webp new file mode 100644 index 00000000..1dfd9d70 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-01/connection-string.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-01/index.mdx b/contents/articles/2019/11-03_utcode-lectures-01/index.mdx index 53625ff1..76c4a969 100644 --- a/contents/articles/2019/11-03_utcode-lectures-01/index.mdx +++ b/contents/articles/2019/11-03_utcode-lectures-01/index.mdx @@ -12,11 +12,11 @@ image: +/images/no-image.svg [Visual Studio Code](https://code.visualstudio.com/)(以下 VSCode)は、Microsoft のエディタです。様々なプログラミング言語を軽快に扱えることで有名な、今最も人気のソフトウェアです。 -![VSCodeの公式サイト](./vscode-official.png) +![VSCodeの公式サイト](./vscode-official.webp) インストールが終わったら、「Remote: SSH」プラグインを追加しておきましょう。 -![Remote - SSHプラグイン](./remote-ssh.png) +![Remote - SSHプラグイン](./remote-ssh.webp) ## PC とサーバー・VPS の利用 @@ -30,7 +30,7 @@ image: +/images/no-image.svg [こちら](https://www.vultr.com/?ref=8284679-4F)から登録すると、ut.code();の公式サイトを運営するためのアカウントからの紹介としてカウントされるため、(広告のようで心苦しいのですが)$10 の入金で一ヶ月間使える$50 分のクーポンがもらえます。 -[![Vultr公式サイト](./vultr-home.png)](https://www.vultr.com/?ref=8284679-4F) +[![Vultr公式サイト](./vultr-home.webp)](https://www.vultr.com/?ref=8284679-4F) 日本で使える VPS サービスとして、他にも ConoHa というサービスもあります。どちらを使っても大して変わりませんが萌えキャラが好きな方は ConoHa を使いましょう(詳しくはググりましょう)。 @@ -38,11 +38,11 @@ image: +/images/no-image.svg 以下の内容は Vultr に特有の内容ですが、基本的にどの VPS を利用しても同じです。 -![Vultrの管理画面トップページ](./vultr-admin.png) +![Vultrの管理画面トップページ](./vultr-admin.webp) Vultr の管理画面はシンプルで大変使いやすいデザインになっています。新しいサーバーを立ち上げる場合は、「+」ボタンを押してください。 -![Vultrサーバーの設定画面](./launch-instance.png) +![Vultrサーバーの設定画面](./launch-instance.webp) 今回は上の画像のように設定してみましょう。OS の種類は Ubuntu 18.04 としています。実は Linux には様々な種類があり、Ubuntu はその中でも世界中で最も有名なものです。トラブルになった時にも情報が得られやすいので、ut.code();では基本的に Ubuntu を利用していきます。 @@ -52,11 +52,11 @@ Vultr の管理画面はシンプルで大変使いやすいデザインにな ## サーバーと IP アドレス -![IPアドレス](./ip-address.png) +![IPアドレス](./ip-address.webp) リストに戻ると、4 つの数字がドット記号で区切られている部分があります。これを**IP アドレス**と呼びます。IP アドレスとは、一般的なネットワークに接続されているコンピューターを区別するための番号です。ネットワークに接続する全ての端末に、重複しないように割り当てられます。今皆さんが目の前にしている PC やスマホにも、もちろん割り当てられていますよ! -![サーバーの詳細情報](./server-info.png) +![サーバーの詳細情報](./server-info.webp) サーバーの詳細情報を表示させると、ログイン用の ID やパスワードも表示できます。 @@ -66,11 +66,11 @@ Vultr の管理画面はシンプルで大変使いやすいデザインにな VSCode を起動して、\[Cmd / Ctrl\] + \[Shift\] + \[P\]を押してください。このショートカットキーは、現在利用可能なすべての機能を一覧表示(コマンドパレット)し、素早くアクセスするためのショートカットキーです。VSCode は、このショートカットキーさえ覚えてしまえばどこに何の機能があるのかを全く覚えなくても使用できます。面倒くさがり屋のためのショートカットキーですね笑 -![コマンドパレット](./command-palette.png) +![コマンドパレット](./command-palette.webp) コマンドパレットから、「Remote-SSH: Connect Current Window to Host...」を実行します。実際には適当に入力して絞り込みをかけると素早くアクセスできます。 -![ユーザー名とホスト名の指定](./connection-string.png) +![ユーザー名とホスト名の指定](./connection-string.webp) 先ほど確認したユーザー名と IP アドレスを、「ユーザー名@IP アドレス」の形式で指定します。続いてパスワードの入力も求められるので、同じように入力しましょう。途中で「Continue / Cancel」の選択を求められた場合は「Continue」を押して続行してください。 diff --git a/contents/articles/2019/11-03_utcode-lectures-01/ip-address.png b/contents/articles/2019/11-03_utcode-lectures-01/ip-address.png deleted file mode 100644 index 243c167e..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-01/ip-address.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-01/ip-address.webp b/contents/articles/2019/11-03_utcode-lectures-01/ip-address.webp new file mode 100644 index 00000000..1f5e809d Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-01/ip-address.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-01/launch-instance.png b/contents/articles/2019/11-03_utcode-lectures-01/launch-instance.png deleted file mode 100644 index b258b806..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-01/launch-instance.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-01/launch-instance.webp b/contents/articles/2019/11-03_utcode-lectures-01/launch-instance.webp new file mode 100644 index 00000000..f8bf4e81 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-01/launch-instance.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-01/remote-ssh.png b/contents/articles/2019/11-03_utcode-lectures-01/remote-ssh.png deleted file mode 100644 index 004b4da4..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-01/remote-ssh.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-01/remote-ssh.webp b/contents/articles/2019/11-03_utcode-lectures-01/remote-ssh.webp new file mode 100644 index 00000000..e7f524a8 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-01/remote-ssh.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-01/server-info.png b/contents/articles/2019/11-03_utcode-lectures-01/server-info.png deleted file mode 100644 index 185b0a06..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-01/server-info.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-01/server-info.webp b/contents/articles/2019/11-03_utcode-lectures-01/server-info.webp new file mode 100644 index 00000000..845c089c Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-01/server-info.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-01/vscode-official.png b/contents/articles/2019/11-03_utcode-lectures-01/vscode-official.png deleted file mode 100644 index 3098c61a..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-01/vscode-official.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-01/vscode-official.webp b/contents/articles/2019/11-03_utcode-lectures-01/vscode-official.webp new file mode 100644 index 00000000..4570ec94 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-01/vscode-official.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-01/vultr-admin.png b/contents/articles/2019/11-03_utcode-lectures-01/vultr-admin.png deleted file mode 100644 index 7b422b87..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-01/vultr-admin.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-01/vultr-admin.webp b/contents/articles/2019/11-03_utcode-lectures-01/vultr-admin.webp new file mode 100644 index 00000000..4af516f4 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-01/vultr-admin.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-01/vultr-home.png b/contents/articles/2019/11-03_utcode-lectures-01/vultr-home.png deleted file mode 100644 index 29b5677c..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-01/vultr-home.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-01/vultr-home.webp b/contents/articles/2019/11-03_utcode-lectures-01/vultr-home.webp new file mode 100644 index 00000000..f297d263 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-01/vultr-home.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-02/directory-structure.png b/contents/articles/2019/11-03_utcode-lectures-02/directory-structure.png deleted file mode 100644 index 1846f3c0..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-02/directory-structure.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-02/directory-structure.webp b/contents/articles/2019/11-03_utcode-lectures-02/directory-structure.webp new file mode 100644 index 00000000..1518da66 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-02/directory-structure.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-02/index.mdx b/contents/articles/2019/11-03_utcode-lectures-02/index.mdx index 6d8d71fc..50364e7d 100644 --- a/contents/articles/2019/11-03_utcode-lectures-02/index.mdx +++ b/contents/articles/2019/11-03_utcode-lectures-02/index.mdx @@ -10,7 +10,7 @@ image: +/images/no-image.svg 「**ターミナル**」と呼ばれるソフトウェアがあります。これは、PC をマウスやタッチパネルではなく、文字によって操作するためのソフトウェアです。 -![macOSのターミナル](./terminal.png) +![macOSのターミナル](./terminal.webp) サーバーは、ネットサーフィンをしたり、表計算をしたり、ゲームをしたりするためのコンピューターではありません。したがって、サーバーに「画面」に相当するものはないのが普通です。使わなくなった PC をサーバーにする場合はあるんですけどね。したがって、サーバーを操作するためには、このように文字ベースのコマンドを使用する必要が出てきます。 @@ -18,7 +18,7 @@ image: +/images/no-image.svg ## VSCode 統合ターミナルの起動 -![統合ターミナルの起動](./integrated-terminal.png) +![統合ターミナルの起動](./integrated-terminal.webp) 統合ターミナルの起動 @@ -26,7 +26,7 @@ image: +/images/no-image.svg ## ファイルシステムとユーザー -![ターミナルの見方](./prompt.png) +![ターミナルの見方](./prompt.webp) パソコンでは、様々なデータを「ファイル」や「フォルダ」という単位で分けて管理しますよね。コマンドを使ってファイルシステムを操作するとき、普段皆さんが目にしている「フォルダ」に相当するものは「**ディレクトリ**」という名前で呼ばれます。 @@ -36,11 +36,11 @@ Linux において、ディレクトリは、「**ルートディレクトリ** Linux には、最初から存在している「**root**」と呼ばれる特殊なユーザーがあります。root ユーザーは、コンピューター内の全てのファイルやディレクトリにアクセスできる権限を持っています。Ubuntu では、root ユーザーのホームディレクトリは/root にあります。 -![ディレクトリの木構造](./directory-structure.png) +![ディレクトリの木構造](./directory-structure.webp) ## 相対パスと絶対パス -現在開いているディレクトリを「**カレントディレクトリ**」と呼びます。すべてのファイルやディレクトリは、ルートディレクトリを基準とした「**絶対パス**」で表される他、カレントディレクトリからの「**相対パス**」で表すことができます。例えば、カレントディレクトリが「/home/utcode」のとき、「/home/utcode/pictures/xxx.jpg」は「pictures/xxx.jpg」と表されます。 +現在開いているディレクトリを「**カレントディレクトリ**」と呼びます。すべてのファイルやディレクトリは、ルートディレクトリを基準とした「**絶対パス**」で表される他、カレントディレクトリからの「**相対パス**」で表すことができます。例えば、カレントディレクトリが「/home/utcode」のとき、「/home/utcode/pictures/xxx.webp」は「pictures/xxx.webp」と表されます。 パスを表現するとき、他にも様々な記号が利用できます。 @@ -56,7 +56,7 @@ Linux には、最初から存在している「**root**」と呼ばれる特殊 ## コマンドの入力方法 -![コマンドを打ってみた様子](./run-command.png) +![コマンドを打ってみた様子](./run-command.webp) コマンドはスペース区切りで入力し、最初がコマンド名、それ以降をそのコマンドの「**引数**」と呼びます。コマンド名や引数にスペース文字が含まれる場合は、値全体を「""(ダブルクォーテーション)」で囲むことでスペースが区切り文字として認識されることを防ぐことができます。以下にコマンドの一例を示します。使い方はググってください笑 @@ -94,4 +94,4 @@ Linux には、最初から存在している「**root**」と呼ばれる特殊 - コマンドのみを使用して、「/root」に以下に相当するディレクトリ構造を作成してください。 -![課題: コマンドを使ってみる](./sample-structure.png) +![課題: コマンドを使ってみる](./sample-structure.webp) diff --git a/contents/articles/2019/11-03_utcode-lectures-02/integrated-terminal.png b/contents/articles/2019/11-03_utcode-lectures-02/integrated-terminal.png deleted file mode 100644 index 88de9876..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-02/integrated-terminal.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-02/integrated-terminal.webp b/contents/articles/2019/11-03_utcode-lectures-02/integrated-terminal.webp new file mode 100644 index 00000000..24f664e2 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-02/integrated-terminal.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-02/prompt.png b/contents/articles/2019/11-03_utcode-lectures-02/prompt.png deleted file mode 100644 index 83710a55..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-02/prompt.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-02/prompt.webp b/contents/articles/2019/11-03_utcode-lectures-02/prompt.webp new file mode 100644 index 00000000..5b553972 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-02/prompt.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-02/run-command.png b/contents/articles/2019/11-03_utcode-lectures-02/run-command.png deleted file mode 100644 index db52bcad..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-02/run-command.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-02/run-command.webp b/contents/articles/2019/11-03_utcode-lectures-02/run-command.webp new file mode 100644 index 00000000..78601723 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-02/run-command.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-02/sample-structure.png b/contents/articles/2019/11-03_utcode-lectures-02/sample-structure.png deleted file mode 100644 index 6de184e7..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-02/sample-structure.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-02/sample-structure.webp b/contents/articles/2019/11-03_utcode-lectures-02/sample-structure.webp new file mode 100644 index 00000000..63a8adf1 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-02/sample-structure.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-02/terminal.png b/contents/articles/2019/11-03_utcode-lectures-02/terminal.png deleted file mode 100644 index 7ba9e67f..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-02/terminal.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-02/terminal.webp b/contents/articles/2019/11-03_utcode-lectures-02/terminal.webp new file mode 100644 index 00000000..4204fe3c Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-02/terminal.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/check-ip.png b/contents/articles/2019/11-03_utcode-lectures-03/check-ip.png deleted file mode 100644 index cb7ff031..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-03/check-ip.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/check-ip.webp b/contents/articles/2019/11-03_utcode-lectures-03/check-ip.webp new file mode 100644 index 00000000..b5eb54d4 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-03/check-ip.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/create-file.png b/contents/articles/2019/11-03_utcode-lectures-03/create-file.png deleted file mode 100644 index f24ee45b..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-03/create-file.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/create-file.webp b/contents/articles/2019/11-03_utcode-lectures-03/create-file.webp new file mode 100644 index 00000000..e441c0fc Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-03/create-file.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/hello-world.png b/contents/articles/2019/11-03_utcode-lectures-03/hello-world.png deleted file mode 100644 index 6be26bb7..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-03/hello-world.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/hello-world.webp b/contents/articles/2019/11-03_utcode-lectures-03/hello-world.webp new file mode 100644 index 00000000..9e006cce Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-03/hello-world.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/index-html.png b/contents/articles/2019/11-03_utcode-lectures-03/index-html.png deleted file mode 100644 index 9d7d39ad..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-03/index-html.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/index-html.webp b/contents/articles/2019/11-03_utcode-lectures-03/index-html.webp new file mode 100644 index 00000000..a965542a Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-03/index-html.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/index.mdx b/contents/articles/2019/11-03_utcode-lectures-03/index.mdx index 8d53c3ef..5d214f07 100644 --- a/contents/articles/2019/11-03_utcode-lectures-03/index.mdx +++ b/contents/articles/2019/11-03_utcode-lectures-03/index.mdx @@ -18,7 +18,7 @@ curl -fsSL https://raw.githubusercontent.com/chelproc/utcode-lectures-setup/mast 今までは VSCode のターミナルの部分だけを使ってきましたが、ここからはメインの機能を使っていきます。VSCode は、単純なエディタとして一つのファイルを開いて編集することもできますが、それ以上に、**あるディレクトリを作業ディレクトリとして決定し、その下のファイルを操作する**という使い方をするときに、その真価を発揮します。 -![VSCodeでディレクトリを開く](./open-folder.png) +![VSCodeでディレクトリを開く](./open-folder.webp) VSCode でディレクトリを開く @@ -32,11 +32,11 @@ VSCode でディレクトリを開く ## 最初のファイルを作成する -![新しいファイルを作成する](./create-file.png) +![新しいファイルを作成する](./create-file.webp) ディレクトリを開いたら、最初のファイルを作成しましょう。ブラウザが読み取ることのできるファイルは**HTML 形式**です。「index.html」という名前でファイルを作成してみましょう。 -![index.htmlの中身を書き換える](./index-html.png) +![index.htmlの中身を書き換える](./index-html.webp) 編集が終わったらファイルを保存します。画面の「index.html」と書いてある部分の右側に白い丸が付いていますね。これはファイルが未保存である証です。保存を完了すれば消えてくれます。ファイルの保存にはショートカットキー\[Cmd / Ctrl\] + \[S\]が便利です。 @@ -44,7 +44,7 @@ VSCode でディレクトリを開く おめでとうございます!これであなたは最初の Web サイトを作成しました!それでは早速ブラウザからアクセスできるかどうか試してみましょう。 -![IPアドレスの確認](./check-ip.png) +![IPアドレスの確認](./check-ip.webp) インターネットを通して Web サイトにアクセスするためには、サーバーの場所を知る必要がありますね!サーバーの住所に相当する番号が IP アドレスなのでした。IP アドレスを使用すれば、サーバーの場所を直接ブラウザに伝えることができます。 @@ -54,7 +54,7 @@ http://IPアドレス/index.html にアクセスしてください。 -![IPアドレスを使用してブラウザからWebサイトを確認する](./hello-world.png) +![IPアドレスを使用してブラウザからWebサイトを確認する](./hello-world.webp) 思い通りに表示されましたか? @@ -66,7 +66,7 @@ http://IPアドレス/index.html ウェブサーバーの挙動を理解するにあたり、まずはウェブサイトにアクセスするための URL がどのような構成になっているのかを考えてみましょう。 -![URLの構造](./url-structure.png) +![URLの構造](./url-structure.webp) 「https://utcode.net:443/this/is/an/example」を、「①https」、「②utcode.net」、「③443」、「④/this/is/an/example」という4つの部分に分けます。各部分が何を意味しているのかを見ていきましょう。 @@ -74,13 +74,13 @@ http://IPアドレス/index.html いきなり ② からかよ、という感じですが、クライアントがサーバーにリクエストを送信する際、まず最初に使用されるのが**ドメイン**です。ドメインは、インターネット上でサーバーを区別するための識別名で、IP アドレスに変換されます(**名前解決**)。nslookup コマンドを使用することで、ドメインがどの IP アドレスに名前解決されるかを知ることができます。 -![nslookupコマンドでドメインの名前解決](./nslookup.png) +![nslookupコマンドでドメインの名前解決](./nslookup.webp) ### ③ ポート番号 一台の(物理)サーバーで稼働している(ソフトウェア)サーバーが一種類とは限りません。どのソフトウェアの通信なのかを区別するため、外部からの接続を待ち受けするソフトウェアは、0 ~ 2^16 - 1 (65535)の整数で表される**ポート番号**を指定する必要があります。 -![サーバーとポート番号](./port.png) +![サーバーとポート番号](./port.webp) サーバーの種類によって使われるポート番号は大体決まっています。Web サーバーの場合は、80 番または 443 番が使用されるのが普通です。後述するプロトコルが**http の場合は 80 番、https の場合は 443 番**のとき、URL におけるポート番号は省略可能になります。一般的な URL にポート番号が存在していないのはこのためです。 @@ -133,7 +133,7 @@ Web サーバーは、クライアントからのリクエストを受け、**UR サーバー上のファイルを変更した場合は、ブラウザ上で更新ボタンをクリックします。 -![更新ボタンをクリック](./reload.png) +![更新ボタンをクリック](./reload.webp) 更新ボタンをクリック @@ -165,10 +165,10 @@ html タグは数多く存在しています。初めのうちは使うたびに - 「サーバー」「リクエスト」「レスポンス」「ドメイン」「ポート番号」「プロトコル」とは何でしょうか。 - Web サーバーの動作について、「ドキュメントルート」という単語を用いて説明してください。 - https://utcode.net/にアクセスする際のポート番号は何でしょうか。 -- utcode.net のドキュメントルートが「/home/utcode/public」であるとします。Web サーバーは、「https://utcode.net/images/secret.jpg」へのリクエストを受けた際、どのファイルを読み込もうとするでしょうか。絶対パスで答えてください。 +- utcode.net のドキュメントルートが「/home/utcode/public」であるとします。Web サーバーは、「https://utcode.net/images/secret.webp」へのリクエストを受けた際、どのファイルを読み込もうとするでしょうか。絶対パスで答えてください。 ## 課題 HTML を用いて、以下のフォームを作成してください。なお、入力欄は表を用いて整列されています。また、下部の注意書きは箇条書きを表現するための要素が使用されています。 -![新規登録フォーム(HTMLの練習)](./sample-form.png) +![新規登録フォーム(HTMLの練習)](./sample-form.webp) diff --git a/contents/articles/2019/11-03_utcode-lectures-03/nslookup.png b/contents/articles/2019/11-03_utcode-lectures-03/nslookup.png deleted file mode 100644 index 4ae83373..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-03/nslookup.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/nslookup.webp b/contents/articles/2019/11-03_utcode-lectures-03/nslookup.webp new file mode 100644 index 00000000..2a179429 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-03/nslookup.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/open-folder.png b/contents/articles/2019/11-03_utcode-lectures-03/open-folder.png deleted file mode 100644 index 6075bae9..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-03/open-folder.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/open-folder.webp b/contents/articles/2019/11-03_utcode-lectures-03/open-folder.webp new file mode 100644 index 00000000..8d5fad02 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-03/open-folder.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/port.png b/contents/articles/2019/11-03_utcode-lectures-03/port.png deleted file mode 100644 index 1ead3635..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-03/port.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/port.webp b/contents/articles/2019/11-03_utcode-lectures-03/port.webp new file mode 100644 index 00000000..721b4d62 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-03/port.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/reload.png b/contents/articles/2019/11-03_utcode-lectures-03/reload.png deleted file mode 100644 index a6c1d8dd..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-03/reload.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/reload.webp b/contents/articles/2019/11-03_utcode-lectures-03/reload.webp new file mode 100644 index 00000000..bc104d3f Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-03/reload.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/sample-form.png b/contents/articles/2019/11-03_utcode-lectures-03/sample-form.png deleted file mode 100644 index 61f1ea62..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-03/sample-form.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/sample-form.webp b/contents/articles/2019/11-03_utcode-lectures-03/sample-form.webp new file mode 100644 index 00000000..92cf7161 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-03/sample-form.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/url-structure.png b/contents/articles/2019/11-03_utcode-lectures-03/url-structure.png deleted file mode 100644 index 249b902b..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-03/url-structure.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-03/url-structure.webp b/contents/articles/2019/11-03_utcode-lectures-03/url-structure.webp new file mode 100644 index 00000000..835873d8 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-03/url-structure.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-04/external-css.png b/contents/articles/2019/11-03_utcode-lectures-04/external-css.png deleted file mode 100644 index a07b6fac..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-04/external-css.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-04/external-css.webp b/contents/articles/2019/11-03_utcode-lectures-04/external-css.webp new file mode 100644 index 00000000..0073551f Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-04/external-css.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-04/index.mdx b/contents/articles/2019/11-03_utcode-lectures-04/index.mdx index 2c13fe60..9adea629 100644 --- a/contents/articles/2019/11-03_utcode-lectures-04/index.mdx +++ b/contents/articles/2019/11-03_utcode-lectures-04/index.mdx @@ -75,7 +75,7 @@ head タグの中に style タグを設けることで、CSS を HTML から分 index.html と同じディレクトリに style.css を作成しましょう。 -![style.cssを作成](./external-css.png) +![style.cssを作成](./external-css.webp) style.css を作成 @@ -235,7 +235,7 @@ CSS のプロパティは星の数ほどあります。すべて覚えること こんな感じのカッチョイイログイン画面を作ってみましょう。 -![カッチョイイログイン画面](./sample-form.png) +![カッチョイイログイン画面](./sample-form.webp) カッチョイイログイン画面 diff --git a/contents/articles/2019/11-03_utcode-lectures-04/sample-form.png b/contents/articles/2019/11-03_utcode-lectures-04/sample-form.png deleted file mode 100644 index c7fee749..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-04/sample-form.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-04/sample-form.webp b/contents/articles/2019/11-03_utcode-lectures-04/sample-form.webp new file mode 100644 index 00000000..26aaddc6 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-04/sample-form.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-06/index.mdx b/contents/articles/2019/11-03_utcode-lectures-06/index.mdx index 965c0a62..eef3facb 100644 --- a/contents/articles/2019/11-03_utcode-lectures-06/index.mdx +++ b/contents/articles/2019/11-03_utcode-lectures-06/index.mdx @@ -16,7 +16,7 @@ image: +/images/no-image.svg オブジェクト指向の言語において、データと動作のまとまりを、**クラス**といいます。 -![オブジェクト指向](./object-oriented.png) +![オブジェクト指向](./object-oriented.webp) オブジェクト指向 diff --git a/contents/articles/2019/11-03_utcode-lectures-06/object-oriented.png b/contents/articles/2019/11-03_utcode-lectures-06/object-oriented.png deleted file mode 100644 index d909246c..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-06/object-oriented.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-06/object-oriented.webp b/contents/articles/2019/11-03_utcode-lectures-06/object-oriented.webp new file mode 100644 index 00000000..6d479e83 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-06/object-oriented.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-08/autocomplete.png b/contents/articles/2019/11-03_utcode-lectures-08/autocomplete.png deleted file mode 100644 index 6ab985bc..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-08/autocomplete.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-08/autocomplete.webp b/contents/articles/2019/11-03_utcode-lectures-08/autocomplete.webp new file mode 100644 index 00000000..640ea2f2 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-08/autocomplete.webp differ diff --git a/contents/articles/2019/11-03_utcode-lectures-08/index.mdx b/contents/articles/2019/11-03_utcode-lectures-08/index.mdx index e9dccf01..a188423d 100644 --- a/contents/articles/2019/11-03_utcode-lectures-08/index.mdx +++ b/contents/articles/2019/11-03_utcode-lectures-08/index.mdx @@ -53,7 +53,7 @@ alert メソッドは、ブラウザにメッセージボックスを出させ イベントハンドラに引数を指定することで、イベントに関する詳細情報を取得することができます。VSCode の補完機能を使うとどのような情報が取得できるのか調べられるので、積極的に利用していきましょう。 -![補完を使用して使用可能なプロパティ・メソッドを調べる](./autocomplete.png) +![補完を使用して使用可能なプロパティ・メソッドを調べる](./autocomplete.webp) 入力されたキーの情報をメッセージボックスに表示する例を、以下に示します。 @@ -143,7 +143,7 @@ JavaScript を用いて、最近の Web アプリケーションでよく見る 以下は上記のようなパスワードインジケーターが実際に使用されている例です。画像ほどこだわる必要はありませんので、最低限上に挙げられた3つが実現できているシステムを作成してください。 -![パスワードの強度を表示するインジケーター](./password-checker.png) +![パスワードの強度を表示するインジケーター](./password-checker.webp) パスワードの強度を表示するインジケーター diff --git a/contents/articles/2019/11-03_utcode-lectures-08/password-checker.png b/contents/articles/2019/11-03_utcode-lectures-08/password-checker.png deleted file mode 100644 index 690a6185..00000000 Binary files a/contents/articles/2019/11-03_utcode-lectures-08/password-checker.png and /dev/null differ diff --git a/contents/articles/2019/11-03_utcode-lectures-08/password-checker.webp b/contents/articles/2019/11-03_utcode-lectures-08/password-checker.webp new file mode 100644 index 00000000..b083fa17 Binary files /dev/null and b/contents/articles/2019/11-03_utcode-lectures-08/password-checker.webp differ diff --git a/contents/articles/2019/11-07_utcode-lectures-09/index.mdx b/contents/articles/2019/11-07_utcode-lectures-09/index.mdx index 3b2fcf02..22426e93 100644 --- a/contents/articles/2019/11-07_utcode-lectures-09/index.mdx +++ b/contents/articles/2019/11-07_utcode-lectures-09/index.mdx @@ -26,7 +26,7 @@ curl -fsSL https://raw.githubusercontent.com/chelproc/utcode-lectures-setup/mast 注: 一般的な環境での動作原理を説明しています。環境によっては異なる場合があります。 -![PHPの動作原理](./php-cgi.png) +![PHPの動作原理](./php-cgi.webp) 通常、Web サーバーはリクエストを受け、ファイルの内容を直接クライアント側に送信します。しかし、リクエストされたファイルが PHP ファイルであるとき、Web サーバーは、ファイルの内容を読み出す代わりに、PHP にファイルを実行するよう指示します。この仕組みを**CGI**と呼び、PHP のみならず、殆どの言語で利用できます。 @@ -47,11 +47,11 @@ index.html の名前を変更して、index.php としましょう。 冒頭で使用しているコマンドでは、Web サーバーの起動と同時に、PHP も有効化しています。したがって、PHP を使用するために特別な設定は必要ありません。何も考えず保存して実行しましょう。 -![PHPの実行結果に対し、ブラウザでソースコードを表示させる](./show-source.png) +![PHPの実行結果に対し、ブラウザでソースコードを表示させる](./show-source.webp) 結果は予想通りかと思いますが、ここで、ブラウザにソースコードを表示させてみましょう。右クリックして「ページのソースを表示」をクリックしてください。 -![ソースコードの表示画面](./source.png) +![ソースコードの表示画面](./source.webp) ここで見ることのできるソースコードは、ブラウザが実際に解釈する、サーバー側から送られてきた生のデータです。クライアント側からは、PHP ファイル内に存在していた `` は見えていないということが分かります。 diff --git a/contents/articles/2019/11-07_utcode-lectures-09/php-cgi.png b/contents/articles/2019/11-07_utcode-lectures-09/php-cgi.png deleted file mode 100644 index 72237ee1..00000000 Binary files a/contents/articles/2019/11-07_utcode-lectures-09/php-cgi.png and /dev/null differ diff --git a/contents/articles/2019/11-07_utcode-lectures-09/php-cgi.webp b/contents/articles/2019/11-07_utcode-lectures-09/php-cgi.webp new file mode 100644 index 00000000..add14b09 Binary files /dev/null and b/contents/articles/2019/11-07_utcode-lectures-09/php-cgi.webp differ diff --git a/contents/articles/2019/11-07_utcode-lectures-09/show-source.png b/contents/articles/2019/11-07_utcode-lectures-09/show-source.png deleted file mode 100644 index eee42620..00000000 Binary files a/contents/articles/2019/11-07_utcode-lectures-09/show-source.png and /dev/null differ diff --git a/contents/articles/2019/11-07_utcode-lectures-09/show-source.webp b/contents/articles/2019/11-07_utcode-lectures-09/show-source.webp new file mode 100644 index 00000000..fe6cf3d7 Binary files /dev/null and b/contents/articles/2019/11-07_utcode-lectures-09/show-source.webp differ diff --git a/contents/articles/2019/11-07_utcode-lectures-09/source.png b/contents/articles/2019/11-07_utcode-lectures-09/source.png deleted file mode 100644 index 324bf550..00000000 Binary files a/contents/articles/2019/11-07_utcode-lectures-09/source.png and /dev/null differ diff --git a/contents/articles/2019/11-07_utcode-lectures-09/source.webp b/contents/articles/2019/11-07_utcode-lectures-09/source.webp new file mode 100644 index 00000000..2944372d Binary files /dev/null and b/contents/articles/2019/11-07_utcode-lectures-09/source.webp differ diff --git a/contents/articles/2019/11-10_utcode-lectures-10/get-post.png b/contents/articles/2019/11-10_utcode-lectures-10/get-post.png deleted file mode 100644 index dc5588b2..00000000 Binary files a/contents/articles/2019/11-10_utcode-lectures-10/get-post.png and /dev/null differ diff --git a/contents/articles/2019/11-10_utcode-lectures-10/get-post.webp b/contents/articles/2019/11-10_utcode-lectures-10/get-post.webp new file mode 100644 index 00000000..d82c8cc5 Binary files /dev/null and b/contents/articles/2019/11-10_utcode-lectures-10/get-post.webp differ diff --git a/contents/articles/2019/11-10_utcode-lectures-10/get-request-result.png b/contents/articles/2019/11-10_utcode-lectures-10/get-request-result.png deleted file mode 100644 index daf21745..00000000 Binary files a/contents/articles/2019/11-10_utcode-lectures-10/get-request-result.png and /dev/null differ diff --git a/contents/articles/2019/11-10_utcode-lectures-10/get-request-result.webp b/contents/articles/2019/11-10_utcode-lectures-10/get-request-result.webp new file mode 100644 index 00000000..f4bd463b Binary files /dev/null and b/contents/articles/2019/11-10_utcode-lectures-10/get-request-result.webp differ diff --git a/contents/articles/2019/11-10_utcode-lectures-10/index.mdx b/contents/articles/2019/11-10_utcode-lectures-10/index.mdx index afb9d27e..cc97deb0 100644 --- a/contents/articles/2019/11-10_utcode-lectures-10/index.mdx +++ b/contents/articles/2019/11-10_utcode-lectures-10/index.mdx @@ -35,7 +35,7 @@ HTML において method 属性を get に指定した form タグを使用し ようこそ!さん! ``` -![実行結果](./get-request-result.png) +![実行結果](./get-request-result.webp) フォームの送信先の画面のアドレスバーに注目しましょう。index.html で入力された値が、URL のクエリパラメータとして引き渡されているのが分かります(なお、昨今のブラウザは URL エンコードされた文字列をデコードしてアドレスバーに表示する機能を持っているため、アドレスバーにエンコード済みの文字列が表示されていません)。 @@ -99,7 +99,7 @@ Vary: Accept-Encoding 一般的に使用される GET メソッドの代わりに、POST メソッドを使用することで、大規模なデータをサーバーに送信することができます。**GET メソッドと POST メソッドの最大の違いは、リクエストボディが存在するかどうか**になります。リクエストボディが存在するということで、POST メソッドを用いたリクエストの場合は、リクエストボディの種類を Content-Type リクエストヘッダで指定します。サーバーは、リクエストボディの内容に応じて、適切に処理を行うことができます。 -![GETメソッドとPOSTメソッド](./get-post.png) +![GETメソッドとPOSTメソッド](./get-post.webp) GET メソッドと POST メソッド @@ -116,7 +116,7 @@ GET メソッドと POST メソッド ようこそ!さん! ``` -![実行結果](./post-request-result.png) +![実行結果](./post-request-result.webp) ご覧の通り、HTML 側の form タグの method 属性が get から post に変わり、PHP 側の$\_GETが$\_POST に変わった以外に目立った変化はありません。 diff --git a/contents/articles/2019/11-10_utcode-lectures-10/post-request-result.png b/contents/articles/2019/11-10_utcode-lectures-10/post-request-result.png deleted file mode 100644 index 1d37c09d..00000000 Binary files a/contents/articles/2019/11-10_utcode-lectures-10/post-request-result.png and /dev/null differ diff --git a/contents/articles/2019/11-10_utcode-lectures-10/post-request-result.webp b/contents/articles/2019/11-10_utcode-lectures-10/post-request-result.webp new file mode 100644 index 00000000..2eace96c Binary files /dev/null and b/contents/articles/2019/11-10_utcode-lectures-10/post-request-result.webp differ diff --git a/contents/articles/2019/11-16_utcode-lectures-11/ajax.png b/contents/articles/2019/11-16_utcode-lectures-11/ajax.png deleted file mode 100644 index 0c5226b4..00000000 Binary files a/contents/articles/2019/11-16_utcode-lectures-11/ajax.png and /dev/null differ diff --git a/contents/articles/2019/11-16_utcode-lectures-11/ajax.webp b/contents/articles/2019/11-16_utcode-lectures-11/ajax.webp new file mode 100644 index 00000000..6f894b41 Binary files /dev/null and b/contents/articles/2019/11-16_utcode-lectures-11/ajax.webp differ diff --git a/contents/articles/2019/11-16_utcode-lectures-11/index.mdx b/contents/articles/2019/11-16_utcode-lectures-11/index.mdx index 6c58d630..6ec7470b 100644 --- a/contents/articles/2019/11-16_utcode-lectures-11/index.mdx +++ b/contents/articles/2019/11-16_utcode-lectures-11/index.mdx @@ -3,7 +3,7 @@ title: "ut.code(); 学習カリキュラム #11" date: 2019-11-16T16:22:36+09:00 categories: - "internal" -image: ./ajax.png +image: ./ajax.webp --- 今回は重ための内容から入ります。眠くなる時間帯に読まないようにしましょう。 @@ -136,7 +136,7 @@ Fetch API は、JavaScript を用いて HTTP リクエストを作成するこ fetch 関数は Promise を返却するため、async キーワードを指定した関数でラップする必要があります。今回は無名関数を用いて関数の生成と実行を同時に行なっています。なお、alert 関数はメッセージボックスを表示するための関数です。 -![Ajaxを用いて非同期的にリモートのデータを取得する](./ajax.png) +![Ajaxを用いて非同期的にリモートのデータを取得する](./ajax.webp) Ajax を用いて非同期的にリモートのデータを取得する diff --git a/contents/articles/2019/12-15_komaba-fes-70/image.jpg b/contents/articles/2019/12-15_komaba-fes-70/image.jpg deleted file mode 100644 index 502916df..00000000 Binary files a/contents/articles/2019/12-15_komaba-fes-70/image.jpg and /dev/null differ diff --git a/contents/articles/2019/12-15_komaba-fes-70/image.webp b/contents/articles/2019/12-15_komaba-fes-70/image.webp new file mode 100644 index 00000000..40646e8e Binary files /dev/null and b/contents/articles/2019/12-15_komaba-fes-70/image.webp differ diff --git a/contents/articles/2019/12-15_komaba-fes-70/index.mdx b/contents/articles/2019/12-15_komaba-fes-70/index.mdx index e339de7a..cd045790 100644 --- a/contents/articles/2019/12-15_komaba-fes-70/index.mdx +++ b/contents/articles/2019/12-15_komaba-fes-70/index.mdx @@ -3,7 +3,7 @@ title: "第70回駒場祭で「はじめてのWebプログラミング教室」 date: 2019-12-15T14:34:09+09:00 categories: - "events" -image: ./image.jpg +image: ./image.webp --- 第 70 回駒場祭は、2019/11/22〜11/24 の3日間で開催されました。本年度の駒場祭は、初日が平日であったことに加え、雨天予報が出ていたため、来場者数の減少が危惧されていましたが、私たち ut.code();の企画「はじめての Web プログラミング教室」では、多くの方にお越しいただきました。本当にありがとうございました。 @@ -14,7 +14,7 @@ image: ./image.jpg 駒場祭企画全体のタイトルにもなっている企画です。近年、ソフトウェア開発の主流が Web 関連の技術に移行しつつあることを踏まえ、Web 技術を用いて開発を行うメリットを感じていただくための企画として設計しました。HTML / CSS / JavaScript を一通り実際に書いてみて、最終的にインターネット上に公開するところまで実施しました。JavaScript に関してはプログラミング自体が未経験の方でも楽しんでいただけるよう、jQuery を導入しました。 -![Visual Studio CodeでWeb開発](./vscode-development.png) +![Visual Studio CodeでWeb開発](./vscode-development.webp) ### サンプルコードの自動展開 @@ -30,7 +30,7 @@ Web 開発を行う上での最大のメリットは、やはり製品を即座 前項の「はじめての Web プログラミング教室」は、Web 以外のプラットフォームでプログラミングを学習したことがあるものの、つまらないと感じていた方に向けた企画でした。小さなお子様や、コンピューターをあまり使用しない方にもプログラミング的思考を体験していただくために用意した企画がこちらです。 -![ビジュアルプログラミング](./visual-programming.png) +![ビジュアルプログラミング](./visual-programming.webp) ### 自然言語からプログラミング言語へ diff --git a/contents/articles/2019/12-15_komaba-fes-70/visual-programming.png b/contents/articles/2019/12-15_komaba-fes-70/visual-programming.png deleted file mode 100644 index 5174a24f..00000000 Binary files a/contents/articles/2019/12-15_komaba-fes-70/visual-programming.png and /dev/null differ diff --git a/contents/articles/2019/12-15_komaba-fes-70/visual-programming.webp b/contents/articles/2019/12-15_komaba-fes-70/visual-programming.webp new file mode 100644 index 00000000..d74f671d Binary files /dev/null and b/contents/articles/2019/12-15_komaba-fes-70/visual-programming.webp differ diff --git a/contents/articles/2019/12-15_komaba-fes-70/vscode-development.png b/contents/articles/2019/12-15_komaba-fes-70/vscode-development.png deleted file mode 100644 index d0d70090..00000000 Binary files a/contents/articles/2019/12-15_komaba-fes-70/vscode-development.png and /dev/null differ diff --git a/contents/articles/2019/12-15_komaba-fes-70/vscode-development.webp b/contents/articles/2019/12-15_komaba-fes-70/vscode-development.webp new file mode 100644 index 00000000..14fec465 Binary files /dev/null and b/contents/articles/2019/12-15_komaba-fes-70/vscode-development.webp differ diff --git a/contents/articles/2019/12-22_utcode-lectures-12/create-database.png b/contents/articles/2019/12-22_utcode-lectures-12/create-database.png deleted file mode 100644 index a62b49ce..00000000 Binary files a/contents/articles/2019/12-22_utcode-lectures-12/create-database.png and /dev/null differ diff --git a/contents/articles/2019/12-22_utcode-lectures-12/create-database.webp b/contents/articles/2019/12-22_utcode-lectures-12/create-database.webp new file mode 100644 index 00000000..3bbe83de Binary files /dev/null and b/contents/articles/2019/12-22_utcode-lectures-12/create-database.webp differ diff --git a/contents/articles/2019/12-22_utcode-lectures-12/create-table.png b/contents/articles/2019/12-22_utcode-lectures-12/create-table.png deleted file mode 100644 index 53acf082..00000000 Binary files a/contents/articles/2019/12-22_utcode-lectures-12/create-table.png and /dev/null differ diff --git a/contents/articles/2019/12-22_utcode-lectures-12/create-table.webp b/contents/articles/2019/12-22_utcode-lectures-12/create-table.webp new file mode 100644 index 00000000..346be128 Binary files /dev/null and b/contents/articles/2019/12-22_utcode-lectures-12/create-table.webp differ diff --git a/contents/articles/2019/12-22_utcode-lectures-12/design-table.png b/contents/articles/2019/12-22_utcode-lectures-12/design-table.png deleted file mode 100644 index 8412bfe2..00000000 Binary files a/contents/articles/2019/12-22_utcode-lectures-12/design-table.png and /dev/null differ diff --git a/contents/articles/2019/12-22_utcode-lectures-12/design-table.webp b/contents/articles/2019/12-22_utcode-lectures-12/design-table.webp new file mode 100644 index 00000000..3c7609cc Binary files /dev/null and b/contents/articles/2019/12-22_utcode-lectures-12/design-table.webp differ diff --git a/contents/articles/2019/12-22_utcode-lectures-12/index.mdx b/contents/articles/2019/12-22_utcode-lectures-12/index.mdx index 92b5fd90..39971f7e 100644 --- a/contents/articles/2019/12-22_utcode-lectures-12/index.mdx +++ b/contents/articles/2019/12-22_utcode-lectures-12/index.mdx @@ -38,7 +38,7 @@ curl -fsSL https://raw.githubusercontent.com/chelproc/utcode-lectures-setup/mast phpMyAdmin は、その名の通り PHP 上で動作する MySQL クライアントです。冒頭のスクリプトにより自動的にインストールされているはずなので、追加でインストールする必要はありません。55556 番ポートで接続を受ける設定になっているので、このポートにアクセスしてみてください。 -![phpMyAdminの初期画面](./phpmyadmin.png) +![phpMyAdminの初期画面](./phpmyadmin.webp) MySQL において、最も大きなまとまりを「データベース」と呼びます。データベースの中には、複数の「テーブル」と呼ばれるデータ構造が存在し、「テーブル」は同じ種類のデータの集まりです。 @@ -52,7 +52,7 @@ SHOW DATABASES それでは、「新規作成」ボタンを押下し、新しいデータベースを作成しましょう。 -![データベースの新規作成](./create-database.png) +![データベースの新規作成](./create-database.webp) 今回は、データベース名を「superamarket」に設定しました。隣のセレクトボックスは照合順序です。検索をかける際に影響が出るので、上の図のように設定しておくのが良いでしょう。入力が終わったら、「作成」ボタンを押してください。この操作によって発行される SQL は、おおよそ以下のようになります。 @@ -64,11 +64,11 @@ CREATE DATABASE supermarket 続いて、データベース「supermarket」に対してテーブルを作成しましょう。 -![テーブルの作成](./create-table.png) +![テーブルの作成](./create-table.webp) 3つのカラム(=列)を持つテーブル「products」を作成しましょう。 -![テーブルの設計](./design-table.png) +![テーブルの設計](./design-table.webp) RDBMS は、テーブルの単位でデータを管理するため、使用する前にテーブルの設計が必要不可欠です。今回は、商品リストを管理するためのテーブルを作成します。テーブルの設計とは、そのテーブルでどのような種類のデータが使用されるかを定義することです。今回は商品リストを管理するため、識別用 ID、商品名、消費価格を設定してみました。 @@ -87,11 +87,11 @@ CREATE TABLE `supermarket`.`products` ( ### レコードを追加する -![テーブルの作成直後](./table-created.png) +![テーブルの作成直後](./table-created.webp) テーブルが作成されると、以上のような画面になります。「挿入」ボタンから、早速新しいレコードを追加してみましょう。 -![新しいレコードの追加](./insert-record.png) +![新しいレコードの追加](./insert-record.webp) 新しいレコードの追加 diff --git a/contents/articles/2019/12-22_utcode-lectures-12/insert-record.png b/contents/articles/2019/12-22_utcode-lectures-12/insert-record.png deleted file mode 100644 index 9a7ad9d8..00000000 Binary files a/contents/articles/2019/12-22_utcode-lectures-12/insert-record.png and /dev/null differ diff --git a/contents/articles/2019/12-22_utcode-lectures-12/insert-record.webp b/contents/articles/2019/12-22_utcode-lectures-12/insert-record.webp new file mode 100644 index 00000000..046e5df3 Binary files /dev/null and b/contents/articles/2019/12-22_utcode-lectures-12/insert-record.webp differ diff --git a/contents/articles/2019/12-22_utcode-lectures-12/phpmyadmin.png b/contents/articles/2019/12-22_utcode-lectures-12/phpmyadmin.png deleted file mode 100644 index d6361f73..00000000 Binary files a/contents/articles/2019/12-22_utcode-lectures-12/phpmyadmin.png and /dev/null differ diff --git a/contents/articles/2019/12-22_utcode-lectures-12/phpmyadmin.webp b/contents/articles/2019/12-22_utcode-lectures-12/phpmyadmin.webp new file mode 100644 index 00000000..79baa27f Binary files /dev/null and b/contents/articles/2019/12-22_utcode-lectures-12/phpmyadmin.webp differ diff --git a/contents/articles/2019/12-22_utcode-lectures-12/table-created.png b/contents/articles/2019/12-22_utcode-lectures-12/table-created.png deleted file mode 100644 index 926e0b10..00000000 Binary files a/contents/articles/2019/12-22_utcode-lectures-12/table-created.png and /dev/null differ diff --git a/contents/articles/2019/12-22_utcode-lectures-12/table-created.webp b/contents/articles/2019/12-22_utcode-lectures-12/table-created.webp new file mode 100644 index 00000000..69ddecf7 Binary files /dev/null and b/contents/articles/2019/12-22_utcode-lectures-12/table-created.webp differ diff --git a/contents/articles/2019/12-23_utcode-lectures-13/directory-structure.png b/contents/articles/2019/12-23_utcode-lectures-13/directory-structure.png deleted file mode 100644 index 29bfc844..00000000 Binary files a/contents/articles/2019/12-23_utcode-lectures-13/directory-structure.png and /dev/null differ diff --git a/contents/articles/2019/12-23_utcode-lectures-13/directory-structure.webp b/contents/articles/2019/12-23_utcode-lectures-13/directory-structure.webp new file mode 100644 index 00000000..9babff07 Binary files /dev/null and b/contents/articles/2019/12-23_utcode-lectures-13/directory-structure.webp differ diff --git a/contents/articles/2019/12-23_utcode-lectures-13/index.mdx b/contents/articles/2019/12-23_utcode-lectures-13/index.mdx index bc3a6db6..583aead4 100644 --- a/contents/articles/2019/12-23_utcode-lectures-13/index.mdx +++ b/contents/articles/2019/12-23_utcode-lectures-13/index.mdx @@ -26,7 +26,7 @@ node index.js node コマンドは、Node.js を起動させるためのコマンドです。引数としてファイル名を与えることで、そのファイルを JavaScript と解釈して実行します。 -![Node.jsでHello World](./run-node.png) +![Node.jsでHello World](./run-node.webp) おめでとうございます!Hello World と表示できました! @@ -207,7 +207,7 @@ document.getElementById("calculate").onclick = () => { トランスパイルやモジュールバンドル伴うプロジェクトの場合、ソースファイルとトランスパイル後のファイルが共存することになります。この時、プロジェクトのルートディレクトリにソースファイルを配置してしまうと、最終的に出力されたファイルを置く場所がなくなってしまいます。そのため、適当なディレクトリを作成し、その中でコードを書き進めると良いです。今回は src ディレクトリ(よく使われる source の略語です)を使用しました。 -![ディレクトリ構造](./directory-structure.png) +![ディレクトリ構造](./directory-structure.webp) Parcel コマンドは引数にエントリポイントをとります。src/index.pug を指定して、Parcel を実行しましょう。 @@ -215,7 +215,7 @@ Parcel コマンドは引数にエントリポイントをとります。src/ind npx parcel src/index.html ``` -![Parcelを実行する](./run-parcel.png) +![Parcelを実行する](./run-parcel.webp) Parcel は、index.html の中に記載された script タグや link タグを自動的に認識し、それらの参照先ファイルがトランスパイルの対象であれば、自動的にトランスパイルし、バンドリングします。出力されたファイルはプロジェクトディレクトリ直下に自動的に生成される dist ディレクトリ(この挙動は変更可能です)に生成され、ブラウザから表示させることが可能です。また、Parcel にはホットリロード可能な開発用サーバーを起動する機能も標準で用意されているため、そのためのリンクが表示されます。 diff --git a/contents/articles/2019/12-23_utcode-lectures-13/run-node.png b/contents/articles/2019/12-23_utcode-lectures-13/run-node.png deleted file mode 100644 index 044dc610..00000000 Binary files a/contents/articles/2019/12-23_utcode-lectures-13/run-node.png and /dev/null differ diff --git a/contents/articles/2019/12-23_utcode-lectures-13/run-node.webp b/contents/articles/2019/12-23_utcode-lectures-13/run-node.webp new file mode 100644 index 00000000..0fdd636f Binary files /dev/null and b/contents/articles/2019/12-23_utcode-lectures-13/run-node.webp differ diff --git a/contents/articles/2019/12-23_utcode-lectures-13/run-parcel.png b/contents/articles/2019/12-23_utcode-lectures-13/run-parcel.png deleted file mode 100644 index 7b018ae1..00000000 Binary files a/contents/articles/2019/12-23_utcode-lectures-13/run-parcel.png and /dev/null differ diff --git a/contents/articles/2019/12-23_utcode-lectures-13/run-parcel.webp b/contents/articles/2019/12-23_utcode-lectures-13/run-parcel.webp new file mode 100644 index 00000000..83569d7a Binary files /dev/null and b/contents/articles/2019/12-23_utcode-lectures-13/run-parcel.webp differ diff --git a/contents/articles/2020/02-15_utcode-lectures-14/how-reference-works.png b/contents/articles/2020/02-15_utcode-lectures-14/how-reference-works.png deleted file mode 100644 index 3bc4c430..00000000 Binary files a/contents/articles/2020/02-15_utcode-lectures-14/how-reference-works.png and /dev/null differ diff --git a/contents/articles/2020/02-15_utcode-lectures-14/how-reference-works.webp b/contents/articles/2020/02-15_utcode-lectures-14/how-reference-works.webp new file mode 100644 index 00000000..2b5eda5b Binary files /dev/null and b/contents/articles/2020/02-15_utcode-lectures-14/how-reference-works.webp differ diff --git a/contents/articles/2020/02-15_utcode-lectures-14/index.mdx b/contents/articles/2020/02-15_utcode-lectures-14/index.mdx index 3dcb09a2..269a7f28 100644 --- a/contents/articles/2020/02-15_utcode-lectures-14/index.mdx +++ b/contents/articles/2020/02-15_utcode-lectures-14/index.mdx @@ -47,7 +47,7 @@ taro.name が実行されると、メモリ上にリテラルが示すオブジェクトが展開されるわけですが、式の生成する値自体は、実際のオブジェクトへの参照になります。6 行目では hanako に taro を代入していますが、実際に代入されているのは変数 taro に格納されている、先ほど生成されたオブジェクトへの参照が代入されているに過ぎません。つまり、taro と hanako は同じオブジェクトを参照していることになってしまっているのです。このため、hanako.name を書き換えれば、taro.name も自動的に書き変わってしまいます。 -![オブジェクトリテラルは参照を返す](./how-reference-works.png) +![オブジェクトリテラルは参照を返す](./how-reference-works.webp) JavaScript では、様々な値を使用することができますが、ほとんどの値は参照として使用されます。参照として扱われない値、具体的には変数から変数へコピーしたときにその値自体がコピーされる値は、**数値、文字列、真偽値、(null、undefined、シンボル)**のみです。JavaScript において、このような値を**プリミティブ**といい、プリミティブが持つ性質、つまり一度生成された値がメモリ上で書き換えられることがないという性質を指して、プリミティブは**イミュータブル**であると言います([MDN の記事](https://developer.mozilla.org/ja/docs/Glossary/Primitive)を参照)。 @@ -193,7 +193,7 @@ movie1.tags = [...movie1.tags, "supernatural"]; movie1 のデータ構造を、図によって考察してみましょう。 -![movie1の構造](./nested-reference.png) +![movie1の構造](./nested-reference.webp) 1 行目のコードでは、movie1.tags(=オブジェクト B)に対して破壊的メソッド(Array#push)を実行しているため、オブジェクト B のイミュータビリティが保たれていません。また、2 行目のコードでは、オブジェクト A の tags フィールドに対して再代入が行われているため、オブジェクト A のイミュータビリティが保たれていないことになります。正しいコードは、以下の通りです。 diff --git a/contents/articles/2020/02-15_utcode-lectures-14/nested-reference.png b/contents/articles/2020/02-15_utcode-lectures-14/nested-reference.png deleted file mode 100644 index 2d82df89..00000000 Binary files a/contents/articles/2020/02-15_utcode-lectures-14/nested-reference.png and /dev/null differ diff --git a/contents/articles/2020/02-15_utcode-lectures-14/nested-reference.webp b/contents/articles/2020/02-15_utcode-lectures-14/nested-reference.webp new file mode 100644 index 00000000..4b9b4477 Binary files /dev/null and b/contents/articles/2020/02-15_utcode-lectures-14/nested-reference.webp differ diff --git a/contents/articles/2020/02-16_utcode-lectures-15/index.mdx b/contents/articles/2020/02-16_utcode-lectures-15/index.mdx index a89d59ce..bde68357 100644 --- a/contents/articles/2020/02-16_utcode-lectures-15/index.mdx +++ b/contents/articles/2020/02-16_utcode-lectures-15/index.mdx @@ -362,7 +362,7 @@ React のチュートリアルは、大抵 ToDo アプリを作ることを目 - App: 上記二つのコンポーネントを内包する - props や state のイミュータビリティを保ってください。 -![コンポーネントの分割](./split-component.png) +![コンポーネントの分割](./split-component.webp) ### ヒント diff --git a/contents/articles/2020/02-16_utcode-lectures-15/split-component.png b/contents/articles/2020/02-16_utcode-lectures-15/split-component.png deleted file mode 100644 index c56bc990..00000000 Binary files a/contents/articles/2020/02-16_utcode-lectures-15/split-component.png and /dev/null differ diff --git a/contents/articles/2020/02-16_utcode-lectures-15/split-component.webp b/contents/articles/2020/02-16_utcode-lectures-15/split-component.webp new file mode 100644 index 00000000..8e4f4827 Binary files /dev/null and b/contents/articles/2020/02-16_utcode-lectures-15/split-component.webp differ diff --git a/contents/articles/2020/07-29_activity-resumption/image.jpg b/contents/articles/2020/07-29_activity-resumption/image.jpg deleted file mode 100644 index 4148e606..00000000 Binary files a/contents/articles/2020/07-29_activity-resumption/image.jpg and /dev/null differ diff --git a/contents/articles/2020/07-29_activity-resumption/image.webp b/contents/articles/2020/07-29_activity-resumption/image.webp new file mode 100644 index 00000000..f74fc529 Binary files /dev/null and b/contents/articles/2020/07-29_activity-resumption/image.webp differ diff --git a/contents/articles/2020/07-29_activity-resumption/index.mdx b/contents/articles/2020/07-29_activity-resumption/index.mdx index ab01f818..30f97bc6 100644 --- a/contents/articles/2020/07-29_activity-resumption/index.mdx +++ b/contents/articles/2020/07-29_activity-resumption/index.mdx @@ -3,7 +3,7 @@ title: "夏季休業期間中の活動のお知らせ" date: 2020-07-29T12:21:19+09:00 categories: - "info" -image: ./image.jpg +image: ./image.webp --- ut.code();では、新型コロナウイルスの感染拡大の影響を受け、活動を自粛しておりましたが、7 月 15 日付で東京大学から発表された「[学生の皆さんへ 理事・副学長メッセージ](https://www.u-tokyo.ac.jp/ja/general/COVID-19-message-20200715.html)」を受け、夏休みの活動を再開することといたしました。活動は感染予防に十分配慮したうえで実施しますが、当面の間オンライン通話も併用する予定です。 diff --git a/contents/articles/2020/08-04_summer-activities/image.png b/contents/articles/2020/08-04_summer-activities/image.png deleted file mode 100644 index 19179dd4..00000000 Binary files a/contents/articles/2020/08-04_summer-activities/image.png and /dev/null differ diff --git a/contents/articles/2020/08-04_summer-activities/image.webp b/contents/articles/2020/08-04_summer-activities/image.webp new file mode 100644 index 00000000..123da69b Binary files /dev/null and b/contents/articles/2020/08-04_summer-activities/image.webp differ diff --git a/contents/articles/2020/08-04_summer-activities/index.mdx b/contents/articles/2020/08-04_summer-activities/index.mdx index 767a5a25..5f35d43c 100644 --- a/contents/articles/2020/08-04_summer-activities/index.mdx +++ b/contents/articles/2020/08-04_summer-activities/index.mdx @@ -3,7 +3,7 @@ title: "夏季休業期間中の活動日程" date: 2020-08-04T17:27:14+09:00 categories: - "info" -image: ./image.png +image: ./image.webp --- 夏季休業期間中は、以下の日程で活動します。 diff --git a/contents/articles/2020/09-21_may-fes-93/image.jpg b/contents/articles/2020/09-21_may-fes-93/image.jpg deleted file mode 100644 index 05c04304..00000000 Binary files a/contents/articles/2020/09-21_may-fes-93/image.jpg and /dev/null differ diff --git a/contents/articles/2020/09-21_may-fes-93/image.webp b/contents/articles/2020/09-21_may-fes-93/image.webp new file mode 100644 index 00000000..91f547cf Binary files /dev/null and b/contents/articles/2020/09-21_may-fes-93/image.webp differ diff --git a/contents/articles/2020/09-21_may-fes-93/index.mdx b/contents/articles/2020/09-21_may-fes-93/index.mdx index 812aef08..7b6bcc65 100644 --- a/contents/articles/2020/09-21_may-fes-93/index.mdx +++ b/contents/articles/2020/09-21_may-fes-93/index.mdx @@ -3,7 +3,7 @@ title: "第93回五月祭に参加しました" date: 2020-09-21T11:55:55+09:00 categories: - "events" -image: ./image.jpg +image: ./image.webp --- [第 93 回五月祭](https://gogatsusai.jp/93/visitor/)は、新型コロナウイルスの影響により当初の予定どおりの開催ができなくなってしまったため、9 月 20 日〜9 月 21 日にかけて、オンラインでの開催となりました。ut.code();では、農学部キャンパスから Zoom にて配信を行いました。 diff --git a/contents/articles/2020/11-25_komaba-fes-71/image.png b/contents/articles/2020/11-25_komaba-fes-71/image.png deleted file mode 100644 index 39faba57..00000000 Binary files a/contents/articles/2020/11-25_komaba-fes-71/image.png and /dev/null differ diff --git a/contents/articles/2020/11-25_komaba-fes-71/image.webp b/contents/articles/2020/11-25_komaba-fes-71/image.webp new file mode 100644 index 00000000..b0180139 Binary files /dev/null and b/contents/articles/2020/11-25_komaba-fes-71/image.webp differ diff --git a/contents/articles/2020/11-25_komaba-fes-71/index.mdx b/contents/articles/2020/11-25_komaba-fes-71/index.mdx index 2de1a268..fa961d23 100644 --- a/contents/articles/2020/11-25_komaba-fes-71/index.mdx +++ b/contents/articles/2020/11-25_komaba-fes-71/index.mdx @@ -3,7 +3,7 @@ title: "第71回駒場祭に参加しました" date: 2020-11-25T23:41:02+09:00 categories: - "utokyo" -image: ./image.png +image: ./image.webp --- 本年度の駒場祭は、五月祭と同様オンラインでの開催となりました。ut.code();では、[Blockly](https://github.com/google/blockly)を用いたプログラミング教室を Zoom 上で開催しました。例年よりも小規模なものになってしまったものの、熱心に取り組んでくださった皆様に支えられ、本年度も最後まで走りきることができました。お忙しい中ご参加いただいた方、本当にありがとうございました! diff --git a/contents/articles/2021/03-14_utmap-times/image.png b/contents/articles/2021/03-14_utmap-times/image.png deleted file mode 100644 index 921c10f1..00000000 Binary files a/contents/articles/2021/03-14_utmap-times/image.png and /dev/null differ diff --git a/contents/articles/2021/03-14_utmap-times/image.webp b/contents/articles/2021/03-14_utmap-times/image.webp new file mode 100644 index 00000000..814e7f9b Binary files /dev/null and b/contents/articles/2021/03-14_utmap-times/image.webp differ diff --git a/contents/articles/2021/03-14_utmap-times/index.mdx b/contents/articles/2021/03-14_utmap-times/index.mdx index 8cd5ac08..1347fa8b 100644 --- a/contents/articles/2021/03-14_utmap-times/index.mdx +++ b/contents/articles/2021/03-14_utmap-times/index.mdx @@ -3,7 +3,7 @@ title: "UTmap Timesを制作しています" date: 2021-03-14T14:04:25+09:00 categories: - "info" -image: ./image.png +image: ./image.webp --- 現在、ut.code();では、[UTmap Times](https://utmap.jp/)の制作に取り組んでいます。 diff --git a/contents/articles/2021/04-16_welcome-events/image.png b/contents/articles/2021/04-16_welcome-events/image.png deleted file mode 100644 index 7e1a0a91..00000000 Binary files a/contents/articles/2021/04-16_welcome-events/image.png and /dev/null differ diff --git a/contents/articles/2021/04-16_welcome-events/image.webp b/contents/articles/2021/04-16_welcome-events/image.webp new file mode 100644 index 00000000..462ab55b Binary files /dev/null and b/contents/articles/2021/04-16_welcome-events/image.webp differ diff --git a/contents/articles/2021/04-16_welcome-events/index.mdx b/contents/articles/2021/04-16_welcome-events/index.mdx index aff91a8e..74543787 100644 --- a/contents/articles/2021/04-16_welcome-events/index.mdx +++ b/contents/articles/2021/04-16_welcome-events/index.mdx @@ -3,7 +3,7 @@ title: "2021年度新歓日程" date: 2021-04-16T09:12:03+09:00 categories: - "info" -image: ./image.png +image: ./image.webp --- ut.code();では、本年度の新歓活動を以下の通り実施いたします。 diff --git a/contents/articles/2021/05-07_may-fes-94-postponed/image.jpg b/contents/articles/2021/05-07_may-fes-94-postponed/image.jpg deleted file mode 100644 index 8147e85a..00000000 Binary files a/contents/articles/2021/05-07_may-fes-94-postponed/image.jpg and /dev/null differ diff --git a/contents/articles/2021/05-07_may-fes-94-postponed/image.webp b/contents/articles/2021/05-07_may-fes-94-postponed/image.webp new file mode 100644 index 00000000..0db5b894 Binary files /dev/null and b/contents/articles/2021/05-07_may-fes-94-postponed/image.webp differ diff --git a/contents/articles/2021/05-07_may-fes-94-postponed/index.mdx b/contents/articles/2021/05-07_may-fes-94-postponed/index.mdx index 2826726c..d9458771 100644 --- a/contents/articles/2021/05-07_may-fes-94-postponed/index.mdx +++ b/contents/articles/2021/05-07_may-fes-94-postponed/index.mdx @@ -3,7 +3,7 @@ title: "第94回五月祭は5月開催を断念しました" date: 2021-05-07T23:04:19+09:00 categories: - "utokyo" -image: ./image.jpg +image: ./image.webp --- 第 94 回五月祭は、大学側からの要請により、当初の日程での開催の断念を余儀なくされました。 diff --git a/contents/articles/2021/05-24_weekly-learning-activities-2021/image.png b/contents/articles/2021/05-24_weekly-learning-activities-2021/image.png deleted file mode 100644 index d10818df..00000000 Binary files a/contents/articles/2021/05-24_weekly-learning-activities-2021/image.png and /dev/null differ diff --git a/contents/articles/2021/05-24_weekly-learning-activities-2021/image.webp b/contents/articles/2021/05-24_weekly-learning-activities-2021/image.webp new file mode 100644 index 00000000..d2ba86bf Binary files /dev/null and b/contents/articles/2021/05-24_weekly-learning-activities-2021/image.webp differ diff --git a/contents/articles/2021/05-24_weekly-learning-activities-2021/index.mdx b/contents/articles/2021/05-24_weekly-learning-activities-2021/index.mdx index 017e4566..d93ccf1c 100644 --- a/contents/articles/2021/05-24_weekly-learning-activities-2021/index.mdx +++ b/contents/articles/2021/05-24_weekly-learning-activities-2021/index.mdx @@ -3,7 +3,7 @@ title: "【中止】新歓イベント「コードで、未来を描け」" date: 2021-05-24T11:04:41+09:00 categories: - "events" -image: ./image.png +image: ./image.webp --- ## イベント中止のお知らせ diff --git a/contents/articles/2021/07-26_summer-coding-camp/image.png b/contents/articles/2021/07-26_summer-coding-camp/image.png deleted file mode 100644 index 905cf8e9..00000000 Binary files a/contents/articles/2021/07-26_summer-coding-camp/image.png and /dev/null differ diff --git a/contents/articles/2021/07-26_summer-coding-camp/image.webp b/contents/articles/2021/07-26_summer-coding-camp/image.webp new file mode 100644 index 00000000..179791c5 Binary files /dev/null and b/contents/articles/2021/07-26_summer-coding-camp/image.webp differ diff --git a/contents/articles/2021/07-26_summer-coding-camp/index.mdx b/contents/articles/2021/07-26_summer-coding-camp/index.mdx index a4bff7f6..172d38cd 100644 --- a/contents/articles/2021/07-26_summer-coding-camp/index.mdx +++ b/contents/articles/2021/07-26_summer-coding-camp/index.mdx @@ -3,7 +3,7 @@ title: "ut.code(); Summer Coding Campのお知らせ" date: 2021-07-26T23:49:36+09:00 categories: - "events" -image: ./image.png +image: ./image.webp --- ut.code(); では、夏休み期間を利用してイベント「ut.code(); Summer Coding Camp」を実施いたします。 diff --git a/contents/articles/2021/08-09_summer-coding-camp-1-report/image.jpg b/contents/articles/2021/08-09_summer-coding-camp-1-report/image.jpg deleted file mode 100644 index da259376..00000000 Binary files a/contents/articles/2021/08-09_summer-coding-camp-1-report/image.jpg and /dev/null differ diff --git a/contents/articles/2021/08-09_summer-coding-camp-1-report/image.webp b/contents/articles/2021/08-09_summer-coding-camp-1-report/image.webp new file mode 100644 index 00000000..c4e1bf82 Binary files /dev/null and b/contents/articles/2021/08-09_summer-coding-camp-1-report/image.webp differ diff --git a/contents/articles/2021/08-09_summer-coding-camp-1-report/index.mdx b/contents/articles/2021/08-09_summer-coding-camp-1-report/index.mdx index 78ce7d5c..ed8f2bc8 100644 --- a/contents/articles/2021/08-09_summer-coding-camp-1-report/index.mdx +++ b/contents/articles/2021/08-09_summer-coding-camp-1-report/index.mdx @@ -3,7 +3,7 @@ title: "Summer Coding Camp 第1回を開催しました" date: 2021-08-09T10:25:11+09:00 categories: - "events" -image: ./image.jpg +image: ./image.webp --- 8/6 13:00 〜 8/6 17:00 に、[KOMAD](https://komad.tokyo/)にて[Summer Coding Camp](/2021/events/2021-summer-coding-camp/)を開催しました。 diff --git a/contents/articles/2021/09-23_may-fes-94/image.jpg b/contents/articles/2021/09-23_may-fes-94/image.jpg deleted file mode 100644 index 8147e85a..00000000 Binary files a/contents/articles/2021/09-23_may-fes-94/image.jpg and /dev/null differ diff --git a/contents/articles/2021/09-23_may-fes-94/image.webp b/contents/articles/2021/09-23_may-fes-94/image.webp new file mode 100644 index 00000000..0db5b894 Binary files /dev/null and b/contents/articles/2021/09-23_may-fes-94/image.webp differ diff --git a/contents/articles/2021/09-23_may-fes-94/index.mdx b/contents/articles/2021/09-23_may-fes-94/index.mdx index 23f93a07..c6d5d49e 100644 --- a/contents/articles/2021/09-23_may-fes-94/index.mdx +++ b/contents/articles/2021/09-23_may-fes-94/index.mdx @@ -3,7 +3,7 @@ title: "第94回五月祭に出展しました" date: 2021-09-23T10:58:05+09:00 categories: - "events" -image: ./image.jpg +image: ./image.webp --- ut.code();は、第 94 回五月祭に「はじめてのプログラミング教室」を出展しました。 diff --git a/contents/articles/2021/10-20_tuk-programming-workshop-report/image.png b/contents/articles/2021/10-20_tuk-programming-workshop-report/image.png deleted file mode 100644 index 53089562..00000000 Binary files a/contents/articles/2021/10-20_tuk-programming-workshop-report/image.png and /dev/null differ diff --git a/contents/articles/2021/10-20_tuk-programming-workshop-report/image.webp b/contents/articles/2021/10-20_tuk-programming-workshop-report/image.webp new file mode 100644 index 00000000..544bc2ab Binary files /dev/null and b/contents/articles/2021/10-20_tuk-programming-workshop-report/image.webp differ diff --git a/contents/articles/2021/10-20_tuk-programming-workshop-report/index.mdx b/contents/articles/2021/10-20_tuk-programming-workshop-report/index.mdx index fc3af53c..feed95ab 100644 --- a/contents/articles/2021/10-20_tuk-programming-workshop-report/index.mdx +++ b/contents/articles/2021/10-20_tuk-programming-workshop-report/index.mdx @@ -3,7 +3,7 @@ title: "丁友会と合同でプログラミング教室を開催しました" date: 2021-10-20T22:38:55+09:00 categories: - "events" -image: ./image.png +image: ./image.webp --- ut.code(); は、2021 年 10 月 16 日 (土)に、[東京大学工学部丁友会](https://tuk.t.u-tokyo.ac.jp/)と合同でプログラミング教室を開催しました。東京大学の学部生・大学院生を対象に、HTML と若干の CSS、JavaScript の基礎を学んでいただいた上で、シンプルなウェブアプリケーションをつくってもらうことを目標に設定しました。 @@ -12,8 +12,8 @@ ut.code(); は、2021 年 10 月 16 日 (土)に、[東京大学工学部丁友 なお、丁友会と ut.code(); のスタッフは教室内にいますが、講座自体はオンラインでの開催でした。 -![活動の様子](./room.jpg) +![活動の様子](./room.webp) 使用した教材は[オープンソース](https://github.com/ut-code/programming-workshop-with-tuk)で、[こちら](https://programming-workshop-with-tuk.utcode.net/)に公開しています。ぜひご覧ください。 -![教材](./learning-material.png) +![教材](./learning-material.webp) diff --git a/contents/articles/2021/10-20_tuk-programming-workshop-report/learning-material.png b/contents/articles/2021/10-20_tuk-programming-workshop-report/learning-material.png deleted file mode 100644 index 36bbb669..00000000 Binary files a/contents/articles/2021/10-20_tuk-programming-workshop-report/learning-material.png and /dev/null differ diff --git a/contents/articles/2021/10-20_tuk-programming-workshop-report/learning-material.webp b/contents/articles/2021/10-20_tuk-programming-workshop-report/learning-material.webp new file mode 100644 index 00000000..a5248325 Binary files /dev/null and b/contents/articles/2021/10-20_tuk-programming-workshop-report/learning-material.webp differ diff --git a/contents/articles/2021/10-20_tuk-programming-workshop-report/room.jpg b/contents/articles/2021/10-20_tuk-programming-workshop-report/room.jpg deleted file mode 100644 index 5f60c23f..00000000 Binary files a/contents/articles/2021/10-20_tuk-programming-workshop-report/room.jpg and /dev/null differ diff --git a/contents/articles/2021/10-20_tuk-programming-workshop-report/room.webp b/contents/articles/2021/10-20_tuk-programming-workshop-report/room.webp new file mode 100644 index 00000000..3991a3f6 Binary files /dev/null and b/contents/articles/2021/10-20_tuk-programming-workshop-report/room.webp differ diff --git a/contents/articles/2022/02-14_recruitment-for-welcoming-events/image.png b/contents/articles/2022/02-14_recruitment-for-welcoming-events/image.png deleted file mode 100644 index e923b25c..00000000 Binary files a/contents/articles/2022/02-14_recruitment-for-welcoming-events/image.png and /dev/null differ diff --git a/contents/articles/2022/02-14_recruitment-for-welcoming-events/image.webp b/contents/articles/2022/02-14_recruitment-for-welcoming-events/image.webp new file mode 100644 index 00000000..8b8fc752 Binary files /dev/null and b/contents/articles/2022/02-14_recruitment-for-welcoming-events/image.webp differ diff --git a/contents/articles/2022/02-14_recruitment-for-welcoming-events/index.mdx b/contents/articles/2022/02-14_recruitment-for-welcoming-events/index.mdx index 6aeee466..f2628b7c 100644 --- a/contents/articles/2022/02-14_recruitment-for-welcoming-events/index.mdx +++ b/contents/articles/2022/02-14_recruitment-for-welcoming-events/index.mdx @@ -3,7 +3,7 @@ title: "2022年度の新歓活動にご協力いただける方を募集して date: 2022-02-14T23:20:40+09:00 categories: - "info" -image: ./image.png +image: ./image.webp --- 2019 年の ut.code(); の発足から、3 年の月日が経とうとしています。コロナ禍もついに終息の兆しが見え、来年度からは対面での新歓活動の再開が見込まれています。ut.code(); の掲げる「東京大学のソフトウェアエンジニアリングコミュニティとして、学生に学びと発信の機会を提供する」という理念の実現のため、この機会を逃すわけにはまいりません。 diff --git a/contents/articles/2022/03-20_welcome-events/image.png b/contents/articles/2022/03-20_welcome-events/image.png deleted file mode 100644 index dd557b4f..00000000 Binary files a/contents/articles/2022/03-20_welcome-events/image.png and /dev/null differ diff --git a/contents/articles/2022/03-20_welcome-events/image.webp b/contents/articles/2022/03-20_welcome-events/image.webp new file mode 100644 index 00000000..933cd5ea Binary files /dev/null and b/contents/articles/2022/03-20_welcome-events/image.webp differ diff --git a/contents/articles/2022/03-20_welcome-events/index.mdx b/contents/articles/2022/03-20_welcome-events/index.mdx index 7fa76dd8..06beb208 100644 --- a/contents/articles/2022/03-20_welcome-events/index.mdx +++ b/contents/articles/2022/03-20_welcome-events/index.mdx @@ -3,7 +3,7 @@ title: "2022年度新歓日程" date: 2022-03-20T21:34:39+09:00 categories: - "info" -image: ./image.png +image: ./image.webp --- ut.code();では、2022 年度の新歓活動を以下の通り実施いたします。 diff --git a/contents/articles/2022/04-03_club-orientation/image.png b/contents/articles/2022/04-03_club-orientation/image.png deleted file mode 100644 index ed091228..00000000 Binary files a/contents/articles/2022/04-03_club-orientation/image.png and /dev/null differ diff --git a/contents/articles/2022/04-03_club-orientation/image.webp b/contents/articles/2022/04-03_club-orientation/image.webp new file mode 100644 index 00000000..dee3d706 Binary files /dev/null and b/contents/articles/2022/04-03_club-orientation/image.webp differ diff --git a/contents/articles/2022/04-03_club-orientation/index.mdx b/contents/articles/2022/04-03_club-orientation/index.mdx index 8d72ea3d..9d721d75 100644 --- a/contents/articles/2022/04-03_club-orientation/index.mdx +++ b/contents/articles/2022/04-03_club-orientation/index.mdx @@ -3,7 +3,7 @@ title: "2022年度サークルオリエンテーションに参加していま date: 2022-04-03T13:24:29+09:00 categories: - "events" -image: ./image.png +image: ./image.webp --- ut.code(); は、4 月 3 日から 4 月 4 日にかけて行われるサークルオリエンテーションに参加しています。会場(1313 教室)では Web 技術を使った簡単なゲームをお楽しみいただけます。 diff --git a/contents/articles/2022/04-19_gw-event/image.png b/contents/articles/2022/04-19_gw-event/image.png deleted file mode 100644 index f0ea2461..00000000 Binary files a/contents/articles/2022/04-19_gw-event/image.png and /dev/null differ diff --git a/contents/articles/2022/04-19_gw-event/image.webp b/contents/articles/2022/04-19_gw-event/image.webp new file mode 100644 index 00000000..8424fce1 Binary files /dev/null and b/contents/articles/2022/04-19_gw-event/image.webp differ diff --git a/contents/articles/2022/04-19_gw-event/index.mdx b/contents/articles/2022/04-19_gw-event/index.mdx index b8242a3e..9e433ae6 100644 --- a/contents/articles/2022/04-19_gw-event/index.mdx +++ b/contents/articles/2022/04-19_gw-event/index.mdx @@ -3,7 +3,7 @@ title: "ゴールデンウィークイベントについてのお知らせ" date: 2022-04-19T19:40:10+09:00 categories: - "info" -image: ./image.png +image: ./image.webp --- ut.code();ではゴールデンウィークに新歓活動の一環として GW イベントを実施いたします。 diff --git a/contents/articles/2022/04-19_welcome-events-report/image.jpg b/contents/articles/2022/04-19_welcome-events-report/image.jpg deleted file mode 100644 index 223d724c..00000000 Binary files a/contents/articles/2022/04-19_welcome-events-report/image.jpg and /dev/null differ diff --git a/contents/articles/2022/04-19_welcome-events-report/image.webp b/contents/articles/2022/04-19_welcome-events-report/image.webp new file mode 100644 index 00000000..6ca39dbe Binary files /dev/null and b/contents/articles/2022/04-19_welcome-events-report/image.webp differ diff --git a/contents/articles/2022/04-19_welcome-events-report/index.mdx b/contents/articles/2022/04-19_welcome-events-report/index.mdx index 105840ec..5fa075d6 100644 --- a/contents/articles/2022/04-19_welcome-events-report/index.mdx +++ b/contents/articles/2022/04-19_welcome-events-report/index.mdx @@ -3,7 +3,7 @@ title: "2022年度新歓体験会を実施しました" date: 2022-04-19T22:57:00+09:00 categories: - "events" -image: ./image.jpg +image: ./image.webp --- 4/10(日), 4/17(日), 4/23 (土)に、[渋谷 IVY イーストビル](https://www.accea.co.jp/cr/tokyo/shibuya/shibuya01.php)にて 2022 年度新歓体験会を実施しました。 diff --git a/contents/articles/2022/04-25_may-fes-95-announce/image.jpg b/contents/articles/2022/04-25_may-fes-95-announce/image.jpg deleted file mode 100644 index 8147e85a..00000000 Binary files a/contents/articles/2022/04-25_may-fes-95-announce/image.jpg and /dev/null differ diff --git a/contents/articles/2022/04-25_may-fes-95-announce/image.webp b/contents/articles/2022/04-25_may-fes-95-announce/image.webp new file mode 100644 index 00000000..0db5b894 Binary files /dev/null and b/contents/articles/2022/04-25_may-fes-95-announce/image.webp differ diff --git a/contents/articles/2022/04-25_may-fes-95-announce/index.mdx b/contents/articles/2022/04-25_may-fes-95-announce/index.mdx index dec7baef..c8c22645 100644 --- a/contents/articles/2022/04-25_may-fes-95-announce/index.mdx +++ b/contents/articles/2022/04-25_may-fes-95-announce/index.mdx @@ -4,7 +4,7 @@ date: 2022-04-25T18:32:12+09:00 categories: - "events" - "info" -image: ./image.jpg +image: ./image.webp --- ut.code();は、第 95 回五月祭に「[はじめてのプログラミング教室](http://gogatsusai.jp/95/visitor/campus/kikaku/325)」を出展いたします。 diff --git a/contents/articles/2022/05-08_gw-event-report/image.jpg b/contents/articles/2022/05-08_gw-event-report/image.jpg deleted file mode 100644 index 12a9b380..00000000 Binary files a/contents/articles/2022/05-08_gw-event-report/image.jpg and /dev/null differ diff --git a/contents/articles/2022/05-08_gw-event-report/image.webp b/contents/articles/2022/05-08_gw-event-report/image.webp new file mode 100644 index 00000000..62d8035b Binary files /dev/null and b/contents/articles/2022/05-08_gw-event-report/image.webp differ diff --git a/contents/articles/2022/05-08_gw-event-report/index.mdx b/contents/articles/2022/05-08_gw-event-report/index.mdx index 5b7dff55..ed768f0c 100644 --- a/contents/articles/2022/05-08_gw-event-report/index.mdx +++ b/contents/articles/2022/05-08_gw-event-report/index.mdx @@ -3,7 +3,7 @@ title: "2022年度GWイベントを実施しました" date: 2022-05-08T19:34:47+09:00 categories: - "events" -image: ./image.jpg +image: ./image.webp --- ut.code();は 5/4(水), 5/5(木)の 2 日間、 [検見川総合運動場・セミナーハウス](https://www.u-tokyo.ac.jp/ja/students/facility/h08_03.html)にて新歓活動の一環として GW イベントを実施しました。 diff --git a/contents/articles/2022/05-18_may-fes-95-report/image.jpg b/contents/articles/2022/05-18_may-fes-95-report/image.jpg deleted file mode 100644 index 8147e85a..00000000 Binary files a/contents/articles/2022/05-18_may-fes-95-report/image.jpg and /dev/null differ diff --git a/contents/articles/2022/05-18_may-fes-95-report/image.webp b/contents/articles/2022/05-18_may-fes-95-report/image.webp new file mode 100644 index 00000000..0db5b894 Binary files /dev/null and b/contents/articles/2022/05-18_may-fes-95-report/image.webp differ diff --git a/contents/articles/2022/05-18_may-fes-95-report/index.mdx b/contents/articles/2022/05-18_may-fes-95-report/index.mdx index cb636459..9e24a7a0 100644 --- a/contents/articles/2022/05-18_may-fes-95-report/index.mdx +++ b/contents/articles/2022/05-18_may-fes-95-report/index.mdx @@ -3,7 +3,7 @@ title: "第95回五月祭に出展しました" date: 2022-05-18T19:05:54+09:00 categories: - "events" -image: ./image.jpg +image: ./image.webp --- ut.code();は、第 95 回五月祭に「はじめてのプログラミング教室」を出展しました。 diff --git a/contents/articles/2022/06-13_hackathon-202206/german-words.png b/contents/articles/2022/06-13_hackathon-202206/german-words.png deleted file mode 100644 index 885d69fc..00000000 Binary files a/contents/articles/2022/06-13_hackathon-202206/german-words.png and /dev/null differ diff --git a/contents/articles/2022/06-13_hackathon-202206/german-words.webp b/contents/articles/2022/06-13_hackathon-202206/german-words.webp new file mode 100644 index 00000000..a7da41c2 Binary files /dev/null and b/contents/articles/2022/06-13_hackathon-202206/german-words.webp differ diff --git a/contents/articles/2022/06-13_hackathon-202206/image.jpg b/contents/articles/2022/06-13_hackathon-202206/image.jpg deleted file mode 100644 index ba8aed67..00000000 Binary files a/contents/articles/2022/06-13_hackathon-202206/image.jpg and /dev/null differ diff --git a/contents/articles/2022/06-13_hackathon-202206/image.webp b/contents/articles/2022/06-13_hackathon-202206/image.webp new file mode 100644 index 00000000..d93ba8f8 Binary files /dev/null and b/contents/articles/2022/06-13_hackathon-202206/image.webp differ diff --git a/contents/articles/2022/06-13_hackathon-202206/index.mdx b/contents/articles/2022/06-13_hackathon-202206/index.mdx index 3850d2fe..445a1f00 100644 --- a/contents/articles/2022/06-13_hackathon-202206/index.mdx +++ b/contents/articles/2022/06-13_hackathon-202206/index.mdx @@ -3,7 +3,7 @@ title: "2022年度春新歓ハッカソンイベントを開催しました" date: 2022-06-13T15:22:35+09:00 categories: - "events" -image: ./image.jpg +image: ./image.webp --- ut.code(); では、6 月 13 日〜14 日に、ハッカソンイベントを開催しました。春新歓イベントの総まとめとして、20 名の参加者が 5 チームに分かれてそれぞれプロダクト開発を行いました。完成したプロジェクトは GitHub で公開しています。 @@ -17,7 +17,7 @@ ut.code(); では、6 月 13 日〜14 日に、ハッカソンイベントを開 - URL: [https://matching-r3vc.onrender.com](https://matching-r3vc.onrender.com/) - GitHub: [https://github.com/ut-code/matching](https://github.com/ut-code/matching) -![ドイツ語単語帳](./german-words.png) +![ドイツ語単語帳](./german-words.webp) ## くそげーオセロ @@ -26,7 +26,7 @@ ut.code(); では、6 月 13 日〜14 日に、ハッカソンイベントを開 - URL: [https://othello-bg0r.onrender.com/](https://othello-bg0r.onrender.com/) - GitHub: [](https://github.com/ut-code/othello)[https://github.com/ut-code/othello](https://github.com/ut-code/othello) -![くそげーオセロ](./othello.jpg) +![くそげーオセロ](./othello.webp) ## 麻雀どこ切る問題 @@ -35,11 +35,11 @@ ut.code(); では、6 月 13 日〜14 日に、ハッカソンイベントを開 - URL: [](https://mahjong.onrender.com/)[https://mahjong.onrender.com](https://mahjong.onrender.com/) - GitHub: [](https://github.com/ut-code/mahjong)[https://github.com/ut-code/mahjong](https://github.com/ut-code/mahjong) -![麻雀どこ切る問題1](./mahjong1.png) +![麻雀どこ切る問題1](./mahjong1.webp) -![麻雀どこ切る問題2](./mahjong2.png) +![麻雀どこ切る問題2](./mahjong2.webp) -![麻雀どこ切る問題3](./mahjong3.jpg) +![麻雀どこ切る問題3](./mahjong3.webp) ## RedSheet @@ -48,7 +48,7 @@ ut.code(); では、6 月 13 日〜14 日に、ハッカソンイベントを開 - URL: [https://our-project-go996tgjr-utcode.vercel.app/](https://our-project-go996tgjr-utcode.vercel.app/) - GitHub: [](https://github.com/ut-code/RedSheet)[https://github.com/ut-code/RedSheet](https://github.com/ut-code/RedSheet) -![RedSheet](./redsheet.png) +![RedSheet](./redsheet.webp) ## ナラベル @@ -56,4 +56,4 @@ ut.code(); では、6 月 13 日〜14 日に、ハッカソンイベントを開 - 作品説明: 数列を体験的に学ぶことができるゲームです。表示された数列の規則を自分で見つけ出し、ターミナルに入力するかのようにどんどん数列の続きを付け足していくことができます。3 回間違えるとゲームオーバーになる機能がついているので、子供だけでなく大学生も楽しくプレイできること間違いなし。 - GitHub: [](https://github.com/ut-code/naraberu)[https://github.com/ut-code/naraberu](https://github.com/ut-code/naraberu) -![ナラベル](./naraberu.jpg) +![ナラベル](./naraberu.webp) diff --git a/contents/articles/2022/06-13_hackathon-202206/mahjong1.png b/contents/articles/2022/06-13_hackathon-202206/mahjong1.png deleted file mode 100644 index c6a29fe2..00000000 Binary files a/contents/articles/2022/06-13_hackathon-202206/mahjong1.png and /dev/null differ diff --git a/contents/articles/2022/06-13_hackathon-202206/mahjong1.webp b/contents/articles/2022/06-13_hackathon-202206/mahjong1.webp new file mode 100644 index 00000000..9fc9b008 Binary files /dev/null and b/contents/articles/2022/06-13_hackathon-202206/mahjong1.webp differ diff --git a/contents/articles/2022/06-13_hackathon-202206/mahjong2.png b/contents/articles/2022/06-13_hackathon-202206/mahjong2.png deleted file mode 100644 index 7c2c3df1..00000000 Binary files a/contents/articles/2022/06-13_hackathon-202206/mahjong2.png and /dev/null differ diff --git a/contents/articles/2022/06-13_hackathon-202206/mahjong2.webp b/contents/articles/2022/06-13_hackathon-202206/mahjong2.webp new file mode 100644 index 00000000..438570e3 Binary files /dev/null and b/contents/articles/2022/06-13_hackathon-202206/mahjong2.webp differ diff --git a/contents/articles/2022/06-13_hackathon-202206/mahjong3.jpg b/contents/articles/2022/06-13_hackathon-202206/mahjong3.jpg deleted file mode 100644 index dce46ebb..00000000 Binary files a/contents/articles/2022/06-13_hackathon-202206/mahjong3.jpg and /dev/null differ diff --git a/contents/articles/2022/06-13_hackathon-202206/mahjong3.webp b/contents/articles/2022/06-13_hackathon-202206/mahjong3.webp new file mode 100644 index 00000000..3a8e8055 Binary files /dev/null and b/contents/articles/2022/06-13_hackathon-202206/mahjong3.webp differ diff --git a/contents/articles/2022/06-13_hackathon-202206/naraberu.jpg b/contents/articles/2022/06-13_hackathon-202206/naraberu.jpg deleted file mode 100644 index 13212673..00000000 Binary files a/contents/articles/2022/06-13_hackathon-202206/naraberu.jpg and /dev/null differ diff --git a/contents/articles/2022/06-13_hackathon-202206/naraberu.webp b/contents/articles/2022/06-13_hackathon-202206/naraberu.webp new file mode 100644 index 00000000..80c37456 Binary files /dev/null and b/contents/articles/2022/06-13_hackathon-202206/naraberu.webp differ diff --git a/contents/articles/2022/06-13_hackathon-202206/othello.jpg b/contents/articles/2022/06-13_hackathon-202206/othello.jpg deleted file mode 100644 index 5edc478c..00000000 Binary files a/contents/articles/2022/06-13_hackathon-202206/othello.jpg and /dev/null differ diff --git a/contents/articles/2022/06-13_hackathon-202206/othello.webp b/contents/articles/2022/06-13_hackathon-202206/othello.webp new file mode 100644 index 00000000..c36e1bd4 Binary files /dev/null and b/contents/articles/2022/06-13_hackathon-202206/othello.webp differ diff --git a/contents/articles/2022/06-13_hackathon-202206/redsheet.png b/contents/articles/2022/06-13_hackathon-202206/redsheet.png deleted file mode 100644 index 89fafe20..00000000 Binary files a/contents/articles/2022/06-13_hackathon-202206/redsheet.png and /dev/null differ diff --git a/contents/articles/2022/06-13_hackathon-202206/redsheet.webp b/contents/articles/2022/06-13_hackathon-202206/redsheet.webp new file mode 100644 index 00000000..9f41ca0b Binary files /dev/null and b/contents/articles/2022/06-13_hackathon-202206/redsheet.webp differ diff --git a/contents/articles/2022/07-02_ut-medium/image.jpg b/contents/articles/2022/07-02_ut-medium/image.jpg deleted file mode 100644 index 09b78e68..00000000 Binary files a/contents/articles/2022/07-02_ut-medium/image.jpg and /dev/null differ diff --git a/contents/articles/2022/07-02_ut-medium/image.webp b/contents/articles/2022/07-02_ut-medium/image.webp new file mode 100644 index 00000000..7c1fd56a Binary files /dev/null and b/contents/articles/2022/07-02_ut-medium/image.webp differ diff --git a/contents/articles/2022/07-02_ut-medium/index.mdx b/contents/articles/2022/07-02_ut-medium/index.mdx index c276b6e2..49900ab3 100644 --- a/contents/articles/2022/07-02_ut-medium/index.mdx +++ b/contents/articles/2022/07-02_ut-medium/index.mdx @@ -3,7 +3,7 @@ title: "新メディア開発プロジェクトが発足しました" date: 2022-07-02T17:57:10+09:00 categories: - "info" -image: ./image.jpg +image: ./image.webp --- 大学生が自由にニュースを報道できるプラットフォームである、「ut medium」をスタートさせました。 diff --git a/contents/articles/2022/07-15_summer-events/image.png b/contents/articles/2022/07-15_summer-events/image.png deleted file mode 100644 index eb3bee2d..00000000 Binary files a/contents/articles/2022/07-15_summer-events/image.png and /dev/null differ diff --git a/contents/articles/2022/07-15_summer-events/image.webp b/contents/articles/2022/07-15_summer-events/image.webp new file mode 100644 index 00000000..52b4b0d2 Binary files /dev/null and b/contents/articles/2022/07-15_summer-events/image.webp differ diff --git a/contents/articles/2022/07-15_summer-events/index.mdx b/contents/articles/2022/07-15_summer-events/index.mdx index 1e306086..8e4f29bc 100644 --- a/contents/articles/2022/07-15_summer-events/index.mdx +++ b/contents/articles/2022/07-15_summer-events/index.mdx @@ -3,7 +3,7 @@ title: "2022年度夏の学習イベントのお知らせ" date: 2022-07-15T10:25:34+09:00 categories: - "info" -image: ./image.png +image: ./image.webp author: tnagaya --- diff --git a/contents/articles/2022/08-07_summer-events-report/image.jpg b/contents/articles/2022/08-07_summer-events-report/image.jpg deleted file mode 100644 index 7d05b1e7..00000000 Binary files a/contents/articles/2022/08-07_summer-events-report/image.jpg and /dev/null differ diff --git a/contents/articles/2022/08-07_summer-events-report/image.webp b/contents/articles/2022/08-07_summer-events-report/image.webp new file mode 100644 index 00000000..25be329d Binary files /dev/null and b/contents/articles/2022/08-07_summer-events-report/image.webp differ diff --git a/contents/articles/2022/08-07_summer-events-report/index.mdx b/contents/articles/2022/08-07_summer-events-report/index.mdx index ea85bd11..35e5d9ab 100644 --- a/contents/articles/2022/08-07_summer-events-report/index.mdx +++ b/contents/articles/2022/08-07_summer-events-report/index.mdx @@ -3,7 +3,7 @@ title: 2022年度夏の学習体験会を実施しました date: 2022-08-07T16:05:36+09:00 categories: - "events" -image: ./image.jpg +image: ./image.webp author: snakamura --- diff --git a/contents/articles/2022/10-04_tuk-workshop/image.png b/contents/articles/2022/10-04_tuk-workshop/image.png deleted file mode 100644 index 30c24fff..00000000 Binary files a/contents/articles/2022/10-04_tuk-workshop/image.png and /dev/null differ diff --git a/contents/articles/2022/10-04_tuk-workshop/image.webp b/contents/articles/2022/10-04_tuk-workshop/image.webp new file mode 100644 index 00000000..34c37186 Binary files /dev/null and b/contents/articles/2022/10-04_tuk-workshop/image.webp differ diff --git a/contents/articles/2022/10-04_tuk-workshop/index.mdx b/contents/articles/2022/10-04_tuk-workshop/index.mdx index b7bddab7..268cb30a 100644 --- a/contents/articles/2022/10-04_tuk-workshop/index.mdx +++ b/contents/articles/2022/10-04_tuk-workshop/index.mdx @@ -3,7 +3,7 @@ title: 【丁友会 × ut.code();】プログラミング講習会のお知ら date: 2022-10-04T15:00:00+09:00 categories: - "events" -image: ./image.png +image: ./image.webp --- ut.code(); は工学部丁友会と合同で、東京大学の学部生および大学院生を対象にプログラミング講習会を以下の通り実施いたします。 diff --git a/contents/articles/2022/10-17_tuk-workshop-report/image.jpg b/contents/articles/2022/10-17_tuk-workshop-report/image.jpg deleted file mode 100644 index 66395580..00000000 Binary files a/contents/articles/2022/10-17_tuk-workshop-report/image.jpg and /dev/null differ diff --git a/contents/articles/2022/10-17_tuk-workshop-report/image.webp b/contents/articles/2022/10-17_tuk-workshop-report/image.webp new file mode 100644 index 00000000..8d4d5387 Binary files /dev/null and b/contents/articles/2022/10-17_tuk-workshop-report/image.webp differ diff --git a/contents/articles/2022/10-17_tuk-workshop-report/image1.jpg b/contents/articles/2022/10-17_tuk-workshop-report/image1.jpg deleted file mode 100644 index fd91d239..00000000 Binary files a/contents/articles/2022/10-17_tuk-workshop-report/image1.jpg and /dev/null differ diff --git a/contents/articles/2022/10-17_tuk-workshop-report/image1.webp b/contents/articles/2022/10-17_tuk-workshop-report/image1.webp new file mode 100644 index 00000000..74b6fe48 Binary files /dev/null and b/contents/articles/2022/10-17_tuk-workshop-report/image1.webp differ diff --git a/contents/articles/2022/10-17_tuk-workshop-report/image2.jpg b/contents/articles/2022/10-17_tuk-workshop-report/image2.jpg deleted file mode 100644 index 52f48d79..00000000 Binary files a/contents/articles/2022/10-17_tuk-workshop-report/image2.jpg and /dev/null differ diff --git a/contents/articles/2022/10-17_tuk-workshop-report/image2.webp b/contents/articles/2022/10-17_tuk-workshop-report/image2.webp new file mode 100644 index 00000000..9a80fb83 Binary files /dev/null and b/contents/articles/2022/10-17_tuk-workshop-report/image2.webp differ diff --git a/contents/articles/2022/10-17_tuk-workshop-report/index.mdx b/contents/articles/2022/10-17_tuk-workshop-report/index.mdx index 0f108ecc..4e26b9fc 100644 --- a/contents/articles/2022/10-17_tuk-workshop-report/index.mdx +++ b/contents/articles/2022/10-17_tuk-workshop-report/index.mdx @@ -3,12 +3,12 @@ title: 丁友会プログラミング教室を開催しました date: 2022-10-17T15:10:23+09:00 categories: - "events" -image: ./image.jpg +image: ./image.webp --- -![会場の様子1](./image1.jpg) +![会場の様子1](./image1.webp) -![会場の様子2](./image2.jpg) +![会場の様子2](./image2.webp) 10/15(土) にオンライン形式で 丁友会 × ut.code(); プログラミング講習会を開催しました。 diff --git a/contents/articles/2022/11-23_komaba-grand-prix/image.jpg b/contents/articles/2022/11-23_komaba-grand-prix/image.jpg deleted file mode 100644 index 084abb6e..00000000 Binary files a/contents/articles/2022/11-23_komaba-grand-prix/image.jpg and /dev/null differ diff --git a/contents/articles/2022/11-23_komaba-grand-prix/image.webp b/contents/articles/2022/11-23_komaba-grand-prix/image.webp new file mode 100644 index 00000000..4f3b722b Binary files /dev/null and b/contents/articles/2022/11-23_komaba-grand-prix/image.webp differ diff --git a/contents/articles/2022/11-23_komaba-grand-prix/index.mdx b/contents/articles/2022/11-23_komaba-grand-prix/index.mdx index e9833505..af15c32a 100644 --- a/contents/articles/2022/11-23_komaba-grand-prix/index.mdx +++ b/contents/articles/2022/11-23_komaba-grand-prix/index.mdx @@ -3,7 +3,7 @@ title: 駒場グランプリを受賞しました date: 2022-11-23T17:09:29+09:00 categories: - "events" -image: ./image.jpg +image: ./image.webp --- ut.code(); では、2022年11月18日(金)〜20日(日)に行われた駒場祭において、「あなたのためのプログラミング」という企画名で参加しました。 @@ -12,7 +12,7 @@ ut.code(); では、2022年11月18日(金)〜20日(日)に行われた そして、皆さまの投票の結果、「駒場グランプリ」を受賞することができました。 -![会場の様子](./room.jpg) +![会場の様子](./room.webp) 当日、特に土日の午後に関しましては大変ご盛況となりました。お待たせすることになってしまった方、ご案内できなかった方は、大変申し訳ございませんでした。 diff --git a/contents/articles/2022/11-23_komaba-grand-prix/room.jpg b/contents/articles/2022/11-23_komaba-grand-prix/room.jpg deleted file mode 100644 index 7168e364..00000000 Binary files a/contents/articles/2022/11-23_komaba-grand-prix/room.jpg and /dev/null differ diff --git a/contents/articles/2022/11-23_komaba-grand-prix/room.webp b/contents/articles/2022/11-23_komaba-grand-prix/room.webp new file mode 100644 index 00000000..c558e329 Binary files /dev/null and b/contents/articles/2022/11-23_komaba-grand-prix/room.webp differ diff --git a/contents/articles/2023/04-02_2022-winter-report/camp.jpg b/contents/articles/2023/04-02_2022-winter-report/camp.jpg deleted file mode 100644 index 63ab7961..00000000 Binary files a/contents/articles/2023/04-02_2022-winter-report/camp.jpg and /dev/null differ diff --git a/contents/articles/2023/04-02_2022-winter-report/camp.webp b/contents/articles/2023/04-02_2022-winter-report/camp.webp new file mode 100644 index 00000000..28fcda3a Binary files /dev/null and b/contents/articles/2023/04-02_2022-winter-report/camp.webp differ diff --git a/contents/articles/2023/04-02_2022-winter-report/end-of-year-party.jpg b/contents/articles/2023/04-02_2022-winter-report/end-of-year-party.jpg deleted file mode 100644 index 54a1f696..00000000 Binary files a/contents/articles/2023/04-02_2022-winter-report/end-of-year-party.jpg and /dev/null differ diff --git a/contents/articles/2023/04-02_2022-winter-report/end-of-year-party.webp b/contents/articles/2023/04-02_2022-winter-report/end-of-year-party.webp new file mode 100644 index 00000000..cde67843 Binary files /dev/null and b/contents/articles/2023/04-02_2022-winter-report/end-of-year-party.webp differ diff --git a/contents/articles/2023/04-02_2022-winter-report/image.jpg b/contents/articles/2023/04-02_2022-winter-report/image.jpg deleted file mode 100644 index 75c74086..00000000 Binary files a/contents/articles/2023/04-02_2022-winter-report/image.jpg and /dev/null differ diff --git a/contents/articles/2023/04-02_2022-winter-report/image.webp b/contents/articles/2023/04-02_2022-winter-report/image.webp new file mode 100644 index 00000000..7b40b629 Binary files /dev/null and b/contents/articles/2023/04-02_2022-winter-report/image.webp differ diff --git a/contents/articles/2023/04-02_2022-winter-report/index.mdx b/contents/articles/2023/04-02_2022-winter-report/index.mdx index a8a95396..3a89a914 100644 --- a/contents/articles/2023/04-02_2022-winter-report/index.mdx +++ b/contents/articles/2023/04-02_2022-winter-report/index.mdx @@ -3,7 +3,7 @@ title: 2022 年度冬の活動報告 date: 2023-04-02T22:00:00+09:00 categories: - info -image: ./image.jpg +image: ./image.webp --- 2022 年度もあっという間に過ぎ去り、いよいよ 2023 年度の新入生を迎えようとしています。 @@ -13,7 +13,7 @@ image: ./image.jpg ## 大忘年会を開催しました -![大忘年会の様子](./end-of-year-party.jpg) +![大忘年会の様子](./end-of-year-party.webp) 大忘年会は、年末に開催された ut.code(); 内部のイベントです。忘年会を名乗っているため部屋に集まって食事をしていますが(感染症対策は徹底しています!)、同時に ut.code(); の新しいプロジェクトを決めるブレインストーミング大会にすることにしました。 @@ -21,7 +21,7 @@ image: ./image.jpg ## プロジェクトが始動しました -![キックオフミーティングの様子](./project-kickoff.jpg) +![キックオフミーティングの様子](./project-kickoff.webp) ut.code(); にとっては、多くのプロジェクトが同時進行するのは初めての経験になります。確実にプロジェクトを成功させるため、初回のミーティングは各プロジェクトごとに集まり、元のアイデアをブラッシュアップしたり、役割分担を決めたりしました。 @@ -31,7 +31,7 @@ ut.code(); にとっては、多くのプロジェクトが同時進行するの ## 春合宿を実施しました -![春合宿の様子](./camp.jpg) +![春合宿の様子](./camp.webp) ut.code(); 初のイベントとして合宿を開催しました。会場は[東京大学山中寮内藤セミナーハウス](http://www.abreuvoir.co.jp/yamanaka/)で、2 泊 3 日の日程で行いました。こちらの会場には東京から施設のすぐ近くまで移動できる高速バスが通っているため、アクセスは良好です。 @@ -39,7 +39,7 @@ ut.code(); 初のイベントとして合宿を開催しました。会場は[ ## ウェブサイトをリニューアルしました -![元のウェブサイト](./previous-website.png) +![元のウェブサイト](./previous-website.webp) ut.code(); 設立当初より 4 年間維持してきた元のウェブサイトを、この度刷新することにしました。動機は、複数のプロジェクトが動き始め、それらの情報を発信していくためにより高度で安定したウェブサイトが必要になったためです。 diff --git a/contents/articles/2023/04-02_2022-winter-report/previous-website.png b/contents/articles/2023/04-02_2022-winter-report/previous-website.png deleted file mode 100644 index cb114dc6..00000000 Binary files a/contents/articles/2023/04-02_2022-winter-report/previous-website.png and /dev/null differ diff --git a/contents/articles/2023/04-02_2022-winter-report/previous-website.webp b/contents/articles/2023/04-02_2022-winter-report/previous-website.webp new file mode 100644 index 00000000..528e7f7d Binary files /dev/null and b/contents/articles/2023/04-02_2022-winter-report/previous-website.webp differ diff --git a/contents/articles/2023/04-02_2022-winter-report/project-kickoff.jpg b/contents/articles/2023/04-02_2022-winter-report/project-kickoff.jpg deleted file mode 100644 index fb1be4a5..00000000 Binary files a/contents/articles/2023/04-02_2022-winter-report/project-kickoff.jpg and /dev/null differ diff --git a/contents/articles/2023/04-02_2022-winter-report/project-kickoff.webp b/contents/articles/2023/04-02_2022-winter-report/project-kickoff.webp new file mode 100644 index 00000000..b596f867 Binary files /dev/null and b/contents/articles/2023/04-02_2022-winter-report/project-kickoff.webp differ diff --git a/contents/articles/2023/04-03_seminar-detail/image.png b/contents/articles/2023/04-03_seminar-detail/image.png deleted file mode 100644 index 3460bc4e..00000000 Binary files a/contents/articles/2023/04-03_seminar-detail/image.png and /dev/null differ diff --git a/contents/articles/2023/04-03_seminar-detail/image.webp b/contents/articles/2023/04-03_seminar-detail/image.webp new file mode 100644 index 00000000..01524b68 Binary files /dev/null and b/contents/articles/2023/04-03_seminar-detail/image.webp differ diff --git a/contents/articles/2023/04-03_seminar-detail/index.mdx b/contents/articles/2023/04-03_seminar-detail/index.mdx index edf58ba9..9c2ccf1a 100644 --- a/contents/articles/2023/04-03_seminar-detail/index.mdx +++ b/contents/articles/2023/04-03_seminar-detail/index.mdx @@ -3,7 +3,7 @@ title: 2023年度Sセメスター自主ゼミのお知らせ date: 2023-04-03T22:00:00+09:00 categories: - info -image: ./image.png +image: ./image.webp --- 桜が美しく咲き乱れる今日この頃、大学もいよいよ春学期の始まりが近づいています。ut.code();では今学期から新たにプログラミングや Web 技術を学び始める人のために、自主ゼミを開催することになりました! diff --git a/contents/articles/2023/04-11_-workshop-spring-detail/image.png b/contents/articles/2023/04-11_-workshop-spring-detail/image.png deleted file mode 100644 index c75e7d39..00000000 Binary files a/contents/articles/2023/04-11_-workshop-spring-detail/image.png and /dev/null differ diff --git a/contents/articles/2023/04-11_-workshop-spring-detail/image.webp b/contents/articles/2023/04-11_-workshop-spring-detail/image.webp new file mode 100644 index 00000000..24db1e59 Binary files /dev/null and b/contents/articles/2023/04-11_-workshop-spring-detail/image.webp differ diff --git a/contents/articles/2023/04-11_-workshop-spring-detail/index.mdx b/contents/articles/2023/04-11_-workshop-spring-detail/index.mdx index 2ed51505..34340c24 100644 --- a/contents/articles/2023/04-11_-workshop-spring-detail/index.mdx +++ b/contents/articles/2023/04-11_-workshop-spring-detail/index.mdx @@ -3,7 +3,7 @@ title: 2023年春の講習会開催のお知らせ date: 2023-04-12T15:01:30+09:00 categories: - info -image: ./image.png +image: ./image.webp --- ut.code(); では、ゼミ「モダン Web 開発入門」に曜限の都合などで参加できない方向けに、講習会を開催いたします! diff --git a/contents/articles/2023/04-21_may-fes-96-announce/image.jpg b/contents/articles/2023/04-21_may-fes-96-announce/image.jpg deleted file mode 100644 index 0936156a..00000000 Binary files a/contents/articles/2023/04-21_may-fes-96-announce/image.jpg and /dev/null differ diff --git a/contents/articles/2023/04-21_may-fes-96-announce/image.webp b/contents/articles/2023/04-21_may-fes-96-announce/image.webp new file mode 100644 index 00000000..12a6c65d Binary files /dev/null and b/contents/articles/2023/04-21_may-fes-96-announce/image.webp differ diff --git a/contents/articles/2023/04-21_may-fes-96-announce/index.mdx b/contents/articles/2023/04-21_may-fes-96-announce/index.mdx index 672ad65a..e3affc31 100644 --- a/contents/articles/2023/04-21_may-fes-96-announce/index.mdx +++ b/contents/articles/2023/04-21_may-fes-96-announce/index.mdx @@ -4,7 +4,7 @@ date: 2023-04-21T12:00:00+09:00 categories: - "events" - "info" -image: ./image.jpg +image: ./image.webp author: snakamura --- diff --git a/contents/articles/2023/05-16_may-fes-96-report/image.jpg b/contents/articles/2023/05-16_may-fes-96-report/image.jpg deleted file mode 100644 index e365c0a1..00000000 Binary files a/contents/articles/2023/05-16_may-fes-96-report/image.jpg and /dev/null differ diff --git a/contents/articles/2023/05-16_may-fes-96-report/image.webp b/contents/articles/2023/05-16_may-fes-96-report/image.webp new file mode 100644 index 00000000..db7d5a2c Binary files /dev/null and b/contents/articles/2023/05-16_may-fes-96-report/image.webp differ diff --git a/contents/articles/2023/05-16_may-fes-96-report/index.mdx b/contents/articles/2023/05-16_may-fes-96-report/index.mdx index f93434f6..09c1502a 100644 --- a/contents/articles/2023/05-16_may-fes-96-report/index.mdx +++ b/contents/articles/2023/05-16_may-fes-96-report/index.mdx @@ -3,7 +3,7 @@ title: "第96回五月祭に出展しました" date: 2023-05-16T12:00:00+09:00 categories: - "events" -image: ./image.jpg +image: ./image.webp author: snakamura --- @@ -11,7 +11,7 @@ ut.code();は、5 月 13 日 (土) 、5 月 14 日 (日) に行われた第 96 今回は実に 4 年ぶりの入構制限なしの開催となり、雨天であったにもかかわらず多くの方にご来場いただきました。お待たせしてしまった方、ご案内できなかった方は、申し訳ございませんでした。 -![会場の様子](./room.jpg) +![会場の様子](./room.webp) 本企画は「[五月祭総選挙](https://gogatsusai.jp/96/visitor/awards/)」の参加型部門にて第 2 位を受賞しました。たくさんの投票をいただきありがとうございました。 diff --git a/contents/articles/2023/05-16_may-fes-96-report/room.jpg b/contents/articles/2023/05-16_may-fes-96-report/room.jpg deleted file mode 100644 index 4692489c..00000000 Binary files a/contents/articles/2023/05-16_may-fes-96-report/room.jpg and /dev/null differ diff --git a/contents/articles/2023/05-16_may-fes-96-report/room.webp b/contents/articles/2023/05-16_may-fes-96-report/room.webp new file mode 100644 index 00000000..edf90ecd Binary files /dev/null and b/contents/articles/2023/05-16_may-fes-96-report/room.webp differ diff --git a/contents/articles/2023/05-17_geekhaku-report/booth.jpg b/contents/articles/2023/05-17_geekhaku-report/booth.jpg deleted file mode 100644 index 98d8172a..00000000 Binary files a/contents/articles/2023/05-17_geekhaku-report/booth.jpg and /dev/null differ diff --git a/contents/articles/2023/05-17_geekhaku-report/booth.webp b/contents/articles/2023/05-17_geekhaku-report/booth.webp new file mode 100644 index 00000000..a07681cd Binary files /dev/null and b/contents/articles/2023/05-17_geekhaku-report/booth.webp differ diff --git a/contents/articles/2023/05-17_geekhaku-report/image.jpg b/contents/articles/2023/05-17_geekhaku-report/image.jpg deleted file mode 100644 index e9ed1490..00000000 Binary files a/contents/articles/2023/05-17_geekhaku-report/image.jpg and /dev/null differ diff --git a/contents/articles/2023/05-17_geekhaku-report/image.webp b/contents/articles/2023/05-17_geekhaku-report/image.webp new file mode 100644 index 00000000..1de30ce0 Binary files /dev/null and b/contents/articles/2023/05-17_geekhaku-report/image.webp differ diff --git a/contents/articles/2023/05-17_geekhaku-report/index.mdx b/contents/articles/2023/05-17_geekhaku-report/index.mdx index b73326fc..a03fad04 100644 --- a/contents/articles/2023/05-17_geekhaku-report/index.mdx +++ b/contents/articles/2023/05-17_geekhaku-report/index.mdx @@ -3,7 +3,7 @@ title: "技育博2023に参加しました" date: 2023-05-19T12:00:00+09:00 categories: - "events" -image: ./image.jpg +image: ./image.webp --- ut.code();は、[技育博2023](https://talent.supporterz.jp/geekhaku/2023/)に参加しました。 @@ -12,8 +12,8 @@ ut.code();は、[技育博2023](https://talent.supporterz.jp/geekhaku/2023/)に イベントでは、各団体がブースを設置し、参加者同士が交流を深める機会が設けられました。また、学生だけでなく、企業の方々にもut.code();のブースにお越しいただき、団体のことやプロジェクトのことを紹介することができました。 -![ブースの様子](./booth.jpg) +![ブースの様子](./booth.webp) 楽しく有意義なイベントになりました。交流していただいた学生のみなさん、企業のみなさん、そして運営のみなさん、ありがとうございました。 -![ゆめみの広報さんとの写真](./yumemi.jpg) +![ゆめみの広報さんとの写真](./yumemi.webp) diff --git a/contents/articles/2023/05-17_geekhaku-report/yumemi.jpg b/contents/articles/2023/05-17_geekhaku-report/yumemi.jpg deleted file mode 100644 index aba66ac1..00000000 Binary files a/contents/articles/2023/05-17_geekhaku-report/yumemi.jpg and /dev/null differ diff --git a/contents/articles/2023/05-17_geekhaku-report/yumemi.webp b/contents/articles/2023/05-17_geekhaku-report/yumemi.webp new file mode 100644 index 00000000..4c95f68e Binary files /dev/null and b/contents/articles/2023/05-17_geekhaku-report/yumemi.webp differ diff --git a/contents/articles/2023/07-01_gmo-internet-group-seminar/image.jpg b/contents/articles/2023/07-01_gmo-internet-group-seminar/image.jpg deleted file mode 100644 index 24d1a4ee..00000000 Binary files a/contents/articles/2023/07-01_gmo-internet-group-seminar/image.jpg and /dev/null differ diff --git a/contents/articles/2023/07-01_gmo-internet-group-seminar/image.webp b/contents/articles/2023/07-01_gmo-internet-group-seminar/image.webp new file mode 100644 index 00000000..f646d7bf Binary files /dev/null and b/contents/articles/2023/07-01_gmo-internet-group-seminar/image.webp differ diff --git a/contents/articles/2023/07-01_gmo-internet-group-seminar/image2.jpg b/contents/articles/2023/07-01_gmo-internet-group-seminar/image2.jpg deleted file mode 100644 index 1084166a..00000000 Binary files a/contents/articles/2023/07-01_gmo-internet-group-seminar/image2.jpg and /dev/null differ diff --git a/contents/articles/2023/07-01_gmo-internet-group-seminar/image2.webp b/contents/articles/2023/07-01_gmo-internet-group-seminar/image2.webp new file mode 100644 index 00000000..07397d6d Binary files /dev/null and b/contents/articles/2023/07-01_gmo-internet-group-seminar/image2.webp differ diff --git a/contents/articles/2023/07-01_gmo-internet-group-seminar/index.mdx b/contents/articles/2023/07-01_gmo-internet-group-seminar/index.mdx index 35de2dbc..e2ed887d 100644 --- a/contents/articles/2023/07-01_gmo-internet-group-seminar/index.mdx +++ b/contents/articles/2023/07-01_gmo-internet-group-seminar/index.mdx @@ -3,7 +3,7 @@ title: "GMO Internet Groupの成瀬允宣さんによるAWSワークショップ date: 2023-07-01T12:00:00+09:00 categories: - "events" -image: ./image.jpg +image: ./image.webp --- 7 月 1 日 (土) に、GMO Internet Groupの成瀬さんがut.code();に向けてAWSの勉強会を開催してくださいました。 @@ -13,7 +13,7 @@ image: ./image.jpg 今回のワークショップでは、Terraformを使ってAWSのインフラを構築し、デモアプリを実行する方法を学びました。 さらに、AWSのサービスを用いたCI・CD実装や実践的な開発ワークフローを体験しました。 -![ワークショップの様子](./image2.jpg) +![ワークショップの様子](./image2.webp) 内容は高度でしたが、成瀬さんの丁寧な説明もあり、参加者たちで協力しながらワークショップを進めることができました。 プロの方に教えてもらう機会はなかなかないので、とても貴重な体験となりました。 diff --git a/contents/articles/2023/08-06_-hackathon-invitation/image.png b/contents/articles/2023/08-06_-hackathon-invitation/image.png deleted file mode 100644 index 22b675c5..00000000 Binary files a/contents/articles/2023/08-06_-hackathon-invitation/image.png and /dev/null differ diff --git a/contents/articles/2023/08-06_-hackathon-invitation/image.webp b/contents/articles/2023/08-06_-hackathon-invitation/image.webp new file mode 100644 index 00000000..cde1bfd1 Binary files /dev/null and b/contents/articles/2023/08-06_-hackathon-invitation/image.webp differ diff --git a/contents/articles/2023/08-06_-hackathon-invitation/index.mdx b/contents/articles/2023/08-06_-hackathon-invitation/index.mdx index c1bca456..28021c8a 100644 --- a/contents/articles/2023/08-06_-hackathon-invitation/index.mdx +++ b/contents/articles/2023/08-06_-hackathon-invitation/index.mdx @@ -3,7 +3,7 @@ title: "夏のハッカソン開催のお知らせ" date: 2023-08-06T12:00:00+09:00 categories: - "events" -image: ./image.png +image: ./image.webp --- ut.code(); はこの夏、ハッカソンを開催いたします! diff --git a/contents/articles/2023/08-14_announce-design-workshop/image.jpg b/contents/articles/2023/08-14_announce-design-workshop/image.jpg deleted file mode 100644 index 8ff0bdf4..00000000 Binary files a/contents/articles/2023/08-14_announce-design-workshop/image.jpg and /dev/null differ diff --git a/contents/articles/2023/08-14_announce-design-workshop/image.webp b/contents/articles/2023/08-14_announce-design-workshop/image.webp new file mode 100644 index 00000000..235ace00 Binary files /dev/null and b/contents/articles/2023/08-14_announce-design-workshop/image.webp differ diff --git a/contents/articles/2023/08-14_announce-design-workshop/image2.jpg b/contents/articles/2023/08-14_announce-design-workshop/image2.jpg deleted file mode 100644 index 61e6bee8..00000000 Binary files a/contents/articles/2023/08-14_announce-design-workshop/image2.jpg and /dev/null differ diff --git a/contents/articles/2023/08-14_announce-design-workshop/image2.webp b/contents/articles/2023/08-14_announce-design-workshop/image2.webp new file mode 100644 index 00000000..b42751f6 Binary files /dev/null and b/contents/articles/2023/08-14_announce-design-workshop/image2.webp differ diff --git a/contents/articles/2023/08-14_announce-design-workshop/index.mdx b/contents/articles/2023/08-14_announce-design-workshop/index.mdx index 7b572a06..2ed55608 100644 --- a/contents/articles/2023/08-14_announce-design-workshop/index.mdx +++ b/contents/articles/2023/08-14_announce-design-workshop/index.mdx @@ -3,7 +3,7 @@ title: "夏のデザイン講習会" date: 2023-08-14T12:00:00+09:00 categories: - "events" -image: ./image.jpg +image: ./image.webp --- Webアプリをつくる上で、見た目(UI)を良くする努力は不可欠です。 @@ -15,7 +15,7 @@ Webアプリデザインの基礎が1日で学べる講習会を開催します 講習会ではデザインの基本原則から、実際にUIデザインを作ってレビューまでの流れを体験できちゃいます! この講習会を受ければこんな感じの整ったデザインが自分で作れるようになるかも? -![デザインのイメージ](./image2.jpg) +![デザインのイメージ](./image2.webp) - 日時:8/29(火)(開始時間は決定次第お知らせします) - 場所:駒場キャンパス学生会館(教室は決定次第お知らせします) diff --git a/contents/articles/2023/08-20_junior-programming-festival/image.jpg b/contents/articles/2023/08-20_junior-programming-festival/image.jpg deleted file mode 100644 index d9e48e13..00000000 Binary files a/contents/articles/2023/08-20_junior-programming-festival/image.jpg and /dev/null differ diff --git a/contents/articles/2023/08-20_junior-programming-festival/image.webp b/contents/articles/2023/08-20_junior-programming-festival/image.webp new file mode 100644 index 00000000..5ef034a9 Binary files /dev/null and b/contents/articles/2023/08-20_junior-programming-festival/image.webp differ diff --git a/contents/articles/2023/08-20_junior-programming-festival/index.mdx b/contents/articles/2023/08-20_junior-programming-festival/index.mdx index 3d812152..3aa8b072 100644 --- a/contents/articles/2023/08-20_junior-programming-festival/index.mdx +++ b/contents/articles/2023/08-20_junior-programming-festival/index.mdx @@ -3,7 +3,7 @@ title: コエテコジュニアプログラミングフェス2023に出展しま date: 2023-08-20T22:00:00+09:00 categories: - events -image: ./image.jpg +image: ./image.webp --- ut.code();は 8 月 20 日に[コエテコジュニアプログラミングフェス 2023](https://expo.coeteco.jp/junior-programming-fes-2023)に出展しました。 @@ -14,6 +14,6 @@ ut.code();は 8 月 20 日に[コエテコジュニアプログラミングフ ut.code();は、今までの学園祭でも出展していた[「はじめてのプログラミング教室」](https://first-programming.utcode.net/)を展示しました。 多くの子どもたちにブロックを使ったプログラミングを体験してもらうことができました。 -![迷路の問題](./maze.png) +![迷路の問題](./maze.webp) 非常に楽しく有意義なイベントでした。来ていただいた皆様、ご担当者様、ありがとうございました。 diff --git a/contents/articles/2023/08-20_junior-programming-festival/maze.png b/contents/articles/2023/08-20_junior-programming-festival/maze.png deleted file mode 100644 index e50bcb68..00000000 Binary files a/contents/articles/2023/08-20_junior-programming-festival/maze.png and /dev/null differ diff --git a/contents/articles/2023/08-20_junior-programming-festival/maze.webp b/contents/articles/2023/08-20_junior-programming-festival/maze.webp new file mode 100644 index 00000000..b8d6b558 Binary files /dev/null and b/contents/articles/2023/08-20_junior-programming-festival/maze.webp differ diff --git a/contents/articles/2023/08-27_-hackathon-review/call-paper.png b/contents/articles/2023/08-27_-hackathon-review/call-paper.png deleted file mode 100644 index b47f6a98..00000000 Binary files a/contents/articles/2023/08-27_-hackathon-review/call-paper.png and /dev/null differ diff --git a/contents/articles/2023/08-27_-hackathon-review/call-paper.webp b/contents/articles/2023/08-27_-hackathon-review/call-paper.webp new file mode 100644 index 00000000..e0485b87 Binary files /dev/null and b/contents/articles/2023/08-27_-hackathon-review/call-paper.webp differ diff --git a/contents/articles/2023/08-27_-hackathon-review/denigma.png b/contents/articles/2023/08-27_-hackathon-review/denigma.png deleted file mode 100644 index 0be198e7..00000000 Binary files a/contents/articles/2023/08-27_-hackathon-review/denigma.png and /dev/null differ diff --git a/contents/articles/2023/08-27_-hackathon-review/denigma.webp b/contents/articles/2023/08-27_-hackathon-review/denigma.webp new file mode 100644 index 00000000..297976ff Binary files /dev/null and b/contents/articles/2023/08-27_-hackathon-review/denigma.webp differ diff --git a/contents/articles/2023/08-27_-hackathon-review/image.jpg b/contents/articles/2023/08-27_-hackathon-review/image.jpg deleted file mode 100644 index 5023ce1b..00000000 Binary files a/contents/articles/2023/08-27_-hackathon-review/image.jpg and /dev/null differ diff --git a/contents/articles/2023/08-27_-hackathon-review/image.webp b/contents/articles/2023/08-27_-hackathon-review/image.webp new file mode 100644 index 00000000..9dc36596 Binary files /dev/null and b/contents/articles/2023/08-27_-hackathon-review/image.webp differ diff --git a/contents/articles/2023/08-27_-hackathon-review/index.mdx b/contents/articles/2023/08-27_-hackathon-review/index.mdx index 6b4b892d..fa028023 100644 --- a/contents/articles/2023/08-27_-hackathon-review/index.mdx +++ b/contents/articles/2023/08-27_-hackathon-review/index.mdx @@ -3,7 +3,7 @@ title: "夏のハッカソンを開催しました!" date: 2023-08-27T12:00:00+09:00 categories: - "events" -image: ./image.jpg +image: ./image.webp --- ut.code(); では、8 月 17 日〜19 日に、ハッカソンイベントを開催しました。16 名の参加者が 4 チームに分かれてそれぞれプロダクト開発を行いました。完成したプロジェクトのソースコードは GitHub で公開しています。 @@ -17,7 +17,7 @@ ut.code(); では、8 月 17 日〜19 日に、ハッカソンイベントを開 - URL: [https://ut-code.github.io/music-app/](https://ut-code.github.io/music-app/) - GitHub: [https://github.com/ut-code/music-app](https://github.com/ut-code/music-app) -![music-app](./music-app.png) +![music-app](./music-app.webp) ## 暗号解読ゲーム @@ -26,7 +26,7 @@ ut.code(); では、8 月 17 日〜19 日に、ハッカソンイベントを開 - URL: [https://utcode-denigma.onrender.com/](https://utcode-denigma.onrender.com/) - GitHub: [https://github.com/ut-code/denigma](https://github.com/ut-code/denigma) -![denigma](./denigma.png) +![denigma](./denigma.webp) ## 論文用アプリ @@ -35,7 +35,7 @@ ut.code(); では、8 月 17 日〜19 日に、ハッカソンイベントを開 - URL: [https://call-paper.pages.dev/](https://call-paper.pages.dev/) - GitHub: [https://github.com/ut-code/call-paper](https://github.com/ut-code/call-paper) -![call-paper](./call-paper.png) +![call-paper](./call-paper.webp) ## ToDoアプリ @@ -43,4 +43,4 @@ ut.code(); では、8 月 17 日〜19 日に、ハッカソンイベントを開 - 作品説明: ToDoを管理できる Web アプリ - GitHub: [https://github.com/ut-code/todo-2023-hackathon](https://github.com/ut-code/todo-2023-hackathon) -![todoアプリ](./todo.png) +![todoアプリ](./todo.webp) diff --git a/contents/articles/2023/08-27_-hackathon-review/music-app.png b/contents/articles/2023/08-27_-hackathon-review/music-app.png deleted file mode 100644 index 5831e36a..00000000 Binary files a/contents/articles/2023/08-27_-hackathon-review/music-app.png and /dev/null differ diff --git a/contents/articles/2023/08-27_-hackathon-review/music-app.webp b/contents/articles/2023/08-27_-hackathon-review/music-app.webp new file mode 100644 index 00000000..272afe50 Binary files /dev/null and b/contents/articles/2023/08-27_-hackathon-review/music-app.webp differ diff --git a/contents/articles/2023/08-27_-hackathon-review/todo.png b/contents/articles/2023/08-27_-hackathon-review/todo.png deleted file mode 100644 index 182a6036..00000000 Binary files a/contents/articles/2023/08-27_-hackathon-review/todo.png and /dev/null differ diff --git a/contents/articles/2023/08-27_-hackathon-review/todo.webp b/contents/articles/2023/08-27_-hackathon-review/todo.webp new file mode 100644 index 00000000..215dd620 Binary files /dev/null and b/contents/articles/2023/08-27_-hackathon-review/todo.webp differ diff --git a/contents/articles/2023/08-29_design-workshop/image.png b/contents/articles/2023/08-29_design-workshop/image.png deleted file mode 100755 index 760efa80..00000000 Binary files a/contents/articles/2023/08-29_design-workshop/image.png and /dev/null differ diff --git a/contents/articles/2023/08-29_design-workshop/image.webp b/contents/articles/2023/08-29_design-workshop/image.webp new file mode 100644 index 00000000..1835682a Binary files /dev/null and b/contents/articles/2023/08-29_design-workshop/image.webp differ diff --git a/contents/articles/2023/08-29_design-workshop/image2.png b/contents/articles/2023/08-29_design-workshop/image2.png deleted file mode 100644 index 8ec460e2..00000000 Binary files a/contents/articles/2023/08-29_design-workshop/image2.png and /dev/null differ diff --git a/contents/articles/2023/08-29_design-workshop/image2.webp b/contents/articles/2023/08-29_design-workshop/image2.webp new file mode 100644 index 00000000..16ba933e Binary files /dev/null and b/contents/articles/2023/08-29_design-workshop/image2.webp differ diff --git a/contents/articles/2023/08-29_design-workshop/index.mdx b/contents/articles/2023/08-29_design-workshop/index.mdx index 9dfe9209..0122d9a6 100644 --- a/contents/articles/2023/08-29_design-workshop/index.mdx +++ b/contents/articles/2023/08-29_design-workshop/index.mdx @@ -3,7 +3,7 @@ title: "夏のデザイン講習会を開催しました!" date: 2023-09-26T23:25:00+09:00 categories: - "events" -image: ./image.png +image: ./image.webp --- 「デザインをそれっぽく見せる方法」というタイトルで、WebアプリのUIデザインを学ぶ講習会を開催しました! @@ -12,6 +12,6 @@ image: ./image.png 皆さん積極的に手を動かしたり、参加者同士でレビューをし合っていたりと活発にデザインをされていてとても嬉しかったです! -![実際に作ったデザイン](./image2.png) +![実際に作ったデザイン](./image2.webp) 参加していただいた皆さん、ありがとうございました! diff --git a/contents/articles/2023/09-18_a-seminar/image.png b/contents/articles/2023/09-18_a-seminar/image.png deleted file mode 100644 index b9f74316..00000000 Binary files a/contents/articles/2023/09-18_a-seminar/image.png and /dev/null differ diff --git a/contents/articles/2023/09-18_a-seminar/image.webp b/contents/articles/2023/09-18_a-seminar/image.webp new file mode 100644 index 00000000..8a00cdaa Binary files /dev/null and b/contents/articles/2023/09-18_a-seminar/image.webp differ diff --git a/contents/articles/2023/09-18_a-seminar/index.mdx b/contents/articles/2023/09-18_a-seminar/index.mdx index 05586dec..18b06ef5 100644 --- a/contents/articles/2023/09-18_a-seminar/index.mdx +++ b/contents/articles/2023/09-18_a-seminar/index.mdx @@ -3,7 +3,7 @@ title: "2023年度Aセメスター全学自由研究ゼミナール開講のお date: 2023-09-17T23:25:00+09:00 categories: - info -image: ./image.png +image: ./image.webp --- import ActionButton from "+/components/ActionButton.astro"; diff --git a/contents/articles/2023/09-26_summer-camp/dinner.jpg b/contents/articles/2023/09-26_summer-camp/dinner.jpg deleted file mode 100644 index 5de3e849..00000000 Binary files a/contents/articles/2023/09-26_summer-camp/dinner.jpg and /dev/null differ diff --git a/contents/articles/2023/09-26_summer-camp/dinner.webp b/contents/articles/2023/09-26_summer-camp/dinner.webp new file mode 100644 index 00000000..059e151c Binary files /dev/null and b/contents/articles/2023/09-26_summer-camp/dinner.webp differ diff --git a/contents/articles/2023/09-26_summer-camp/image.jpg b/contents/articles/2023/09-26_summer-camp/image.jpg deleted file mode 100644 index 9f73803c..00000000 Binary files a/contents/articles/2023/09-26_summer-camp/image.jpg and /dev/null differ diff --git a/contents/articles/2023/09-26_summer-camp/image.webp b/contents/articles/2023/09-26_summer-camp/image.webp new file mode 100644 index 00000000..039c2c07 Binary files /dev/null and b/contents/articles/2023/09-26_summer-camp/image.webp differ diff --git a/contents/articles/2023/09-26_summer-camp/index.mdx b/contents/articles/2023/09-26_summer-camp/index.mdx index f440ecc3..26be07f7 100644 --- a/contents/articles/2023/09-26_summer-camp/index.mdx +++ b/contents/articles/2023/09-26_summer-camp/index.mdx @@ -3,7 +3,7 @@ title: "2023年度夏合宿を開催しました" date: 2023-09-27T14:00:00+09:00 categories: - event -image: ./image.jpg +image: ./image.webp --- 9/25 ~ 9/27 に 夏合宿を開催しました! @@ -14,6 +14,6 @@ image: ./image.jpg 宿泊施設も非常に環境がよく、おいしいご飯やゆったりとしたお風呂を楽しみました! -![晩ごはんの様子](./dinner.jpg) +![晩ごはんの様子](./dinner.webp) 次回は 2 ~ 3 月の開催となりますので、お楽しみに! diff --git a/contents/articles/2023/11-17_progate-workshop-11-17/debugging.jpg b/contents/articles/2023/11-17_progate-workshop-11-17/debugging.jpg deleted file mode 100644 index 34cf9644..00000000 Binary files a/contents/articles/2023/11-17_progate-workshop-11-17/debugging.jpg and /dev/null differ diff --git a/contents/articles/2023/11-17_progate-workshop-11-17/debugging.webp b/contents/articles/2023/11-17_progate-workshop-11-17/debugging.webp new file mode 100644 index 00000000..0ef32229 Binary files /dev/null and b/contents/articles/2023/11-17_progate-workshop-11-17/debugging.webp differ diff --git a/contents/articles/2023/11-17_progate-workshop-11-17/image.jpg b/contents/articles/2023/11-17_progate-workshop-11-17/image.jpg deleted file mode 100644 index f2cdf5d8..00000000 Binary files a/contents/articles/2023/11-17_progate-workshop-11-17/image.jpg and /dev/null differ diff --git a/contents/articles/2023/11-17_progate-workshop-11-17/image.webp b/contents/articles/2023/11-17_progate-workshop-11-17/image.webp new file mode 100644 index 00000000..f474b60e Binary files /dev/null and b/contents/articles/2023/11-17_progate-workshop-11-17/image.webp differ diff --git a/contents/articles/2023/11-17_progate-workshop-11-17/index.mdx b/contents/articles/2023/11-17_progate-workshop-11-17/index.mdx index 91d95d0d..ebc231f3 100644 --- a/contents/articles/2023/11-17_progate-workshop-11-17/index.mdx +++ b/contents/articles/2023/11-17_progate-workshop-11-17/index.mdx @@ -3,7 +3,7 @@ title: 株式会社 Progate とハンズオン勉強会を開催しました! date: 2023-11-17T22:00:00+09:00 categories: - events -image: ./image.jpg +image: ./image.webp author: ywatahiki --- @@ -13,12 +13,12 @@ ut.code(); は、2023 年 11 月 17 日(金)に[株式会社 Progate](https: また、[Progate Path](https://path.progate.com/) の「ピッタリ賞の画像が出力されないバグの修正」というタスクを解きながら、コードリーディングやデバッグのコツを学びました。 -![タスクを解く様子](./debugging.jpg) +![タスクを解く様子](./debugging.webp) 勉強会の後には懇親会も行い、様々なお話をすることができました。 -![懇親会の様子](./party.jpg) +![懇親会の様子](./party.webp) とても有意義な勉強会となりました。これからも勉強会を開催していきますので、ぜひご参加ください! -![集合写真](./participants.jpg) +![集合写真](./participants.webp) diff --git a/contents/articles/2023/11-17_progate-workshop-11-17/participants.jpg b/contents/articles/2023/11-17_progate-workshop-11-17/participants.jpg deleted file mode 100644 index bf797ac3..00000000 Binary files a/contents/articles/2023/11-17_progate-workshop-11-17/participants.jpg and /dev/null differ diff --git a/contents/articles/2023/11-17_progate-workshop-11-17/participants.webp b/contents/articles/2023/11-17_progate-workshop-11-17/participants.webp new file mode 100644 index 00000000..34a5b9a9 Binary files /dev/null and b/contents/articles/2023/11-17_progate-workshop-11-17/participants.webp differ diff --git a/contents/articles/2023/11-17_progate-workshop-11-17/party.jpg b/contents/articles/2023/11-17_progate-workshop-11-17/party.jpg deleted file mode 100644 index 4804d88b..00000000 Binary files a/contents/articles/2023/11-17_progate-workshop-11-17/party.jpg and /dev/null differ diff --git a/contents/articles/2023/11-17_progate-workshop-11-17/party.webp b/contents/articles/2023/11-17_progate-workshop-11-17/party.webp new file mode 100644 index 00000000..b29b225f Binary files /dev/null and b/contents/articles/2023/11-17_progate-workshop-11-17/party.webp differ diff --git a/contents/articles/2023/11-20_coeteco-hack-1-announcement/image.png b/contents/articles/2023/11-20_coeteco-hack-1-announcement/image.png deleted file mode 100644 index df6f6f87..00000000 Binary files a/contents/articles/2023/11-20_coeteco-hack-1-announcement/image.png and /dev/null differ diff --git a/contents/articles/2023/11-20_coeteco-hack-1-announcement/image.webp b/contents/articles/2023/11-20_coeteco-hack-1-announcement/image.webp new file mode 100644 index 00000000..30ff7a64 Binary files /dev/null and b/contents/articles/2023/11-20_coeteco-hack-1-announcement/image.webp differ diff --git a/contents/articles/2023/11-20_coeteco-hack-1-announcement/index.mdx b/contents/articles/2023/11-20_coeteco-hack-1-announcement/index.mdx index c5d513e2..639b7748 100644 --- a/contents/articles/2023/11-20_coeteco-hack-1-announcement/index.mdx +++ b/contents/articles/2023/11-20_coeteco-hack-1-announcement/index.mdx @@ -3,7 +3,7 @@ title: GMO メディア株式会社とハッカソンを開催します! date: 2023-11-20T22:00:00+09:00 categories: - events -image: ./image.png +image: ./image.webp author: ywatahiki --- diff --git a/contents/articles/2023/11-23_komaba-festival-74/code-vs-code.png b/contents/articles/2023/11-23_komaba-festival-74/code-vs-code.png deleted file mode 100644 index f603bbfb..00000000 Binary files a/contents/articles/2023/11-23_komaba-festival-74/code-vs-code.png and /dev/null differ diff --git a/contents/articles/2023/11-23_komaba-festival-74/code-vs-code.webp b/contents/articles/2023/11-23_komaba-festival-74/code-vs-code.webp new file mode 100644 index 00000000..cf20b4b8 Binary files /dev/null and b/contents/articles/2023/11-23_komaba-festival-74/code-vs-code.webp differ diff --git a/contents/articles/2023/11-23_komaba-festival-74/create-cpu.png b/contents/articles/2023/11-23_komaba-festival-74/create-cpu.png deleted file mode 100644 index a1f76902..00000000 Binary files a/contents/articles/2023/11-23_komaba-festival-74/create-cpu.png and /dev/null differ diff --git a/contents/articles/2023/11-23_komaba-festival-74/create-cpu.webp b/contents/articles/2023/11-23_komaba-festival-74/create-cpu.webp new file mode 100644 index 00000000..e1297868 Binary files /dev/null and b/contents/articles/2023/11-23_komaba-festival-74/create-cpu.webp differ diff --git a/contents/articles/2023/11-23_komaba-festival-74/cryptography.png b/contents/articles/2023/11-23_komaba-festival-74/cryptography.png deleted file mode 100644 index e25c2d5f..00000000 Binary files a/contents/articles/2023/11-23_komaba-festival-74/cryptography.png and /dev/null differ diff --git a/contents/articles/2023/11-23_komaba-festival-74/cryptography.webp b/contents/articles/2023/11-23_komaba-festival-74/cryptography.webp new file mode 100644 index 00000000..e2a9c870 Binary files /dev/null and b/contents/articles/2023/11-23_komaba-festival-74/cryptography.webp differ diff --git a/contents/articles/2023/11-23_komaba-festival-74/first-time-programming.png b/contents/articles/2023/11-23_komaba-festival-74/first-time-programming.png deleted file mode 100644 index 1657a3a5..00000000 Binary files a/contents/articles/2023/11-23_komaba-festival-74/first-time-programming.png and /dev/null differ diff --git a/contents/articles/2023/11-23_komaba-festival-74/first-time-programming.webp b/contents/articles/2023/11-23_komaba-festival-74/first-time-programming.webp new file mode 100644 index 00000000..28d2f6a2 Binary files /dev/null and b/contents/articles/2023/11-23_komaba-festival-74/first-time-programming.webp differ diff --git a/contents/articles/2023/11-23_komaba-festival-74/hacker.png b/contents/articles/2023/11-23_komaba-festival-74/hacker.png deleted file mode 100644 index 12106ca8..00000000 Binary files a/contents/articles/2023/11-23_komaba-festival-74/hacker.png and /dev/null differ diff --git a/contents/articles/2023/11-23_komaba-festival-74/hacker.webp b/contents/articles/2023/11-23_komaba-festival-74/hacker.webp new file mode 100644 index 00000000..3a01e7f5 Binary files /dev/null and b/contents/articles/2023/11-23_komaba-festival-74/hacker.webp differ diff --git a/contents/articles/2023/11-23_komaba-festival-74/image.jpg b/contents/articles/2023/11-23_komaba-festival-74/image.jpg deleted file mode 100644 index 68084376..00000000 Binary files a/contents/articles/2023/11-23_komaba-festival-74/image.jpg and /dev/null differ diff --git a/contents/articles/2023/11-23_komaba-festival-74/image.webp b/contents/articles/2023/11-23_komaba-festival-74/image.webp new file mode 100644 index 00000000..9e92c1a7 Binary files /dev/null and b/contents/articles/2023/11-23_komaba-festival-74/image.webp differ diff --git a/contents/articles/2023/11-23_komaba-festival-74/index.mdx b/contents/articles/2023/11-23_komaba-festival-74/index.mdx index 399d63ce..65502f6a 100644 --- a/contents/articles/2023/11-23_komaba-festival-74/index.mdx +++ b/contents/articles/2023/11-23_komaba-festival-74/index.mdx @@ -3,7 +3,7 @@ title: 第 74 回駒場祭に参加します date: 2023-11-23T19:00:00+09:00 categories: - events -image: ./image.jpg +image: ./image.webp author: ywatahiki --- @@ -25,34 +25,34 @@ ut.code(); は、11 月 24 日(金)〜 26 日(日)に開催される第 これまでの学園祭で好評を博してきた名物コンテンツです。ブロックを並べて、積み木感覚で、誰でも簡単にプログラミングに触れることができます。 -![はじめてのプログラミング](./first-time-programming.png) +![はじめてのプログラミング](./first-time-programming.webp) ## Code vs Code ブロックを並べて、自分だけのパイロット AI をプログラムできます。作ったプログラムで、他の人と対戦できます。 -![Code vs Code](./code-vs-code.png) +![Code vs Code](./code-vs-code.webp) ## タイピングゲーム ut.code(); が作ったタイピングゲームです。他のタイピングゲームにはない機能も搭載しています。 -![タイピングゲーム](./typing-game.png) +![タイピングゲーム](./typing-game.webp) ## ハッカーになろう 今年からの新しい企画です。実際に使われたことのあるサイバー攻撃手法を習得することができます。 -![ハッカーになろう](./hacker.png) +![ハッカーになろう](./hacker.webp) ## 暗号技術について学ぼう 今年からの新しい企画です。暗号技術について学ぶことができます。 -![暗号技術について学ぼう](./cryptography.png) +![暗号技術について学ぼう](./cryptography.webp) ## CreateCPU 今年からの新しい企画です。足し算を行う論理回路を作りながら、CPU の仕組みを学んでいくことができます。 -![CreateCPU](./create-cpu.png) +![CreateCPU](./create-cpu.webp) diff --git a/contents/articles/2023/11-23_komaba-festival-74/typing-game.png b/contents/articles/2023/11-23_komaba-festival-74/typing-game.png deleted file mode 100644 index 30f506ae..00000000 Binary files a/contents/articles/2023/11-23_komaba-festival-74/typing-game.png and /dev/null differ diff --git a/contents/articles/2023/11-23_komaba-festival-74/typing-game.webp b/contents/articles/2023/11-23_komaba-festival-74/typing-game.webp new file mode 100644 index 00000000..dce43bd7 Binary files /dev/null and b/contents/articles/2023/11-23_komaba-festival-74/typing-game.webp differ diff --git a/contents/articles/2023/11-24_komaba-festival-day1/image.jpg b/contents/articles/2023/11-24_komaba-festival-day1/image.jpg deleted file mode 100644 index bac0d9a5..00000000 Binary files a/contents/articles/2023/11-24_komaba-festival-day1/image.jpg and /dev/null differ diff --git a/contents/articles/2023/11-24_komaba-festival-day1/image.webp b/contents/articles/2023/11-24_komaba-festival-day1/image.webp new file mode 100644 index 00000000..1b8e3372 Binary files /dev/null and b/contents/articles/2023/11-24_komaba-festival-day1/image.webp differ diff --git a/contents/articles/2023/11-24_komaba-festival-day1/index.mdx b/contents/articles/2023/11-24_komaba-festival-day1/index.mdx index 9dadfc54..047bc154 100644 --- a/contents/articles/2023/11-24_komaba-festival-day1/index.mdx +++ b/contents/articles/2023/11-24_komaba-festival-day1/index.mdx @@ -3,7 +3,7 @@ title: 第 74 回駒場祭の 1 日目に参加しました。 date: 2023-11-24T18:00:00+09:00 categories: - events -image: ./image.jpg +image: ./image.webp author: ywatahiki --- diff --git a/contents/articles/2023/11-25_komaba-festival-day2/image.jpg b/contents/articles/2023/11-25_komaba-festival-day2/image.jpg deleted file mode 100644 index 06a39c31..00000000 Binary files a/contents/articles/2023/11-25_komaba-festival-day2/image.jpg and /dev/null differ diff --git a/contents/articles/2023/11-25_komaba-festival-day2/image.webp b/contents/articles/2023/11-25_komaba-festival-day2/image.webp new file mode 100644 index 00000000..742dd2b3 Binary files /dev/null and b/contents/articles/2023/11-25_komaba-festival-day2/image.webp differ diff --git a/contents/articles/2023/11-25_komaba-festival-day2/index.mdx b/contents/articles/2023/11-25_komaba-festival-day2/index.mdx index bb9f6241..c6607af2 100644 --- a/contents/articles/2023/11-25_komaba-festival-day2/index.mdx +++ b/contents/articles/2023/11-25_komaba-festival-day2/index.mdx @@ -3,7 +3,7 @@ title: 第 74 回駒場祭の 2 日目に参加しました。 date: 2023-11-25T18:00:00+09:00 categories: - events -image: ./image.jpg +image: ./image.webp author: ywatahiki --- diff --git a/contents/articles/2023/11-26_komaba-festival-day3/image1.jpg b/contents/articles/2023/11-26_komaba-festival-day3/image1.jpg deleted file mode 100644 index d6d2c867..00000000 Binary files a/contents/articles/2023/11-26_komaba-festival-day3/image1.jpg and /dev/null differ diff --git a/contents/articles/2023/11-26_komaba-festival-day3/image1.webp b/contents/articles/2023/11-26_komaba-festival-day3/image1.webp new file mode 100644 index 00000000..37133861 Binary files /dev/null and b/contents/articles/2023/11-26_komaba-festival-day3/image1.webp differ diff --git a/contents/articles/2023/11-26_komaba-festival-day3/image2.jpg b/contents/articles/2023/11-26_komaba-festival-day3/image2.jpg deleted file mode 100644 index b0b46b9f..00000000 Binary files a/contents/articles/2023/11-26_komaba-festival-day3/image2.jpg and /dev/null differ diff --git a/contents/articles/2023/11-26_komaba-festival-day3/image2.webp b/contents/articles/2023/11-26_komaba-festival-day3/image2.webp new file mode 100644 index 00000000..646e3691 Binary files /dev/null and b/contents/articles/2023/11-26_komaba-festival-day3/image2.webp differ diff --git a/contents/articles/2023/11-26_komaba-festival-day3/index.mdx b/contents/articles/2023/11-26_komaba-festival-day3/index.mdx index c121b281..343b4b63 100644 --- a/contents/articles/2023/11-26_komaba-festival-day3/index.mdx +++ b/contents/articles/2023/11-26_komaba-festival-day3/index.mdx @@ -3,7 +3,7 @@ title: 第 74 回駒場祭の 3 日目に参加しました。 date: 2023-11-26T20:00:00+09:00 categories: - events -image: ./image1.jpg +image: ./image1.webp author: hhashimoto --- @@ -19,4 +19,4 @@ ut.code(); は、2023 年 11 月 26 日(日)に駒場祭の 3 日目に参 改めまして、ご来場ありがとうございました。よろしければ、来年の第 97 回五月祭でまたお会いしましょう。 -![並ぶパソコンの様子](./image2.jpg) +![並ぶパソコンの様子](./image2.webp) diff --git a/contents/articles/2023/12-09_coeteco-hack-1-day1/image.jpg b/contents/articles/2023/12-09_coeteco-hack-1-day1/image.jpg deleted file mode 100644 index 4d62b091..00000000 Binary files a/contents/articles/2023/12-09_coeteco-hack-1-day1/image.jpg and /dev/null differ diff --git a/contents/articles/2023/12-09_coeteco-hack-1-day1/image.webp b/contents/articles/2023/12-09_coeteco-hack-1-day1/image.webp new file mode 100644 index 00000000..c53d1da3 Binary files /dev/null and b/contents/articles/2023/12-09_coeteco-hack-1-day1/image.webp differ diff --git a/contents/articles/2023/12-09_coeteco-hack-1-day1/index.mdx b/contents/articles/2023/12-09_coeteco-hack-1-day1/index.mdx index d97ddfba..ee5000b1 100644 --- a/contents/articles/2023/12-09_coeteco-hack-1-day1/index.mdx +++ b/contents/articles/2023/12-09_coeteco-hack-1-day1/index.mdx @@ -3,7 +3,7 @@ title: "コエテコ Hack #1 の 1 日目が終了しました。" date: 2023-12-09T23:30:00+09:00 categories: - events -image: ./image.jpg +image: ./image.webp author: ywatahiki --- @@ -15,10 +15,10 @@ ut.code(); は、2023 年 12 月 9 日(土)にコエテコ Hack #1 の 1 日 1 日目は、チームを組んで、アイディアを出し合いました。どのチームも、熱心に議論を重ねていました。 -![作業風景](./work.jpg) +![作業風景](./work.webp) 最後には、中間発表を行いました。どのチームも、素晴らしいアイディアを発表しており、たいへんハイレベルな中間発表となりました。明日の最終発表が楽しみです。 -![中間発表1](./presentation1.jpg) +![中間発表1](./presentation1.webp) -![中間発表2](./presentation2.jpg) +![中間発表2](./presentation2.webp) diff --git a/contents/articles/2023/12-09_coeteco-hack-1-day1/presentation1.jpg b/contents/articles/2023/12-09_coeteco-hack-1-day1/presentation1.jpg deleted file mode 100644 index 16b9fc1f..00000000 Binary files a/contents/articles/2023/12-09_coeteco-hack-1-day1/presentation1.jpg and /dev/null differ diff --git a/contents/articles/2023/12-09_coeteco-hack-1-day1/presentation1.webp b/contents/articles/2023/12-09_coeteco-hack-1-day1/presentation1.webp new file mode 100644 index 00000000..163bd462 Binary files /dev/null and b/contents/articles/2023/12-09_coeteco-hack-1-day1/presentation1.webp differ diff --git a/contents/articles/2023/12-09_coeteco-hack-1-day1/presentation2.jpg b/contents/articles/2023/12-09_coeteco-hack-1-day1/presentation2.jpg deleted file mode 100644 index d147258b..00000000 Binary files a/contents/articles/2023/12-09_coeteco-hack-1-day1/presentation2.jpg and /dev/null differ diff --git a/contents/articles/2023/12-09_coeteco-hack-1-day1/presentation2.webp b/contents/articles/2023/12-09_coeteco-hack-1-day1/presentation2.webp new file mode 100644 index 00000000..ad5f3356 Binary files /dev/null and b/contents/articles/2023/12-09_coeteco-hack-1-day1/presentation2.webp differ diff --git a/contents/articles/2023/12-09_coeteco-hack-1-day1/work.jpg b/contents/articles/2023/12-09_coeteco-hack-1-day1/work.jpg deleted file mode 100644 index b642c299..00000000 Binary files a/contents/articles/2023/12-09_coeteco-hack-1-day1/work.jpg and /dev/null differ diff --git a/contents/articles/2023/12-09_coeteco-hack-1-day1/work.webp b/contents/articles/2023/12-09_coeteco-hack-1-day1/work.webp new file mode 100644 index 00000000..0b30da7c Binary files /dev/null and b/contents/articles/2023/12-09_coeteco-hack-1-day1/work.webp differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/excellence-award.jpg b/contents/articles/2023/12-10_coeteco-hack-1-day2/excellence-award.jpg deleted file mode 100644 index f3fb6d7e..00000000 Binary files a/contents/articles/2023/12-10_coeteco-hack-1-day2/excellence-award.jpg and /dev/null differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/excellence-award.webp b/contents/articles/2023/12-10_coeteco-hack-1-day2/excellence-award.webp new file mode 100644 index 00000000..3b46db2f Binary files /dev/null and b/contents/articles/2023/12-10_coeteco-hack-1-day2/excellence-award.webp differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/grand-prize.jpg b/contents/articles/2023/12-10_coeteco-hack-1-day2/grand-prize.jpg deleted file mode 100644 index 1a2b1d32..00000000 Binary files a/contents/articles/2023/12-10_coeteco-hack-1-day2/grand-prize.jpg and /dev/null differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/grand-prize.webp b/contents/articles/2023/12-10_coeteco-hack-1-day2/grand-prize.webp new file mode 100644 index 00000000..6e2edacf Binary files /dev/null and b/contents/articles/2023/12-10_coeteco-hack-1-day2/grand-prize.webp differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/image.jpg b/contents/articles/2023/12-10_coeteco-hack-1-day2/image.jpg deleted file mode 100644 index 15db9516..00000000 Binary files a/contents/articles/2023/12-10_coeteco-hack-1-day2/image.jpg and /dev/null differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/image.webp b/contents/articles/2023/12-10_coeteco-hack-1-day2/image.webp new file mode 100644 index 00000000..ed6671e9 Binary files /dev/null and b/contents/articles/2023/12-10_coeteco-hack-1-day2/image.webp differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/index.mdx b/contents/articles/2023/12-10_coeteco-hack-1-day2/index.mdx index d5aad43f..4e1128f2 100644 --- a/contents/articles/2023/12-10_coeteco-hack-1-day2/index.mdx +++ b/contents/articles/2023/12-10_coeteco-hack-1-day2/index.mdx @@ -3,7 +3,7 @@ title: "コエテコ Hack #1 の全日程が終了しました" date: 2023-12-10T23:30:00+09:00 categories: - events -image: ./image.jpg +image: ./image.webp author: ywatahiki --- @@ -21,37 +21,37 @@ ut.code(); は、2023 年 12 月 10 日(日)にコエテコ Hack #1 の 2 チーム A は、特に耳が不自由な学生を対象に、授業中の音声を自動でテキストに変換しさらにその内容を AI が要約するアプリケーション「EchoNote」を開発しました。リアルタイムで音声がテキストに変換され、要約ボタンを押すと授業ノートが自動で作成されます。 -![チーム A](./team-a.jpg) +![チーム A](./team-a.webp) ## チーム B FlipFlow-Enhancer チーム B は、AI が小学校低学年の生徒の前転に対して改善点を指摘するアプリケーション「FlipFlow-Enhancer」を開発しました。模範の動画と生徒の動画をアップロードし教科書に記載されているコツやポイントを入力することで、模範と生徒の画像を比較して表示し改善点を指摘してくれます。 -![チーム B](./team-b.jpg) +![チーム B](./team-b.webp) ## チーム C DocuMentor チーム C は、AI が個人の特性、背景に合わせたソフトスキル向上の提案の補助を行うアプリケーション「DocuMentor」を開発しました。管理者がプロンプトを設定することで会社のルールに合わせてカスタマイズができたり、小テストを自動で作成することができたりします。 -![チーム C](./team-c.jpg) +![チーム C](./team-c.webp) ## チーム D まねりて チーム D は、お手伝いによって小学校低・中学年の子どもの金銭感覚を育成するアプリケーション「まねりて」を開発しました。親が報酬を設定すると AI がお手伝いプランを自動で提示し、子どもがお手伝いプランをクリアすることでポイントを獲得することができ、目標管理能力を向上させることができます。 -![チーム D](./team-d.jpg) +![チーム D](./team-d.webp) ## チーム E ワクワク発見! チーム E は、小学校 3〜6 年生の好奇心旺盛な小学生に向けて、気になる項目をクリックするだけで身近な疑問に AI がわかりやすく答えてくれるアプリケーションを作りました。気になる分野を選択していくだけで簡単に身近な疑問を解決することができます。 -![チーム E](./team-e.jpg) +![チーム E](./team-e.webp) ## チーム F 教科書の画像から問題を生成する チーム F は、教科書の画像を撮影してアップロードすると AI がその内容に基づく独自の四択問題を生成するアプリケーションを開発しました。自動で問題を生成するだけでなく、その問題の解答、解説も生成することができます。 -![チーム F](./team-f.jpg) +![チーム F](./team-f.webp) 最終発表の後は、審査員の方々による審査が行われ、最優秀賞、優秀賞、審査員賞が決定しました。 @@ -59,18 +59,18 @@ ut.code(); は、2023 年 12 月 10 日(日)にコエテコ Hack #1 の 2 最優秀賞は、教科書の画像から問題を生成するプロダクトを開発したチーム F に決定しました! -![最優秀賞](./grand-prize.jpg) +![最優秀賞](./grand-prize.webp) ## 優秀賞 チーム C DocuMentor 優秀賞は、ソフトスキル向上の提案の補助を行う「DocuMentor」を開発したチーム C に決定しました! -![優秀賞](./excellence-award.jpg) +![優秀賞](./excellence-award.webp) ## 審査員賞 チーム B FlipFlow-Enhancer 審査員賞は、生徒の前転に対して改善点を指摘する「FlipFlow-Enhancer」を開発したチーム B に決定しました! -![審査員賞](./special-award.jpg) +![審査員賞](./special-award.webp) 共催いただいた GMO メディア株式会社の皆さま、参加者の皆さま、ありがとうございました。 diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/special-award.jpg b/contents/articles/2023/12-10_coeteco-hack-1-day2/special-award.jpg deleted file mode 100644 index 62bf2662..00000000 Binary files a/contents/articles/2023/12-10_coeteco-hack-1-day2/special-award.jpg and /dev/null differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/special-award.webp b/contents/articles/2023/12-10_coeteco-hack-1-day2/special-award.webp new file mode 100644 index 00000000..7aefccb1 Binary files /dev/null and b/contents/articles/2023/12-10_coeteco-hack-1-day2/special-award.webp differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-a.jpg b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-a.jpg deleted file mode 100644 index e6106b41..00000000 Binary files a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-a.jpg and /dev/null differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-a.webp b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-a.webp new file mode 100644 index 00000000..f4e53b41 Binary files /dev/null and b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-a.webp differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-b.jpg b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-b.jpg deleted file mode 100644 index 719180ec..00000000 Binary files a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-b.jpg and /dev/null differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-b.webp b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-b.webp new file mode 100644 index 00000000..8e86f236 Binary files /dev/null and b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-b.webp differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-c.jpg b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-c.jpg deleted file mode 100644 index 61813f25..00000000 Binary files a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-c.jpg and /dev/null differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-c.webp b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-c.webp new file mode 100644 index 00000000..679432e9 Binary files /dev/null and b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-c.webp differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-d.jpg b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-d.jpg deleted file mode 100644 index b2056882..00000000 Binary files a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-d.jpg and /dev/null differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-d.webp b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-d.webp new file mode 100644 index 00000000..c80d7ae2 Binary files /dev/null and b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-d.webp differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-e.jpg b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-e.jpg deleted file mode 100644 index d97b414a..00000000 Binary files a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-e.jpg and /dev/null differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-e.webp b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-e.webp new file mode 100644 index 00000000..b353cf36 Binary files /dev/null and b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-e.webp differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-f.jpg b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-f.jpg deleted file mode 100644 index eba73e96..00000000 Binary files a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-f.jpg and /dev/null differ diff --git a/contents/articles/2023/12-10_coeteco-hack-1-day2/team-f.webp b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-f.webp new file mode 100644 index 00000000..356b01ae Binary files /dev/null and b/contents/articles/2023/12-10_coeteco-hack-1-day2/team-f.webp differ diff --git a/contents/articles/2023/12-13_gmo-workshop-12-16-announcement/image.jpg b/contents/articles/2023/12-13_gmo-workshop-12-16-announcement/image.jpg deleted file mode 100644 index 64e8da53..00000000 Binary files a/contents/articles/2023/12-13_gmo-workshop-12-16-announcement/image.jpg and /dev/null differ diff --git a/contents/articles/2023/12-13_gmo-workshop-12-16-announcement/image.webp b/contents/articles/2023/12-13_gmo-workshop-12-16-announcement/image.webp new file mode 100644 index 00000000..11d40e93 Binary files /dev/null and b/contents/articles/2023/12-13_gmo-workshop-12-16-announcement/image.webp differ diff --git a/contents/articles/2023/12-13_gmo-workshop-12-16-announcement/index.mdx b/contents/articles/2023/12-13_gmo-workshop-12-16-announcement/index.mdx index 50fea5bf..f84dd10b 100644 --- a/contents/articles/2023/12-13_gmo-workshop-12-16-announcement/index.mdx +++ b/contents/articles/2023/12-13_gmo-workshop-12-16-announcement/index.mdx @@ -3,7 +3,7 @@ title: GMO インターネットグループ株式会社と勉強会を開催し date: 2023-12-13T18:00:00+09:00 categories: - events -image: ./image.jpg +image: ./image.webp author: ywatahiki --- diff --git a/contents/articles/2023/12-13_kick-off-party/image.png b/contents/articles/2023/12-13_kick-off-party/image.png deleted file mode 100644 index 5b7146eb..00000000 Binary files a/contents/articles/2023/12-13_kick-off-party/image.png and /dev/null differ diff --git a/contents/articles/2023/12-13_kick-off-party/image.webp b/contents/articles/2023/12-13_kick-off-party/image.webp new file mode 100644 index 00000000..9009817a Binary files /dev/null and b/contents/articles/2023/12-13_kick-off-party/image.webp differ diff --git a/contents/articles/2023/12-13_kick-off-party/index.mdx b/contents/articles/2023/12-13_kick-off-party/index.mdx index 32a5d356..6cff2424 100644 --- a/contents/articles/2023/12-13_kick-off-party/index.mdx +++ b/contents/articles/2023/12-13_kick-off-party/index.mdx @@ -3,7 +3,7 @@ title: "2023年度大忘年会を開催します" date: 2023-12-13T00:00:00+09:00 categories: - event -image: ./image.png +image: ./image.webp --- import ActionButton from "+/components/ActionButton.astro"; diff --git a/contents/articles/2023/12-14_-a-specialized-seminar-session-10/class.jpg b/contents/articles/2023/12-14_-a-specialized-seminar-session-10/class.jpg deleted file mode 100644 index b3b86f8a..00000000 Binary files a/contents/articles/2023/12-14_-a-specialized-seminar-session-10/class.jpg and /dev/null differ diff --git a/contents/articles/2023/12-14_-a-specialized-seminar-session-10/class.webp b/contents/articles/2023/12-14_-a-specialized-seminar-session-10/class.webp new file mode 100644 index 00000000..8893d284 Binary files /dev/null and b/contents/articles/2023/12-14_-a-specialized-seminar-session-10/class.webp differ diff --git a/contents/articles/2023/12-14_-a-specialized-seminar-session-10/image.jpg b/contents/articles/2023/12-14_-a-specialized-seminar-session-10/image.jpg deleted file mode 100644 index 1f2e22b7..00000000 Binary files a/contents/articles/2023/12-14_-a-specialized-seminar-session-10/image.jpg and /dev/null differ diff --git a/contents/articles/2023/12-14_-a-specialized-seminar-session-10/image.webp b/contents/articles/2023/12-14_-a-specialized-seminar-session-10/image.webp new file mode 100644 index 00000000..7fe394c6 Binary files /dev/null and b/contents/articles/2023/12-14_-a-specialized-seminar-session-10/image.webp differ diff --git a/contents/articles/2023/12-14_-a-specialized-seminar-session-10/index.mdx b/contents/articles/2023/12-14_-a-specialized-seminar-session-10/index.mdx index 4810acd1..faae2dce 100644 --- a/contents/articles/2023/12-14_-a-specialized-seminar-session-10/index.mdx +++ b/contents/articles/2023/12-14_-a-specialized-seminar-session-10/index.mdx @@ -3,7 +3,7 @@ title: 全ゼミの第 10 回を開講しました。 date: 2023-12-14T22:00:00+09:00 categories: - events -image: ./image.jpg +image: ./image.webp author: ywatahiki --- @@ -17,6 +17,6 @@ ut.code(); は、2023 年 12 月 14 日(木)に全学自由研究ゼミナ 次回の授業は、2023 年 12 月 21 日(木)に開講します。Git と GitHub について学び、ソースコードのバージョン管理や共同開発の方法を学びます。 -![授業風景](./class.jpg) +![授業風景](./class.webp) 授業スライドは[こちら](https://drive.google.com/file/d/12RERjDNiJckpGKaGhzljxwNA5epohm7o/view?usp=sharing)からご覧ください。 diff --git a/contents/articles/2023/12-16_gmo-workshop-12-16/image.jpg b/contents/articles/2023/12-16_gmo-workshop-12-16/image.jpg deleted file mode 100644 index 25c872fb..00000000 Binary files a/contents/articles/2023/12-16_gmo-workshop-12-16/image.jpg and /dev/null differ diff --git a/contents/articles/2023/12-16_gmo-workshop-12-16/image.webp b/contents/articles/2023/12-16_gmo-workshop-12-16/image.webp new file mode 100644 index 00000000..3af2e5ff Binary files /dev/null and b/contents/articles/2023/12-16_gmo-workshop-12-16/image.webp differ diff --git a/contents/articles/2023/12-16_gmo-workshop-12-16/index.mdx b/contents/articles/2023/12-16_gmo-workshop-12-16/index.mdx index 28b60816..b06ad983 100644 --- a/contents/articles/2023/12-16_gmo-workshop-12-16/index.mdx +++ b/contents/articles/2023/12-16_gmo-workshop-12-16/index.mdx @@ -3,7 +3,7 @@ title: GMO インターネットグループ株式会社と勉強会を開催し date: 2023-12-16T16:00:00+09:00 categories: - events -image: ./image.jpg +image: ./image.webp author: ywatahiki --- @@ -17,4 +17,4 @@ ut.code(); は、2023 年 12 月 16 日(土)に[GMO インターネットグ - 「エンジニアのそれぞれの役職がどのような役割を期待されているかということがよく理解できました。クラスがなぜ必要なのかという説明が非常に興味深かったです。」 - 「オブジェクト指向の基本理念がわかりやすく説明されていて良かったです。」 -![成瀬さんのお話](./seminar.jpg) +![成瀬さんのお話](./seminar.webp) diff --git a/contents/articles/2023/12-16_gmo-workshop-12-16/seminar.jpg b/contents/articles/2023/12-16_gmo-workshop-12-16/seminar.jpg deleted file mode 100644 index 03f239b2..00000000 Binary files a/contents/articles/2023/12-16_gmo-workshop-12-16/seminar.jpg and /dev/null differ diff --git a/contents/articles/2023/12-16_gmo-workshop-12-16/seminar.webp b/contents/articles/2023/12-16_gmo-workshop-12-16/seminar.webp new file mode 100644 index 00000000..87d23aea Binary files /dev/null and b/contents/articles/2023/12-16_gmo-workshop-12-16/seminar.webp differ diff --git a/contents/articles/2023/12-21_-a-specialized-seminar-session-11/image.jpg b/contents/articles/2023/12-21_-a-specialized-seminar-session-11/image.jpg deleted file mode 100644 index a0fdae8e..00000000 Binary files a/contents/articles/2023/12-21_-a-specialized-seminar-session-11/image.jpg and /dev/null differ diff --git a/contents/articles/2023/12-21_-a-specialized-seminar-session-11/image.webp b/contents/articles/2023/12-21_-a-specialized-seminar-session-11/image.webp new file mode 100644 index 00000000..ba2d7128 Binary files /dev/null and b/contents/articles/2023/12-21_-a-specialized-seminar-session-11/image.webp differ diff --git a/contents/articles/2023/12-21_-a-specialized-seminar-session-11/index.mdx b/contents/articles/2023/12-21_-a-specialized-seminar-session-11/index.mdx index a447c579..d16d0f9b 100644 --- a/contents/articles/2023/12-21_-a-specialized-seminar-session-11/index.mdx +++ b/contents/articles/2023/12-21_-a-specialized-seminar-session-11/index.mdx @@ -3,7 +3,7 @@ title: 全ゼミの第 11 回を開講しました。 date: 2023-12-21T22:00:00+09:00 categories: - events -image: ./image.jpg +image: ./image.webp author: ywatahiki --- @@ -19,6 +19,6 @@ ut.code(); は、2023 年 12 月 21 日(木)に全学自由研究ゼミナ 次は年明けになりますが、引き続きよろしくお願いします。 -![授業風景](./lesson.jpg) +![授業風景](./lesson.webp) 授業スライドは[こちら](https://drive.google.com/file/d/1UVP8M4ZLMlHrAB6wxl7umPJ3MF6XMgtv/view?usp=sharing)からご覧ください。 diff --git a/contents/articles/2023/12-21_-a-specialized-seminar-session-11/lesson.jpg b/contents/articles/2023/12-21_-a-specialized-seminar-session-11/lesson.jpg deleted file mode 100644 index 72dafe03..00000000 Binary files a/contents/articles/2023/12-21_-a-specialized-seminar-session-11/lesson.jpg and /dev/null differ diff --git a/contents/articles/2023/12-21_-a-specialized-seminar-session-11/lesson.webp b/contents/articles/2023/12-21_-a-specialized-seminar-session-11/lesson.webp new file mode 100644 index 00000000..3acbd921 Binary files /dev/null and b/contents/articles/2023/12-21_-a-specialized-seminar-session-11/lesson.webp differ diff --git a/contents/articles/2023/12-22_kick-off-party-report/group-photo.jpg b/contents/articles/2023/12-22_kick-off-party-report/group-photo.jpg deleted file mode 100644 index 6151228c..00000000 Binary files a/contents/articles/2023/12-22_kick-off-party-report/group-photo.jpg and /dev/null differ diff --git a/contents/articles/2023/12-22_kick-off-party-report/group-photo.webp b/contents/articles/2023/12-22_kick-off-party-report/group-photo.webp new file mode 100644 index 00000000..4a48a1e8 Binary files /dev/null and b/contents/articles/2023/12-22_kick-off-party-report/group-photo.webp differ diff --git a/contents/articles/2023/12-22_kick-off-party-report/image.jpg b/contents/articles/2023/12-22_kick-off-party-report/image.jpg deleted file mode 100644 index c485c460..00000000 Binary files a/contents/articles/2023/12-22_kick-off-party-report/image.jpg and /dev/null differ diff --git a/contents/articles/2023/12-22_kick-off-party-report/image.webp b/contents/articles/2023/12-22_kick-off-party-report/image.webp new file mode 100644 index 00000000..55443c39 Binary files /dev/null and b/contents/articles/2023/12-22_kick-off-party-report/image.webp differ diff --git a/contents/articles/2023/12-22_kick-off-party-report/index.mdx b/contents/articles/2023/12-22_kick-off-party-report/index.mdx index 74a4f9e7..7c6a51e9 100644 --- a/contents/articles/2023/12-22_kick-off-party-report/index.mdx +++ b/contents/articles/2023/12-22_kick-off-party-report/index.mdx @@ -3,7 +3,7 @@ title: 2023 年度大忘年会を開催しました! date: 2023-12-22T22:00:00+09:00 categories: - event -image: ./image.jpg +image: ./image.webp author: ywatahiki --- @@ -15,4 +15,4 @@ A 班と B 班に分かれて、それぞれの班でアイディアを出し合 新プロジェクトを立ち上げる時に、参加メンバーを募集しますので、ぜひご参加ください! -![集合写真](./group-photo.jpg) +![集合写真](./group-photo.webp) diff --git a/contents/articles/2024/06-09_06-hackathon/bowling.png b/contents/articles/2024/06-09_06-hackathon/bowling.png deleted file mode 100644 index 6b119126..00000000 Binary files a/contents/articles/2024/06-09_06-hackathon/bowling.png and /dev/null differ diff --git a/contents/articles/2024/06-09_06-hackathon/bowling.webp b/contents/articles/2024/06-09_06-hackathon/bowling.webp new file mode 100644 index 00000000..f7425acc Binary files /dev/null and b/contents/articles/2024/06-09_06-hackathon/bowling.webp differ diff --git a/contents/articles/2024/06-09_06-hackathon/hackathon-image1.jpg b/contents/articles/2024/06-09_06-hackathon/hackathon-image1.jpg deleted file mode 100644 index 3c082bd7..00000000 Binary files a/contents/articles/2024/06-09_06-hackathon/hackathon-image1.jpg and /dev/null differ diff --git a/contents/articles/2024/06-09_06-hackathon/hackathon-image1.webp b/contents/articles/2024/06-09_06-hackathon/hackathon-image1.webp new file mode 100644 index 00000000..e3cd0392 Binary files /dev/null and b/contents/articles/2024/06-09_06-hackathon/hackathon-image1.webp differ diff --git a/contents/articles/2024/06-09_06-hackathon/hackathon-image2.jpg b/contents/articles/2024/06-09_06-hackathon/hackathon-image2.jpg deleted file mode 100644 index 9d28f35f..00000000 Binary files a/contents/articles/2024/06-09_06-hackathon/hackathon-image2.jpg and /dev/null differ diff --git a/contents/articles/2024/06-09_06-hackathon/hackathon-image2.webp b/contents/articles/2024/06-09_06-hackathon/hackathon-image2.webp new file mode 100644 index 00000000..2c7ddb0a Binary files /dev/null and b/contents/articles/2024/06-09_06-hackathon/hackathon-image2.webp differ diff --git a/contents/articles/2024/06-09_06-hackathon/image.jpg b/contents/articles/2024/06-09_06-hackathon/image.jpg deleted file mode 100644 index 51e2849b..00000000 Binary files a/contents/articles/2024/06-09_06-hackathon/image.jpg and /dev/null differ diff --git a/contents/articles/2024/06-09_06-hackathon/index.mdx b/contents/articles/2024/06-09_06-hackathon/index.md similarity index 88% rename from contents/articles/2024/06-09_06-hackathon/index.mdx rename to contents/articles/2024/06-09_06-hackathon/index.md index d1263166..242a20a2 100644 --- a/contents/articles/2024/06-09_06-hackathon/index.mdx +++ b/contents/articles/2024/06-09_06-hackathon/index.md @@ -3,7 +3,7 @@ title: ハッカソンを開催しました date: 2024-06-09T19:00:00+09:00 categories: - events -image: ./image.jpg +image: ./thumbnail.webp author: kanan --- @@ -13,11 +13,11 @@ ut.code(); は 6 月 8 日(土)、9 日(日)に春新歓の総まとめ 1 日目は各チームでテーマを決めた後、開発を中心に行いました。 -![hackathon-image1](./hackathon-image1.jpg) +![hackathon-image1](./hackathon-image1.webp) 2 日目は続けて開発を行い、最後に各チームの成果発表を行いました。 -![hackathon-image2](./hackathon-image2.jpg) +![hackathon-image2](./hackathon-image2.webp) 完成したプロジェクトのソースコードは GitHub で公開しています。 @@ -30,11 +30,11 @@ ut.code(); は 6 月 8 日(土)、9 日(日)に春新歓の総まとめ 実際のアプリ画面 -![BowlingGame](./bowling.png) +![BowlingGame](./bowling.webp) 成果発表の様子 -![IntroduceBowling](./introduce-bowling.jpg) +![IntroduceBowling](./introduce-bowling.webp) ## シフト調整アプリ @@ -44,11 +44,11 @@ ut.code(); は 6 月 8 日(土)、9 日(日)に春新歓の総まとめ 実際のアプリ画面 -![ShiftSyncer](./shift-syncer.png) +![ShiftSyncer](./shift-syncer.webp) 成果発表の様子 -![IntroduceShiftSyncer](./introduce-shift-syncer.jpg) +![IntroduceShiftSyncer](./introduce-shift-syncer.webp) ## タイピングゲーム @@ -59,10 +59,10 @@ ut.code(); は 6 月 8 日(土)、9 日(日)に春新歓の総まとめ 実際のアプリ画面 -![TypingScript](./typing-script.png) +![TypingScript](./typing-script.webp) 成果発表の様子 -![introduceTypingScript](./introduce-typing-script.jpg) +![introduceTypingScript](./introduce-typing-script.webp) ut.code(); では今後も定期的にハッカソンなどの交流イベントを開催する予定です。これらのイベントの情報は ut.code(); の Slack で流す予定です。Slack には[こちらのページ](https://utcode.net/join/)から参加することが可能です。興味がある方はぜひご参加ください。 diff --git a/contents/articles/2024/06-09_06-hackathon/introduce-bowling.jpg b/contents/articles/2024/06-09_06-hackathon/introduce-bowling.jpg deleted file mode 100644 index c7222bf6..00000000 Binary files a/contents/articles/2024/06-09_06-hackathon/introduce-bowling.jpg and /dev/null differ diff --git a/contents/articles/2024/06-09_06-hackathon/introduce-bowling.webp b/contents/articles/2024/06-09_06-hackathon/introduce-bowling.webp new file mode 100644 index 00000000..fc902b70 Binary files /dev/null and b/contents/articles/2024/06-09_06-hackathon/introduce-bowling.webp differ diff --git a/contents/articles/2024/06-09_06-hackathon/introduce-shift-syncer.jpg b/contents/articles/2024/06-09_06-hackathon/introduce-shift-syncer.jpg deleted file mode 100644 index 2fdfcc4b..00000000 Binary files a/contents/articles/2024/06-09_06-hackathon/introduce-shift-syncer.jpg and /dev/null differ diff --git a/contents/articles/2024/06-09_06-hackathon/introduce-shift-syncer.webp b/contents/articles/2024/06-09_06-hackathon/introduce-shift-syncer.webp new file mode 100644 index 00000000..fa6c4329 Binary files /dev/null and b/contents/articles/2024/06-09_06-hackathon/introduce-shift-syncer.webp differ diff --git a/contents/articles/2024/06-09_06-hackathon/introduce-typing-script.jpg b/contents/articles/2024/06-09_06-hackathon/introduce-typing-script.jpg deleted file mode 100644 index 4668d51d..00000000 Binary files a/contents/articles/2024/06-09_06-hackathon/introduce-typing-script.jpg and /dev/null differ diff --git a/contents/articles/2024/06-09_06-hackathon/introduce-typing-script.webp b/contents/articles/2024/06-09_06-hackathon/introduce-typing-script.webp new file mode 100644 index 00000000..6216cb5f Binary files /dev/null and b/contents/articles/2024/06-09_06-hackathon/introduce-typing-script.webp differ diff --git a/contents/articles/2024/06-09_06-hackathon/shift-syncer.png b/contents/articles/2024/06-09_06-hackathon/shift-syncer.png deleted file mode 100644 index 2de273b0..00000000 Binary files a/contents/articles/2024/06-09_06-hackathon/shift-syncer.png and /dev/null differ diff --git a/contents/articles/2024/06-09_06-hackathon/shift-syncer.webp b/contents/articles/2024/06-09_06-hackathon/shift-syncer.webp new file mode 100644 index 00000000..3c599344 Binary files /dev/null and b/contents/articles/2024/06-09_06-hackathon/shift-syncer.webp differ diff --git a/contents/articles/2024/06-09_06-hackathon/thumbnail.webp b/contents/articles/2024/06-09_06-hackathon/thumbnail.webp new file mode 100644 index 00000000..fd9a9b98 Binary files /dev/null and b/contents/articles/2024/06-09_06-hackathon/thumbnail.webp differ diff --git a/contents/articles/2024/06-09_06-hackathon/typing-script.png b/contents/articles/2024/06-09_06-hackathon/typing-script.png deleted file mode 100644 index 72720c34..00000000 Binary files a/contents/articles/2024/06-09_06-hackathon/typing-script.png and /dev/null differ diff --git a/contents/articles/2024/06-09_06-hackathon/typing-script.webp b/contents/articles/2024/06-09_06-hackathon/typing-script.webp new file mode 100644 index 00000000..1b6efd24 Binary files /dev/null and b/contents/articles/2024/06-09_06-hackathon/typing-script.webp differ diff --git a/contents/articles/2024/06-29_06-programming-course/image.jpg b/contents/articles/2024/06-29_06-programming-course/image.jpg deleted file mode 100644 index 3a8729bb..00000000 Binary files a/contents/articles/2024/06-29_06-programming-course/image.jpg and /dev/null differ diff --git a/contents/articles/2024/06-29_06-programming-course/image.webp b/contents/articles/2024/06-29_06-programming-course/image.webp new file mode 100644 index 00000000..b48b05df Binary files /dev/null and b/contents/articles/2024/06-29_06-programming-course/image.webp differ diff --git a/contents/articles/2024/06-29_06-programming-course/index.mdx b/contents/articles/2024/06-29_06-programming-course/index.md similarity index 96% rename from contents/articles/2024/06-29_06-programming-course/index.mdx rename to contents/articles/2024/06-29_06-programming-course/index.md index a706d5f1..adcdb38b 100644 --- a/contents/articles/2024/06-29_06-programming-course/index.mdx +++ b/contents/articles/2024/06-29_06-programming-course/index.md @@ -3,7 +3,7 @@ title: 中高生のためのプログラミング講座を開催しました date: 2024-06-29T18:00:00+09:00 categories: - events -image: ./image.jpg +image: ./image.webp author: kmanabe --- @@ -23,7 +23,7 @@ ut.code(); では、主なサークル活動の一つとしてプログラミン 受講生を集めるために様々な高校に今回のプログラミング講演会の提案を行った結果、岡山白陵中学・高等学校と清真学園高等学校・中学校の 2 校が参加してくださりました。その後、受講生募集のために下のようなポスターを各学校に掲示してもらったところ、合計 64 人もの受講者が集まってくれました。 -![ポスター](./poster.png) +![ポスター](./poster.webp) ## 講座の内容 @@ -41,9 +41,9 @@ HTML と CSS を使って好きなウェブサイトを作るという課題で 最後の課題では、カウンターアプリやおみくじアプリを作成しました。これまで習ってきたことを活用して熱心にカスタマイズする様子が見られ、面白いアプリが多数作られていました。 -![岡山白陵の授業風景](./okahaku-student.jpg) +![岡山白陵の授業風景](./okahaku-student.webp) -![清真学園の授業風景](./seishin-student.jpeg) +![清真学園の授業風景](./seishin-student.webp) ## 今後に向けて diff --git a/contents/articles/2024/06-29_06-programming-course/okahaku-student.jpg b/contents/articles/2024/06-29_06-programming-course/okahaku-student.jpg deleted file mode 100644 index 89d4c241..00000000 Binary files a/contents/articles/2024/06-29_06-programming-course/okahaku-student.jpg and /dev/null differ diff --git a/contents/articles/2024/06-29_06-programming-course/okahaku-student.webp b/contents/articles/2024/06-29_06-programming-course/okahaku-student.webp new file mode 100644 index 00000000..82285b57 Binary files /dev/null and b/contents/articles/2024/06-29_06-programming-course/okahaku-student.webp differ diff --git a/contents/articles/2024/06-29_06-programming-course/poster.png b/contents/articles/2024/06-29_06-programming-course/poster.png deleted file mode 100644 index 17e9196c..00000000 Binary files a/contents/articles/2024/06-29_06-programming-course/poster.png and /dev/null differ diff --git a/contents/articles/2024/06-29_06-programming-course/poster.webp b/contents/articles/2024/06-29_06-programming-course/poster.webp new file mode 100644 index 00000000..2b031c63 Binary files /dev/null and b/contents/articles/2024/06-29_06-programming-course/poster.webp differ diff --git a/contents/articles/2024/06-29_06-programming-course/seishin-student.jpeg b/contents/articles/2024/06-29_06-programming-course/seishin-student.jpeg deleted file mode 100644 index 5f0b7dc8..00000000 Binary files a/contents/articles/2024/06-29_06-programming-course/seishin-student.jpeg and /dev/null differ diff --git a/contents/articles/2024/06-29_06-programming-course/seishin-student.webp b/contents/articles/2024/06-29_06-programming-course/seishin-student.webp new file mode 100644 index 00000000..e8ee1270 Binary files /dev/null and b/contents/articles/2024/06-29_06-programming-course/seishin-student.webp differ diff --git a/contents/articles/2024/06-29_06-programming-course/zoom-screenshot.png b/contents/articles/2024/06-29_06-programming-course/zoom-screenshot.png deleted file mode 100644 index 8bc6328a..00000000 Binary files a/contents/articles/2024/06-29_06-programming-course/zoom-screenshot.png and /dev/null differ diff --git a/contents/articles/2024/06-29_06-programming-course/zoom-screenshot.webp b/contents/articles/2024/06-29_06-programming-course/zoom-screenshot.webp new file mode 100644 index 00000000..62ddcae4 Binary files /dev/null and b/contents/articles/2024/06-29_06-programming-course/zoom-screenshot.webp differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/image.jpg b/contents/articles/2024/07-13_s-specialized-seminar-report-2/image.jpg index 14f7fdb5..81158fca 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/image.jpg and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/image.jpg differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/index.mdx b/contents/articles/2024/07-13_s-specialized-seminar-report-2/index.md similarity index 100% rename from contents/articles/2024/07-13_s-specialized-seminar-report-2/index.mdx rename to contents/articles/2024/07-13_s-specialized-seminar-report-2/index.md diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-10-scene.jpg b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-10-scene.jpg index 831d1d8f..36940e54 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-10-scene.jpg and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-10-scene.jpg differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-10.png b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-10.png index 31ee3464..f43e89c2 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-10.png and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-10.png differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-11-scene.jpg b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-11-scene.jpg index 1d932f16..da54232b 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-11-scene.jpg and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-11-scene.jpg differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-11.png b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-11.png index 1defdb76..1260f51f 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-11.png and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-11.png differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-12-scene.jpg b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-12-scene.jpg index 726dfbae..759b38e8 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-12-scene.jpg and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-12-scene.jpg differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-12.png b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-12.png index 9529a58c..7466b085 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-12.png and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-12.png differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-13.png b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-13.png index 79346d21..951c9abd 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-13.png and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-13.png differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-5-scene-1.jpg b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-5-scene-1.jpg index a7321212..f5f82d33 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-5-scene-1.jpg and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-5-scene-1.jpg differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-5-scene-2.jpg b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-5-scene-2.jpg index 9b38d4b5..513c1845 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-5-scene-2.jpg and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-5-scene-2.jpg differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-5.png b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-5.png index 81407555..679e2986 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-5.png and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-5.png differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-6-scene-1.jpg b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-6-scene-1.jpg index 9c619f68..039bfe72 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-6-scene-1.jpg and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-6-scene-1.jpg differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-6-scene-2.jpg b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-6-scene-2.jpg index be9a1509..5115f71a 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-6-scene-2.jpg and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-6-scene-2.jpg differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-6.png b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-6.png index e8fcd8b8..45f318b9 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-6.png and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-6.png differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-7-scene.jpg b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-7-scene.jpg index 13d76e42..e5c39832 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-7-scene.jpg and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-7-scene.jpg differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-7.png b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-7.png index f417a7f9..5f56ded0 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-7.png and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-7.png differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-8-scene-1.jpg b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-8-scene-1.jpg index 1b856f83..24a4bfe6 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-8-scene-1.jpg and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-8-scene-1.jpg differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-8-scene-2.jpg b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-8-scene-2.jpg index 69e05ccf..c996249d 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-8-scene-2.jpg and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-8-scene-2.jpg differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-8.png b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-8.png index e15fcc07..5fdb73fb 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-8.png and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-8.png differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-9-scene.jpg b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-9-scene.jpg index 90cf6777..15661a12 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-9-scene.jpg and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-9-scene.jpg differ diff --git a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-9.png b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-9.png index bb0d90be..e73ef607 100644 Binary files a/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-9.png and b/contents/articles/2024/07-13_s-specialized-seminar-report-2/seminar-9.png differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/excellence-award.jpeg b/contents/articles/2024/09-01_coeteco-hack-2-article/excellence-award.jpeg deleted file mode 100644 index 42b9ce26..00000000 Binary files a/contents/articles/2024/09-01_coeteco-hack-2-article/excellence-award.jpeg and /dev/null differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/excellence-award.webp b/contents/articles/2024/09-01_coeteco-hack-2-article/excellence-award.webp new file mode 100644 index 00000000..8e86b8c2 Binary files /dev/null and b/contents/articles/2024/09-01_coeteco-hack-2-article/excellence-award.webp differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/grand-prize.jpg b/contents/articles/2024/09-01_coeteco-hack-2-article/grand-prize.jpg deleted file mode 100644 index 5fc77e2e..00000000 Binary files a/contents/articles/2024/09-01_coeteco-hack-2-article/grand-prize.jpg and /dev/null differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/grand-prize.webp b/contents/articles/2024/09-01_coeteco-hack-2-article/grand-prize.webp new file mode 100644 index 00000000..4e486715 Binary files /dev/null and b/contents/articles/2024/09-01_coeteco-hack-2-article/grand-prize.webp differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/image.jpg b/contents/articles/2024/09-01_coeteco-hack-2-article/image.jpg deleted file mode 100644 index bfc3eb7a..00000000 Binary files a/contents/articles/2024/09-01_coeteco-hack-2-article/image.jpg and /dev/null differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/index.mdx b/contents/articles/2024/09-01_coeteco-hack-2-article/index.md similarity index 93% rename from contents/articles/2024/09-01_coeteco-hack-2-article/index.mdx rename to contents/articles/2024/09-01_coeteco-hack-2-article/index.md index 326a8969..868ed5b9 100644 --- a/contents/articles/2024/09-01_coeteco-hack-2-article/index.mdx +++ b/contents/articles/2024/09-01_coeteco-hack-2-article/index.md @@ -3,7 +3,7 @@ title: "コエテコ Hack #02 の全日程が終了しました" date: 2024-09-02T23:30:00+09:00 categories: - events -image: ./image.jpg +image: ./thumbnail.webp author: kmanabe --- @@ -22,31 +22,31 @@ ut.code(); は、2024 年 8 月 31 日(土)、9 月 1 日(日)にコエ チーム A は、進振り情報やサークル情報といった東京大学に関する情報を学習させ、答えられるようにした「東大チャットボット」というアプリを開発しました。東京大学に関する情報は分散していることが多いですが、この ChatBot のおかげで東大生の日々の情報収集がより手軽になります。 -![チーム A](./team-a.jpg) +![チーム A](./team-a.webp) ## チーム B Push Eats チーム B は、おすすめのご飯屋さんを AI が自動的に提案してくれる「Push Eats」を開発しました。位置情報やお店の混み具合のデータを使って、 AI がお店を提案してくれるアプリで、これを使えば日々のお店選びがより簡単になり、店選びに悩むことがなくなります。 -![チーム B](./team-b.jpeg) +![チーム B](./team-b.webp) ## チーム C プレゼン練習 AI チーム C は、プレゼンテーションの音声とスライドを提供すると、それに対する改善点や想定質問を提案してくれる、「プレゼン練習 AI」を開発しました。会社などでのプレゼンテーションの練習をしたい際、既存のサービスではプレゼン練習というよりもスピーチ練習の側面が強い中、チーム C の プレゼン練習 AI はスライドの内容も参照して、適切なアドバイスを提案してくれます。 -![チーム C](./team-c.jpeg) +![チーム C](./team-c.webp) ## チーム D おかずプラン チーム D は、残り物に合わせてその日の献立を提案してくれる「おかずプラン」を開発しました。このアプリに残り物を入力すると、残り物を利用したおかずを提案してくれるだけではなく、おかずの完成形を画像で視覚的に教えてくれたり、買い物が必要な材料の相場を教えてくれたりし、日々の料理をよりスマートにしてくれます。 -![チーム D](./team-d.jpeg) +![チーム D](./team-d.webp) ## チーム E Lifetime Compass チーム E は、復習中心の学習支援アプリケーションである「Lifetime Compass」を作成しました。自分の間違えた英単語や覚えたい用語などを入力すると、AI が自動で問題を自動で作成してくれます。隙間時間に気軽に学習できるようにし、社会人の勉強へのハードルを下げることを目標としました。 -![チーム E](./team-e.jpeg) +![チーム E](./team-e.webp) 最終発表の後は、審査員の方々による審査が行われ、最優秀賞、優秀賞、審査員賞が決定しました。 @@ -54,18 +54,18 @@ ut.code(); は、2024 年 8 月 31 日(土)、9 月 1 日(日)にコエ 最優秀賞は、「プレゼン練習 AI」を開発した チーム C に決定しました! -![最優秀賞](./grand-prize.jpg) +![最優秀賞](./grand-prize.webp) ## 優秀賞 チーム D おかずプラン 優秀賞は、「おかずプラン」を開発したチーム D に決定しました! -![優秀賞](./excellence-award.jpeg) +![優秀賞](./excellence-award.webp) ## 審査員賞 チーム E Lifetime Compass 審査員賞は、「Lifetime Compass」を開発した チーム E に決定しました! -![審査員賞](./special-award.jpeg) +![審査員賞](./special-award.webp) 共催いただいた GMO メディア株式会社の皆さま、参加者の皆さま、ありがとうございました。 diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/special-award.jpeg b/contents/articles/2024/09-01_coeteco-hack-2-article/special-award.jpeg deleted file mode 100644 index 2da2aee5..00000000 Binary files a/contents/articles/2024/09-01_coeteco-hack-2-article/special-award.jpeg and /dev/null differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/special-award.webp b/contents/articles/2024/09-01_coeteco-hack-2-article/special-award.webp new file mode 100644 index 00000000..873f469c Binary files /dev/null and b/contents/articles/2024/09-01_coeteco-hack-2-article/special-award.webp differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/team-a.jpg b/contents/articles/2024/09-01_coeteco-hack-2-article/team-a.jpg deleted file mode 100644 index 65b71bed..00000000 Binary files a/contents/articles/2024/09-01_coeteco-hack-2-article/team-a.jpg and /dev/null differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/team-a.webp b/contents/articles/2024/09-01_coeteco-hack-2-article/team-a.webp new file mode 100644 index 00000000..fbb5dd0f Binary files /dev/null and b/contents/articles/2024/09-01_coeteco-hack-2-article/team-a.webp differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/team-b.jpeg b/contents/articles/2024/09-01_coeteco-hack-2-article/team-b.jpeg deleted file mode 100644 index 3bcf86a9..00000000 Binary files a/contents/articles/2024/09-01_coeteco-hack-2-article/team-b.jpeg and /dev/null differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/team-b.webp b/contents/articles/2024/09-01_coeteco-hack-2-article/team-b.webp new file mode 100644 index 00000000..b4dbc099 Binary files /dev/null and b/contents/articles/2024/09-01_coeteco-hack-2-article/team-b.webp differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/team-c.jpeg b/contents/articles/2024/09-01_coeteco-hack-2-article/team-c.jpeg deleted file mode 100644 index 2b5e354f..00000000 Binary files a/contents/articles/2024/09-01_coeteco-hack-2-article/team-c.jpeg and /dev/null differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/team-c.webp b/contents/articles/2024/09-01_coeteco-hack-2-article/team-c.webp new file mode 100644 index 00000000..936b5958 Binary files /dev/null and b/contents/articles/2024/09-01_coeteco-hack-2-article/team-c.webp differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/team-d.jpeg b/contents/articles/2024/09-01_coeteco-hack-2-article/team-d.jpeg deleted file mode 100644 index fa24b638..00000000 Binary files a/contents/articles/2024/09-01_coeteco-hack-2-article/team-d.jpeg and /dev/null differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/team-d.webp b/contents/articles/2024/09-01_coeteco-hack-2-article/team-d.webp new file mode 100644 index 00000000..67ca416e Binary files /dev/null and b/contents/articles/2024/09-01_coeteco-hack-2-article/team-d.webp differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/team-e.jpeg b/contents/articles/2024/09-01_coeteco-hack-2-article/team-e.jpeg deleted file mode 100644 index caac46c6..00000000 Binary files a/contents/articles/2024/09-01_coeteco-hack-2-article/team-e.jpeg and /dev/null differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/team-e.webp b/contents/articles/2024/09-01_coeteco-hack-2-article/team-e.webp new file mode 100644 index 00000000..2568083e Binary files /dev/null and b/contents/articles/2024/09-01_coeteco-hack-2-article/team-e.webp differ diff --git a/contents/articles/2024/09-01_coeteco-hack-2-article/thumbnail.webp b/contents/articles/2024/09-01_coeteco-hack-2-article/thumbnail.webp new file mode 100644 index 00000000..3f021e8a Binary files /dev/null and b/contents/articles/2024/09-01_coeteco-hack-2-article/thumbnail.webp differ diff --git a/contents/articles/2024/09-29_summer-camp/dining-room.jpg b/contents/articles/2024/09-29_summer-camp/dining-room.jpg deleted file mode 100644 index b7f1b269..00000000 Binary files a/contents/articles/2024/09-29_summer-camp/dining-room.jpg and /dev/null differ diff --git a/contents/articles/2024/09-29_summer-camp/dining-room.webp b/contents/articles/2024/09-29_summer-camp/dining-room.webp new file mode 100644 index 00000000..640dbbc7 Binary files /dev/null and b/contents/articles/2024/09-29_summer-camp/dining-room.webp differ diff --git a/contents/articles/2024/09-29_summer-camp/first-day-programming.jpg b/contents/articles/2024/09-29_summer-camp/first-day-programming.jpg deleted file mode 100644 index 5745edbb..00000000 Binary files a/contents/articles/2024/09-29_summer-camp/first-day-programming.jpg and /dev/null differ diff --git a/contents/articles/2024/09-29_summer-camp/first-day-programming.webp b/contents/articles/2024/09-29_summer-camp/first-day-programming.webp new file mode 100644 index 00000000..fb51918f Binary files /dev/null and b/contents/articles/2024/09-29_summer-camp/first-day-programming.webp differ diff --git a/contents/articles/2024/09-29_summer-camp/houtou.jpg b/contents/articles/2024/09-29_summer-camp/houtou.jpg deleted file mode 100644 index b5919b0e..00000000 Binary files a/contents/articles/2024/09-29_summer-camp/houtou.jpg and /dev/null differ diff --git a/contents/articles/2024/09-29_summer-camp/houtou.webp b/contents/articles/2024/09-29_summer-camp/houtou.webp new file mode 100644 index 00000000..40f15cb0 Binary files /dev/null and b/contents/articles/2024/09-29_summer-camp/houtou.webp differ diff --git a/contents/articles/2024/09-29_summer-camp/image.jpg b/contents/articles/2024/09-29_summer-camp/image.jpg deleted file mode 100644 index 6e858596..00000000 Binary files a/contents/articles/2024/09-29_summer-camp/image.jpg and /dev/null differ diff --git a/contents/articles/2024/09-29_summer-camp/index.mdx b/contents/articles/2024/09-29_summer-camp/index.md similarity index 92% rename from contents/articles/2024/09-29_summer-camp/index.mdx rename to contents/articles/2024/09-29_summer-camp/index.md index 8bc29046..bcaaf660 100644 --- a/contents/articles/2024/09-29_summer-camp/index.mdx +++ b/contents/articles/2024/09-29_summer-camp/index.md @@ -1,7 +1,7 @@ --- title: 2024 年度夏合宿を開催しました date: 2024-09-29T22:00:00+09:00 -image: ./image.jpg +image: ./thumbnail.webp author: snakamura --- @@ -11,15 +11,15 @@ ut.code(); では 9 月 23 日から 25 日にかけて、東京大学山中寮 現地に到着したら、まずは山梨県の郷土料理「ほうとう」をいただきました。 -![ほうとう](./houtou.jpg) +![ほうとう](./houtou.webp) 山中湖の景色を眺めながらいただく地元の料理で、さっそく合宿気分を満喫しました。 -![山中湖](./yamanakako.jpg) +![山中湖](./yamanakako.webp) 会場の東京大学山中寮内藤セミナーハウスに到着したら、簡単な自己紹介ののち、さっそくプログラミング活動を開始しました。 -![1日目のプログラミング活動](./first-day-programming.jpg) +![1日目のプログラミング活動](./first-day-programming.webp) 今回の合宿では、 @@ -37,11 +37,11 @@ ut.code(); では 9 月 23 日から 25 日にかけて、東京大学山中寮 「今日から使える Vim」「Nix のすすめ」「自宅サーバーのすゝめ」「ブックマークレットを使ってスマートフォンで開発者ツールを使用する」など多様なテーマのプレゼンを聞くことができました。 -![ゆる LT 会の様子](./yuru-lt-event.jpg) +![ゆる LT 会の様子](./yuru-lt-event.webp) また、夜には卒業生の牧村さんによる講演が行われました。「地理情報で遊んでみよう」というタイトルで、ユーモアを交えて語っていただきました。 -![卒業生による講演](./ob-lecture.jpg) +![卒業生による講演](./ob-lecture.webp) ## 3 日目の様子 @@ -49,7 +49,7 @@ ut.code(); では 9 月 23 日から 25 日にかけて、東京大学山中寮 美味しい食事や綺麗な施設のおかげで、リラックスしつつ開発を進めることができました。山中寮のスタッフの皆様、ありがとうございました。 -![食堂の様子](./dining-room.jpg) +![食堂の様子](./dining-room.webp) ## おわりに diff --git a/contents/articles/2024/09-29_summer-camp/ob-lecture.jpg b/contents/articles/2024/09-29_summer-camp/ob-lecture.jpg deleted file mode 100644 index 015a08d3..00000000 Binary files a/contents/articles/2024/09-29_summer-camp/ob-lecture.jpg and /dev/null differ diff --git a/contents/articles/2024/09-29_summer-camp/ob-lecture.webp b/contents/articles/2024/09-29_summer-camp/ob-lecture.webp new file mode 100644 index 00000000..e5286e48 Binary files /dev/null and b/contents/articles/2024/09-29_summer-camp/ob-lecture.webp differ diff --git a/contents/articles/2024/09-29_summer-camp/thumbnail.webp b/contents/articles/2024/09-29_summer-camp/thumbnail.webp new file mode 100644 index 00000000..147d79e3 Binary files /dev/null and b/contents/articles/2024/09-29_summer-camp/thumbnail.webp differ diff --git a/contents/articles/2024/09-29_summer-camp/yamanakako.jpg b/contents/articles/2024/09-29_summer-camp/yamanakako.jpg deleted file mode 100644 index 7ffb79e2..00000000 Binary files a/contents/articles/2024/09-29_summer-camp/yamanakako.jpg and /dev/null differ diff --git a/contents/articles/2024/09-29_summer-camp/yamanakako.webp b/contents/articles/2024/09-29_summer-camp/yamanakako.webp new file mode 100644 index 00000000..9f7a66ac Binary files /dev/null and b/contents/articles/2024/09-29_summer-camp/yamanakako.webp differ diff --git a/contents/articles/2024/09-29_summer-camp/yuru-lt-event.jpg b/contents/articles/2024/09-29_summer-camp/yuru-lt-event.jpg deleted file mode 100644 index 52285676..00000000 Binary files a/contents/articles/2024/09-29_summer-camp/yuru-lt-event.jpg and /dev/null differ diff --git a/contents/articles/2024/09-29_summer-camp/yuru-lt-event.webp b/contents/articles/2024/09-29_summer-camp/yuru-lt-event.webp new file mode 100644 index 00000000..4fa10292 Binary files /dev/null and b/contents/articles/2024/09-29_summer-camp/yuru-lt-event.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/coursemate-1.jpg b/contents/articles/2024/11-02_sparcs-utcode/coursemate-1.jpg deleted file mode 100644 index aae61db2..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/coursemate-1.jpg and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/coursemate-1.webp b/contents/articles/2024/11-02_sparcs-utcode/coursemate-1.webp new file mode 100644 index 00000000..9c8f63cb Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/coursemate-1.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/coursemate-2.jpg b/contents/articles/2024/11-02_sparcs-utcode/coursemate-2.jpg deleted file mode 100644 index de43251a..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/coursemate-2.jpg and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/coursemate-2.webp b/contents/articles/2024/11-02_sparcs-utcode/coursemate-2.webp new file mode 100644 index 00000000..a4616ed7 Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/coursemate-2.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/coursemate-slides.jpg b/contents/articles/2024/11-02_sparcs-utcode/coursemate-slides.jpg deleted file mode 100644 index 2fa16cd5..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/coursemate-slides.jpg and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/coursemate-slides.webp b/contents/articles/2024/11-02_sparcs-utcode/coursemate-slides.webp new file mode 100644 index 00000000..d7b9dd3e Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/coursemate-slides.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/create-cpu-1.jpg b/contents/articles/2024/11-02_sparcs-utcode/create-cpu-1.jpg deleted file mode 100644 index 0c95a1ce..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/create-cpu-1.jpg and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/create-cpu-1.webp b/contents/articles/2024/11-02_sparcs-utcode/create-cpu-1.webp new file mode 100644 index 00000000..6a5e8bf7 Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/create-cpu-1.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/create-cpu-2.jpg b/contents/articles/2024/11-02_sparcs-utcode/create-cpu-2.jpg deleted file mode 100644 index fa189e09..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/create-cpu-2.jpg and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/create-cpu-2.webp b/contents/articles/2024/11-02_sparcs-utcode/create-cpu-2.webp new file mode 100644 index 00000000..b9d666b2 Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/create-cpu-2.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/create-cpu-slides.jpg b/contents/articles/2024/11-02_sparcs-utcode/create-cpu-slides.jpg deleted file mode 100644 index d122d953..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/create-cpu-slides.jpg and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/create-cpu-slides.webp b/contents/articles/2024/11-02_sparcs-utcode/create-cpu-slides.webp new file mode 100644 index 00000000..fc82829f Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/create-cpu-slides.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/group-photo.jpg b/contents/articles/2024/11-02_sparcs-utcode/group-photo.jpg deleted file mode 100644 index 1128f42d..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/group-photo.jpg and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/group-photo.webp b/contents/articles/2024/11-02_sparcs-utcode/group-photo.webp new file mode 100644 index 00000000..34214ee8 Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/group-photo.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/image.jpg b/contents/articles/2024/11-02_sparcs-utcode/image.jpg deleted file mode 100644 index 8f04a3d8..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/image.jpg and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/index.mdx b/contents/articles/2024/11-02_sparcs-utcode/index.md similarity index 87% rename from contents/articles/2024/11-02_sparcs-utcode/index.mdx rename to contents/articles/2024/11-02_sparcs-utcode/index.md index 05e06180..951adb3e 100644 --- a/contents/articles/2024/11-02_sparcs-utcode/index.mdx +++ b/contents/articles/2024/11-02_sparcs-utcode/index.md @@ -1,7 +1,7 @@ --- title: SPARCS × ut.code(); 合同交流会2024を開催しました date: 2024-11-02T21:00:00+09:00 -image: ./image.jpg +image: ./thumbnail.webp author: ywatahiki --- @@ -15,7 +15,7 @@ SPARCS × ut.code(); 合同交流会2024は、日韓の大学生間で交流す イベントのはじめには、それぞれの大学および団体の紹介を行い、その後それぞれの団体が作成しているプロダクトの紹介を行いました。それぞれの紹介の後には質疑応答の時間が設けられており、気になったことやもっと深く知りたいことについて質疑応答を行いました。 -![当日の流れ](./time-schedule.png) +![当日の流れ](./time-schedule.webp) ## 大学および団体の紹介の様子 @@ -23,13 +23,13 @@ SPARCS × ut.code(); 合同交流会2024は、日韓の大学生間で交流す ### ut.code();の紹介の様子 -![ut.code();の紹介のスライド](./utcode-slides.jpg) +![ut.code();の紹介のスライド](./utcode-slides.webp) はじめに、ut.code();の紹介を行いました。ut.code();が普段どのような活動をしているのかについてやどのようなプロダクトを作成しているのかについての紹介を行いました。 ### SPARCSの紹介の様子 -![SPARCSの紹介のスライド](./sparcs-slides.jpg) +![SPARCSの紹介のスライド](./sparcs-slides.webp) 次に、SPARCSの紹介を行いました。SPARCSがどのようなことを目指して活動を続けているのかについてやどのようなプロダクトを作成しているのかについての紹介を行いました。 @@ -39,7 +39,7 @@ SPARCS × ut.code(); 合同交流会2024は、日韓の大学生間で交流す ### ut.code(); Learnの紹介の様子 -![ut.code(); Learnの紹介のスライド](./utcode-learn-slides.jpg) +![ut.code(); Learnの紹介のスライド](./utcode-learn-slides.webp) ut.code();のプロダクトの紹介の1つ目は、ut.code(); Learnでした。 @@ -47,29 +47,29 @@ ut.code(); Learnは、未経験の状態からでも自力でWebサービスの ### OTLの紹介の様子 -![OTLの紹介のスライド](./otl-slides.jpg) +![OTLの紹介のスライド](./otl-slides.webp) SPARCSのプロダクトの紹介の1つ目は、OTLでした。 OTLは、KAISTの学生が時間割の作成や講義の評価を効率的に行えるようにするためのサービスです。OTLにはどのような機能があり最近どのような機能が追加されたのかについてや、実際にどれぐらい使われているのかについてなどが紹介されました。 -![OTLの紹介の様子](./otl.jpg) +![OTLの紹介の様子](./otl.webp) ### CourseMateの紹介の様子 -![CourseMateの紹介のスライド](./coursemate-slides.jpg) +![CourseMateの紹介のスライド](./coursemate-slides.webp) ut.code();のプロダクトの紹介の2つ目は、CourseMateでした。 CourseMateは、同じ授業を履修している友達を気軽に探すことができるサービスです。同じ授業を履修している友達を探すことができる機能やその友達とやり取りを行うことができる機能があること、使用している技術スタックなどが紹介されました。 -![CourseMateの紹介の様子1](./coursemate-1.jpg) +![CourseMateの紹介の様子1](./coursemate-1.webp) -![CourseMateの紹介の様子2](./coursemate-2.jpg) +![CourseMateの紹介の様子2](./coursemate-2.webp) ### SPARCS Networkの紹介の様子 -![SPARCS Networkの紹介のスライド](./sparcs-network-slides.jpg) +![SPARCS Networkの紹介のスライド](./sparcs-network-slides.webp) SPARCSのプロダクトの紹介の2つ目は、SPARCS Networkでした。 @@ -77,30 +77,30 @@ KAIST内のITインフラの管理についてやSPARCSが運営しているミ ### CreateCPUの紹介の様子 -![CreateCPUの紹介のスライド](./create-cpu-slides.jpg) +![CreateCPUの紹介のスライド](./create-cpu-slides.webp) ut.code();のプロダクトの紹介の3つ目は、CreateCPUでした。 CreateCPUは、Webブラウザ上で論理回路を学ぶことができるサービスです。最も単純な回路素子をつなぎ合わせて自分だけのCPUを作り上げることができます。CreateCPUにある他の論理回路シミュレーターにはない特徴についてなどが実演を交えながら紹介されました。 -![CreateCPUの紹介の様子1](./create-cpu-1.jpg) +![CreateCPUの紹介の様子1](./create-cpu-1.webp) -![CreateCPUの紹介の様子2](./create-cpu-2.jpg) +![CreateCPUの紹介の様子2](./create-cpu-2.webp) ### Taxiの紹介の様子 -![Taxiの紹介のスライド](./taxi-slides.jpg) +![Taxiの紹介のスライド](./taxi-slides.webp) SPARCSのプロダクトの紹介の3つ目は、Taxiでした。 Taxiは、タクシーの同乗者を簡単に見つけることができるアプリで、これによりタクシーの料金を節約したり、同乗者との調整をスムーズに行うことができます。Taxiができる前にKAISTの学生にとってどのような問題があったのか、どのようにして多くの人に使ってもらえるように広報を行ったのかなどが紹介されました。 -![Taxiの紹介の様子1](./taxi-1.jpg) +![Taxiの紹介の様子1](./taxi-1.webp) -![Taxiの紹介の様子2](./taxi-2.jpg) +![Taxiの紹介の様子2](./taxi-2.webp) ## 最後に どのような問題を解決しようとしているのかや、実際に作ったプロダクトを使ってもらうためにどうしてきたのかなど、ut.code();のメンバーにとっても、SPARCSのメンバーにとっても、学びになることがたくさんあるイベントになりました。今後も、今回のようにお互いに情報交換ができるイベントやその他のイベントを行っていきたいと思っています。参加していただいたSPARCSのメンバーのみなさん、ut.code();のメンバーのみなさん、ありがとうございました。 -![集合写真](./group-photo.jpg) +![集合写真](./group-photo.webp) diff --git a/contents/articles/2024/11-02_sparcs-utcode/otl-slides.jpg b/contents/articles/2024/11-02_sparcs-utcode/otl-slides.jpg deleted file mode 100644 index ab6faa68..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/otl-slides.jpg and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/otl-slides.webp b/contents/articles/2024/11-02_sparcs-utcode/otl-slides.webp new file mode 100644 index 00000000..333ebe52 Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/otl-slides.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/otl.jpg b/contents/articles/2024/11-02_sparcs-utcode/otl.jpg deleted file mode 100644 index 58d3d236..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/otl.jpg and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/otl.webp b/contents/articles/2024/11-02_sparcs-utcode/otl.webp new file mode 100644 index 00000000..685cb730 Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/otl.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/sparcs-network-slides.jpg b/contents/articles/2024/11-02_sparcs-utcode/sparcs-network-slides.jpg deleted file mode 100644 index a47ac1d9..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/sparcs-network-slides.jpg and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/sparcs-network-slides.webp b/contents/articles/2024/11-02_sparcs-utcode/sparcs-network-slides.webp new file mode 100644 index 00000000..d1e10de5 Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/sparcs-network-slides.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/sparcs-slides.jpg b/contents/articles/2024/11-02_sparcs-utcode/sparcs-slides.jpg deleted file mode 100644 index 0414f7d7..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/sparcs-slides.jpg and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/sparcs-slides.webp b/contents/articles/2024/11-02_sparcs-utcode/sparcs-slides.webp new file mode 100644 index 00000000..28ed543a Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/sparcs-slides.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/taxi-1.jpg b/contents/articles/2024/11-02_sparcs-utcode/taxi-1.jpg deleted file mode 100644 index 0488b766..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/taxi-1.jpg and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/taxi-1.webp b/contents/articles/2024/11-02_sparcs-utcode/taxi-1.webp new file mode 100644 index 00000000..891f9fc7 Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/taxi-1.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/taxi-2.jpg b/contents/articles/2024/11-02_sparcs-utcode/taxi-2.jpg deleted file mode 100644 index aeabdbc9..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/taxi-2.jpg and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/taxi-2.webp b/contents/articles/2024/11-02_sparcs-utcode/taxi-2.webp new file mode 100644 index 00000000..94a3a2fd Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/taxi-2.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/taxi-slides.jpg b/contents/articles/2024/11-02_sparcs-utcode/taxi-slides.jpg deleted file mode 100644 index f4cf7182..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/taxi-slides.jpg and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/taxi-slides.webp b/contents/articles/2024/11-02_sparcs-utcode/taxi-slides.webp new file mode 100644 index 00000000..d75faa10 Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/taxi-slides.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/thumbnail.webp b/contents/articles/2024/11-02_sparcs-utcode/thumbnail.webp new file mode 100644 index 00000000..73b54c85 Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/thumbnail.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/time-schedule.png b/contents/articles/2024/11-02_sparcs-utcode/time-schedule.png deleted file mode 100644 index 31c4d49d..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/time-schedule.png and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/time-schedule.webp b/contents/articles/2024/11-02_sparcs-utcode/time-schedule.webp new file mode 100644 index 00000000..bcc06e8e Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/time-schedule.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/utcode-learn-slides.jpg b/contents/articles/2024/11-02_sparcs-utcode/utcode-learn-slides.jpg deleted file mode 100644 index 18cb17ad..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/utcode-learn-slides.jpg and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/utcode-learn-slides.webp b/contents/articles/2024/11-02_sparcs-utcode/utcode-learn-slides.webp new file mode 100644 index 00000000..388dcda7 Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/utcode-learn-slides.webp differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/utcode-slides.jpg b/contents/articles/2024/11-02_sparcs-utcode/utcode-slides.jpg deleted file mode 100644 index 751b171f..00000000 Binary files a/contents/articles/2024/11-02_sparcs-utcode/utcode-slides.jpg and /dev/null differ diff --git a/contents/articles/2024/11-02_sparcs-utcode/utcode-slides.webp b/contents/articles/2024/11-02_sparcs-utcode/utcode-slides.webp new file mode 100644 index 00000000..11d98af5 Binary files /dev/null and b/contents/articles/2024/11-02_sparcs-utcode/utcode-slides.webp differ diff --git a/contents/articles/2025/02-20_spring-camp/cafe.avif b/contents/articles/2025/02-20_spring-camp/cafe.avif new file mode 100644 index 00000000..7eca176a Binary files /dev/null and b/contents/articles/2025/02-20_spring-camp/cafe.avif differ diff --git a/contents/articles/2025/02-20_spring-camp/cafe.jpg b/contents/articles/2025/02-20_spring-camp/cafe.jpg deleted file mode 100644 index 390f8455..00000000 Binary files a/contents/articles/2025/02-20_spring-camp/cafe.jpg and /dev/null differ diff --git a/contents/articles/2025/02-20_spring-camp/dining-room.avif b/contents/articles/2025/02-20_spring-camp/dining-room.avif new file mode 100644 index 00000000..9f659e2c Binary files /dev/null and b/contents/articles/2025/02-20_spring-camp/dining-room.avif differ diff --git a/contents/articles/2025/02-20_spring-camp/dining-room.jpg b/contents/articles/2025/02-20_spring-camp/dining-room.jpg deleted file mode 100644 index af863812..00000000 Binary files a/contents/articles/2025/02-20_spring-camp/dining-room.jpg and /dev/null differ diff --git a/contents/articles/2025/02-20_spring-camp/image.avif b/contents/articles/2025/02-20_spring-camp/image.avif new file mode 100644 index 00000000..78997386 Binary files /dev/null and b/contents/articles/2025/02-20_spring-camp/image.avif differ diff --git a/contents/articles/2025/02-20_spring-camp/image.jpg b/contents/articles/2025/02-20_spring-camp/image.jpg deleted file mode 100644 index 7675e571..00000000 Binary files a/contents/articles/2025/02-20_spring-camp/image.jpg and /dev/null differ diff --git a/contents/articles/2025/02-20_spring-camp/index.mdx b/contents/articles/2025/02-20_spring-camp/index.md similarity index 91% rename from contents/articles/2025/02-20_spring-camp/index.mdx rename to contents/articles/2025/02-20_spring-camp/index.md index e349a023..cfd5a188 100644 --- a/contents/articles/2025/02-20_spring-camp/index.mdx +++ b/contents/articles/2025/02-20_spring-camp/index.md @@ -1,7 +1,7 @@ --- title: 2025 年度春合宿を開催しました date: 2025-03-01 -image: ./image.jpg +image: ./image.avif author: "tyasumura" --- @@ -11,7 +11,7 @@ ut.code(); では 2 月 20 日から 22 日まで、東京大学山中寮内藤 到着したら、まずは山中湖に臨むカフェ「LA2CAFE Yamanakako」にて昼食をとりました。 -![カフェ](./cafe.jpg) +![カフェ](./cafe.avif) 寮に着いてからは、会議室でプログラミング活動を進めました。 @@ -23,11 +23,11 @@ ut.code(); では 2 月 20 日から 22 日まで、東京大学山中寮内藤 午前は有志の発表者によるLT会が開かれました。個人プロジェクトについて話してくださり、とても興味深かったです。 -![LT会](./lt-event.jpg) +![LT会](./lt-event.avif) 午後はチーム対抗ITクイズ大会を実施しました。早押し問題や頭を悩ませるような問題を協力して解いて盛り上がりました。 -![ITクイズ大会](./it-quiz.jpg) +![ITクイズ大会](./it-quiz.avif) ## 三日目 @@ -37,6 +37,6 @@ ut.code(); では 2 月 20 日から 22 日まで、東京大学山中寮内藤 自然に囲まれながら山中寮の美味しいご飯を食べて、心地よい時間を過ごすことができました。 -![寮の食事](./dining-room.jpg) +![寮の食事](./dining-room.avif) 今後も定期的な合宿やイベントを開催していきますので、ぜひ参加してください。 diff --git a/contents/articles/2025/02-20_spring-camp/it-quiz.avif b/contents/articles/2025/02-20_spring-camp/it-quiz.avif new file mode 100644 index 00000000..ed0b2cd9 Binary files /dev/null and b/contents/articles/2025/02-20_spring-camp/it-quiz.avif differ diff --git a/contents/articles/2025/02-20_spring-camp/it-quiz.jpg b/contents/articles/2025/02-20_spring-camp/it-quiz.jpg deleted file mode 100644 index 4346ebb0..00000000 Binary files a/contents/articles/2025/02-20_spring-camp/it-quiz.jpg and /dev/null differ diff --git a/contents/articles/2025/02-20_spring-camp/lt-event.avif b/contents/articles/2025/02-20_spring-camp/lt-event.avif new file mode 100644 index 00000000..6f051f44 Binary files /dev/null and b/contents/articles/2025/02-20_spring-camp/lt-event.avif differ diff --git a/contents/articles/2025/02-20_spring-camp/lt-event.jpg b/contents/articles/2025/02-20_spring-camp/lt-event.jpg deleted file mode 100644 index 1de13abd..00000000 Binary files a/contents/articles/2025/02-20_spring-camp/lt-event.jpg and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/chat.avif b/contents/articles/2025/05-12_new-member-camp/chat.avif new file mode 100644 index 00000000..eb2a0e95 Binary files /dev/null and b/contents/articles/2025/05-12_new-member-camp/chat.avif differ diff --git a/contents/articles/2025/05-12_new-member-camp/chat.jpeg b/contents/articles/2025/05-12_new-member-camp/chat.jpeg deleted file mode 100644 index bf7041af..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/chat.jpeg and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/coding.HEIC b/contents/articles/2025/05-12_new-member-camp/coding.HEIC deleted file mode 100644 index 49d1619e..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/coding.HEIC and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/coding.avif b/contents/articles/2025/05-12_new-member-camp/coding.avif new file mode 100644 index 00000000..17fc5166 Binary files /dev/null and b/contents/articles/2025/05-12_new-member-camp/coding.avif differ diff --git a/contents/articles/2025/05-12_new-member-camp/coding.png b/contents/articles/2025/05-12_new-member-camp/coding.png deleted file mode 100644 index c65c11f0..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/coding.png and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/cycling.HEIC b/contents/articles/2025/05-12_new-member-camp/cycling.HEIC deleted file mode 100644 index 0131b09b..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/cycling.HEIC and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/cycling.avif b/contents/articles/2025/05-12_new-member-camp/cycling.avif new file mode 100644 index 00000000..51dfa091 Binary files /dev/null and b/contents/articles/2025/05-12_new-member-camp/cycling.avif differ diff --git a/contents/articles/2025/05-12_new-member-camp/cycling.png b/contents/articles/2025/05-12_new-member-camp/cycling.png deleted file mode 100644 index 72ee6201..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/cycling.png and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/dinner.avif b/contents/articles/2025/05-12_new-member-camp/dinner.avif new file mode 100644 index 00000000..13fd0cf6 Binary files /dev/null and b/contents/articles/2025/05-12_new-member-camp/dinner.avif differ diff --git a/contents/articles/2025/05-12_new-member-camp/dinner.jpg b/contents/articles/2025/05-12_new-member-camp/dinner.jpg deleted file mode 100644 index 0f4a2d38..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/dinner.jpg and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/everyone.HEIC b/contents/articles/2025/05-12_new-member-camp/everyone.HEIC deleted file mode 100644 index 01b86e89..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/everyone.HEIC and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/everyone.avif b/contents/articles/2025/05-12_new-member-camp/everyone.avif new file mode 100644 index 00000000..fd181681 Binary files /dev/null and b/contents/articles/2025/05-12_new-member-camp/everyone.avif differ diff --git a/contents/articles/2025/05-12_new-member-camp/everyone.png b/contents/articles/2025/05-12_new-member-camp/everyone.png deleted file mode 100644 index fcb683b2..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/everyone.png and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/fuji.HEIC b/contents/articles/2025/05-12_new-member-camp/fuji.HEIC deleted file mode 100644 index 008c78cb..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/fuji.HEIC and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/fuji.avif b/contents/articles/2025/05-12_new-member-camp/fuji.avif new file mode 100644 index 00000000..01f1c61d Binary files /dev/null and b/contents/articles/2025/05-12_new-member-camp/fuji.avif differ diff --git a/contents/articles/2025/05-12_new-member-camp/fuji.png b/contents/articles/2025/05-12_new-member-camp/fuji.png deleted file mode 100644 index edaa3c81..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/fuji.png and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/game.avif b/contents/articles/2025/05-12_new-member-camp/game.avif new file mode 100644 index 00000000..61a26488 Binary files /dev/null and b/contents/articles/2025/05-12_new-member-camp/game.avif differ diff --git a/contents/articles/2025/05-12_new-member-camp/game.jpeg b/contents/articles/2025/05-12_new-member-camp/game.jpeg deleted file mode 100644 index 97c77635..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/game.jpeg and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/image.png b/contents/articles/2025/05-12_new-member-camp/image.png deleted file mode 100644 index e742ba4b..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/image.png and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/index.mdx b/contents/articles/2025/05-12_new-member-camp/index.md similarity index 83% rename from contents/articles/2025/05-12_new-member-camp/index.mdx rename to contents/articles/2025/05-12_new-member-camp/index.md index d600117c..cb029ee4 100644 --- a/contents/articles/2025/05-12_new-member-camp/index.mdx +++ b/contents/articles/2025/05-12_new-member-camp/index.md @@ -1,7 +1,7 @@ --- title: 2025 年度新歓合宿を開催しました date: 2025-05-12 -image: ./image.png +image: ./thumbnail.avif author: "kshibayama" --- @@ -16,11 +16,11 @@ author: "kshibayama" 5つの班に分かれお互いに自己紹介をしたら、早速コーディングに移ります。 1時間50分コーディング,5分進捗報告,5分休憩のサイクルで学習・開発していきます。 -![コーディングの様子](./coding.png) +![コーディングの様子](./coding.avif) 夕食後ボドゲです。 -![夕食の様子](./dinner.jpg) +![夕食の様子](./dinner.avif) レクリエーションとして、五種類のパーティーゲームを用意し、楽しみました。 @@ -30,18 +30,18 @@ author: "kshibayama" お昼は肉うどん。 その後は集合写真を撮り、各自一時間ほど自由時間になりました。 -![集合写真](./everyone.png) +![集合写真](./everyone.avif) 筆者はサイクリングで山中湖の観光地方面へ向かいました。素晴らしい風景がたくさん見えてよかったです。 -![最高](./cycling.png) +![最高](./cycling.avif) -![富士山](./fuji.png) +![富士山](./fuji.avif) 集合したら再びプログラム。いい感じに雑談もしながら作業を進めます。 夜はチーム対抗のITクイズ大会。 -![クイズ大会](./quiz.jpg) +![クイズ大会](./quiz.avif) 結果はチーム5が他のチームと大差をつけて勝利でした。 @@ -55,24 +55,24 @@ author: "kshibayama" 対戦型ゲーム、Chatアプリ、Twitterアプリ、VJシステムなど多彩な作品が揃いました。 筆者はTouchDesignerを用いたVJのシステムを構築。最低限の機能を実装することに成功しました。  -![対戦型ゲーム](./game.jpeg) +![対戦型ゲーム](./game.avif) -![chatアプリ](./chat.jpeg) +![chatアプリ](./chat.avif) -![Twitterもどき](./twi.jpeg) +![Twitterもどき](./twi.avif) -![VJ](./vj.jpeg) +![VJ](./vj.avif) お昼はさっぱりしたラーメン。レモンがのってておしゃれです。 -![もはやこういう店](./lemon.jpg) +![もはやこういう店](./lemon.avif) 帰りのバスまで1時間あったので、山中湖畔で自由時間。 思い思いの時間を過ごします。 -![黄昏るOB](./ob.png) +![黄昏るOB](./ob.avif) ここで集合写真。 新入生がたくさん来てくれて非常に嬉しかったです!今後もいろんなイベントを開いていきますのでぜひ参加してください! -来年はもっと渋滞のないところで… \ No newline at end of file +来年はもっと渋滞のないところで… diff --git a/contents/articles/2025/05-12_new-member-camp/lemon.avif b/contents/articles/2025/05-12_new-member-camp/lemon.avif new file mode 100644 index 00000000..618d9b7b Binary files /dev/null and b/contents/articles/2025/05-12_new-member-camp/lemon.avif differ diff --git a/contents/articles/2025/05-12_new-member-camp/lemon.jpg b/contents/articles/2025/05-12_new-member-camp/lemon.jpg deleted file mode 100644 index abb03a24..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/lemon.jpg and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/ob.HEIC b/contents/articles/2025/05-12_new-member-camp/ob.HEIC deleted file mode 100644 index 6e06f0d0..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/ob.HEIC and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/ob.avif b/contents/articles/2025/05-12_new-member-camp/ob.avif new file mode 100644 index 00000000..72bdc2f5 Binary files /dev/null and b/contents/articles/2025/05-12_new-member-camp/ob.avif differ diff --git a/contents/articles/2025/05-12_new-member-camp/ob.png b/contents/articles/2025/05-12_new-member-camp/ob.png deleted file mode 100644 index 3529511d..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/ob.png and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/quiz.avif b/contents/articles/2025/05-12_new-member-camp/quiz.avif new file mode 100644 index 00000000..73c98758 Binary files /dev/null and b/contents/articles/2025/05-12_new-member-camp/quiz.avif differ diff --git a/contents/articles/2025/05-12_new-member-camp/quiz.jpg b/contents/articles/2025/05-12_new-member-camp/quiz.jpg deleted file mode 100644 index 361fa8ca..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/quiz.jpg and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/thumbnail.avif b/contents/articles/2025/05-12_new-member-camp/thumbnail.avif new file mode 100644 index 00000000..8f05542f Binary files /dev/null and b/contents/articles/2025/05-12_new-member-camp/thumbnail.avif differ diff --git a/contents/articles/2025/05-12_new-member-camp/twi.avif b/contents/articles/2025/05-12_new-member-camp/twi.avif new file mode 100644 index 00000000..3e1457eb Binary files /dev/null and b/contents/articles/2025/05-12_new-member-camp/twi.avif differ diff --git a/contents/articles/2025/05-12_new-member-camp/twi.jpeg b/contents/articles/2025/05-12_new-member-camp/twi.jpeg deleted file mode 100644 index d46542e0..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/twi.jpeg and /dev/null differ diff --git a/contents/articles/2025/05-12_new-member-camp/vj.avif b/contents/articles/2025/05-12_new-member-camp/vj.avif new file mode 100644 index 00000000..b9a9032f Binary files /dev/null and b/contents/articles/2025/05-12_new-member-camp/vj.avif differ diff --git a/contents/articles/2025/05-12_new-member-camp/vj.jpeg b/contents/articles/2025/05-12_new-member-camp/vj.jpeg deleted file mode 100644 index 4dddb3f2..00000000 Binary files a/contents/articles/2025/05-12_new-member-camp/vj.jpeg and /dev/null differ diff --git a/contents/members/kshibayama/face.jpg b/contents/members/kshibayama/face.jpg deleted file mode 100644 index 627eda1a..00000000 Binary files a/contents/members/kshibayama/face.jpg and /dev/null differ diff --git a/contents/members/kshibayama/face.webp b/contents/members/kshibayama/face.webp new file mode 100644 index 00000000..ef7df853 Binary files /dev/null and b/contents/members/kshibayama/face.webp differ diff --git a/contents/members/kshibayama/index.md b/contents/members/kshibayama/index.md index 66ca4e31..5fdae93d 100644 --- a/contents/members/kshibayama/index.md +++ b/contents/members/kshibayama/index.md @@ -3,8 +3,8 @@ nameJa: 柴山 慧一朗 nameEn: Keiichiro Shibayama joinYear: 2024 description: サークルいっぱい入ってる多趣味な人。 -faceImage: ./face.jpg -upperBodyImage: ./upper-body.jpg +faceImage: ./face.webp +upperBodyImage: ./upper-body.webp github: Tsurubara-UTcode theme-light: "#CEDDF2" --- diff --git a/contents/members/kshibayama/upper-body.jpg b/contents/members/kshibayama/upper-body.jpg deleted file mode 100644 index 627eda1a..00000000 Binary files a/contents/members/kshibayama/upper-body.jpg and /dev/null differ diff --git a/contents/members/kshibayama/upper-body.webp b/contents/members/kshibayama/upper-body.webp new file mode 100644 index 00000000..ef7df853 Binary files /dev/null and b/contents/members/kshibayama/upper-body.webp differ diff --git a/contents/members/tyasumura/face.jpg b/contents/members/tyasumura/face.jpg deleted file mode 100644 index 36b87864..00000000 Binary files a/contents/members/tyasumura/face.jpg and /dev/null differ diff --git a/contents/members/tyasumura/face.webp b/contents/members/tyasumura/face.webp new file mode 100644 index 00000000..25adaf9c Binary files /dev/null and b/contents/members/tyasumura/face.webp differ diff --git a/contents/members/tyasumura/index.md b/contents/members/tyasumura/index.md index e4d8c358..407b5fcb 100644 --- a/contents/members/tyasumura/index.md +++ b/contents/members/tyasumura/index.md @@ -3,8 +3,8 @@ nameJa: 安村 拓也 nameEn: Takuya Yasumura joinYear: 2024 description: 初心者です。 -faceImage: ./face.jpg -upperBodyImage: ./upper-body.jpg +faceImage: ./face.webp +upperBodyImage: ./upper-body.webp github: nakomochi --- diff --git a/contents/members/tyasumura/upper-body.jpg b/contents/members/tyasumura/upper-body.jpg deleted file mode 100644 index 36b87864..00000000 Binary files a/contents/members/tyasumura/upper-body.jpg and /dev/null differ diff --git a/contents/members/tyasumura/upper-body.webp b/contents/members/tyasumura/upper-body.webp new file mode 100644 index 00000000..25adaf9c Binary files /dev/null and b/contents/members/tyasumura/upper-body.webp differ diff --git a/src/pages/articles/[...id].astro b/src/pages/articles/[...id].astro index aaf51172..4a3259b8 100644 --- a/src/pages/articles/[...id].astro +++ b/src/pages/articles/[...id].astro @@ -32,10 +32,10 @@ const author = article.data.author && (await getMember(article.data.author.id));