Skip to content

Commit d510887

Browse files
committed
Add consistent GitHub naming
1 parent 38cb0a5 commit d510887

11 files changed

+23
-23
lines changed

Diff for: slide-notebooks/deploy_notebooks.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using Literate
22
## include Literate scripts starting with following 3 letters in the deploy
3-
incl = "l1_"
3+
incl = "l9_"
44
## Set `sol=true` to produce output with solutions contained and hints stripts. Otherwise the other way around.
55
sol = false
66
##

Diff for: slide-notebooks/l2_2-git.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ When you contribute new code to a repo (in particular a repo which other people
133133
In a repo with write permission, the use following work-flow:
134134
- make a branch and switch to it: `git switch -c some-branch-name`
135135
- make changes, add files, etc. and commit to the branch. You can have several commits on the branch.
136-
- push the branch to Github
137-
- on the Github web-page a bar with a "open pull request" should show: click it
136+
- push the branch to GitHub
137+
- on the GitHub web-page a bar with a "open pull request" should show: click it
138138
- if you got more changes, just commit and push them to that branch
139139
- when happy merge the PR
140140

Diff for: slide-notebooks/l7_2-tests-ci.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ Let's now add CI to this:
6767
For step 2 we follow the documentation on [https://github.com/julia-actions/julia-runtest](https://github.com/julia-actions/julia-runtest).
6868
"""
6969

70-
#nb # > 💡 note: [PkgTemplates.jl](https://github.com/invenia/PkgTemplates.jl) is a handy package, which can generate a suitable Github Actions file..
71-
#md # \note{[PkgTemplates.jl](https://github.com/invenia/PkgTemplates.jl) is a handy package, which can generate a suitable Github Actions file.}
70+
#nb # > 💡 note: [PkgTemplates.jl](https://github.com/invenia/PkgTemplates.jl) is a handy package, which can generate a suitable GitHub Actions file..
71+
#md # \note{[PkgTemplates.jl](https://github.com/invenia/PkgTemplates.jl) is a handy package, which can generate a suitable GitHub Actions file.}
7272

7373
#nb # %% A slide [markdown] {"slideshow": {"slide_type": "slide"}}
7474
md"""

Diff for: slide-notebooks/l9_2-doc.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ transform(r, θ) = (r*cos(θ), r*sin(θ))
103103

104104
#nb # %% A slide [markdown] {"slideshow": {"slide_type": "slide"}}
105105
md"""
106-
### Documentation tools: Github markdown rendering
106+
### Documentation tools: GitHub markdown rendering
107107
108108
The easiest way to write long-form documentation is to just use GitHub's markdown rendering.
109109
@@ -123,7 +123,7 @@ md"""
123123
### Documentation tools: Literate.jl
124124
125125
There are several tools which render .jl files (with special formatting) into
126-
markdown files. These files can then be added to Github and will be rendered there.
126+
markdown files. These files can then be added to GitHub and will be rendered there.
127127
128128
- we're using [Literate.jl](https://github.com/fredrikekre/Literate.jl)
129129
- format is described [here](https://fredrikekre.github.io/Literate.jl/v2/fileformat/)
@@ -142,7 +142,7 @@ Literate.markdown("car_travels.jl", directory_of_this_file, execute=true, docume
142142
md"""
143143
But this is not automatic! Manual steps: run Literate, add files, commit and push...
144144
145-
or use Github Actions...
145+
or use GitHub Actions...
146146
"""
147147

148148
#nb # %% A slide [markdown] {"slideshow": {"slide_type": "slide"}}

Diff for: slide-notebooks/notebooks/l2_2-git.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@
197197
"In a repo with write permission, the use following work-flow:\n",
198198
"- make a branch and switch to it: `git switch -c some-branch-name`\n",
199199
"- make changes, add files, etc. and commit to the branch. You can have several commits on the branch.\n",
200-
"- push the branch to Github\n",
201-
"- on the Github web-page a bar with a \"open pull request\" should show: click it\n",
200+
"- push the branch to GitHub\n",
201+
"- on the GitHub web-page a bar with a \"open pull request\" should show: click it\n",
202202
"- if you got more changes, just commit and push them to that branch\n",
203203
"- when happy merge the PR\n",
204204
"\n",

Diff for: slide-notebooks/notebooks/l7_2-tests-ci.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@
114114
{
115115
"cell_type": "markdown",
116116
"source": [
117-
"> 💡 note: [PkgTemplates.jl](https://github.com/invenia/PkgTemplates.jl) is a handy package, which can generate a suitable Github Actions file.."
117+
"> 💡 note: [PkgTemplates.jl](https://github.com/invenia/PkgTemplates.jl) is a handy package, which can generate a suitable GitHub Actions file.."
118118
],
119119
"metadata": {}
120120
},

Diff for: slide-notebooks/notebooks/l9_2-doc.ipynb

+3-3
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@
177177
{
178178
"cell_type": "markdown",
179179
"source": [
180-
"### Documentation tools: Github markdown rendering\n",
180+
"### Documentation tools: GitHub markdown rendering\n",
181181
"\n",
182182
"The easiest way to write long-form documentation is to just use GitHub's markdown rendering.\n",
183183
"\n",
@@ -204,7 +204,7 @@
204204
"### Documentation tools: Literate.jl\n",
205205
"\n",
206206
"There are several tools which render .jl files (with special formatting) into\n",
207-
"markdown files. These files can then be added to Github and will be rendered there.\n",
207+
"markdown files. These files can then be added to GitHub and will be rendered there.\n",
208208
"\n",
209209
"- we're using [Literate.jl](https://github.com/fredrikekre/Literate.jl)\n",
210210
"- format is described [here](https://fredrikekre.github.io/Literate.jl/v2/fileformat/)\n",
@@ -230,7 +230,7 @@
230230
"source": [
231231
"But this is not automatic! Manual steps: run Literate, add files, commit and push...\n",
232232
"\n",
233-
"or use Github Actions..."
233+
"or use GitHub Actions..."
234234
],
235235
"metadata": {
236236
"name": "A slide ",

Diff for: website/_literate/l2_2-git_web.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,8 @@ When you contribute new code to a repo (in particular a repo which other people
133133
In a repo with write permission, the use following work-flow:
134134
- make a branch and switch to it: `git switch -c some-branch-name`
135135
- make changes, add files, etc. and commit to the branch. You can have several commits on the branch.
136-
- push the branch to Github
137-
- on the Github web-page a bar with a "open pull request" should show: click it
136+
- push the branch to GitHub
137+
- on the GitHub web-page a bar with a "open pull request" should show: click it
138138
- if you got more changes, just commit and push them to that branch
139139
- when happy merge the PR
140140

Diff for: website/_literate/l7_2-tests-ci_web.jl

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ Let's now add CI to this:
6767
For step 2 we follow the documentation on [https://github.com/julia-actions/julia-runtest](https://github.com/julia-actions/julia-runtest).
6868
"""
6969

70-
#nb # > 💡 note: [PkgTemplates.jl](https://github.com/invenia/PkgTemplates.jl) is a handy package, which can generate a suitable Github Actions file..
71-
#md # \note{[PkgTemplates.jl](https://github.com/invenia/PkgTemplates.jl) is a handy package, which can generate a suitable Github Actions file.}
70+
#nb # > 💡 note: [PkgTemplates.jl](https://github.com/invenia/PkgTemplates.jl) is a handy package, which can generate a suitable GitHub Actions file..
71+
#md # \note{[PkgTemplates.jl](https://github.com/invenia/PkgTemplates.jl) is a handy package, which can generate a suitable GitHub Actions file.}
7272

7373
#nb # %% A slide [markdown] {"slideshow": {"slide_type": "slide"}}
7474
md"""

Diff for: website/_literate/l9_2-doc_web.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ transform(r, θ) = (r*cos(θ), r*sin(θ))
103103

104104
#nb # %% A slide [markdown] {"slideshow": {"slide_type": "slide"}}
105105
md"""
106-
### Documentation tools: Github markdown rendering
106+
### Documentation tools: GitHub markdown rendering
107107
108108
The easiest way to write long-form documentation is to just use GitHub's markdown rendering.
109109
@@ -123,7 +123,7 @@ md"""
123123
### Documentation tools: Literate.jl
124124
125125
There are several tools which render .jl files (with special formatting) into
126-
markdown files. These files can then be added to Github and will be rendered there.
126+
markdown files. These files can then be added to GitHub and will be rendered there.
127127
128128
- we're using [Literate.jl](https://github.com/fredrikekre/Literate.jl)
129129
- format is described [here](https://fredrikekre.github.io/Literate.jl/v2/fileformat/)
@@ -142,7 +142,7 @@ Literate.markdown("car_travels.jl", directory_of_this_file, execute=true, docume
142142
md"""
143143
But this is not automatic! Manual steps: run Literate, add files, commit and push...
144144
145-
or use Github Actions...
145+
or use GitHub Actions...
146146
"""
147147

148148
#nb # %% A slide [markdown] {"slideshow": {"slide_type": "slide"}}

Diff for: website/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title = "Solving PDEs in parallel on GPUs with Julia"
99
\note{2024 edition starts Tuesday Sept. 17, 12h45. Welcome!}
1010

1111
## Course information
12-
This course aims to cover state-of-the-art methods in modern parallel GPU computing, supercomputing and scientific software development with applications to natural sciences and engineering. The course is open source and is available on [Github](https://github.com/eth-vaw-glaciology/course-101-0250-00)
12+
This course aims to cover state-of-the-art methods in modern parallel GPU computing, supercomputing and scientific software development with applications to natural sciences and engineering. The course is open source and is available on [GitHub](https://github.com/eth-vaw-glaciology/course-101-0250-00).
1313

1414
~~~
1515
<center>
@@ -18,7 +18,7 @@ This course aims to cover state-of-the-art methods in modern parallel GPU comput
1818
~~~
1919

2020
### Objective
21-
The goal of this course is to offer a practical approach to solve systems of partial differential equations in parallel on GPUs using the [Julia programming language](http://www.julialang.org/). Julia combines high-level language expressiveness and low-level language performance which enables efficient code development. The Julia GPU applications will be hosted on Github and implement modern software development practices.
21+
The goal of this course is to offer a practical approach to solve systems of partial differential equations in parallel on GPUs using the [Julia programming language](http://www.julialang.org/). Julia combines high-level language expressiveness and low-level language performance which enables efficient code development. The Julia GPU applications will be hosted on GitHub and implement modern software development practices.
2222

2323
### Outline
2424
- **Part 1** _Introducing Julia & PDEs_

0 commit comments

Comments
 (0)