Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update the logos in the introduction section #31

Merged
merged 1 commit into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 27 additions & 17 deletions slides/1_1-introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,23 @@ layout: cover
routerMode: hash
---


# Rust programming

A language empowering everyone
to build reliable and efficient software.

## Training intro

<img src="https://raw.githubusercontent.com/tweedegolf/slidev-theme-tweedegolf/1bc81d09e326fcecb531108a5a3bcd9e1856dd84/images/shield-large.png" class=bg-image>

---
layout: two-cols
---

# Who are we?

## Henk Oordt

<br/>

- Embedded software engineer & Rust trainer
Expand All @@ -43,7 +44,8 @@ layout: two-cols

# Who are we?

## Dion Dokter
## Dion Dokter

<br/>

- Embedded tech lead & Rust-lang trainer
Expand All @@ -63,7 +65,8 @@ layout: two-cols

# Who are we?

## Folkert de Vries
## Folkert de Vries

<br/>

- Software engineer & Rust-lang trainer
Expand All @@ -84,7 +87,8 @@ layout: two-cols

# Who are we?

## Marc Schoolderman
## Marc Schoolderman

<br/>

- Software engineer & former CS teacher
Expand All @@ -108,13 +112,19 @@ layout: with-footer
- **Working on Rust projects** Like Rust implementations of PTP, NTP, sudo and su
- **Active community member** Organizing RustNL 2023 and active in various Rust meetups

<br/><br/>
<p></p>

<center>
<img class="logo-small" src="https://tweedegolf.nl/assets/client-ferrous-Ykf5Lz41.png" alt="Ferrous">
<img class="logo-small" src="https://tweedegolf.nl/assets/client-dutch-iot-0SWpC6-d.jpg" alt="DIS">
<img class="logo-small" src="https://tweedegolf.nl/assets/client-nlnetlabs-gnLA7KUl.png" alt="NLNet">
<img class="logo-small" src="https://tweedegolf.nl/assets/client-technolution-s3BzJUDL.png" alt="Technolution">
<img class="logo" src="https://tweedegolf.nl/images/client-bluebird-v2.png" alt="Bluebird">
<img class="logo-smaller" src="https://tweedegolf.nl/images/kelvin-logo.png" alt="Kelvin">
<img class="logo-small" src="https://tweedegolf.nl/images/client-dutch-iot.jpg" alt="DIS">
<img class="logo-small" src="https://tweedegolf.nl/images/client-technolution.png" alt="Technolution">
<img class="logo-smaller" style="width: 75px" src="https://tweedegolf.nl/images/gama-logo2.png" alt="GAMA">
<br>
<img class="logo-small" src="https://tweedegolf.nl/assets/client-ferrous-BiR_kvPj.png" alt="Ferrous">
<img class="logo-small" src="https://tweedegolf.nl/images/client-isrg.jpg" alt="ISRG">
<img class="logo-small" src="https://tweedegolf.nl/assets/client-nlnetlabs-CCcsDspS.png" alt="NLNet">
<img class="logo-small" src="https://tweedegolf.nl/assets/client-rustfoundation-Chh3nH12.png" alt="Rust Foundation">
</center>

---
Expand All @@ -123,7 +133,6 @@ layout: cover

# Why learn Rust?


Q: What do you know about Rust?

---
Expand All @@ -132,7 +141,6 @@ layout: with-footer

# What Rust brings


- **Multi-purpose** Build high-quality software, from cloud embedded and systems
- **Core strenghs** "C-like" performance, with memory safety and modern ergonomics
- **Confident developers** SO's most admired (loved) language for 8 years in a row
Expand All @@ -153,23 +161,25 @@ Sure there are. The things mentioned most often:
---
layout: with-footer
---

# Training format

```rust
let t = thread::spawn(|| loop {
let question = Question::read_from_crowd();
question.answer();
let t = thread::spawn(| | loop {
let question = Question::read_from_crowd();
question.answer();
})


for part in training.parts() {
part.slides();
part.exercises();
part.slides();
part.exercises();
}

t.join();

```

<br/>

### Ask questions anytime!
Expand Down
14 changes: 13 additions & 1 deletion slides/styles/code.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,18 @@ div[layout="two-cols"] div.col-right {
padding-top: 53px;
}

img.logo {
width: 175px;
margin: 20px 10px;
display: inline-block;
}

img.logo-smaller {
width: 100px;
margin: 20px 5px;
display: inline-block;
}

img.logo-small {
width: 125px;
margin: 20px 5px;
Expand All @@ -29,4 +41,4 @@ img.face {

span.light {
font-weight: lighter;
}
}