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 / _voxy_mod_shaders_support_list.md
Last active March 24, 2026 21:14
Known shader listing that supports voxy LoD mod

Stable state (tried on voxy 0.2.6, game 1.21.10)

  • I Like Vanilla Shader™ credit: github@RomanMiray
    High-end vanilla style shader. Have 3 presets (Vanilla, fantasy and realistic) embedded to change for your taste!
    Known issues: Shaderpack have Iris edition and OptiFine edition, some features cannot be shared between two edition. Please download that you need.

  • ScrumptiousShayders
    BSL Shaders, but forked by others for adding voxy support.

Warning

Deprecated! BSL Shaders have added voxy support since 10.1p1 !
Although, you can follow the author instead, the author announced that he might make shader forks based on BSL shaders in separated repository[^1]

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);