-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
title: 週報 2024-11-17 | ||
publishedAt: 2024/11/17 | ||
--- | ||
|
||
## 今週のやったこと | ||
|
||
- Hono での API 作りをいくつかしました。どんな API を作るかを悩みたくなかったので、ありがたい Youtube の教材(1時間程度)* 2本を見ながら、手を動かして実装しました。1 つは、Next.js の API Routes にアダプターを介して Hono のエンドポイントを実装し、Serverless の Redis に国名情報を事前に格納して、高速に検索できるようにするものでした。ロジックを実装するのが面白かったです。もう 1 つは、機械学習周りの知識が必要な印象で、ひとまず見ようみまねで作っていました。 | ||
- [taga3s/country-search-api](https://github.com/taga3s/country-search-app) | ||
- [taga3s/profanity-filter-api](https://github.com/taga3s/profanity-filter-api) | ||
|
||
```ts | ||
import { Hono } from 'hono' | ||
|
||
const app = new Hono() | ||
|
||
app.get('/', (c) => c.json({ message: 'taga3s.dev' })) | ||
|
||
export default app | ||
``` | ||
|
||
- 気分転換に、SQL の問題を解いていました。自分の場合は、[アルゴ式](https://algo-method.com/)というサイトを復習に役立てています。個人的には結構楽しいと感じているので、ちゃんと続けていきたいです。就活が終わったら、コンテストとかにも出てみたいなと。 | ||
|
||
## 次週のやること | ||
|
||
- Mermaid の プラグインを自作して、このブログに導入する。 | ||
- 検索技術に入門する。 | ||
- 色々と執筆する。 | ||
- インターンに行く。 | ||
|
||
そろそろ就活の正念場だと感じています。やることは山積みですが、着実に進んでいきたいですね。今週もお疲れ様でした。 |