YG BLOG

Akebi & Young's Metaverse ;)

從 FastAPI 轉成 gRPC 服務流程筆記

重要 按理來說接口應要跟 pydantic 模型一模一樣 FastAP......

用 Alembic 管理 SQLAlchemy Migration 筆記

目標:當遷移歷史混亂或想用現有模型重新建立「乾淨」的初始遷移時,安全地重......

LeetCode 獨自升級紀 - [Linked List] Reverse Linked List (Easy)

題目 給定一個單向 Linked List,反轉該鏈表並返回反轉後的頭節點......

LeetCode 獨自升級紀 - [Sliding Window] Longest Substring Without Repeating Characters (Medium)

題目 輸入一個字串 s,要找出最長的不含重複字元的子字串長度。 例子: ......

LeetCode 獨自升級紀 - [Binary Search] Search a 2D Matrix (Medium)

題目 題目 Example: Input: matrix = [[1,3......

LeetCode 獨自升級紀 - [Stack] Valid Parentheses (Easy)

題目 輸入一個只包含 ()[]{} 的字串,判斷它是否......

LeetCode 獨自升級紀 - [Hashmap] Group Anagrams (Medium)

題目 Example 1: Input: strs = [“eat”,“t......

LeetCode 獨自升級紀 - [Two Pointer] Remove Duplicates from Sorted Array (Easy)

題目 給定一個非遞減排序(non-decreasing order)的整數......

2025 Django 串接 LINE Messaging API 流程

1. 安裝套件 1pip install line-bot-sdk pyt......

React useCallback 如何解決 useEffect 無限循環問題

問題 直接先看問題,原本照下方程式碼這樣子去調用 fetchCustome......