@Augus221NVDIA VPS 开机脚本 中发帖

背景
第一批申请的额度,一直无法开机,世界第一公司居然这么垃圾…
描述
自动开机脚本,成功自动停止,防频繁触发500
使用方式
浏览器console或dev tool代码块或油猴自己扩展
注意
替换fallbackSimulationId参数为自己的容器id
window.__simStateLoop?.stop?.();

window.__simStateLoop = (() => {
const fallbackSimulationId = "xxx-xxx-xxx-xxx";
const simulationId =
window.location.pathname.match(/\/(?:simulation|simulations)\/([0-9a-f-]+)/i)?.[1] ??
fallbackSimulationId;
const re...