Skip to content

Instantly share code, notes, and snippets.

View ajhalili2006's full-sized avatar
🏫
Currently in school + hauling over autistic burnout

Andrei Jiroh Halili ajhalili2006

🏫
Currently in school + hauling over autistic burnout
View GitHub Profile
@ajhalili2006
ajhalili2006 / Getting Support.md
Last active July 6, 2020 10:36 — forked from reetp/Readme.md
An one-file documentation on getting Support.
@ajhalili2006
ajhalili2006 / RemoveCurlAndWgetAlias.ps1
Last active September 27, 2021 05:51 — forked from lfalck/RemoveCurlAlias.ps1
Remove the PowerShell alias curl/wget -> Invoke-WebRequest
# Originally forked from https://gist.github.com/lfalck/fbb04ef438b521064e0c5742bcd28c2f, I just added
# another Remove-Item for wget, because I'm not a fan of Invoke-WebRequest
$removeCurlAlias = @"
# Remove Alias curl -> Invoke-WebRequest
Remove-Item alias:curl
Remove-Item alias:wget
"@
if (-Not (Test-Path $Profile))