The reading list
Essays, tech notes, and the in-between.
- Technical Notes·3 min read
Starting a new Python project in 2026 with uv
Six commands, five files, zero `source activate`. A walkthrough from `uv init` to a project that runs tests, ships a CLI, and is ready to dockerize.

- technical-notes·3 min read
uv vs pip + venv + pyenv: speed, lockfiles, and the death of `source activate`
Three axes where uv wins and they compound: raw speed from a Rust resolver and a global hardlink cache, a real lockfile instead of a pip freeze snapshot, and a workflow that finally retires source .venv/bin/activate.

- technical-notes·3 min read
Why uv Exists: The Pre-uv Python Tooling Mess, and What Astral Consolidated
Before uv, a working Python project needed five tools and a working knowledge of how they fail at the seams. uv collapsed them into one Rust binary because the seams were the problem.

- code-quality·3 min read
How to solve Deployment Failure-`assets:precompile`
I was trying to deploy rails 6 app on ec2 server using capistrano when precompile failure lead to whole deploymentt failure. I had to uninstall cmdtest and install yarn

- code-quality·3 min read
How to Sort an Array of Objects in JavaScript
How to Sort an Array of Objects in JavaScript

- code-quality·3 min read
Ways to increase productivity while working from home
It could be quite challenging to work from home without serious commitment and right set of skills. Here are some effective tips that can help you.

- code-quality·3 min read
Top 3 programming language you should learn in 2019 for professional career
Anyone wanting to learn programming in 2019 for professional career should start with javascript for full stack need, python for data science and c# for gaming

- code-quality·3 min read
6 awesome git tricks you should start using immediately
6 awesome git tricks you should be using in 2019

- code-quality·3 min read
List of git commands
List of git commands you can use

- code-quality·3 min read
How to debug a Sidekiq worker
Pry like debugger for Sidekiq
