Skip to content
This repository was archived by the owner on Oct 1, 2018. It is now read-only.

Commit 1bfb262

Browse files
committed
Carol/Ashley -> Erick
1 parent c4be3c5 commit 1bfb262

File tree

3 files changed

+39
-5
lines changed

3 files changed

+39
-5
lines changed
Loading
1.23 MB
Loading

presentations/intro-to-rust/index.html

Lines changed: 39 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515

1616
# A Very Brief Intro to Rust
1717

18+
Erick Tryzelaar
19+
20+
21+
1822
???
1923

2024
* This is Ferris, our unofficial mascot!
@@ -40,6 +44,36 @@
4044
* This curriculum is an experiment. It's mildly disorganized and semi-tested.
4145
* Please take notes about what you liked, didn't like, wished we spent more or less time on, etc -- there will be a survey!
4246

47+
---
48+
class: middle, center
49+
50+
![core team](img/core-team.png)
51+
52+
???
53+
54+
* I am on the core team, where we lead the overall direction of the project.
55+
56+
---
57+
class: middle, center
58+
59+
![community team](img/community-team.png)
60+
61+
???
62+
63+
* I also lead the community team, where we try to organize events like this,
64+
and other broad initiatives.
65+
* Community survey
66+
67+
---
68+
class: middle, center
69+
70+
![commit](img/first-commit.png)
71+
72+
???
73+
74+
* I've been in the Rust community for a long time. This is my first commit way
75+
back in May 2011. So cute!
76+
4377
---
4478
class: middle, left
4579

@@ -245,7 +279,7 @@
245279
[package]
246280
name = "rustbridge"
247281
version = "0.1.0"
248-
authors = ["Carol (Nichols || Goulding) <carol.nichols@gmail.com>"]
282+
authors = ["Erick Tryzelaar <erick.tryzelaar@gmail.com>"]
249283

250284
[dependencies]
251285
```
@@ -322,8 +356,8 @@
322356
## Variables
323357

324358
```rust
325-
let name = "ashley";
326-
let age = 30;
359+
let name = "Erick";
360+
let age = 37;
327361
println!("Hi, {}! You are {} years old.", name, age);
328362
```
329363

@@ -705,7 +739,7 @@
705739
## Using Option
706740

707741
```rust
708-
let mut instructors = vec!["Carol"];
742+
let mut instructors = vec!["Erick"];
709743

710744
let a = instructors.pop();
711745
println!("a is {:?}", a);
@@ -724,7 +758,7 @@
724758
## Using Option
725759

726760
```rust
727-
let a = Some("Carol");
761+
let a = Some("Erick");
728762

729763
let name = a.expect("A value is present");
730764
println!("Name is {} bytes long", name.len());

0 commit comments

Comments
 (0)