Skip to content

Commit bf59da1

Browse files
Fix Markdown
1 parent 8bb09d5 commit bf59da1

6 files changed

Lines changed: 44 additions & 44 deletions

File tree

CODE_OF_CONDUCT.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,23 +17,23 @@ diverse, inclusive, and healthy community.
1717
Examples of behavior that contributes to a positive environment for our
1818
community include:
1919

20-
* Demonstrating empathy and kindness toward other people
21-
* Being respectful of differing opinions, viewpoints, and experiences
22-
* Giving and gracefully accepting constructive feedback
23-
* Accepting responsibility and apologizing to those affected by our mistakes,
20+
- Demonstrating empathy and kindness toward other people
21+
- Being respectful of differing opinions, viewpoints, and experiences
22+
- Giving and gracefully accepting constructive feedback
23+
- Accepting responsibility and apologizing to those affected by our mistakes,
2424
and learning from the experience
25-
* Focusing on what is best not just for us as individuals, but for the
25+
- Focusing on what is best not just for us as individuals, but for the
2626
overall community
2727

2828
Examples of unacceptable behavior include:
2929

30-
* The use of sexualized language or imagery, and sexual attention or
30+
- The use of sexualized language or imagery, and sexual attention or
3131
advances of any kind
32-
* Trolling, insulting or derogatory comments, and personal or political attacks
33-
* Public or private harassment
34-
* Publishing others' private information, such as a physical or email
32+
- Trolling, insulting or derogatory comments, and personal or political attacks
33+
- Public or private harassment
34+
- Publishing others' private information, such as a physical or email
3535
address, without their explicit permission
36-
* Other conduct which could reasonably be considered inappropriate in a
36+
- Other conduct which could reasonably be considered inappropriate in a
3737
professional setting
3838

3939
## Enforcement Responsibilities

docs/misc/exercise_procedure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
This assures everyone learns effectively: pairs are optimal.
1313

14-
> Ideally, all do the exercises on their computer,
14+
> Ideally, all do the exercises on their computer,
1515
> yet derive at a shared answer
1616

1717
This assures everyone can give a answer that is not personal.

docs/morning_session/associative_arrays.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ to download a file called `mpg.csv.csv`.
200200
This file is a tab-separated file about diamonds and
201201
is part of the `ggplot2` R package.
202202

203-
* [Raw data](https://raw.githubusercontent.com/tidyverse/ggplot2/main/data-raw/mpg.csv)
204-
* [Data description](https://ggplot2.tidyverse.org/reference/diamonds.html)
203+
- [Raw data](https://raw.githubusercontent.com/tidyverse/ggplot2/main/data-raw/mpg.csv)
204+
- [Data description](https://ggplot2.tidyverse.org/reference/diamonds.html)
205205

206206
The dataset has the following columns:
207207

@@ -227,22 +227,22 @@ Index|Column name |Description
227227

228228
Using `awk` only:
229229

230-
* show if the data has a header yes/no
231-
* show the number of cars in the dataset
232-
* show the number of columns in the dataset
233-
* show all the car manufacturers' names
234-
* per car manufacturer, show the number of cars it produces
235-
* show the lowest city miles per gallon
236-
* show the highest city miles per gallon, in city miles per liter.
230+
- show if the data has a header yes/no
231+
- show the number of cars in the dataset
232+
- show the number of columns in the dataset
233+
- show all the car manufacturers' names
234+
- per car manufacturer, show the number of cars it produces
235+
- show the lowest city miles per gallon
236+
- show the highest city miles per gallon, in city miles per liter.
237237
Assume a gallon, is a US gallon. A US gallon is 3.785411784 liter
238-
* find the type (i.e. in the last column) of car
238+
- find the type (i.e. in the last column) of car
239239
that spends the least fuel on the highway
240-
* imagine you have each of these cars once. You want each of them to
240+
- imagine you have each of these cars once. You want each of them to
241241
drive one city mile. How much gallons of fuel do you need?
242-
* imagine you have each of these cars once. You want each of them to
242+
- imagine you have each of these cars once. You want each of them to
243243
drive one city mile. How much gallons of each type of fuel do you need?
244244

245245
Think:
246246

247-
* There are multiple way to increase an element in an array by one.
247+
- There are multiple way to increase an element in an array by one.
248248
Why so many? Is there a difference?

docs/morning_session/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,5 @@ Actions at begin and end |`BEGIN { [action]} [condition] { [action] } END { [act
5353
5454
## Links
5555

56-
* [CLI text processing with GNU awk](https://learnbyexample.github.io/learn_gnuawk/)
57-
* [To awk or not](https://pmitev.github.io/to-awk-or-not)
56+
- [CLI text processing with GNU awk](https://learnbyexample.github.io/learn_gnuawk/)
57+
- [To awk or not](https://pmitev.github.io/to-awk-or-not)

docs/morning_session/print.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -206,8 +206,8 @@ to download a file called `diamonds_no_header.tsv`.
206206
This file is a tab-separated file about diamonds and
207207
is part of the `ggplot2` R package.
208208

209-
* [Raw data](https://raw.githubusercontent.com/tidyverse/ggplot2/main/data-raw/diamonds.csv)
210-
* [Data description](https://ggplot2.tidyverse.org/reference/diamonds.html)
209+
- [Raw data](https://raw.githubusercontent.com/tidyverse/ggplot2/main/data-raw/diamonds.csv)
210+
- [Data description](https://ggplot2.tidyverse.org/reference/diamonds.html)
211211

212212
The dataset has the following columns:
213213

@@ -232,17 +232,17 @@ index|name |description
232232

233233
Using `awk` only:
234234

235-
* show the number of diamonds in the dataset (in any clumsy way!)
236-
* show the number of columns in the dataset (in any clumsy way!)
237-
* show the prices of the diamonds in US dollars
238-
* show the prices of the diamonds in Swedish kroner,
235+
- show the number of diamonds in the dataset (in any clumsy way!)
236+
- show the number of columns in the dataset (in any clumsy way!)
237+
- show the prices of the diamonds in US dollars
238+
- show the prices of the diamonds in Swedish kroner,
239239
assume 1 US dollar is 10.47 Swedish kroner
240-
* show the weight of the diamonds in kilo, 1 carat is 0.0002 kilo
240+
- show the weight of the diamonds in kilo, 1 carat is 0.0002 kilo
241241

242242
Answer the question:
243243

244-
* At the start of this session, **two** ways to print all lines
244+
- At the start of this session, **two** ways to print all lines
245245
were shown (`awk '{ print }' coins.txt` and `awk '{ print $0 }' coins.txt`).
246246
Although they do exactly the same thing, why were both ways shown?
247-
* All the AWK commands are put in single quotes. Why would that be?
247+
- All the AWK commands are put in single quotes. Why would that be?
248248
Would double quotes work too?

docs/morning_session/variables.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ to download a file called `diamonds_no_header.tsv`.
9696
This file is a tab-separated file about diamonds and
9797
is part of the `ggplot2` R package.
9898

99-
* [Raw data](https://raw.githubusercontent.com/tidyverse/ggplot2/main/data-raw/diamonds.csv)
100-
* [Data description](https://ggplot2.tidyverse.org/reference/diamonds.html)
99+
- [Raw data](https://raw.githubusercontent.com/tidyverse/ggplot2/main/data-raw/diamonds.csv)
100+
- [Data description](https://ggplot2.tidyverse.org/reference/diamonds.html)
101101

102102
The dataset has the following columns:
103103

@@ -122,12 +122,12 @@ index|name |description
122122

123123
Using `awk` only:
124124

125-
* show the number of diamonds in the dataset
126-
* show the number of columns in the dataset
127-
* show the lowest price of all the diamonds
128-
* show the average price of all the diamonds
129-
* show the average price of all the diamonds with an ideal cut
130-
* show the total weight of all diamonds combined in kilos,
125+
- show the number of diamonds in the dataset
126+
- show the number of columns in the dataset
127+
- show the lowest price of all the diamonds
128+
- show the average price of all the diamonds
129+
- show the average price of all the diamonds with an ideal cut
130+
- show the total weight of all diamonds combined in kilos,
131131
1 carat is 0.0002 kilo
132-
* show the prices of all the diamonds together, in Swedish kroner.
132+
- show the prices of all the diamonds together, in Swedish kroner.
133133
Assume 1 US dollar is 10.47 Swedish kroner

0 commit comments

Comments
 (0)