Skip to content

Commit 4e6df13

Browse files
競プロの欄にRustCoderを追加
1 parent 9283443 commit 4e6df13

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"type": "module",
44
"version": "0.0.1",
55
"scripts": {
6-
"dev": "astro dev",
6+
"dev": "astro dev --host",
77
"build": "astro build",
88
"preview": "astro preview",
99
"astro": "astro"

src/assets/RustCoder.png

63.4 KB
Loading

src/pages/index.astro

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
import Layout from '../layouts/Layout.astro';
33
import Card from '../components/Card.astro';
4+
import RustCoder from '../assets/RustCoder.png';
45
---
56

67
<Layout>
@@ -16,7 +17,7 @@ import Card from '../components/Card.astro';
1617
</Card>
1718
<Card>
1819
<h2>アイコン</h2>
19-
<img width="108px" src="favicon.jpg"/>
20+
<img src="favicon.jpg"/>
2021
<p><a href="https://x.com/Cafrette">@Cafrette</a> さんに書いていただきました。</p>
2122
</Card>
2223
<Card>
@@ -34,12 +35,16 @@ import Card from '../components/Card.astro';
3435
<li>ICPC 2021 … アジア横浜地区大会出場(<b>t</b>oxic)</li>
3536
<li>ICPC 2022 … アジア横浜地区大会出場(h<b>a</b>unting)</li>
3637
</ul>
38+
<img src={RustCoder.src} alt="とが『RustCoder ―― AtCoder と Rust で始める競技プログラミング入門』の表紙"/>
39+
<p>『RustCoder――AtCoder と Rust で始める競技プログラミング入門』は<a href="https://zenn.dev/toga/books/rust-atcoder/viewer/intro">終了しました</a>。</p>
3740
</Card>
3841
<Card>
3942
<h2>研究</h2>
4043
<p>主に統計や AI をやっています。</p>
41-
<p>Atsushi Komaba, Hisashi Johno, and Kazunori Nakamoto. A novel statistical approach for two-sample testing based on the overlap coefficient. <i>Journal of Mathematical Sciences, The University of Tokyo</i>, 30(2):205–240, 2023.</p>
42-
<p>Ryota Tozuka, Hisashi Johno, Akitomo Amakawa, Junichi Sato, Mizuki Muto, Shoichiro Seki, Atsushi Komaba, and Hiroshi Onishi. Application of NotebookLM, a large language model with retrieval‑augmented generation, for lung cancer staging. <i>Japanese Journal of Radiology</i>, 2024. Online ahead of print.</p>
44+
<ul>
45+
<li>Atsushi Komaba, Hisashi Johno, and Kazunori Nakamoto. A novel statistical approach for two-sample testing based on the overlap coefficient. <i>Journal of Mathematical Sciences, The University of Tokyo</i>, 30(2):205–240, 2023.</li>
46+
<li>Ryota Tozuka, Hisashi Johno, Akitomo Amakawa, Junichi Sato, Mizuki Muto, Shoichiro Seki, Atsushi Komaba, and Hiroshi Onishi. Application of NotebookLM, a large language model with retrieval‑augmented generation, for lung cancer staging. <i>Japanese Journal of Radiology</i>, 2024. Online ahead of print.</li>
47+
</ul>
4348
<p>他に日本磁気共鳴医学会、医療の質・安全学会など。</p>
4449
</Card>
4550
<Card>
@@ -105,6 +110,11 @@ import Card from '../components/Card.astro';
105110
}
106111
}
107112

113+
img {
114+
width: 60%;
115+
max-width: 270px;
116+
}
117+
108118
h2, p {
109119
margin: .3em;
110120
}

0 commit comments

Comments
 (0)