Skip to content

Instantly share code, notes, and snippets.

@kupietools
kupietools / Docker Desktop v 4.0.0 thru 4.22.1 direct download links
Last active November 18, 2024 23:28
List of Direct Download links for Docker Desktop from version 4.0.0 released 2021-08-31 thru 4.22.1 released 2023-08-24, as archived on archive.org
@SynCap
SynCap / remove_node_modules_recursively.ps1
Last active August 20, 2024 23:27
Remove `node_modules` folders in Windows in all subfolders recursively with PowerShell to avoid exceeding path max_length
<#
Note: Eliminate `-WhatIf` parameter to get action be actually done
Note: PS with version prior to 4.0 can't delete non-empty folders
#>
Get-ChildItem -Path "." -Include "node_modules" -Recurse -Directory | Remove-Item -Recurse -Force -WhatIf