Skip to content

Commit

Permalink
Add Mitou-related progress ✨
Browse files Browse the repository at this point in the history
  • Loading branch information
porink0424 committed Jul 4, 2024
1 parent a088001 commit 28d1043
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/_components/sections/SectionAbout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ function SectionAbout({ language, sectionRef }: Props) {
</ListItem>
<List withPadding className='!ml-7'>
{items.map((item, itemIndex) => (
<ListItem key={itemIndex}>{item}</ListItem>
<ListItem key={itemIndex}>{parseText(item)}</ListItem>
))}
</List>
</List>
Expand Down
2 changes: 2 additions & 0 deletions app/_constants/link.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,6 @@ export const LINK = {
HUNDRED_PROGRAM: 'https://100program.jp/',
OPTIUNA: 'https://github.com/optuna/optuna',
OPTUNA_DASHBOARD: 'https://github.com/optuna/optuna-dashboard',
MITOU_INNOVATOR: 'https://scrapbox.io/mitou-meikan/%E5%8A%A0%E8%97%A4_%E5%A4%A7%E5%9C%B0',
MITOU_ADVANCED: 'https://www.ipa.go.jp/jinzai/mitou/advanced/2024/gaiyou-mr-1.html',
} as const
13 changes: 11 additions & 2 deletions app/_contents/SectionAbout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { BrandCpp, Mist, School, Terminal2 } from 'tabler-icons-react'
import { LANGUAGES } from '../_constants/language'
import { LINK } from '../_constants/link'

export const SECTION_ABOUT = {
profile: {
Expand Down Expand Up @@ -81,7 +82,11 @@ export const SECTION_ABOUT = {
},
{
title: 'MISC:',
items: ['Applied Information Technology Engineer Examination (2023/06)'],
items: [
'TOEFL iBT: 92 (2022/4/23)',
'Applied Information Technology Engineer Examination (2023/06)',
`[Mitou Innovator](${LINK.MITOU_INNOVATOR}) (2024-2025, adopted in Mitou Advanced Project)`,
],
},
],
[LANGUAGES.JP]: [
Expand All @@ -105,7 +110,11 @@ export const SECTION_ABOUT = {
},
{
title: 'その他',
items: ['応用情報技術者試験 (2023/06)'],
items: [
'TOEFL iBT: 92 (2022/4/23)',
'応用情報技術者試験 (2023/06)',
`[未踏イノベータ](${LINK.MITOU_INNOVATOR}) (2024-2025, 未踏アドバンスト事業採択)`,
],
},
],
},
Expand Down
4 changes: 2 additions & 2 deletions app/_contents/SectionExperiences.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ export const SECTION_EXPERIENCES = {
title:
'Development of an automatic dubbing system that retains the original essence of Japanese anime',
period: '',
content: `I am developing a system that can automatically generate a dubbed version of an anime that retains the original essence of the Japanese version. This project has been adopted by the [Kakusei Project](${LINK.KAKUSEI}) of AIST and [TODAI TO TEXAS](${LINK.TTT}) of the University of Tokyo.`,
content: `I am developing a system that can automatically generate a dubbed version of an anime that retains the original essence of the Japanese version. This project has been adopted by the [Kakusei Project](${LINK.KAKUSEI}) of AIST, [TODAI TO TEXAS](${LINK.TTT}) of the University of Tokyo, and [Mitou Advanced Project](${LINK.MITOU_ADVANCED}) of IPA.`,
},
{
title: 'Puyo Puyo Tetris AI',
Expand All @@ -221,7 +221,7 @@ export const SECTION_EXPERIENCES = {
{
title: '日本語版の世界観を崩さないアニメの自動吹き替えシステムの開発',
period: '',
content: `大学の学科同期と一緒に、日本語版の世界観をそのまま引き継いだ翻訳版アニメを、自動で生成できるシステムの開発を行っています。本プロジェクトは、産総研の [「覚醒」プロジェクト](${LINK.KAKUSEI})、東京大学の [TODAI TO TEXAS](${LINK.TTT}) に採択されています。`,
content: `大学の学科同期と一緒に、日本語版の世界観をそのまま引き継いだ翻訳版アニメを、自動で生成できるシステムの開発を行っています。本プロジェクトは、産総研の [「覚醒」プロジェクト](${LINK.KAKUSEI})、東京大学の [TODAI TO TEXAS](${LINK.TTT})、IPAの [未踏アドバンスト事業](${LINK.MITOU_ADVANCED}) に採択されています。`,
},
{
title: 'ぷよぷよテトリスAI',
Expand Down

0 comments on commit 28d1043

Please sign in to comment.