Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joshleeb/snowhash
Procedurally generate a unique snowflake from a hash
https://github.com/joshleeb/snowhash
Last synced: 5 days ago
JSON representation
Procedurally generate a unique snowflake from a hash
- Host: GitHub
- URL: https://github.com/joshleeb/snowhash
- Owner: joshleeb
- License: mit
- Created: 2018-05-11T07:06:44.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-03-03T08:14:16.000Z (over 1 year ago)
- Last Synced: 2024-08-02T12:49:33.298Z (3 months ago)
- Language: Rust
- Size: 409 KB
- Stars: 16
- Watchers: 2
- Forks: 1
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - joshleeb/snowhash - Procedurally generate a unique snowflake from a hash (others)
README
# Snowhash
Procedurally generate a unique snowflake from a hash.
There will eventually be a post on [joshleeb.com](https://joshleeb.com) explaining how the Snowhash algorithm works. In the mean time there is a demo up at [joshleeb.com/snowhash.html](https://joshleeb.com/snowhash.html).
## Building
To build just the `snowhash` library:
```bash
$ git clone https://github.com/joshleeb/snowhash.git && cd snowhash
$ cargo build
```## Acknowledgement
This project is based on [Snowflake][snowflake] by Raph Levein which is "an implementation of procedural generation of snowflakes."
[snowflake]: http://levien.com/snowflake.html