Skip to content

Instantly share code, notes, and snippets.

View JHarrison712's full-sized avatar

John Harrison JHarrison712

View GitHub Profile
@JHarrison712
JHarrison712 / Container.htm
Created July 12, 2017 06:52 — forked from vital101/Container.htm
Star Wars Restoration: Main Site - Complete
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="GENERATOR" content="Microsoft FrontPage 3.0">
<title>Star Wars</title>
<bgsound src="STARWARS.mid" loop="1"></bgsound>
</head>
<frameset framespacing="0" border="false" frameborder="0" cols="197,*">
<frame name="starmenu" target="starwars" src="./Star Wars_files/starmenu.html" scrolling="auto" noresize="">
<frame name="starwars" src="./Star Wars_files/starwars.html" target="_top" scrolling="auto" noresize="">
@craysiii
craysiii / Uninstall-Chrome.ps1
Created May 2, 2020 00:25
Uninstall Chrome with Powershell Silently
$64bit = if ([System.IntPtr]::Size -eq 8) { $true } else { $false }
$RegKeys = @('HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\')
if ($true -eq $64bit) { $RegKeys += 'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\'}
$Apps = $RegKeys | Get-ChildItem | Get-ItemProperty | Where-Object { $_.DisplayName -like '*Chrome*' }
$Apps | ForEach-Object {
$ExecLocation = "$($_.UninstallString.Split('"')[1])"
Start-Process -FilePath "$ExecLocation" -ArgumentList "--uninstall --system-level --force-uninstall" -Wait
}

Running a MacOS 13 Ventura VM in VMware

Installing and Configuring VMware

💡 NOTE: MacOS higher than version 12 requires a CPU with AVX2 instruction support

  1. Download a MacOS Ventura .iso Download OR create your own https://youtu.be/JFMvUpdCMwo
  2. Download VMware Workstation Player Download
  3. Download MacOS Unlocker for VMware Workstation Download
  4. Install VMware Workstation Player, accepting the defaults