Skip to content

Instantly share code, notes, and snippets.

View Princesseuh's full-sized avatar
💐
Probably wishing I was making bouquets instead

Erika Princesseuh

💐
Probably wishing I was making bouquets instead
View GitHub Profile
-- BASIC EASING FUNCIONS CHEAT CHEET
-- (most of them are based on glide by Jacob Albano https://github.com/jacobalbano/glide)
function ease_linear(t)
return t
end
function ease_cube_in(t)
return t * t * t
end
@IceDragon200
IceDragon200 / flags_table.txt
Last active April 7, 2018 02:22
RMVXA Tileset Flags
# ----------------------------------------------------------------------------------------------------------------------------- #
# | nibble / half byte | 0 - passable | 0 - disabled | 0 - passable |
# | | 1 - impassable | 1 - enabled | 1 - impassable |
# ----------------------------------------------------------------------------------------------------------------------------- #
# | Terrain Tag (4bits) | Vehicle Pass. (3bits) | Special Flags (4bits) | Passages (5bits) |
# ----------------------------------------------------------------------------------------------------------------------------- #
# | | Airship | Ship | Boat | Damage Floor | Counter | Bush | Ladder | Star | Top | Right | Left | Bottom |
# ------------------------------------------------------------------------------------------------------------------------
@willurd
willurd / web-servers.md
Last active July 12, 2024 11:21
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000