Skip to content

Commit

Permalink
Built site for gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
minnaheim committed Nov 30, 2024
1 parent d41258e commit e6af007
Show file tree
Hide file tree
Showing 8 changed files with 1,098 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .nojekyll
Original file line number Diff line number Diff line change
@@ -1 +1 @@
aeee458f
f6f53604
1,085 changes: 1,085 additions & 0 deletions Infrastructure Exercises.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion git_exercises.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
</li>
<li class="nav-item">
<a class="nav-link" href="./infrastructure.html">
<span class="menu-text">Infrastructure</span></a>
<span class="menu-text">Infrastructure Exercises</span></a>
</li>
</ul>
</div> <!-- /navcollapse -->
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
</li>
<li class="nav-item">
<a class="nav-link" href="./infrastructure.html">
<span class="menu-text">Infrastructure</span></a>
<span class="menu-text">Infrastructure Exercises</span></a>
</li>
</ul>
</div> <!-- /navcollapse -->
Expand Down
8 changes: 4 additions & 4 deletions infrastructure.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
</li>
<li class="nav-item">
<a class="nav-link active" href="./infrastructure.html" aria-current="page">
<span class="menu-text">Infrastructure</span></a>
<span class="menu-text">Infrastructure Exercises</span></a>
</li>
</ul>
</div> <!-- /navcollapse -->
Expand All @@ -148,7 +148,7 @@
<h2 id="toc-title">On this page</h2>

<ul>
<li><a href="#infrastructure" id="toc-infrastructure" class="nav-link active" data-scroll-target="#infrastructure">Infrastructure</a>
<li><a href="#infrastructure-exercises" id="toc-infrastructure-exercises" class="nav-link active" data-scroll-target="#infrastructure-exercises">Infrastructure Exercises</a>
<ul class="collapse">
<li><a href="#github-continuous-integration" id="toc-github-continuous-integration" class="nav-link" data-scroll-target="#github-continuous-integration">GitHub Continuous Integration</a>
<ul class="collapse">
Expand All @@ -172,8 +172,8 @@ <h2 id="toc-title">On this page</h2>



<section id="infrastructure" class="level1">
<h1>Infrastructure</h1>
<section id="infrastructure-exercises" class="level1">
<h1>Infrastructure Exercises</h1>
<p>This set of exercises is meant to test your knowledge of the concepts covered in block 3 of the course. All questions are Multiple Choice.</p>
<section id="github-continuous-integration" class="level2">
<h2 class="anchored" data-anchor-id="github-continuous-integration">GitHub Continuous Integration</h2>
Expand Down
2 changes: 1 addition & 1 deletion programming_exercises.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
</li>
<li class="nav-item">
<a class="nav-link" href="./infrastructure.html">
<span class="menu-text">Infrastructure</span></a>
<span class="menu-text">Infrastructure Exercises</span></a>
</li>
</ul>
</div> <!-- /navcollapse -->
Expand Down
6 changes: 3 additions & 3 deletions search.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,21 +114,21 @@
{
"objectID": "infrastructure.html",
"href": "infrastructure.html",
"title": "Infrastructure",
"title": "Infrastructure Exercises",
"section": "",
"text": "This set of exercises is meant to test your knowledge of the concepts covered in block 3 of the course. All questions are Multiple Choice.\n\n\nLook at the following .yaml file. This is a configuration for a Continuous Integrations Process (Github Actions in this case) for a minimal example.\n\n\n\n\n\n\nYour turn!\n\n\n\nTry to interpret what each of the lines means.\n\n\nname: Basic Continuous Integration\n\non: push\n\njobs:\n build:\n name: build\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n - uses: r-lib/actions/setup-r@v2\n with:\n packages: |\n rmarkdown\n kofdata\n\n\nWhat do you think line 3 accomplishes?\n\n\n\n\n\n\n\n\n\n\n\n\nWhat do you think lines 11-15 do?\n\n\n\n\n\n\n\n\n\n\n\nWhat could be a shortcoming of the configuration file shown above?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYour Turn!\n\n\n\nIf you would like to replicate the Github Actions example from above, you can find a gha_repo.rmd file under https://github.com/h4sci/h4sci-tasks\n\n\n\n\n\n\n\n\n\nWhich of the following frameworks are dynamic?\n\n\n\n\n\n\n\n\n\n\n\nWhich of the tools can be used to host a static website?\n\n\n\n\n\n\n\n\n\n\n\nWhich of the following are true?"
},
{
"objectID": "infrastructure.html#github-continuous-integration",
"href": "infrastructure.html#github-continuous-integration",
"title": "Infrastructure",
"title": "Infrastructure Exercises",
"section": "",
"text": "Look at the following .yaml file. This is a configuration for a Continuous Integrations Process (Github Actions in this case) for a minimal example.\n\n\n\n\n\n\nYour turn!\n\n\n\nTry to interpret what each of the lines means.\n\n\nname: Basic Continuous Integration\n\non: push\n\njobs:\n build:\n name: build\n runs-on: ubuntu-latest\n steps:\n - uses: actions/checkout@v4\n - uses: r-lib/actions/setup-r@v2\n with:\n packages: |\n rmarkdown\n kofdata\n\n\nWhat do you think line 3 accomplishes?\n\n\n\n\n\n\n\n\n\n\n\n\nWhat do you think lines 11-15 do?\n\n\n\n\n\n\n\n\n\n\n\nWhat could be a shortcoming of the configuration file shown above?\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nYour Turn!\n\n\n\nIf you would like to replicate the Github Actions example from above, you can find a gha_repo.rmd file under https://github.com/h4sci/h4sci-tasks"
},
{
"objectID": "infrastructure.html#dynamic-vs.-static-tools",
"href": "infrastructure.html#dynamic-vs.-static-tools",
"title": "Infrastructure",
"title": "Infrastructure Exercises",
"section": "",
"text": "Which of the following frameworks are dynamic?\n\n\n\n\n\n\n\n\n\n\n\nWhich of the tools can be used to host a static website?\n\n\n\n\n\n\n\n\n\n\n\nWhich of the following are true?"
}
Expand Down
4 changes: 2 additions & 2 deletions sitemap.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
</url>
<url>
<loc>https://h4sci.github.io/h4sci-tasks/index.html/index.html</loc>
<lastmod>2024-11-29T19:57:36.643Z</lastmod>
<lastmod>2024-11-30T09:00:05.556Z</lastmod>
</url>
<url>
<loc>https://h4sci.github.io/h4sci-tasks/index.html/git_exercises.html</loc>
<lastmod>2024-11-13T15:53:34.683Z</lastmod>
</url>
<url>
<loc>https://h4sci.github.io/h4sci-tasks/index.html/infrastructure.html</loc>
<lastmod>2024-11-30T08:55:45.096Z</lastmod>
<lastmod>2024-11-30T09:09:42.705Z</lastmod>
</url>
</urlset>

0 comments on commit e6af007

Please sign in to comment.