Skip to content

Commit

Permalink
fill in today, post activities, update ac pages and answer class 1 qu…
Browse files Browse the repository at this point in the history
…estions
  • Loading branch information
brownsarahm committed Jan 26, 2024
1 parent 344e2ff commit 735cf0b
Show file tree
Hide file tree
Showing 11 changed files with 525 additions and 0 deletions.
6 changes: 6 additions & 0 deletions _practice/2024-01-25.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
*the text in `()` below is *why* each step is assigned*

1. review today's notes after they are posted, both rendered and the raw markdown versions. Include links to both views in your badge PR comment. (to review + there are hints for some of the following there)
1. read Chapter 1, "Decoding your confusion while coding" in [The Programmer's Brain](https://www.manning.com/books/the-programmers-brain#toc) add a file called {index}`brain.md` to your kwl repo that summarizes your thoughts on the chapter. Do you think this information will help you approach learning more effectively? why or why not? How, if at all, does it changes how you think about debugging and learning to program? Give examples of how you have encountered the different types of confusion in your prior programming experiences. (to help you get good strategies and prime for things we will see in the next few weeks)
2. Make a concept map of your current understanding of git and github {index}`git-baics-mapmd`. Use [mermaid](https://mermaid-js.github.io/mermaid/#/) syntax, to draw your map. GitHub can render it for you including while you work using the preview button. (review what we have learned so far; think about connections + learn a new tool)
3. Read more about [version control in general](https://www.atlassian.com/git/tutorials/what-is-version-control) and add a "version control" row to your KWL chart with all 3 columns filled in. (git is version control, but not the only one)
16 changes: 16 additions & 0 deletions _prepare/2023-01-30.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
1. Find the glossary page for the course website, link it below. Review the terms for the next class: shell, terminal, bash, git, zsh, powershell, GitHub. Make a diagram using [mermaid](https://mermaid.js.org/syntax/flowchart.html) to highlight how these terms relate to one another
2. Check your kwl repo before class and see if you have recieved feedback, reply or merge accordingly.



Example "venn diagram " with [mermaid subgraphs](https://mermaid.js.org/syntax/flowchart.html#subgraphs)
```mermaid
subgraph Browsers
subgraph Safari
end
subgraph Chromium based
gg[Google Chrome]
me[Microsoft Edge]
end
end
```
2 changes: 2 additions & 0 deletions _review/2024-01-25.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
1. review notes after they are posted, both rendered and the raw markdown include links to each in your badge PR
2. map out your computing knowledge and add it to your kwl chart repo in a file called {index}`prior-knowledge-map`. Use [mermaid](https://mermaid-js.github.io/mermaid/#/)
1 change: 1 addition & 0 deletions _toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ parts:
chapters:
# - glob: notes/2023-*.md
- file: notes/2024-01-23
- file: notes/2024-01-25
- caption: Activities
chapters:
- file: activities/kwl
Expand Down
7 changes: 7 additions & 0 deletions activities/practice.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,10 @@ Activities:
```{include} ../_practice/2024-01-23.md
```

## 2024-01-25

[related notes](../notes/2024-01-25)

Activities:
```{include} ../_practice/2024-01-25.md
```
7 changes: 7 additions & 0 deletions activities/prepare.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,10 @@ The correct answer is not as important for these activities as it is to do them
```{include} ../_prepare/2024-01-25.md
```



## 2024-01-30


```{include} ../_prepare/2024-01-30.md
```
9 changes: 9 additions & 0 deletions activities/review.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,12 @@ Activities:
```{include} ../_review_/2024-01-23.md
```



## 2024-01-25

[related notes](../notes/2024-01-25)

Activities:
```{include} ../_review_/2024-01-25.md
```
4 changes: 4 additions & 0 deletions activities/team.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Team Repo

```{warning}
This will change for spring 2024
```

(groupcontrib)=
## Contributions

Expand Down
File renamed without changes
34 changes: 34 additions & 0 deletions notes/2024-01-23.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,37 @@ GitHub allows us to run scripts within our repos, the feature is called GitHub A
We ran the `Experience Reflection` action at the end of class.


## Questions After Class


### is there a limit to how many branches you can have from the main branch?

Not specifically. Technically there are limits, but they're second hand and we will see them later

### what should I name the commit for the experience badge?

something like "reflected on class" or if you make an extra one where you add more detail you could use "add more detail"

### When did Git and GitHub get created?

git was created in 2005. GitHub was founded in 2008.

### Do I commit directly to the branch when I edit my experience badge?

yes

### will these experience files be auto-generated each class?

You will run the action manually, but it will create and name the files for you.

### Is making Pull Requests our way of submitting work?

Yes

### What is the action doing

Copying a file, naming it with that day's date, making a branch with today's date, and opening a PR with a specific body and title.

### How does GitHub actions work and what is it useful for?

This is a big picture question for the [github docs](https://github.com/features/actions) to answer.
Loading

0 comments on commit 735cf0b

Please sign in to comment.