shlogg · Early preview
Yosuke Hanaoka @yoshan0921

Software Engineer | Project Manager

ASL Practice App Proof Of Concept In Software Engineering And Web Dev

AI-powered ASL quizzes & learning content on YouTube. Custom MediaPipe Gesture Recognizer & top-performing Kaggle ASL model used for finger spelling & vocabulary practice.

Python Concurrency Options: Asyncio Vs Threading Vs Multiprocessing

Concurrency in Python: Use **asyncio** for I/O bound tasks & **multiprocessing** for CPU bound tasks due to Global Interpreter Lock (GIL) limitation. **threading** can be used but with caution.