This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env zx | |
/* | |
@ Use at your own risk -- Sean Lavaerts | |
HOW TO USE: | |
this uses zx (https://google.github.io/zx/getting-started) | |
essentially 'run javascript as a bash script' | |
but you could also just, run this as normal js under node/deno/what-ever you want, | |
you'd just need to hardcode the path. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Instructions: | |
Head to https://steamcommunity.com/id/{your_steam_id}/games/?tab=all | |
Execute this script in console | |
*/ | |
var games = document.getElementsByClassName("gameListRow"); | |
var result = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- This mod goes into %appdata%/../locallow/copybugpaste/homebrew14/Lua/ModLua | |
-- Created by Igniuss#6852 | |
-- Toggles *ALL* UI with the press of a button (F5 to be specific) | |
local mod = {} | |
function mod:Start() | |
self.enabled = true | |
self.scalers = {} | |
local c = GameObject.FindObjectsOfType(Canvas) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local imgui = {} | |
function main(go) | |
imgui.gameObject = go | |
return imgui | |
end | |
function imgui:Start() | |
self.window = { | |
id = 1338, | |
rect = Rect(15,200,200,1), --x,y,width,height |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class MessageType { | |
public string[] array; | |
public enum MessageEnum { | |
Shutdown = 0, | |
Reboot = 1, | |
Softlock = 2 | |
} | |
public string this[MessageEnum val] { | |
get { | |
return array[(int)val]; |