Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rustyconover/memorableuniqueidentifier
Memorable Unique Identifiers for Julia
https://github.com/rustyconover/memorableuniqueidentifier
Last synced: 9 days 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 (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-07-31T21:04:59.000Z (over 4 years ago)
- Last Synced: 2024-10-09T20:06:30.261Z (30 days ago)
- Language: Julia
- Size: 165 KB
- Stars: 1
- Watchers: 2
- 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"```