Skip to content

Instantly share code, notes, and snippets.

View Biglucky's full-sized avatar

张大福Biglucky Biglucky

View GitHub Profile
@Biglucky
Biglucky / base_62_converter.py
Last active October 11, 2023 03:55 — forked from bhelx/base_62_converter.py
resolve the problem on Python 3.x
#!/usr/bin/env python
#
# Converts any integer into a base [BASE] number. I have chosen 62
# as it is meant to represent the integers using all the alphanumeric
# characters, [no special characters] = {0..9}, {A..Z}, {a..z}
#
# I plan on using this to shorten the representation of possibly long ids,
# a la url shortenters