Original Author: Rui Ueyama (creator of the mold linker)
Translated by @windowsboy111
Minimally edited by @lleyton
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 { Rettiwt } from "npm:rettiwt-api"; | |
const fediHandle = /@[\w.-]+@[\w.-]+/; | |
const apiKey = Deno.env.get("TWITTER_API_KEY"); | |
const username = Deno.args.at(-1); | |
if (username === undefined) | |
throw new Error("You must pass your Twitter username as an argument."); |
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
type RGB8bitColor = [number, number, number]; | |
// Adapted from https://gist.github.com/jfsiii/5641126 | |
// and from http://www.w3.org/TR/WCAG20/#relativeluminancedef | |
const relativeLuminanceW3C = (color: RGB8bitColor) => { | |
const RsRGB = color[0] / 255; | |
const GsRGB = color[1] / 255; | |
const BsRGB = color[2] / 255; | |
const R = |
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
SEA{"m":"I claim this account on identifier. For more info see: https://identifier.app/lleyton#github","s":"sZvsJ3+IfcPuvAZO64WVh8BKFfcRWfggApYOrKbr8wJOM9f8worTVgUdj9LCh8M3ia4p/kp4JVKmH6JLpZCDCg=="} |
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
SEA{"m":"I claim this account on identifier. For more info see: https://identifier.app/lleyton#github","s":"AjuSI4QH0rtaCXTuoiHEsaAAWcBDoSHAzQxH0e3fkp8+65ImBsBqoKKdsOWOyUFE+24fJMFTDrCltQyR9FFy+g=="} |
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
#Minecraft server properties | |
server-port=25565 | |
server-ip= | |
max-players=5 | |
view-distance=2 |
innsight is a server monitoring platform made by Innatical to help simplify your system administration needs. With log collection, server analytics, and remote actions built into one platform, we make your job easy.
Let's get started by creating an innsight account. You can create an account on our main site.
Now, let's install innsight on your first server! Copy the below command and paste it into your server's terminal.
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
logs = true | |
metrics = true | |
files = [ | |
"/var/log/syslog" | |
] | |
token = "" |
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
{ | |
"name": "Octii", | |
"dark": { | |
"colors": { | |
"primary": "linear-gradient(224deg, #75C8FF 0%, #007FFF 100%)", | |
"secondary": "linear-gradient(224deg, #A3A3A3 0%, #636363 100%)", | |
"success": "#8f8f8f", | |
"info": "#8f8f8f", | |
"danger": "linear-gradient(224deg, #FC9D9D 0%, #F86464 100%)", | |
"warning": "linear-gradient(224deg, #FFD575 0%, #FF7200 100%)", |
NewerOlder