Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gmelodie/total-madness
https://github.com/gmelodie/total-madness
Last synced: 25 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/gmelodie/total-madness
- Owner: gmelodie
- License: apache-2.0
- Created: 2024-06-08T12:14:00.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-07-25T14:41:38.000Z (4 months ago)
- Last Synced: 2024-07-25T16:56:49.729Z (4 months ago)
- Language: Rust
- Size: 32.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# total-madness
Code snippets for the [Total Madness](https://gmelodie.com/posts/total-madness-0-locks/) post series.## Usage
1. Clone the repo
```bash
git clone https://github.com/gmelodie/total-madness.git
```
2. Go inside a post's directory (e.g. `episode-1-async`)
```bash
cd total-madness/episode-1-async
```
3. Run the code
```bash
cargo run
```Also, to run snippets that are on the `bin/` folders like `episode-1-async/bin/naive.rs`:
```bash
cd episode-1-async
cargo run --bin naive
```