Shallow Git Repository

Create Shallow Repository Just run shallow fetch command: Unshallow Checkout official doc for more info. Remove Unused Remote Branch Update Fetch Config We can edit the git config file to determine which branches should be fetched automatically. As you see, we could change the fetch config in the remote section to tell Git which branchContinue reading “Shallow Git Repository”

Use Clash TUN and Fiddler Everywhere to Capture All Traffic

If you are not familiar with Clash Meta and Fiddler Everywhere, follow the link to learn about them before reading this post. Basic Thought Then we have the following thought: Rule Settings First create an HTTP proxy node pointing to Fiddler Everywhere HTTP proxy: Based on previous settings, the actual config should be: Note thatContinue reading “Use Clash TUN and Fiddler Everywhere to Capture All Traffic”

VS Code Python Project PowerShell Integration

This article introduces an approach to enable VS Code PowerShell integration in Python projects, including some basic python environment management. Define Helper Function Note in some cases, code.cmd could be mandatory instead of code, otherwise there could be error. You could use Get-Command to check details about it: VS Code Workspace Config Below are someContinue reading “VS Code Python Project PowerShell Integration”

Disable Jetpack Image Optimization

When using WordPress with Jetpack plugin, the image in the post will be automatically optimized to use Jetpack CDN: And such image hosted on CDN could have lower quality compared to the original image you provided. To avoid this, we could go to the Jetpack settings to disable image optimation: After this, the image shouldContinue reading “Disable Jetpack Image Optimization”

Check Actual Memory Usage on Windows 11

Sometimes, the total memory usage show up in the “Memory” tab is not the same with the sum-up value in “Processes” tab. Concretely: This post provided an approach to check the actual memory usage of running processes and thus to locate a memory leak of a certain program. Which Process Used the Memory We couldContinue reading “Check Actual Memory Usage on Windows 11”

Create Shared-Permission Directory Using ACL

Senarios Let’s say we have a directory animes, with several sub directories, one of which is animes/Dandadan. And now: In this scenario, we could use ACL (getfacl and setfacl) to achieve such permission management. Check ACL Status First let’s go to animes directory: -a/–access means only showing the access setting, without default::*, we will useContinue reading “Create Shared-Permission Directory Using ACL”

Clash Load Balancing to Bypass Speed Limit

Note: Author is using: As the image shows, some proxy providers will provide some nodes specifically dedicated to downloading task, with lower ratio but lower rate limit (10Mbps in image above). This post demonstrates how to use Load Balance proxy group feature in clash core to download files using several such “download nodes”, effectively bypassingContinue reading “Clash Load Balancing to Bypass Speed Limit”

A Simple Image Hosting Solution Using FTP

Previously trying to use NextCloud and webdav as the way to upload and manage images, but it turns out that deal with share links of those images in NextCloud is not a easy thing to do, so I started to think another way. I found this project on GitHub called PicGo, which allows user toContinue reading “A Simple Image Hosting Solution Using FTP”