-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathslides.ron
61 lines (51 loc) · 1.7 KB
/
slides.ron
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
(
files:[
// preamble
Open("preamble/pp.pdf"),
Image("preamble/logo.png"),
Markdown("preamble/who-am-i.md"),
Markdown("preamble/gameroasters.md"),
Image("preamble/stack4.png"),
Image("preamble/tr.jpg"),
// intro
Markdown("intro/gitui-intro.md"),
Image("intro/gitui.png"),
Markdown("intro/gitui-what.md"),
GifAnimation("intro/why.gif"),
// compare
Markdown("compare/alternatives.md"),
Markdown("compare/alternatives-tig.md"),
Markdown("compare/comparison-00.md"),
Markdown("compare/comparison-01.md"),
Markdown("compare/comparison-02.md"),
Markdown("compare/comparison-03.md"),
GifAnimation("compare/celebrate.gif"),
// why-rust
Markdown("rust/why-rust-00.md"),
Markdown("rust/why-rust-01.md"),
Markdown("rust/why-rust-02.md"),
Markdown("rust/rust.md"),
// 1. Diagnostics
Markdown("rust/diagnostics.md"),
Code("rust/pedantic.rs"),
Image("rust/errors.png"),
// 2. concurrency
Markdown("rust/concurrency.md"),
Code("rust/concurrency.rs"),
// 3. community
Markdown("rust/community.md"),
// dependencies
Markdown("deps/gitui-deps-00.md"),
Markdown("deps/gitui-deps-01.md"),
Code("deps/tui-rs.rs"),
Code("deps/rayon.rs"),
Code("deps/crossbeam.rs"),
// whishlist
Markdown("whishes/whishlist-00.md"),
Markdown("whishes/whishlist-01.md"),
Markdown("whishes/meta.md"),
Code("whishes/reflection.rs"),
Code("whishes/accessors.rs"),
Image("thanks.png"),
]
)