Skip to content

Commit

Permalink
Deployed 7b5b5a9 with MkDocs version: 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
MHP47 committed Dec 31, 2024
1 parent bbc8433 commit 9b99cdf
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 23 deletions.
42 changes: 20 additions & 22 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
<div data-md-component="skip">


<a href="#welcome-to-mkdocs" class="md-skip">
<a href="#advent-of-code" class="md-skip">
Skip to content
</a>

Expand Down Expand Up @@ -271,18 +271,18 @@
<ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>

<li class="md-nav__item">
<a href="#commands" class="md-nav__link">
<a href="#overview" class="md-nav__link">
<span class="md-ellipsis">
Commands
Overview
</span>
</a>

</li>

<li class="md-nav__item">
<a href="#project-layout" class="md-nav__link">
<a href="#purpose" class="md-nav__link">
<span class="md-ellipsis">
Project layout
Purpose
</span>
</a>

Expand Down Expand Up @@ -343,18 +343,18 @@
<ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>

<li class="md-nav__item">
<a href="#commands" class="md-nav__link">
<a href="#overview" class="md-nav__link">
<span class="md-ellipsis">
Commands
Overview
</span>
</a>

</li>

<li class="md-nav__item">
<a href="#project-layout" class="md-nav__link">
<a href="#purpose" class="md-nav__link">
<span class="md-ellipsis">
Project layout
Purpose
</span>
</a>

Expand All @@ -375,21 +375,19 @@



<h1 id="welcome-to-mkdocs">Welcome to MkDocs<a class="headerlink" href="#welcome-to-mkdocs" title="Permanent link">&para;</a></h1>
<p>For full documentation visit <a href="https://www.mkdocs.org">mkdocs.org</a>.</p>
<h2 id="commands">Commands<a class="headerlink" href="#commands" title="Permanent link">&para;</a></h2>
<h1 id="advent-of-code">Advent of Code<a class="headerlink" href="#advent-of-code" title="Permanent link">&para;</a></h1>
<p>https://adventofcode.com/</p>
<h2 id="overview">Overview<a class="headerlink" href="#overview" title="Permanent link">&para;</a></h2>
<p>I discovered Advent of Code in (I think) 2017. I was learning Python at the time and was looking for a project to apply the language to, as I have found this is the best way I learn new things, by <em>doing</em> them.</p>
<p>That first year was a lot of fun, and I learnt a lot of Python coding during the month, which was the goal. Since then, I have attempted each year, with the goal of just completing challenges. I don't solve problems quick enough to place on the leaderboard, I think my best ever placing is mid 200's. I'd love to one day place on the global leaderboard for just one star, so I'll keep trying</p>
<h2 id="purpose">Purpose<a class="headerlink" href="#purpose" title="Permanent link">&para;</a></h2>
<p>The purpose of this repo/website is varied</p>
<ul>
<li><code>mkdocs new [dir-name]</code> - Create a new project.</li>
<li><code>mkdocs serve</code> - Start the live-reloading docs server.</li>
<li><code>mkdocs build</code> - Build the documentation site.</li>
<li><code>mkdocs -h</code> - Print help message and exit.</li>
<li>It's a place for me to consolidate all my AoC code into one repo, and use this going forward, rather than the varied and adhoc nature I've been using</li>
<li>Somewhere for me to reflect on the challenges and achievements along the way</li>
<li>A showcase of what I can do</li>
<li>Somewhere I can (hopefully) easily lookup previous years challenges when faced with that feeling of "This seems similar to something I've done before..."</li>
</ul>
<h2 id="project-layout">Project layout<a class="headerlink" href="#project-layout" title="Permanent link">&para;</a></h2>
<div class="highlight"><pre><span></span><code>mkdocs.yml # The configuration file.
docs/
index.md # The documentation homepage.
... # Other markdown pages, images and other files.
</code></pre></div>



Expand Down
2 changes: 1 addition & 1 deletion search/search_index.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"]},"docs":[{"location":"","title":"Welcome to MkDocs","text":"<p>For full documentation visit mkdocs.org.</p>"},{"location":"#commands","title":"Commands","text":"<ul> <li><code>mkdocs new [dir-name]</code> - Create a new project.</li> <li><code>mkdocs serve</code> - Start the live-reloading docs server.</li> <li><code>mkdocs build</code> - Build the documentation site.</li> <li><code>mkdocs -h</code> - Print help message and exit.</li> </ul>"},{"location":"#project-layout","title":"Project layout","text":"<pre><code>mkdocs.yml # The configuration file.\ndocs/\n index.md # The documentation homepage.\n ... # Other markdown pages, images and other files.\n</code></pre>"},{"location":"article/","title":"My first article","text":"<p>This is my first article with some code:</p> <pre><code>class Test\n{\n static void Main()\n {\n Console.WriteLine(\"Hello World\");\n }\n}\n</code></pre>"}]}
{"config":{"lang":["en"],"separator":"[\\s\\-]+","pipeline":["stopWordFilter"]},"docs":[{"location":"","title":"Advent of Code","text":"<p>https://adventofcode.com/</p>"},{"location":"#overview","title":"Overview","text":"<p>I discovered Advent of Code in (I think) 2017. I was learning Python at the time and was looking for a project to apply the language to, as I have found this is the best way I learn new things, by doing them.</p> <p>That first year was a lot of fun, and I learnt a lot of Python coding during the month, which was the goal. Since then, I have attempted each year, with the goal of just completing challenges. I don't solve problems quick enough to place on the leaderboard, I think my best ever placing is mid 200's. I'd love to one day place on the global leaderboard for just one star, so I'll keep trying</p>"},{"location":"#purpose","title":"Purpose","text":"<p>The purpose of this repo/website is varied</p> <ul> <li>It's a place for me to consolidate all my AoC code into one repo, and use this going forward, rather than the varied and adhoc nature I've been using</li> <li>Somewhere for me to reflect on the challenges and achievements along the way</li> <li>A showcase of what I can do</li> <li>Somewhere I can (hopefully) easily lookup previous years challenges when faced with that feeling of \"This seems similar to something I've done before...\"</li> </ul>"},{"location":"article/","title":"My first article","text":"<p>This is my first article with some code:</p> <pre><code>class Test\n{\n static void Main()\n {\n Console.WriteLine(\"Hello World\");\n }\n}\n</code></pre>"}]}

0 comments on commit 9b99cdf

Please sign in to comment.