Skip to content

Instantly share code, notes, and snippets.

View DereC4's full-sized avatar
🇹🇼
coding

Derek Chen DereC4

🇹🇼
coding
View GitHub Profile
@DereC4
DereC4 / Why_MCreator_Doesnt_Suck
Created June 3, 2026 07:31
Why_MCreator_Doesnt_Suck.txt
To quote my little post from a year or two ago
While MCreator often gets critiqued for being too simplistic and lazy shortcuts for mass produced mods, I think it's important to recognize that it serves a very specific purpose for its target audience: young people interested in diving into the world of Minecraft modding. Its drag-and-drop interface is incredibly approachable, especially for beginners, and it functions much like Scratch does in computer science classrooms, introducing users to the basic principles of programming and mod creation without overwhelming them with complexity. Disclaimer edit - If you just stay at that level for like 10 years though without learning, yes I agree that is a problem.
I’m sure many of us can relate to the nostalgia of the early YouTube days in the 2010s, where we’d watch creators like DanTDM showcase all the wacky mods, for me, it was a very specific but typical "new dimension" mod that added a teleporter, end bows, etc. Or see a youtuber enter completely new dimensions
@DereC4
DereC4 / CoreProtect Blacklist
Last active May 6, 2026 21:38
CoreProtect Blacklist for Survival Servers [derex smp]
#dispenser
#hopper
#guardian
#cramming
DerexXD
#bonemeal
; --- FALL DAMAGE (Drop Farms) ---
minecraft:glow_squid@#fall
minecraft:slime@#fall
@appleneko2001
appleneko2001 / TODO_Index_table.md
Last active May 27, 2026 13:17
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);