Skip to content

Commit

Permalink
add post
Browse files Browse the repository at this point in the history
  • Loading branch information
taga3s committed Nov 17, 2024
1 parent 007e610 commit 7294302
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions app/routes/posts/weekly2024-11-17.mdx
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 の プラグインを自作して、このブログに導入する。
- 検索技術に入門する。
- 色々と執筆する。
- インターンに行く。

そろそろ就活の正念場だと感じています。やることは山積みですが、着実に進んでいきたいですね。今週もお疲れ様でした。

0 comments on commit 7294302

Please sign in to comment.