Code & Soul
A space where software engineering meets inner energy. Deep technical dives alongside quiet reflections on awareness, meditation, and what it means to build a life with intention.
Latest
All posts →code
Turning AI Drafts into Actual Learning
How I use lecture notes, questions, retrieval, and revision to make AI-assisted writing part of studying
code
SVM Margins and Support Vectors
How a support vector machine chooses a decision boundary by maximizing its margin
code
LeetCode 54 - Spiral Matrix
A Python matrix simulation using direction vectors and in-place visit markers
Featured
Posts that show the current shape of this blog.
code
Why I Built a Villain
The starting point of Tail Villain, built around the gap between knowing something and retrieving it under interview pressure
code
Separating LLM Serving from the Feedback Pipeline
A system design practice note on separating real-time LLM serving from asynchronous feedback collection at 20K peak TPS
soul
Mindfulness of Breathing
Returning to anapanasati as a small daily practice
Series
Posts collected by subject.
Most Read
Recent Code
View all 96 →-
Turning AI Drafts into Actual Learning
How I use lecture notes, questions, retrieval, and revision to make AI-assisted writing part of studying
-
SVM Margins and Support Vectors
ai-engineering-study
How a support vector machine chooses a decision boundary by maximizing its margin
-
LeetCode 54 - Spiral Matrix
algorithm-study
A Python matrix simulation using direction vectors and in-place visit markers
-
LeetCode 300 - Longest Increasing Subsequence
algorithm-study
An O(n²) Python DP solution that tracks the longest increasing subsequence ending at each index