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
{ | |
"overrideTitle": false, | |
"overrideTitleContents": "firefox", | |
"overrideBodyContents": "lol bye, do your nea" | |
} |
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
var apple = [9,10] | |
var position = [11,10] | |
var score = 0 | |
var trail = [] | |
var direction = 0 | |
var movedThisFrame = false | |
var charset = { | |
head: "#", | |
tail: "~", |
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
function getDevForumTrustLevel(username) | |
local succ,retval = pcall(function() | |
local apiResponse = game.HttpService:GetAsync("https://cors-anywhere.herokuapp.com/https://devforum.roblox.com/users/"..username..".json",false, { | |
["x-requested-with"] = "Roblox" | |
}) | |
local j = game.HttpService:JSONDecode(apiResponse) | |
if (j["user"]) then | |
return j["user"]["trust_level"] | |
else | |
return -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
// Sparky v1.0 | |
// theLMGN - https://github.com/thelmgn | |
// Example: <canvas is="spark-line" width="300" height="200" data="5,3,6,9,10,5" color="#52ACD4"></canvas> | |
class Sparky extends HTMLCanvasElement { | |
constructor() { | |
super(); | |
var observer = new MutationObserver(function(mutations) { | |
try { | |
return this.render() |
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
/** stolen from https://stackoverflow.com/a/48200842/4156215 **/ | |
/** | |
* @description Options used when calling CanvasRenderingContext2D.strokeArcGradient() and | |
* CanvasRenderingContext2D.fillArcGradient(). | |
* @property {Boolean} useDegrees Whether the specified angles should be interpreted as degrees rather than radians. | |
* (default: false) | |
* @property {Number} resolutionFactor The number of lines to render per pixel along the arc. A higher number produces | |
* a cleaner gradient, but has worse performance for large radii. Must be greater | |
* than 0. (default: 8) |
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
{ | |
"base": "vs-dark", | |
"inherit": true, | |
"colors": { | |
"editor.foreground": "#BFCAE0", | |
"editor.background": "#222222", | |
"editor.selectionBackground": "#3D4350", | |
"editor.lineHighlightBackground": "#4C576730", | |
"editorCursor.foreground": "#528BFF", | |
"editorWhitespace.foreground": "#747369" |
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
/* Empty CSS file to help theme developers */ | |
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); | |
body { | |
--accent: #CA1115; | |
--background: #202225; | |
--background-2: #222; | |
--background-3: #444; | |
--text: #fff; | |
--text-on-accent: #fff; | |
font-family: "Gotham SSm", "Montserrat", sans-serif; |
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
<!DOCTYPE html><html lang=en><meta charset=UTF-8><meta content="width=device-width,initial-scale=1,user-scalable=no"name=viewport><title>Wordle - A daily word game</title><meta content="Guess the hidden word in 6 tries. A new puzzle is available each day."name=description><meta content=https://www.powerlanguage.co.uk/wordle/ property=og:url><meta content=website property=og:type><meta content="Wordle - A daily word game"property=og:title><meta content="Guess the hidden word in 6 tries. A new puzzle is available each day."property=og:description><meta content=https://www.dailywordle.com/images/wordle_og_1200x630.png property=og:image><meta content=summary_large_image name=twitter:card><meta content=powerlanguage.co.uk property=twitter:domain><meta content=#6aaa64 name=theme-color><link href=manifest.json rel=manifest><link href=images/wordle_logo_32x32.png rel="icon shortcut"sizes=3232><link href=images/wordle_logo_192x192.png rel=apple-touch-icon><style>:root{--green:#6aaa64;--darkendGreen:#538d4e;--yellow:#c |
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
import time | |
import board | |
import busio | |
import usb_hid | |
import digitalio | |
from adafruit_hid.keyboard import Keyboard | |
from adafruit_hid.keycode import Keycode | |
KEY_MAP = { | |
1: Keycode.EQUALS, |