Skip to content

Instantly share code, notes, and snippets.

View my-wrm's full-sized avatar
😍

Thada Wangthammang my-wrm

😍
View GitHub Profile
@my-wrm
my-wrm / README.md
Created November 19, 2021 09:33 — forked from developius/README.md
Setup SSH keys for use with GitHub/GitLab/BitBucket etc

Create a new repository, or reuse an existing one.

Generate a new SSH key:

ssh-keygen -t rsa -C "your_email@example.com"

Copy the contents of the file ~/.ssh/id_rsa.pub to your SSH keys in your GitHub account settings (https://github.com/settings/keys).

Test SSH key:

@my-wrm
my-wrm / GacUtil.ps1
Created September 29, 2021 08:07 — forked from MikeLarned/GacUtil.ps1
Powershell GacUtil - Updating GAC Assemblies with PS
$gacUtil = "${Env:ProgramFiles(x86)}\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools\gacutil.exe";
function Add-GacItem([string]$path) {
#Full Path Name or Relative - ex: C:\Temp\Larned.dll
& $gacutil "/nologo" "/i" "$path"
}
function Remove-GacItem([string]$name) {