Writing custom VSCode plugin

I enjoy writing code snippets that eventually works out as a utility to a developer. The DevTools! Developer tools are small independent code pieces those can be executed on-demand and should not have any side effects. Recently I have been using Django Admin intensively to add more and more options in list view, detail view to help debugging and developing better. But about that in some other blog. Here, I am going to talk about a VSCode plugin that I published. ...

May 20, 2022 · Pranav Gore

Prevent accidental git-push in a simple step

If you have push access to an upstream repository and want to avoid accidental push, checkout the simple solution below. Freedom is choosing your responsibility. It’s not having no responsibilities; it’s choosing the ones you want. Let’s set the context I will call the original repository as upstream My fork for that repository will be called as origin 90% of times I push to origin and then create pull request, but few times I push directly to upstream(create new branch or update existing one). ...

February 8, 2018 · Pranav Gore