Skip to content

Instantly share code, notes, and snippets.

View notsatvrn's full-sized avatar
😤
i pledge allegiance to the SWAG...

satvrn notsatvrn

😤
i pledge allegiance to the SWAG...
  • /dev/null
  • 13:28 (UTC -07:00)
View GitHub Profile
from base64 import b64encode
from os import path
url = 'http://gdps.galaxiaps.tk'
to_replace = 'http://www.boomlings.com'
print('Checking base64...')
replace_b64 = b64encode(bytes(to_replace, 'utf-8'))
url_b64 = b64encode(bytes(url, 'utf-8'))
@notsatvrn
notsatvrn / mods-list.md
Created June 15, 2021 18:35
Mods List.

Included Performance Mods

BetterBeds - Optimizes bed rendering, and allows you to do some other cool stuff with beds.

Cull Leaves - Similar to Optifine's Smart Leaves, but for Sodium. Optimizes leave rendering without any visual downsides.

EntityCulling - Optimizes entity rendring by not rendering entities that aren't visible.

Fabric API - Required for many of the mods on this list.

FastChest - Optimizes chest rendering.

@notsatvrn
notsatvrn / mc-performance.md
Last active May 24, 2023 12:16
Performance Optimization Guide for Minecraft 1.16.5.

Minecraft Performance Guide

Vanilla Minecraft isn't exactly great in terms of performance, but we can fix that.

For years now, Optifine has been the gold standard in terms of mods that increase performance, but the problems are:

  • Closed source. Open source allows other people to make sure nothing suspicious is in the code, and fix problems they find.
  • Not the best anymore. Performance from the mods we'll be installing in this guide will be much better than what Optifine can provide.
  • Updates take forever. The project is so large, that it takes forever for it to be updated to new versions.

But what is the solution? Isn't Optifine the best? Wrong!