Skip to content

Instantly share code, notes, and snippets.

View crischutu07's full-sized avatar

Nguyễn Hồng Sơn crischutu07

View GitHub Profile
@NEZNAMY
NEZNAMY / unlimited-tags-removal.md
Last active July 5, 2025 13:29
The removal of unlimited nametag feature

About

Unlimited nametag feature hides original nametags and display armor stands instead. It was created back in MC 1.12, where we were actively suffering from 16 character limit in prefix and suffix. The very next version mojang removed the limit. Had they done it 1 version sooner, this feature may have never existed. It has unlocked a lot more than just that, and has become quite popular (about 20% of servers using TAB have it enabled). However, as time goes by, this feature is becoming more and more complicated to maintain, which made me decide to completely remove it. It was a good run, but I don't want to keep going.

Reasons for removal

Main reasons for removing this feature include, but are not limited to:

  • The feature was suffering from server-sided bugs, client-sided bugs, new limitations, as well as random issues, which I was not able to fix despite trying for years. Synchronization issue with the players (moving ahead / behind the player), players randomly not having their armor stands visibl
import requests
import json
import time
# Disable SSL warnings
requests.packages.urllib3.disable_warnings()
url = "https://quangninh.tsdc.edu.vn/forward-api"
headers = {
'Content-Type': 'application/json;charset=utf-8',

Hello World in Common Programming Language

• Python 3.10

print("Hello, World!")

• Lisp

(print "Hello, World!")
@bmaupin
bmaupin / free-database-hosting.md
Last active July 21, 2025 08:01
Free database hosting
@aGuyNamedJonas
aGuyNamedJonas / interactivePrompt.js
Created August 31, 2016 07:18
Simple interactive node.js script to have users continuously enter input.
// Taken from:
// http://stackoverflow.com/questions/24464404/how-to-readline-infinitely-in-node-js
const readline = require('readline');
var log = console.log;
var rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});