---
title: "Test Slides"
author: Jed Rembold
date: Thursday, January 6, 2021
slideNumber: true
theme: nord_light
highlightjs-theme: nord
width: 1920
height: 1080
transition: fade
---


## Announcements
- Welcome to CS-151: Intro to Programming with Python!
- Things to do:
	- Access the course webpage at [http://www.willamette.edu/\~jjrembold/classes/cs151/cs151/](http://www.willamette.edu/~jjrembold/classes/cs151/cs151/)
		- Also link to from WISE
	- Read over the full syllabus
	- Get yourself a copy of the book
	- Make sure you can find and access the class forum on Discord
	- Bring phone or computer for polling questions in the future

## Slide header 2

:::: {.columns}

::: {.col .block name=Theorem}
We will use a theorem

$$\sum_i^{10} 5i^2 + 4$$
:::

::: {.col}
- here I _will_
- include some **more** things
- that I want
	- including some finer points
		- like this
	- and this
:::
::::

---

## Code Test!
Here we have some code:

``` {.python data-line-numbers="-|1-3|4,5|6-7|9-15|16-22"}
>>> A = 10
>>> A
10
>>> int(23.45)
23
>>> type(A)
int
>>> # this is a comment! 123
>>> for i in range(5):
		print(i)
0
1
2
3
4
>>> for i in range(5):
		print(i)
0
1
2
3
4
>>> print("yay this works!")
yay this works!
```

:::notes
Here I should talk about some things
:::

---

## Code Animation { data-auto-animate=""}
``` {.python data-id="code-animation"}
>>> print(10+3)
```

---

## Code Animation { data-auto-animate=""}
``` {.python data-id="code-animation"}
>>> print(10+3)
13
```

---

## Extra inline test
What about if I want code inline like this: `print(10)`{.python}? How can that work?


## Box Tests

:::{.block name=A}
This is a test
:::

:::{.block name=B}
This is yet another test
:::

## Poll Test
Something vertical:

:::poll
#. Option 1
#. Option 2
#. Hilariously, this is Option 3
#. Who is coming up with these?
:::

<br>
And then something horizontal:

:::hpoll
#. Option 1
#. Option 2
#. Option 3
#. COW
:::

## Table Test

Number | Type | Description
--- | --- | ---------
1 | Fire | Tis hot
2 | Water | Tis soggy
3 | Earth | Comprised of the might of the Earth, this specimen has no flashy characteristics
4 | Wind | Breezy

## SQL Syntax

```sql
SELECT * FROM teachers WHERE salary > 40000;

INSERT INTO teachers
VALUES
	('Betty', 'Baker HS', 30000),
	('Hank', 'Baker MS', 45000);
```
