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 July 18, 2024 15:23
Complete Recent Discord Quest

Complete Recent Discord Quest

Note

This no longer works in browser!

This no longer works if you're alone in vc! Somebody else has to join you!

Warning

There are now two quest types ("stream" and "play")! Pay attention to the instructions!

@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 July 15, 2024 08:10
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