Skip to content

Instantly share code, notes, and snippets.

View ronaldkasagga's full-sized avatar
🇺🇬
andan

Ronald Kasagga ronaldkasagga

🇺🇬
andan
View GitHub Profile
@ronaldkasagga
ronaldkasagga / vmware.md
Created September 14, 2024 10:18 — forked from ayebrian/vmware.md
VMware ESXi 8 / vCenter 8 / Workstation 17 license key 2024
using namespace System.Management.Automation
using namespace System.Management.Automation.Language
if ($host.Name -eq 'ConsoleHost')
{
Import-Module PSReadLine
}
#Import-Module PSColors
#Import-Module posh-git
Import-Module -Name Terminal-Icons
@ronaldkasagga
ronaldkasagga / clone-latest-github-org-repos.sh
Last active June 9, 2023 17:32
This one-liner uses github cli to clone all org repositories you have access to into the current directly. A directory matching the supplied org name will be created and the repos will be cloned into it
gh repo ls <org-name-goes-here> | awk '{print $1}' | xargs -I {} gh repo clone {} {}