Skip to content

Instantly share code, notes, and snippets.

View PostGuitarist's full-sized avatar

Zaden Connell PostGuitarist

View GitHub Profile
@PostGuitarist
PostGuitarist / oracle-cloud-autocreate.js
Last active June 16, 2024 00:06
Auto Create Oracle Cloud Free Tier VMs for a Minecraft server.
// Find the 'compute' iframe window within the document if it isn't already the current window in devtools.
const computeWindow = document.querySelector("#compute-wrapper")
? window
: document.querySelector("#sandbox-compute-container")?.contentWindow;
if (!computeWindow) throw new Error("Failed to find iframe window");
const createBtn = computeWindow.document.querySelector(
".oui-savant__Panel--Footer .oui-button.oui-button-primary"
);
if (!createBtn || createBtn.textContent !== "Create")