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
// to be ran at https://gitlab.com/Kwoth/nadekobot/-/raw/global/src/NadekoBot/data/hangman.json | |
excludedLetters = "nt"; | |
wordBlank = "_a___"; | |
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
// ==UserScript== | |
// @name yare.io autostart | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @author L0laapk3 | |
// @match yare.io/d1/* | |
// @run-at document-idle | |
// @grant none | |
// ==/UserScript== |
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
// ==UserScript== | |
// @name yare.io less delay | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0 | |
// @author L0laapk3 | |
// @match yare.io/d1/* | |
// @run-at document-idle | |
// @grant none | |
// ==/UserScript== |
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
import re | |
file = "kicad/7seg_clock.kicad_pcb" | |
def place(m): | |
ref = int(m.group(3)) - 1 | |
x = ref // 10 | |
y = ref % 10 | |
x *= 25.25 |
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
#include "utils/renderBall.h" | |
#include "utils/bridge.h" | |
#include <array> | |
#include <iostream> | |
constexpr float M_PI = 3.14159265358979323846; | |
void renderCircle(RLURenderer& renderer, const vec3& center, float radius, const vec3& axis, const size_t numPoints, rlbot::Color color) { |
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
// as generated by https://github.com/L0laapk3/CrystalBot_RL/blob/0e8f2fa9eda91da9b39efb9ae1106ff0942eafdc/src/utils/renderBall.cpp | |
95.4872, 0, 0 | |
85.2728, 42.9692, 0 | |
42.9692, 85.2728, 0 | |
0, 95.4872, 0 | |
0, 85.2728, 42.9692 | |
0, 42.9692, 85.2728 | |
0, 0, 95.4872 | |
0, -42.9692, 85.2728 | |
0, -85.2728, 42.9692 |
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
// https://github.com/L0laapk3/CrystalBot_RL/blob/0e8f2fa9eda91da9b39efb9ae1106ff0942eafdc/src/utils/renderBall.cpp | |
95.4872, 0, 0 | |
91.422, 27.5648, 0 | |
77.965, 55.1296, 0 | |
55.1296, 77.965, 0 | |
27.5648, 91.422, 0 | |
0, 95.4872, 0 | |
0, 91.422, 27.5648 | |
0, 77.965, 55.1296 | |
0, 55.1296, 77.965 |
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 V = vector.new | |
local R = function(v, r) | |
local f = r > 1 and -1 or 1 | |
if r % 2 == 1 then | |
return V(-v.z * f, v.y, v.x * f) | |
end | |
return V(v.x * f, v.y, v.z * f) | |
end | |
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
-- Fireworks screensaver animation | |
-- By L0laapk3, based on Rectar's Fireworks | |
launchRate = 0.03 | |
fireworks = {} | |
particles = {} | |
fcolors={1,2,4,8,16,32,64,512,1024,2048,8192,16384} | |
particleChars = {"#","X","+","*","."} |
OlderNewer