├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE.md ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── HOWTO.md ├── LESSONS_LEARNED.md ├── Makefile ├── README.md ├── ci └── render │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ ├── src │ └── main.rs │ └── templates │ ├── EPISODE_LIST.md │ ├── SHOW_NOTES.md │ ├── TWEET.md │ ├── WEBSITE.md │ ├── YOUTUBE.md │ └── YOUTUBE_TITLE.md ├── episode ├── 0 │ ├── README.md │ ├── episode.yml │ └── thumb.jpg ├── 1 │ ├── README.md │ ├── episode.yml │ ├── greeter │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── thumb.jpg ├── 2 │ ├── README.md │ ├── episode.yml │ ├── python │ │ ├── Python List Comprehensions.ipynb │ │ └── code.py │ ├── rust-list-comprehensions │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ ├── rust-quicksort │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ └── thumb.jpg ├── 3 │ ├── README.md │ ├── episode.yml │ └── thumb.jpg ├── 4 │ ├── README.md │ ├── code │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── resources │ │ │ ├── font │ │ │ │ ├── DejaVuSerif.ttf │ │ │ │ └── LICENSE │ │ │ └── text │ │ │ │ └── wikipedia_en_keyboard.txt │ │ └── src │ │ │ ├── main.rs │ │ │ └── text │ ├── episode.yml │ └── thumb.jpg ├── 5 │ ├── README.md │ ├── balanced │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── episode.yml │ └── thumb.jpg ├── 6 │ ├── README.md │ ├── balanced │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ ├── episode.yml │ ├── parametrize │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── src │ │ │ └── lib.rs │ └── thumb.jpg ├── 7 │ ├── README.md │ ├── episode.yml │ ├── humandate │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── proptest-regressions │ │ │ └── lib.txt │ │ └── src │ │ │ └── lib.rs │ └── thumb.jpg ├── 8 │ ├── README.md │ ├── episode.yml │ ├── lenrs │ │ ├── .gitignore │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── lenrs │ │ │ └── __init__.py │ │ ├── setup.py │ │ └── src │ │ │ └── lib.rs │ └── thumb.jpg ├── 9 │ ├── README.md │ ├── bench │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ ├── benches │ │ │ └── ep9.rs │ │ └── results │ │ │ └── ep9-violin.svg │ ├── episode.yml │ ├── go │ │ ├── .gitignore │ │ ├── README.md │ │ ├── fixed.go │ │ ├── race.go │ │ └── worker.go │ ├── rust │ │ ├── fixed │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── pascal │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ ├── race │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ │ └── main.rs │ │ └── union │ │ │ ├── Cargo.lock │ │ │ ├── Cargo.toml │ │ │ └── src │ │ │ └── main.rs │ ├── text │ │ ├── hamlet_gut.txt │ │ ├── henry_v_gut.txt │ │ ├── macbeth_gut_f.txt │ │ └── romeo_and_juliet_gut.txt │ └── thumb.jpg ├── 10 │ ├── README.md │ ├── checklink │ │ ├── .gitignore │ │ ├── .vscode │ │ │ └── launch.json │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ ├── README.md │ │ └── src │ │ │ └── main.rs │ └── episode.yml └── .gitignore ├── logo.png ├── logo.svg └── release └── youtube ├── .gitignore ├── Dockerfile └── main.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: mre 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | planned 2 | 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /HOWTO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/HOWTO.md -------------------------------------------------------------------------------- /LESSONS_LEARNED.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/LESSONS_LEARNED.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/README.md -------------------------------------------------------------------------------- /ci/render/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | -------------------------------------------------------------------------------- /ci/render/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/ci/render/Cargo.lock -------------------------------------------------------------------------------- /ci/render/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/ci/render/Cargo.toml -------------------------------------------------------------------------------- /ci/render/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/ci/render/src/main.rs -------------------------------------------------------------------------------- /ci/render/templates/EPISODE_LIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/ci/render/templates/EPISODE_LIST.md -------------------------------------------------------------------------------- /ci/render/templates/SHOW_NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/ci/render/templates/SHOW_NOTES.md -------------------------------------------------------------------------------- /ci/render/templates/TWEET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/ci/render/templates/TWEET.md -------------------------------------------------------------------------------- /ci/render/templates/WEBSITE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/ci/render/templates/WEBSITE.md -------------------------------------------------------------------------------- /ci/render/templates/YOUTUBE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/ci/render/templates/YOUTUBE.md -------------------------------------------------------------------------------- /ci/render/templates/YOUTUBE_TITLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/ci/render/templates/YOUTUBE_TITLE.md -------------------------------------------------------------------------------- /episode/.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | script 3 | */meta -------------------------------------------------------------------------------- /episode/0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/0/README.md -------------------------------------------------------------------------------- /episode/0/episode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/0/episode.yml -------------------------------------------------------------------------------- /episode/0/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/0/thumb.jpg -------------------------------------------------------------------------------- /episode/1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/1/README.md -------------------------------------------------------------------------------- /episode/1/episode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/1/episode.yml -------------------------------------------------------------------------------- /episode/1/greeter/Cargo.lock: -------------------------------------------------------------------------------- 1 | [[package]] 2 | name = "greeter" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /episode/1/greeter/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/1/greeter/Cargo.toml -------------------------------------------------------------------------------- /episode/1/greeter/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/1/greeter/src/lib.rs -------------------------------------------------------------------------------- /episode/1/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/1/thumb.jpg -------------------------------------------------------------------------------- /episode/10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/10/README.md -------------------------------------------------------------------------------- /episode/10/checklink/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /episode/10/checklink/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/10/checklink/.vscode/launch.json -------------------------------------------------------------------------------- /episode/10/checklink/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/10/checklink/Cargo.lock -------------------------------------------------------------------------------- /episode/10/checklink/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/10/checklink/Cargo.toml -------------------------------------------------------------------------------- /episode/10/checklink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/10/checklink/README.md -------------------------------------------------------------------------------- /episode/10/checklink/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/10/checklink/src/main.rs -------------------------------------------------------------------------------- /episode/10/episode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/10/episode.yml -------------------------------------------------------------------------------- /episode/2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/2/README.md -------------------------------------------------------------------------------- /episode/2/episode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/2/episode.yml -------------------------------------------------------------------------------- /episode/2/python/Python List Comprehensions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/2/python/Python List Comprehensions.ipynb -------------------------------------------------------------------------------- /episode/2/python/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/2/python/code.py -------------------------------------------------------------------------------- /episode/2/rust-list-comprehensions/Cargo.lock: -------------------------------------------------------------------------------- 1 | [[package]] 2 | name = "rust" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /episode/2/rust-list-comprehensions/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/2/rust-list-comprehensions/Cargo.toml -------------------------------------------------------------------------------- /episode/2/rust-list-comprehensions/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/2/rust-list-comprehensions/src/main.rs -------------------------------------------------------------------------------- /episode/2/rust-quicksort/Cargo.lock: -------------------------------------------------------------------------------- 1 | [[package]] 2 | name = "rust-quicksort" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /episode/2/rust-quicksort/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/2/rust-quicksort/Cargo.toml -------------------------------------------------------------------------------- /episode/2/rust-quicksort/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/2/rust-quicksort/src/main.rs -------------------------------------------------------------------------------- /episode/2/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/2/thumb.jpg -------------------------------------------------------------------------------- /episode/3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/3/README.md -------------------------------------------------------------------------------- /episode/3/episode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/3/episode.yml -------------------------------------------------------------------------------- /episode/3/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/3/thumb.jpg -------------------------------------------------------------------------------- /episode/4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/4/README.md -------------------------------------------------------------------------------- /episode/4/code/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/4/code/Cargo.lock -------------------------------------------------------------------------------- /episode/4/code/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/4/code/Cargo.toml -------------------------------------------------------------------------------- /episode/4/code/resources/font/DejaVuSerif.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/4/code/resources/font/DejaVuSerif.ttf -------------------------------------------------------------------------------- /episode/4/code/resources/font/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/4/code/resources/font/LICENSE -------------------------------------------------------------------------------- /episode/4/code/resources/text/wikipedia_en_keyboard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/4/code/resources/text/wikipedia_en_keyboard.txt -------------------------------------------------------------------------------- /episode/4/code/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/4/code/src/main.rs -------------------------------------------------------------------------------- /episode/4/code/src/text: -------------------------------------------------------------------------------- 1 | example text 2 | -------------------------------------------------------------------------------- /episode/4/episode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/4/episode.yml -------------------------------------------------------------------------------- /episode/4/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/4/thumb.jpg -------------------------------------------------------------------------------- /episode/5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/5/README.md -------------------------------------------------------------------------------- /episode/5/balanced/Cargo.lock: -------------------------------------------------------------------------------- 1 | [[package]] 2 | name = "balanced" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /episode/5/balanced/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/5/balanced/Cargo.toml -------------------------------------------------------------------------------- /episode/5/balanced/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/5/balanced/src/lib.rs -------------------------------------------------------------------------------- /episode/5/episode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/5/episode.yml -------------------------------------------------------------------------------- /episode/5/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/5/thumb.jpg -------------------------------------------------------------------------------- /episode/6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/6/README.md -------------------------------------------------------------------------------- /episode/6/balanced/Cargo.lock: -------------------------------------------------------------------------------- 1 | [[package]] 2 | name = "balanced" 3 | version = "0.1.0" 4 | 5 | -------------------------------------------------------------------------------- /episode/6/balanced/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/6/balanced/Cargo.toml -------------------------------------------------------------------------------- /episode/6/balanced/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/6/balanced/src/lib.rs -------------------------------------------------------------------------------- /episode/6/episode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/6/episode.yml -------------------------------------------------------------------------------- /episode/6/parametrize/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/6/parametrize/Cargo.lock -------------------------------------------------------------------------------- /episode/6/parametrize/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/6/parametrize/Cargo.toml -------------------------------------------------------------------------------- /episode/6/parametrize/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/6/parametrize/src/lib.rs -------------------------------------------------------------------------------- /episode/6/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/6/thumb.jpg -------------------------------------------------------------------------------- /episode/7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/7/README.md -------------------------------------------------------------------------------- /episode/7/episode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/7/episode.yml -------------------------------------------------------------------------------- /episode/7/humandate/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/7/humandate/Cargo.lock -------------------------------------------------------------------------------- /episode/7/humandate/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/7/humandate/Cargo.toml -------------------------------------------------------------------------------- /episode/7/humandate/proptest-regressions/lib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/7/humandate/proptest-regressions/lib.txt -------------------------------------------------------------------------------- /episode/7/humandate/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/7/humandate/src/lib.rs -------------------------------------------------------------------------------- /episode/7/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/7/thumb.jpg -------------------------------------------------------------------------------- /episode/8/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/8/README.md -------------------------------------------------------------------------------- /episode/8/episode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/8/episode.yml -------------------------------------------------------------------------------- /episode/8/lenrs/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | __pycache__ 3 | *.egg-info 4 | dist -------------------------------------------------------------------------------- /episode/8/lenrs/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/8/lenrs/Cargo.lock -------------------------------------------------------------------------------- /episode/8/lenrs/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/8/lenrs/Cargo.toml -------------------------------------------------------------------------------- /episode/8/lenrs/lenrs/__init__.py: -------------------------------------------------------------------------------- 1 | from ._lenrs import len 2 | -------------------------------------------------------------------------------- /episode/8/lenrs/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/8/lenrs/setup.py -------------------------------------------------------------------------------- /episode/8/lenrs/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/8/lenrs/src/lib.rs -------------------------------------------------------------------------------- /episode/8/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/8/thumb.jpg -------------------------------------------------------------------------------- /episode/9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/README.md -------------------------------------------------------------------------------- /episode/9/bench/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/bench/Cargo.lock -------------------------------------------------------------------------------- /episode/9/bench/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/bench/Cargo.toml -------------------------------------------------------------------------------- /episode/9/bench/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/bench/README.md -------------------------------------------------------------------------------- /episode/9/bench/benches/ep9.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/bench/benches/ep9.rs -------------------------------------------------------------------------------- /episode/9/bench/results/ep9-violin.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/bench/results/ep9-violin.svg -------------------------------------------------------------------------------- /episode/9/episode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/episode.yml -------------------------------------------------------------------------------- /episode/9/go/.gitignore: -------------------------------------------------------------------------------- 1 | fixed 2 | worker 3 | -------------------------------------------------------------------------------- /episode/9/go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/go/README.md -------------------------------------------------------------------------------- /episode/9/go/fixed.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/go/fixed.go -------------------------------------------------------------------------------- /episode/9/go/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/go/race.go -------------------------------------------------------------------------------- /episode/9/go/worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/go/worker.go -------------------------------------------------------------------------------- /episode/9/rust/fixed/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/rust/fixed/Cargo.lock -------------------------------------------------------------------------------- /episode/9/rust/fixed/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/rust/fixed/Cargo.toml -------------------------------------------------------------------------------- /episode/9/rust/fixed/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/rust/fixed/src/main.rs -------------------------------------------------------------------------------- /episode/9/rust/pascal/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/rust/pascal/Cargo.lock -------------------------------------------------------------------------------- /episode/9/rust/pascal/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/rust/pascal/Cargo.toml -------------------------------------------------------------------------------- /episode/9/rust/pascal/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/rust/pascal/src/main.rs -------------------------------------------------------------------------------- /episode/9/rust/race/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/rust/race/Cargo.lock -------------------------------------------------------------------------------- /episode/9/rust/race/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/rust/race/Cargo.toml -------------------------------------------------------------------------------- /episode/9/rust/race/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/rust/race/src/main.rs -------------------------------------------------------------------------------- /episode/9/rust/union/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/rust/union/Cargo.lock -------------------------------------------------------------------------------- /episode/9/rust/union/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/rust/union/Cargo.toml -------------------------------------------------------------------------------- /episode/9/rust/union/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/rust/union/src/main.rs -------------------------------------------------------------------------------- /episode/9/text/hamlet_gut.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/text/hamlet_gut.txt -------------------------------------------------------------------------------- /episode/9/text/henry_v_gut.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/text/henry_v_gut.txt -------------------------------------------------------------------------------- /episode/9/text/macbeth_gut_f.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/text/macbeth_gut_f.txt -------------------------------------------------------------------------------- /episode/9/text/romeo_and_juliet_gut.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/text/romeo_and_juliet_gut.txt -------------------------------------------------------------------------------- /episode/9/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/episode/9/thumb.jpg -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/logo.png -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/logo.svg -------------------------------------------------------------------------------- /release/youtube/.gitignore: -------------------------------------------------------------------------------- 1 | *.json 2 | -------------------------------------------------------------------------------- /release/youtube/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/release/youtube/Dockerfile -------------------------------------------------------------------------------- /release/youtube/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hello-rust/show/HEAD/release/youtube/main.go --------------------------------------------------------------------------------