https://github.com/raulpe7eira/hangman
Elixir for Programmers, Second Edition Course by Dave Thomas
https://github.com/raulpe7eira/hangman
coding-gnome course elixir hangman learn otp phoenix phoenix-live-view
Last synced: about 1 month ago
JSON representation
Elixir for Programmers, Second Edition Course by Dave Thomas
- Host: GitHub
- URL: https://github.com/raulpe7eira/hangman
- Owner: raulpe7eira
- Created: 2022-03-20T20:35:05.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-18T23:39:09.000Z (about 1 year ago)
- Last Synced: 2025-02-12T07:23:59.836Z (3 months ago)
- Topics: coding-gnome, course, elixir, hangman, learn, otp, phoenix, phoenix-live-view
- Language: Elixir
- Homepage:
- Size: 447 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hangman
This repository is the code corresponding to the [Elixir for Programmers, Second Edition](https://codestool.coding-gnome.com/courses/elixir-for-programmers-2) lab by [Dave Thomas](https://twitter.com/pragdave).
> There are many components in this repository, all of than focus to build a Hangman Game.
## Structure

## Components
### Dictionary
> This backend component reads a random word for the Hangman Game.

[:link: More details](dictionary/README.md)
### Hangman
> This backend component has the logic engine for the Hangman Game.

[:link: More details](hangman/README.md)
### Text Client
> This frontend project builds Hangman UI using Command Lines.

[:link: More details](text_client/README.md)
### B1
> This frontend project builds Hangman UI using HTML pages.

[:link: More details](b1/README.md)
### Memory
> This project is to get to know the Phoenix LiveView.

[:link: More details](memory/README.md)
### B2
> This frontend project builds Hangman UI using LiveView.

[:link: More details](b2/README.md)