Skip to content

Commit

Permalink
Merge pull request #102 from tweedegolf/fixes-and-intro-ruben
Browse files Browse the repository at this point in the history
Add Ruben into and some bugfixes
  • Loading branch information
rnijveld authored Sep 24, 2024
2 parents f1933a9 + f56be23 commit 767976c
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 4 deletions.
23 changes: 21 additions & 2 deletions slides/1_1-introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ layout: trainer-intro
---

# Who are we?

## Tamme Dittrich
<br/>

Expand Down Expand Up @@ -69,7 +69,7 @@ layout: trainer-intro
<br/>

- Software engineer & Rust-lang trainer
- Worked on NTP, PTP, P2000
- Worked on NTP, PTP, P2000, zlib-rs
- Contributor Roc programming language
- Talk to me about compilers, linkers, functional & systems programming

Expand Down Expand Up @@ -99,6 +99,25 @@ layout: trainer-intro
<img class="face" src="https://tweedegolf.nl/images/marcvoortgwebsite.jpg" alt="Photo Marc"/>
</center>

---
layout: trainer-intro
---

# Who are we?

## Ruben Nijveld

<br/>

- Software engineer & Rust-lang trainer
- Worked with Rust since 2014 (before 1.0)
- Worked on sudo-rs, ntpd-rs, PTP and P2000
- Talk to me about Rust on the web

::right::
<center>
<img class="face" src="https://tweedegolf.nl/images/ruben.jpg" alt="Photo Ruben"/>
</center>
---
layout: with-footer
---
Expand Down
4 changes: 2 additions & 2 deletions slides/2_1-basic-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ fn main() {
```

- A `char` is a 32-bit unicode scalar value
- Very much unlike C/C++ where `char is 8 bits
- Very much unlike C/C++ where `char` is 8 bits

<!--
- The final scalar type is the character, but it isn't often seen.
Expand All @@ -387,7 +387,7 @@ instead.

# `String`s
```rust

let s1 = String::from("Hello, 🌍!");
// ^^^^^^ Owned, heap-allocated string
```
Expand Down

0 comments on commit 767976c

Please sign in to comment.