Skip to content

Instantly share code, notes, and snippets.

View DereC4's full-sized avatar
🇹🇼
coding

Derek Chen DereC4

🇹🇼
coding
View GitHub Profile
@appleneko2001
appleneko2001 / TODO_Index_table.md
Last active April 6, 2026 02:16
Known shader listing that supports voxy LoD mod

Index

Important

TODO: this place is used for organising all information as two parts, which have simple and detailed, make users easily to access the information they needed by checking the table.

But theres one issue, I'm busy in IRL and pretty slow to do those works everything. I'll update it as much as possible, it would be slow but meanful to do that.

Shader Name Set A [^a1] Set B [^a2]
Solas Shader + +

updated 8th Dec, 2025 for 1.21.10

Tutorial of Downloading and Building the CoreProtect Plugin

This tutorial will explain from nothing how to build/create the CoreProtect plugin or 1.21.10 from it's source code on GitHub.

I am assuming you don't know anything and don't have anything installed and are using a Windows device.

Prerequisites

Watch these tutorial videos (very short).

@veb
veb / PerlinNoise.py
Created September 10, 2015 17:43
Perlin like noise with Python and pygame
import pygame
import math
def findnoise2(x,y):
n = int(x) + int(y) * 57
allf = 0xFFFFFFFF
an = (n << 13) & allf
n = (an ^ n) & allf
nn = (n*(n*n*60493+19990303)+1376312589)&0x7fffffff
return 1.0-(float(nn)/1073741824.0);