2021-05-11 20:05:36 +00:00
|
|
|
# abcex
|
|
|
|
|
2022-08-08 05:26:40 +00:00
|
|
|
[![Build Status](https://drone.arns.lt/api/badges/zordsdavini/abcex/status.svg)](https://drone.arns.lt/zordsdavini/abcex)
|
|
|
|
|
2025-01-06 19:06:37 +00:00
|
|
|
Computing system based on the number 62 or 36
|
|
|
|
|
|
|
|
## Usage
|
|
|
|
|
|
|
|
`Encode(int, int) -> string` - convert number into string based on given base.
|
|
|
|
|
|
|
|
`Decode(string, int) -> int` - convert from encoded string into number based on given base.
|
|
|
|
|
|
|
|
`Convert(string, int, int) -> string` - convert encoded string from one base to another.
|
2024-09-20 07:13:21 +00:00
|
|
|
|
|
|
|
## History
|
|
|
|
|
|
|
|
**Version 1** - based on 32: number and case insensitive letters
|
|
|
|
|
2025-01-06 18:57:22 +00:00
|
|
|
**Version 2** - failed release
|
|
|
|
|
|
|
|
**Version 3** - based on 62: number and case sensitive letters
|
|
|
|
|
|
|
|
**Version 4** - support both versions, based on 62 and 32
|