Skip to content

Instantly share code, notes, and snippets.

View prpcodes's full-sized avatar

Philipp R. Proksch prpcodes

View GitHub Profile
@prpcodes
prpcodes / sampleREADME.md
Created March 23, 2019 20:05 — forked from FrancesCoronel/sampleREADME.md
A sample README for all your GitHub projects.

FVCproductions

INSERT GRAPHIC HERE (include hyperlink in image)

Repository Title Goes Here

Subtitle or Short Description Goes Here

@prpcodes
prpcodes / remove_node_modules_recursively.ps1
Created November 4, 2021 17:04 — forked from SynCap/remove_node_modules_recursively.ps1
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