Skip to content

Instantly share code, notes, and snippets.

import numpy, math, random
class ILeveling():
def __init__(self):
self.EXP_FIELD = "networkExp"
self.LVL_FIELD = "networkLevel"
self.BASE = 10_000
self.GROWTH = 2_500
package net.hypixel.api.util;
public interface ILeveling {
String EXP_FIELD = "networkExp";
String LVL_FIELD = "networkLevel";
double BASE = 10_000;
double GROWTH = 2_500;

Keybase proof

I hereby claim:

  • I am snavyy on github.
  • I am snavy (https://keybase.io/snavy) on keybase.
  • I have a public key ASBxffN646EEdl1I3DEJFsyn0s8zOQykbM963pzCaYR10go

To claim this, I am signing this object:

@bbSnavy
bbSnavy / mario.py
Created November 20, 2019 22:34
Mario Animation in Python
import os
import time
# Mario Animation in Python
# Source (Written in C): https://www.youtube.com/watch?v=AwpWm6VIGl4
if os.name == 'nt':
clear = 'cls'
else:
clear = 'clear'