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 floor = math.floor | |
local canvas = {} | |
canvas._version = "0.1.0" | |
canvas.frame, canvas.time = 0, 0 | |
canvas.width = 240 | |
canvas.height = floor(canvas.width / (16 / 9)) | |
canvas.pixelPerfect = true | |
canvas.backgroundColor = { 0, 0, 0, 1 } | |
canvas.xOffset, canvas.yOffset = 0, 0 |
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
// Please, make sure it is sorted by Popularity, Most rated, least rated or Karma | |
// Paste in your game id inside the string | |
const ID = "YOUR_ITCH_GAME_ID" | |
function find_rank(id){ | |
let index = 0; | |
let quit = false; | |
// load all the games in list and find the game with matching id | |
document.querySelectorAll(".index_game_cell_widget").forEach((child, )=>{ |
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
fortune | cowsay -f "$(ls /usr/share/cowsay/cows | sort -R | head -1)" | lolcat |