Skip to content

Instantly share code, notes, and snippets.

View EpicnessTwo's full-sized avatar
😼
A little nosey aren't ya? mew~

Richard "EpicKitty" Bowey EpicnessTwo

😼
A little nosey aren't ya? mew~
View GitHub Profile
@aamiaa
aamiaa / CompleteDiscordQuest.md
Last active November 1, 2025 08:38
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This does not works in browser for quests which require you to play a game! Use the desktop app to complete those.

How to use this script:

  1. Accept a quest under Discover -> Quests
  2. Press Ctrl+Shift+I to open DevTools
  3. Go to the Console tab
  4. Paste the following code and hit enter:
@hatkidchan
hatkidchan / render.py
Created April 14, 2022 08:00
Fedi.place timelapse renderer
#!/usr/bin/env python3
from csv import reader as CSVReader
from datetime import datetime
from subprocess import Popen, PIPE
from PIL import Image, ImageDraw, ImageFont
from PIL.ImageColor import getrgb
FFMPEG_ARGS = [
"ffmpeg", "-f", "image2pipe",
"-i", "-",
@maxerium
maxerium / btmc-skin-doc.md
Last active April 15, 2023 10:06
BTMC's Skins

BTMC's Skin Overview/List

This will always be kept up-to-date. (Current Revision: 1.4, 03rd November 2020)

The list is maintained by maxi#0666. If anything is broken or missing, please DM me on Discord. Thank you!

This skin list is not up-to-date anymore. Head over to this site for the actual document.

@John-Paul-R
John-Paul-R / FabricModList.md
Last active October 15, 2025 12:28
A list of (almost all) mods for Fabric

Fabric Mod List

This page contains a list of the current Minecraft Fabric mods. (As of 2021-08-19 08:05:23 Timezone: UTC+0000 (GMT))

To search for mods by name, category, or download count, visit the website, fibermc.com!

Note: You can view a mod's source files by following the "Source" link on its CurseForge page, assuming that the mod's creator has made such files public.

There are currently 2954 mods in this list.

@06Games
06Games / head.tmpl
Last active March 19, 2020 18:56
Preview of a mobile view for gogs
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<link rel="stylesheet" href="/css/mobile.css" />
function logColor(color, args) {
console.log(`%c ${args.join(' ')}`, `color: ${color}`);
}
const log = {
aliceblue: (...args) => { logColor('aliceblue', args)},
antiquewhite: (...args) => { logColor('antiquewhite', args)},
aqua: (...args) => { logColor('aqua', args)},
aquamarine: (...args) => { logColor('aquamarine', args)},
azure: (...args) => { logColor('azure', args)},
--heres a even better one for a fake virus prank
tell application "Finder"
-- set x to ((path to me as text) & "Contents:Resources:appicon.icn*s") as
display dialog "Please read and agree to our Terms of Service (ToS). " buttons "OK" default button "OK" with title "iLivid Terms of Service" with icon 1
set volume 10
do shell script "say -v trinoids Virus activated"
display dialog "Virus propagating.
@jesse1981
jesse1981 / treesize.sh
Created July 19, 2013 07:18
Bash Script for viewing folder sizes. Just put this code into a file /bin/treesize and make it executable. Then any system user can get a list of directory sizes within a directory by just running treesize from any directory.
#/bin/sh
du -k --max-depth=1 | sort -nr | awk '
BEGIN {
split("KB,MB,GB,TB", Units, ",");
}
{
u = 1;
while ($1 >= 1024) {
$1 = $1 / 1024;
u += 1