-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from t-gummer/dev
Dev
- Loading branch information
Showing
21 changed files
with
1,124 additions
and
151 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
_freeze/blog/2023/dissecting-footy-grid-combinations/index/execute-results/html.json
Large diffs are not rendered by default.
Oops, something went wrong.
4 changes: 2 additions & 2 deletions
4
_freeze/blog/2023/over-analysing-idle-footy-chat/index/execute-results/html.json
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,19 +48,22 @@ website: | |
icon: newspaper | ||
href: blog/index.qmd | ||
- text: Goals | ||
icon: fingerprint | ||
icon: hourglass-split | ||
href: goals/index.qmd | ||
- text: CV | ||
icon: file-earmark-person | ||
href: cv/index.qmd | ||
- text: Projects | ||
icon: box-fill | ||
href: projects/index.qmd | ||
right: | ||
- icon: github | ||
href: https://github.com/t-gummer | ||
- icon: linkedin | ||
href: https://www.linkedin.com/in/timothy-gummer/ | ||
- icon: envelope | ||
aria-label: email | ||
href: "mailto:mail.[email protected]" | ||
href: "mailto:[email protected]" | ||
|
||
page-footer: | ||
left: | | ||
|
@@ -95,5 +98,7 @@ format: | |
reference-location: margin | ||
footnotes-hover: true | ||
highlight-style: monokai | ||
link-external-icon: true | ||
link-external-newwindow: true | ||
|
||
editor: source |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,7 +127,7 @@ | |
<span class="menu-text"></span></a> | ||
</li> | ||
<li class="nav-item compact"> | ||
<a class="nav-link" href="mailto:mail.[email protected]" rel="" target=""><i class="bi bi-envelope" role="img" aria-label="email"> | ||
<a class="nav-link" href="mailto:[email protected]" rel="" target=""><i class="bi bi-envelope" role="img" aria-label="email"> | ||
</i> | ||
<span class="menu-text"></span></a> | ||
</li> | ||
|
@@ -525,6 +525,22 @@ <h1 class="title">404</h1> | |
}); | ||
} | ||
} | ||
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//); | ||
var filterRegex = new RegExp("https:\/\/t-gummer\.netlify\.app"); | ||
var isInternal = (href) => { | ||
return filterRegex.test(href) || localhostRegex.test(href); | ||
} | ||
// Inspect non-navigation links and adorn them if external | ||
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item)'); | ||
for (var i=0; i<links.length; i++) { | ||
const link = links[i]; | ||
if (!isInternal(link.href)) { | ||
// target, if specified | ||
link.setAttribute("target", "_blank"); | ||
// default icon | ||
link.classList.add("external"); | ||
} | ||
} | ||
}); | ||
</script> | ||
</div> <!-- /content --> | ||
|
193 changes: 131 additions & 62 deletions
193
_site_rendered/blog/2023/dissecting-footy-grid-combinations/index.html
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -114,7 +114,7 @@ | |
<span class="menu-text"></span></a> | ||
</li> | ||
<li class="nav-item compact"> | ||
<a class="nav-link" href="mailto:mail.[email protected]" rel="" target=""><i class="bi bi-envelope" role="img" aria-label="email"> | ||
<a class="nav-link" href="mailto:[email protected]" rel="" target=""><i class="bi bi-envelope" role="img" aria-label="email"> | ||
</i> | ||
<span class="menu-text"></span></a> | ||
</li> | ||
|
@@ -531,6 +531,22 @@ <h1 class="title">More AFL Stats</h1> | |
}); | ||
} | ||
} | ||
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//); | ||
var filterRegex = new RegExp("https:\/\/t-gummer\.netlify\.app"); | ||
var isInternal = (href) => { | ||
return filterRegex.test(href) || localhostRegex.test(href); | ||
} | ||
// Inspect non-navigation links and adorn them if external | ||
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item)'); | ||
for (var i=0; i<links.length; i++) { | ||
const link = links[i]; | ||
if (!isInternal(link.href)) { | ||
// target, if specified | ||
link.setAttribute("target", "_blank"); | ||
// default icon | ||
link.classList.add("external"); | ||
} | ||
} | ||
}); | ||
</script><script src="https://giscus.app/client.js" data-repo="t-gummer/t-gummer.netlify.app" data-repo-id="R_kgDOJykPlA" data-category="Announcements" data-category-id="DIC_kwDOJykPlM4CYD4I" data-mapping="pathname" data-reactions-enabled="1" data-emit-metadata="0" data-input-position="top" data-theme="dark_dimmed" data-lang="en" crossorigin="anonymous" async=""> | ||
</script> | ||
|
119 changes: 70 additions & 49 deletions
119
_site_rendered/blog/2023/over-analysing-idle-footy-chat/index.html
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -128,7 +128,7 @@ | |
<span class="menu-text"></span></a> | ||
</li> | ||
<li class="nav-item compact"> | ||
<a class="nav-link" href="mailto:mail.[email protected]" rel="" target=""><i class="bi bi-envelope" role="img" aria-label="email"> | ||
<a class="nav-link" href="mailto:[email protected]" rel="" target=""><i class="bi bi-envelope" role="img" aria-label="email"> | ||
</i> | ||
<span class="menu-text"></span></a> | ||
</li> | ||
|
@@ -1034,6 +1034,22 @@ <h2 class="anchored" data-anchor-id="article-proper">article proper</h2> | |
}); | ||
} | ||
} | ||
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//); | ||
var filterRegex = new RegExp("https:\/\/t-gummer\.netlify\.app"); | ||
var isInternal = (href) => { | ||
return filterRegex.test(href) || localhostRegex.test(href); | ||
} | ||
// Inspect non-navigation links and adorn them if external | ||
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item)'); | ||
for (var i=0; i<links.length; i++) { | ||
const link = links[i]; | ||
if (!isInternal(link.href)) { | ||
// target, if specified | ||
link.setAttribute("target", "_blank"); | ||
// default icon | ||
link.classList.add("external"); | ||
} | ||
} | ||
}); | ||
</script> | ||
<script src="https://giscus.app/client.js" data-repo="t-gummer/t-gummer.netlify.app" data-repo-id="R_kgDOJykPlA" data-category="Announcements" data-category-id="DIC_kwDOJykPlM4CYD4I" data-mapping="pathname" data-reactions-enabled="1" data-emit-metadata="0" data-input-position="top" data-theme="dark_dimmed" data-lang="en" crossorigin="anonymous" async=""> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -139,7 +139,7 @@ | |
<span class="menu-text">Blog</span></a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="../goals/index.html" rel="" target=""><i class="bi bi-fingerprint" role="img"> | ||
<a class="nav-link" href="../goals/index.html" rel="" target=""><i class="bi bi-hourglass-split" role="img"> | ||
</i> | ||
<span class="menu-text">Goals</span></a> | ||
</li> | ||
|
@@ -148,6 +148,9 @@ | |
</i> | ||
<span class="menu-text">CV</span></a> | ||
</li> | ||
<li class="dropdown-header"><i class="bi bi-box-fill" role="img"> | ||
</i> | ||
<span class="menu-text">Projects</span></li> | ||
</ul> | ||
<ul class="navbar-nav navbar-nav-scroll ms-auto"> | ||
<li class="nav-item compact"> | ||
|
@@ -161,7 +164,7 @@ | |
<span class="menu-text"></span></a> | ||
</li> | ||
<li class="nav-item compact"> | ||
<a class="nav-link" href="mailto:mail.[email protected]" rel="" target=""><i class="bi bi-envelope" role="img" aria-label="email"> | ||
<a class="nav-link" href="mailto:[email protected]" rel="" target=""><i class="bi bi-envelope" role="img" aria-label="email"> | ||
</i> | ||
<span class="menu-text"></span></a> | ||
</li> | ||
|
@@ -217,7 +220,7 @@ <h5 class="quarto-listing-category-title">Categories</h5><div class="quarto-list | |
<h2 class="anchored" data-anchor-id="section">2023</h2> | ||
<div id="listing-posts_2023" class="quarto-listing quarto-listing-container-default"> | ||
<div class="list quarto-listing-default"> | ||
<div class="quarto-post image-right" data-index="0" data-categories="Sport,AFL,R,Data" data-listing-date-sort="1690984800000" data-listing-file-modified-sort="1693069043481" data-listing-date-modified-sort="NaN" data-listing-reading-time-sort="66"> | ||
<div class="quarto-post image-right" data-index="0" data-categories="Sport,AFL,R,Data" data-listing-date-sort="1690984800000" data-listing-file-modified-sort="1693195065349" data-listing-date-modified-sort="NaN" data-listing-reading-time-sort="66"> | ||
<div class="thumbnail"> | ||
<p><a href="../blog/2023/over-analysing-idle-footy-chat/index.html"> <img src="../blog/2023/over-analysing-idle-footy-chat/fitzroy-lions-logo.png" class="thumbnail-image"> </a></p> | ||
</div> | ||
|
@@ -621,6 +624,22 @@ <h3 class="no-anchor listing-title"> | |
}); | ||
} | ||
} | ||
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//); | ||
var filterRegex = new RegExp("https:\/\/t-gummer\.netlify\.app"); | ||
var isInternal = (href) => { | ||
return filterRegex.test(href) || localhostRegex.test(href); | ||
} | ||
// Inspect non-navigation links and adorn them if external | ||
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item)'); | ||
for (var i=0; i<links.length; i++) { | ||
const link = links[i]; | ||
if (!isInternal(link.href)) { | ||
// target, if specified | ||
link.setAttribute("target", "_blank"); | ||
// default icon | ||
link.classList.add("external"); | ||
} | ||
} | ||
}); | ||
</script> | ||
</div> <!-- /content --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,7 +92,7 @@ | |
<span class="menu-text">Blog</span></a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="../goals/index.html" rel="" target=""><i class="bi bi-fingerprint" role="img"> | ||
<a class="nav-link" href="../goals/index.html" rel="" target=""><i class="bi bi-hourglass-split" role="img"> | ||
</i> | ||
<span class="menu-text">Goals</span></a> | ||
</li> | ||
|
@@ -101,6 +101,11 @@ | |
</i> | ||
<span class="menu-text">CV</span></a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="../projects/index.html" rel="" target=""><i class="bi bi-box-fill" role="img"> | ||
</i> | ||
<span class="menu-text">Projects</span></a> | ||
</li> | ||
</ul> | ||
<ul class="navbar-nav navbar-nav-scroll ms-auto"> | ||
<li class="nav-item compact"> | ||
|
@@ -114,7 +119,7 @@ | |
<span class="menu-text"></span></a> | ||
</li> | ||
<li class="nav-item compact"> | ||
<a class="nav-link" href="mailto:mail.[email protected]" rel="" target=""><i class="bi bi-envelope" role="img" aria-label="email"> | ||
<a class="nav-link" href="mailto:[email protected]" rel="" target=""><i class="bi bi-envelope" role="img" aria-label="email"> | ||
</i> | ||
<span class="menu-text"></span></a> | ||
</li> | ||
|
@@ -554,6 +559,22 @@ <h1 class="title">Curriculum Vitae</h1> | |
}); | ||
} | ||
} | ||
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//); | ||
var filterRegex = new RegExp("https:\/\/t-gummer\.netlify\.app"); | ||
var isInternal = (href) => { | ||
return filterRegex.test(href) || localhostRegex.test(href); | ||
} | ||
// Inspect non-navigation links and adorn them if external | ||
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item)'); | ||
for (var i=0; i<links.length; i++) { | ||
const link = links[i]; | ||
if (!isInternal(link.href)) { | ||
// target, if specified | ||
link.setAttribute("target", "_blank"); | ||
// default icon | ||
link.classList.add("external"); | ||
} | ||
} | ||
}); | ||
</script> | ||
</div> <!-- /content --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -119,7 +119,7 @@ | |
<span class="menu-text"></span></a> | ||
</li> | ||
<li class="nav-item compact"> | ||
<a class="nav-link" href="mailto:mail.[email protected]" rel="" target=""><i class="bi bi-envelope" role="img" aria-label="email"> | ||
<a class="nav-link" href="mailto:[email protected]" rel="" target=""><i class="bi bi-envelope" role="img" aria-label="email"> | ||
</i> | ||
<span class="menu-text"></span></a> | ||
</li> | ||
|
@@ -609,6 +609,22 @@ <h1 class="title">Goals</h1> | |
}); | ||
} | ||
} | ||
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//); | ||
var filterRegex = new RegExp("https:\/\/t-gummer\.netlify\.app"); | ||
var isInternal = (href) => { | ||
return filterRegex.test(href) || localhostRegex.test(href); | ||
} | ||
// Inspect non-navigation links and adorn them if external | ||
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item)'); | ||
for (var i=0; i<links.length; i++) { | ||
const link = links[i]; | ||
if (!isInternal(link.href)) { | ||
// target, if specified | ||
link.setAttribute("target", "_blank"); | ||
// default icon | ||
link.classList.add("external"); | ||
} | ||
} | ||
}); | ||
</script> | ||
</div> <!-- /content --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -141,7 +141,7 @@ | |
<span class="menu-text"></span></a> | ||
</li> | ||
<li class="nav-item compact"> | ||
<a class="nav-link" href="mailto:mail.[email protected]" rel="" target=""><i class="bi bi-envelope" role="img" aria-label="email"> | ||
<a class="nav-link" href="mailto:[email protected]" rel="" target=""><i class="bi bi-envelope" role="img" aria-label="email"> | ||
</i> | ||
<span class="menu-text"></span></a> | ||
</li> | ||
|
@@ -623,6 +623,22 @@ <h1 class="title">Tim Gummer</h1> | |
}); | ||
} | ||
} | ||
var localhostRegex = new RegExp(/^(?:http|https):\/\/localhost\:?[0-9]*\//); | ||
var filterRegex = new RegExp("https:\/\/t-gummer\.netlify\.app"); | ||
var isInternal = (href) => { | ||
return filterRegex.test(href) || localhostRegex.test(href); | ||
} | ||
// Inspect non-navigation links and adorn them if external | ||
var links = window.document.querySelectorAll('a[href]:not(.nav-link):not(.navbar-brand):not(.toc-action):not(.sidebar-link):not(.sidebar-item-toggle):not(.pagination-link):not(.no-external):not([aria-hidden]):not(.dropdown-item)'); | ||
for (var i=0; i<links.length; i++) { | ||
const link = links[i]; | ||
if (!isInternal(link.href)) { | ||
// target, if specified | ||
link.setAttribute("target", "_blank"); | ||
// default icon | ||
link.classList.add("external"); | ||
} | ||
} | ||
}); | ||
</script> | ||
</div> <!-- /content --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.