This file contains hidden or 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
// ==UserScript== | |
// @name Robin Auto-Growth | |
// @namespace com.github.leoverto | |
// @include https://www.reddit.com/robin/ | |
// @version 1 | |
// @grant none | |
// ==/UserScript== | |
setTimeout(function () { | |
document.getElementsByClassName("robin--vote-class--increase")[0].click(); | |
console.log("WE SHALL GROW!"); |
This file contains hidden or 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
From 69b7d2a3d8f62edb717aabc7a094ee13798d4de5 Mon Sep 17 00:00:00 2001 | |
From: LeoVerto <[email protected]> | |
Date: Thu, 30 Jul 2015 04:41:22 +0300 | |
Subject: [PATCH] Add ignore_prefix configuration option | |
This option allows users to prevent a message from being logged by starting it with a configurable prefix. | |
Possible prefixes include: "[off]", ".off" and "[ignore]". | |
--- | |
botbot/apps/plugins/core/logger.py | 31 +++++++++++++++++++++---------- |
This file contains hidden or 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
-- Initialize some variables for later | |
local xMax, yMax = term.getSize() | |
local row = 4, 3, 1 | |
-- Returns a table of possible icon origin positions | |
function originTable(maxCol, maxRow) | |
local tOrigins = {} | |
for i=1, maxRow do | |
for j=1, maxCol do | |
table.insert(tOrigins, {3+9*(j-1), 2+6*(i-1)}) |
This file contains hidden or 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
{ | |
"version": "0.1.5.1", | |
"port": 2078, | |
"playersActive": 0, | |
"playersMax": 8, | |
"playersOnline": {}, | |
"serverInfo": "Leo's KMP dev server", | |
"updatesPerSecond": 60, | |
"shipsInactive": 100, | |
"screenshotHeight": 512, |
This file contains hidden or 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
*.class | |
# Package Files # | |
*.jar | |
*.war | |
*.ear | |
# Forge and vanilla # | |
/bin/* | |
/conf/* |
NewerOlder