An open API service indexing awesome lists of open source software.

https://github.com/tupizz/identicon-generator-elixir

Generator of identicons with elixir
https://github.com/tupizz/identicon-generator-elixir

Last synced: 2 months ago
JSON representation

Generator of identicons with elixir

Awesome Lists containing this project

README

        

# Identicon

**TODO: Add description**

## Installation

"billy" -> generate identicon x
"tupizz" -> generate another identicon

string
--> identicon generator
--> image

```bash
mix deps.get
```

# process

```js
string
--> md5 hash of string (hashing) => f(s) = x, for any s always should return x
--> list of numbers based on string
--> pick color
--> build grid of squares
--> convert grid into image
--> save image
```