https://github.com/rustyconover/memorableuniqueidentifier
Memorable Unique Identifiers for Julia
https://github.com/rustyconover/memorableuniqueidentifier
Last synced: 4 months ago
JSON representation
Memorable Unique Identifiers for Julia
- Host: GitHub
- URL: https://github.com/rustyconover/memorableuniqueidentifier
- Owner: rustyconover
- License: other
- Created: 2020-07-25T23:12:51.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-31T21:04:59.000Z (almost 6 years ago)
- Last Synced: 2025-03-28T18:11:41.239Z (about 1 year ago)
- Language: Julia
- Size: 165 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
- License: License.md
Awesome Lists containing this project
README
# Memorable Unique Identifier
An implementation of [Memorable Unique Identifiers](https://github.com/microprediction/muid) (Muids) in Julia.
## Usage
```julia
julia> using MemorableUniqueIdentifier
# Create a new memorable unique identifier
julia> muid = create(6)
MiningResult("19e3c5e2d69b3e4085fdf41c627a687e", "574beebdb679bc4e7e6b6d963570257e", 0x0000000000000006, "Sty Bee")
julia> muid.key
"19e3c5e2d69b3e4085fdf41c627a687e"
julia> muid.hash
"574beebdb679bc4e7e6b6d963570257e"
julia> muid.pretty
"Sty Bee"
```