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

https://github.com/shmink/elixir-tutorials

Elixir code from tutorials
https://github.com/shmink/elixir-tutorials

elixir elixir-phoenix phoenix

Last synced: 11 months ago
JSON representation

Elixir code from tutorials

Awesome Lists containing this project

README

          

# Elixir tutorial

---

*From the udemy course "complete elixir and phoenix bootcamp"*

### Cards

This was a tutorial where by you were to make a full pack of cards, shuffle them and deal
as many cards as the user requests.

---

### Identicon

This tutorial shows you how to make an _identicon_. You see these generated images here on GitHub
for example when a user hasn't uploaded their own profile picture and they remain with this
generated identicon. It takes an input from the user. Using that you create an MD5 checksum and
create a list of _random_ numbers from it. With that we can choose a colour for the squares in the
image and then choose what squares should be coloured. The idea with these identicons is that
they are mirrored. My username, 'shmink' gave a nice result:

![alt text](identicon/shmink.png "Happy accident :)")

---

### Discuss

A StackOverflow type clone, but diluted.

* OAuth for login
* Creating posts.
* Edit or delete those posts after creation.
* Submit comments on a post

#### Usage
...
*Unfinished*