I frequently use the GitLink plugin in JetBrains IDEs to copy Git web URLs for files with one click, which significantly streamlines code collaboration.

Increased VSCode usage at work recently revealed a lack of comparable extensions. To improve efficiency, I developed Beautiful GitLink, a VSCode extension that replicates and enhances this functionality.

Demo

Features

Read more »

I’ve been using Cursor for several months, which has effectively replaced VSC as my lightweight editor/IDE. Here are some details from my usage experience.

Purchase or Subscription

Currently, Cursor doesn’t offer any promotions or regional pricing. The only option is to subscribe through the official website at $20/month or $192/year. I recommend the monthly subscription, as AI tools are constantly emerging, and you might want to switch tools at any time.

Cursor Settings

Sync Settings

Read more »

Having used 1Password for many years, here I’ll summarize the usage methods of 1P.

Updates

Current versions have been updated as follows; the guide below still applies:

  1. 1P Mac v8.10.58
  2. 1P iOS v8.10.58
Read more »

Recently when looking at some projects, I found many dependencies. After searching a few randomly, I discovered they weren’t being used and could be removed. However, checking and removing these packages one by one is too troublesome.
Based on this need, I wrote a small tool to efficiently detect and remove unused dependencies.

@stacker/remove-unused-deps

Usage: Execute the following command in the project root directory, interactively select unused dependencies, and press enter to uninstall and remove them.

1
npx @stacker/remove-unused-deps@latest  

Principle

Read more »

Cursor(VSCode) has been used frequently for coding, but opening projects is inefficient. I wanted to create an Alfred Workflow for a one-click VSCode project opening. Research showed that VSCode stores recently opened projects, making this technically feasible.

Screenshots

Download: VSCode-Open Project

Implementation Approach

Read more »
0%