Skip to content

Instantly share code, notes, and snippets.

View Dolfost's full-sized avatar
🇺🇦

Vladyslav Rehan Dolfost

🇺🇦
View GitHub Profile
@HexedHero
HexedHero / mc_client_performance_guide.md
Last active February 4, 2025 12:22
Performance guide for Minecraft 1.20.6+ Clients

Performance guide for Minecraft 1.20.6+ Clients

📜 Fabric

Fabric is the "modern" Minecraft modding software that is very modular.
We use Fabric in this guide so install it by going to https://fabricmc.net/use/ Download the .jar or .exe and run it.

Below is a list of performance and utility mods to make your Minecraft experience better and most importantly smooth.
The list is in order of most importance and they all work together including what they do with why to use them.

@fnky
fnky / ANSI.md
Last active June 17, 2025 13:06
ANSI Escape Codes

ANSI Escape Sequences

Standard escape codes are prefixed with Escape:

  • Ctrl-Key: ^[
  • Octal: \033
  • Unicode: \u001b
  • Hexadecimal: \x1B
  • Decimal: 27
-- Circular, doubly linked list --
----------------------------------
local linkedList = {}
-- Creates a list from table or variable n. of values --
function linkedList.construct(...)
local args = {...}
local tail = linkedList.newNode(args[1])
for i = 2, #args do
@toboqus
toboqus / btree.cpp
Created November 3, 2015 08:53
Binary tree implementation in c++
#include <iostream>
using namespace std;
struct node{
int value;
node *left;
node *right;
};