1
0
mirror of https://gitlab.com/Anson-Projects/projects.git synced 2025-06-15 22:46:48 +00:00

twal suggestions

This commit is contained in:
Anson 2021-09-16 12:38:09 -07:00
parent d8b71f451a
commit 4d15759212
11 changed files with 266 additions and 255 deletions

View File

@ -16,6 +16,8 @@ navbar:
href: index.xml
- icon: fa fa-gitlab
href: https://gitlab.com/MisterBiggs/projects
- icon: fa fa-rocket
href: https://gitlab.com/lander-team
rss:
full_content: true
collections:

View File

@ -8,6 +8,6 @@ description: |
knitr::opts_chunk$set(echo = FALSE)
```
I mostly [write code](https://gitlab.com/MisterBiggs), but sometimes I make [3D Models](https://www.thingiverse.com/ansonb/designs). This website is where I plan on breaking down some of my more interesting findings and sharing them with the World Wide Web. If you think I could be a could fit at your company then take a look at my [Resume](https://ansonbiggs.com), otherwise you can reach me on [Telegram](https://t.me/MisterBiggs) or by [Email](mailto:anson@ansonbiggs.com).
I mostly [write code](https://gitlab.com/MisterBiggs), but sometimes I make [3D Models](https://www.thingiverse.com/ansonb/designs). I am constantly in the middle of dozens of projects ranging from [Astrodynamics](https://projects.ansonbiggs.com/#category:Astrodynamics) to developing [self landing model rockets](https://gitlab.com/lander-team). This website is where I plan to break down some of my more interesting findings and share them with the World Wide Web.
I am also currently looking for employment as an entry-level engineer. If you think I could be a fit at your company, then take a look at my [Resume](https://ansonbiggs.com); otherwise, you can reach me on [Telegram](https://t.me/MisterBiggs) or by [Email](mailto:anson@ansonbiggs.com).

View File

@ -23,6 +23,7 @@
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.sourceCode { overflow: visible; }
code.sourceCode > span { color: inherit; text-decoration: inherit; }
div.sourceCode { margin: 1em 0; }
pre.sourceCode { margin: 0; }
@ -2072,6 +2073,9 @@ code span.wa { color: #5e5e5e; font-style: italic; } /* Warning */
<a href="https://gitlab.com/MisterBiggs/projects">
<i class="fa fa-gitlab" aria-hidden="true"></i>
</a>
<a href="https://gitlab.com/lander-team">
<i class="fa fa-rocket" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="nav-toggle">&#9776;</a>
</div>
</nav>
@ -2089,7 +2093,8 @@ code span.wa { color: #5e5e5e; font-style: italic; } /* Warning */
<div class="d-article">
<p>I mostly <a href="https://gitlab.com/MisterBiggs">write code</a>, but sometimes I make <a href="https://www.thingiverse.com/ansonb/designs">3D Models</a>. This website is where I plan on breaking down some of my more interesting findings and sharing them with the World Wide Web. If you think I could be a could fit at your company then take a look at my <a href="https://ansonbiggs.com">Resume</a>, otherwise you can reach me on <a href="https://t.me/MisterBiggs">Telegram</a> or by <a href="mailto:anson@ansonbiggs.com">Email</a>.</p>
<p>I mostly <a href="https://gitlab.com/MisterBiggs">write code</a>, but sometimes I make <a href="https://www.thingiverse.com/ansonb/designs">3D Models</a>. I am constantly in the middle of dozens of projects ranging from <a href="https://projects.ansonbiggs.com/#category:Astrodynamics">Astrodynamics</a> to developing <a href="https://gitlab.com/lander-team">self landing model rockets</a>. This website is where I plan to break down some of my more interesting findings and share them with the World Wide Web.</p>
<p>I am also currently looking for employment as an entry-level engineer. If you think I could be a fit at your company, then take a look at my <a href="https://ansonbiggs.com">Resume</a>; otherwise, you can reach me on <a href="https://t.me/MisterBiggs">Telegram</a> or by <a href="mailto:anson@ansonbiggs.com">Email</a>.</p>
<div class="sourceCode" id="cb1"><pre class="sourceCode r distill-force-highlighting-css"><code class="sourceCode r"></code></pre></div>
<!--radix_placeholder_article_footer-->
<!--/radix_placeholder_article_footer-->

View File

@ -24,6 +24,7 @@
pre > code.sourceCode { white-space: pre; position: relative; }
pre > code.sourceCode > span { display: inline-block; line-height: 1.25; }
pre > code.sourceCode > span:empty { height: 1.2em; }
.sourceCode { overflow: visible; }
code.sourceCode > span { color: inherit; text-decoration: inherit; }
div.sourceCode { margin: 1em 0; }
pre.sourceCode { margin: 0; }
@ -2070,6 +2071,9 @@ code span.wa { color: #5e5e5e; font-style: italic; } /* Warning */
<a href="https://gitlab.com/MisterBiggs/projects">
<i class="fa fa-gitlab" aria-hidden="true"></i>
</a>
<a href="https://gitlab.com/lander-team">
<i class="fa fa-rocket" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="nav-toggle">&#9776;</a>
</div>
</nav>
@ -2077,234 +2081,234 @@ code span.wa { color: #5e5e5e; font-style: italic; } /* Warning */
<!--/radix_placeholder_navigation_before_body-->
<!--radix_placeholder_site_before_body-->
<!--/radix_placeholder_site_before_body-->
<!--radix_placeholder_article_listing-->
<script type="application/javascript">
function init_posts_list() {
function load_image(img) {
var src = $(img).attr('data-src');
if (src) {
$(img).attr('src', src);
$(img).load(function() {
img.removeAttribute('data-src');
});
}
}
function set_posts_visible(posts, visible) {
if (visible) {
// show bottom border by default
$(posts).removeClass('post-preview-last');
// apply limits if need be
var max_posts = 25;
var apply_limits = $('.posts-container').hasClass('posts-apply-limit');
if (apply_limits && posts.length > max_posts) {
posts = $(posts).slice(0, max_posts);
} else {
$('.posts-more a').addClass('hidden');
}
// apply last style
$(posts.slice(-1)[0]).addClass('post-preview-last');
$(posts).removeClass('hidden');
$(posts).find('img[data-src]').each(function(i, img) {
load_image(img);
});
} else {
$(posts).addClass('hidden');
}
}
function apply_hash_filter() {
// clear active state
$('.categories .active').removeClass('active');
// mark all posts invisible to start
set_posts_visible($('.posts-list').children('a'), false);
// if we have a hash filter
if (window.location.hash && window.location.hash.startsWith("#category:")) {
// mark posts that match the category visible
var page_category = window.location.hash.replace(/^#category:/, "");
var posts = $('.post-metadata').map(function(idx, script) {
var metadata = $.parseJSON($(script).html());
var post = null;
$.each(metadata.categories, function(idx, category) {
category = category.replace(/ /g,"_");
if ((page_category || '').toLowerCase() === "articles" || category === page_category) {
post = $(script).parent().get();
return false;
}
});
return post;
});
set_posts_visible(posts, true);
// mark the hash active
$('.categories li>a[href="' + window.location.hash + '"]').addClass('active');
// update the list_caption
var list_caption = $('.posts-list-caption');
var caption = (page_category || '').toLowerCase() === "articles"
? list_caption.attr('data-caption')
: ('Category: ' + page_category.replace(/_/g," "));
list_caption.text(caption);
} else {
// no hash filter, make all posts visible (subject to max display)
set_posts_visible($('.posts-list').children(), true);
// reset list caption
var list_caption = $('.posts-list-caption');
list_caption.text(list_caption.attr('data-caption'));
}
}
// more articles
function apply_post_limits(apply) {
if (apply) {
$('.posts-container').addClass('posts-apply-limit');
$('.posts-more a').removeClass('hidden');
} else {
$('.posts-container').removeClass('posts-apply-limit');
$('.posts-more a').addClass('hidden');
}
}
// click handling for tags
$('.dt-tag').click(function(ev) {
window.location.hash = '#category:' + $(this).text().replace(/ /g, "_");
return false;
})
// hash filter handling
apply_hash_filter();
$(window).on('hashchange',function() {
apply_post_limits(true);
apply_hash_filter();
});
// more articles link
$('.posts-more a').click(function(e) {
e.preventDefault();
apply_post_limits(false);
apply_hash_filter();
return false;
});
}
</script>
<div class="posts-container posts-with-sidebar posts-apply-limit l-screen-inset">
<div class="posts-list">
<h1 class="posts-list-caption" data-caption="Anson&#39;s Projects">Anson's Projects</h1>
<a href="posts/2021-08-24-julia-for-matlabbers/" class="post-preview">
<script class="post-metadata" type="text/json">{"categories":["Julia","Matlab"]}</script>
<div class="metadata">
<div class="publishedDate">Aug. 24, 2021</div>
<div class="dt-authors">
<div class="dt-author">Anson Biggs</div>
</div>
</div>
<div class="thumbnail">
<img src="posts/2021-08-24-julia-for-matlabbers/preview.png"/>
</div>
<div class="description">
<h2>Julia for Matlabbers</h2>
<div class="dt-tags">
<div class="dt-tag">Julia</div>
<div class="dt-tag">Matlab</div>
</div>
<p>Everything a Matlab programmer needs to know to get started with Julia.</p>
</div>
</a>
<a href="posts/2021-04-14-iss-eclipse-determination/" class="post-preview">
<script class="post-metadata" type="text/json">{"categories":["Julia","Astrodynamics"]}</script>
<div class="metadata">
<div class="publishedDate">May 1, 2021</div>
<div class="dt-authors">
<div class="dt-author">Anson Biggs</div>
</div>
</div>
<div class="thumbnail">
<img src="posts/2021-04-14-iss-eclipse-determination/preview.png"/>
</div>
<div class="description">
<h2>ISS Eclipse Determination</h2>
<div class="dt-tags">
<div class="dt-tag">Julia</div>
<div class="dt-tag">Astrodynamics</div>
</div>
<p>Determining how much sunlight a body orbiting a planet is receiving.</p>
</div>
</a>
<a href="posts/2021-04-01-air-propulsion-simulation/" class="post-preview">
<script class="post-metadata" type="text/json">{"categories":["Julia","Capstone"]}</script>
<div class="metadata">
<div class="publishedDate">April 1, 2021</div>
<div class="dt-authors">
<div class="dt-author">Anson Biggs</div>
</div>
</div>
<div class="thumbnail">
<img src="posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation_files/figure-html5/unnamed-chunk-7-J1.png"/>
</div>
<div class="description">
<h2>Air Propulsion Simulation</h2>
<div class="dt-tags">
<div class="dt-tag">Julia</div>
<div class="dt-tag">Capstone</div>
</div>
<p>Simulating the performance of an air propulsion system as an alternative to solid rocket motors.</p>
</div>
</a>
</div>
<div class="posts-sidebar">
<div class="sidebar-section categories">
<h3>Categories</h3>
<ul>
<li>
<a href="#category:Articles">Articles</a>
<span class="category-count">(3)</span>
</li>
<li>
<a href="#category:Astrodynamics">Astrodynamics</a>
<span class="category-count">(1)</span>
</li>
<li>
<a href="#category:Capstone">Capstone</a>
<span class="category-count">(1)</span>
</li>
<li>
<a href="#category:Julia">Julia</a>
<span class="category-count">(3)</span>
</li>
<li>
<a href="#category:Matlab">Matlab</a>
<span class="category-count">(1)</span>
</li>
</ul>
</div>
</div>
<div class="posts-more">
<a href="#">More articles &raquo;</a>
</div>
</div>
<!--/radix_placeholder_article_listing-->
<!--radix_placeholder_article_listing-->
<script type="application/javascript">
function init_posts_list() {
function load_image(img) {
var src = $(img).attr('data-src');
if (src) {
$(img).attr('src', src);
$(img).load(function() {
img.removeAttribute('data-src');
});
}
}
function set_posts_visible(posts, visible) {
if (visible) {
// show bottom border by default
$(posts).removeClass('post-preview-last');
// apply limits if need be
var max_posts = 25;
var apply_limits = $('.posts-container').hasClass('posts-apply-limit');
if (apply_limits && posts.length > max_posts) {
posts = $(posts).slice(0, max_posts);
} else {
$('.posts-more a').addClass('hidden');
}
// apply last style
$(posts.slice(-1)[0]).addClass('post-preview-last');
$(posts).removeClass('hidden');
$(posts).find('img[data-src]').each(function(i, img) {
load_image(img);
});
} else {
$(posts).addClass('hidden');
}
}
function apply_hash_filter() {
// clear active state
$('.categories .active').removeClass('active');
// mark all posts invisible to start
set_posts_visible($('.posts-list').children('a'), false);
// if we have a hash filter
if (window.location.hash && window.location.hash.startsWith("#category:")) {
// mark posts that match the category visible
var page_category = window.location.hash.replace(/^#category:/, "");
var posts = $('.post-metadata').map(function(idx, script) {
var metadata = $.parseJSON($(script).html());
var post = null;
$.each(metadata.categories, function(idx, category) {
category = category.replace(/ /g,"_");
if ((page_category || '').toLowerCase() === "articles" || category === page_category) {
post = $(script).parent().get();
return false;
}
});
return post;
});
set_posts_visible(posts, true);
// mark the hash active
$('.categories li>a[href="' + window.location.hash + '"]').addClass('active');
// update the list_caption
var list_caption = $('.posts-list-caption');
var caption = (page_category || '').toLowerCase() === "articles"
? list_caption.attr('data-caption')
: ('Category: ' + page_category.replace(/_/g," "));
list_caption.text(caption);
} else {
// no hash filter, make all posts visible (subject to max display)
set_posts_visible($('.posts-list').children(), true);
// reset list caption
var list_caption = $('.posts-list-caption');
list_caption.text(list_caption.attr('data-caption'));
}
}
// more articles
function apply_post_limits(apply) {
if (apply) {
$('.posts-container').addClass('posts-apply-limit');
$('.posts-more a').removeClass('hidden');
} else {
$('.posts-container').removeClass('posts-apply-limit');
$('.posts-more a').addClass('hidden');
}
}
// click handling for tags
$('.dt-tag').click(function(ev) {
window.location.hash = '#category:' + $(this).text().replace(/ /g, "_");
return false;
})
// hash filter handling
apply_hash_filter();
$(window).on('hashchange',function() {
apply_post_limits(true);
apply_hash_filter();
});
// more articles link
$('.posts-more a').click(function(e) {
e.preventDefault();
apply_post_limits(false);
apply_hash_filter();
return false;
});
}
</script>
<div class="posts-container posts-with-sidebar posts-apply-limit l-screen-inset">
<div class="posts-list">
<h1 class="posts-list-caption" data-caption="Anson&#39;s Projects">Anson's Projects</h1>
<a href="posts/2021-08-24-julia-for-matlabbers/" class="post-preview">
<script class="post-metadata" type="text/json">{"categories":["Julia","Matlab"]}</script>
<div class="metadata">
<div class="publishedDate">Aug. 24, 2021</div>
<div class="dt-authors">
<div class="dt-author">Anson Biggs</div>
</div>
</div>
<div class="thumbnail">
<img src="posts/2021-08-24-julia-for-matlabbers/preview.png"/>
</div>
<div class="description">
<h2>Julia for Matlabbers</h2>
<div class="dt-tags">
<div class="dt-tag">Julia</div>
<div class="dt-tag">Matlab</div>
</div>
<p>Everything a Matlab programmer needs to know to get started with Julia.</p>
</div>
</a>
<a href="posts/2021-04-14-iss-eclipse-determination/" class="post-preview">
<script class="post-metadata" type="text/json">{"categories":["Julia","Astrodynamics"]}</script>
<div class="metadata">
<div class="publishedDate">May 1, 2021</div>
<div class="dt-authors">
<div class="dt-author">Anson Biggs</div>
</div>
</div>
<div class="thumbnail">
<img src="posts/2021-04-14-iss-eclipse-determination/preview.png"/>
</div>
<div class="description">
<h2>ISS Eclipse Determination</h2>
<div class="dt-tags">
<div class="dt-tag">Julia</div>
<div class="dt-tag">Astrodynamics</div>
</div>
<p>Determining how much sunlight a body orbiting a planet is receiving.</p>
</div>
</a>
<a href="posts/2021-04-01-air-propulsion-simulation/" class="post-preview">
<script class="post-metadata" type="text/json">{"categories":["Julia","Capstone"]}</script>
<div class="metadata">
<div class="publishedDate">April 1, 2021</div>
<div class="dt-authors">
<div class="dt-author">Anson Biggs</div>
</div>
</div>
<div class="thumbnail">
<img/>
</div>
<div class="description">
<h2>Air Propulsion Simulation</h2>
<div class="dt-tags">
<div class="dt-tag">Julia</div>
<div class="dt-tag">Capstone</div>
</div>
<p>Simulating the performance of an air propulsion system as an alternative to solid rocket motors.</p>
</div>
</a>
</div>
<div class="posts-sidebar">
<div class="sidebar-section categories">
<h3>Categories</h3>
<ul>
<li>
<a href="#category:Articles">Articles</a>
<span class="category-count">(3)</span>
</li>
<li>
<a href="#category:Astrodynamics">Astrodynamics</a>
<span class="category-count">(1)</span>
</li>
<li>
<a href="#category:Capstone">Capstone</a>
<span class="category-count">(1)</span>
</li>
<li>
<a href="#category:Julia">Julia</a>
<span class="category-count">(3)</span>
</li>
<li>
<a href="#category:Matlab">Matlab</a>
<span class="category-count">(1)</span>
</li>
</ul>
</div>
</div>
<div class="posts-more">
<a href="#">More articles &raquo;</a>
</div>
</div>
<!--/radix_placeholder_article_listing-->
<div class="d-title">
<h1>Ansons Projects</h1>

View File

@ -39,7 +39,6 @@
<category>Capstone</category>
<guid>https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation</guid>
<pubDate>Thu, 01 Apr 2021 00:00:00 +0000</pubDate>
<media:content url="https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation_files/figure-html5/unnamed-chunk-7-J1.png" medium="image" type="image/png" width="600" height="400"/>
</item>
</channel>
</rss>

View File

@ -103,20 +103,14 @@ code span.wa { color: #5e5e5e; font-style: italic; } /* Warning */
<meta property="og:type" content="article"/>
<meta property="og:description" content="Simulating the performance of an air propulsion system as an alternative to solid rocket motors."/>
<meta property="og:url" content="https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/"/>
<meta property="og:image" content="https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation_files/figure-html5/unnamed-chunk-7-J1.png"/>
<meta property="og:image:width" content="600"/>
<meta property="og:image:height" content="400"/>
<meta property="og:locale" content="en_US"/>
<meta property="og:site_name" content="Anson&#39;s Projects"/>
<!-- https://dev.twitter.com/cards/types/summary -->
<meta property="twitter:card" content="summary_large_image"/>
<meta property="twitter:card" content="summary"/>
<meta property="twitter:title" content="Anson&#39;s Projects: Air Propulsion Simulation"/>
<meta property="twitter:description" content="Simulating the performance of an air propulsion system as an alternative to solid rocket motors."/>
<meta property="twitter:url" content="https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/"/>
<meta property="twitter:image" content="https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/air-propulsion-simulation_files/figure-html5/unnamed-chunk-7-J1.png"/>
<meta property="twitter:image:width" content="600"/>
<meta property="twitter:image:height" content="400"/>
<!-- https://scholar.google.com/intl/en/scholar/inclusion.html#indexing -->
<meta name="citation_title" content="Anson&#39;s Projects: Air Propulsion Simulation"/>
@ -2082,7 +2076,7 @@ document.addEventListener('DOMContentLoaded', function() {
<!--radix_placeholder_front_matter-->
<script id="distill-front-matter" type="text/json">
{"title":"Air Propulsion Simulation","description":"Simulating the performance of an air propulsion system as an alternative to solid rocket motors.","authors":[{"author":"Anson Biggs","authorURL":"https://ansonbiggs.com","affiliation":"&nbsp;","affiliationURL":"#","orcidID":""}],"publishedDate":"2021-04-01T00:00:00.000+00:00","citationText":"Biggs, 2021"}
{"title":"Air Propulsion Simulation","description":"Simulating the performance of an air propulsion system as an alternative to solid rocket motors.","authors":[{"author":"Anson Biggs","authorURL":"https://ansonbiggs.com","affiliation":"&nbsp;","affiliationURL":"#","orcidID":""}],"publishedDate":"2021-04-01T00:00:00.000-07:00","citationText":"Biggs, 2021"}
</script>
<!--/radix_placeholder_front_matter-->
@ -2102,6 +2096,9 @@ document.addEventListener('DOMContentLoaded', function() {
<a href="https://gitlab.com/MisterBiggs/projects">
<i class="fa fa-gitlab" aria-hidden="true"></i>
</a>
<a href="https://gitlab.com/lander-team">
<i class="fa fa-rocket" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="nav-toggle">&#9776;</a>
</div>
</nav>

View File

@ -2082,7 +2082,7 @@ document.addEventListener('DOMContentLoaded', function() {
<!--radix_placeholder_front_matter-->
<script id="distill-front-matter" type="text/json">
{"title":"ISS Eclipse Determination","description":"Determining how much sunlight a body orbiting a planet is receiving.","authors":[{"author":"Anson Biggs","authorURL":"https://ansonbiggs.com","affiliation":"&nbsp;","affiliationURL":"#","orcidID":""}],"publishedDate":"2021-05-01T00:00:00.000+00:00","citationText":"Biggs, 2021"}
{"title":"ISS Eclipse Determination","description":"Determining how much sunlight a body orbiting a planet is receiving.","authors":[{"author":"Anson Biggs","authorURL":"https://ansonbiggs.com","affiliation":"&nbsp;","affiliationURL":"#","orcidID":""}],"publishedDate":"2021-05-01T00:00:00.000-07:00","citationText":"Biggs, 2021"}
</script>
<!--/radix_placeholder_front_matter-->
@ -2102,6 +2102,9 @@ document.addEventListener('DOMContentLoaded', function() {
<a href="https://gitlab.com/MisterBiggs/projects">
<i class="fa fa-gitlab" aria-hidden="true"></i>
</a>
<a href="https://gitlab.com/lander-team">
<i class="fa fa-rocket" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="nav-toggle">&#9776;</a>
</div>
</nav>

View File

@ -2099,6 +2099,9 @@ document.addEventListener('DOMContentLoaded', function() {
<a href="https://gitlab.com/MisterBiggs/projects">
<i class="fa fa-gitlab" aria-hidden="true"></i>
</a>
<a href="https://gitlab.com/lander-team">
<i class="fa fa-rocket" aria-hidden="true"></i>
</a>
<a href="javascript:void(0);" class="nav-toggle">&#9776;</a>
</div>
</nav>

File diff suppressed because one or more lines are too long

View File

@ -5,15 +5,15 @@
"title": "Hi, I'm Anson.",
"description": "I'm an Astronautical Engineer studying at Embry-Riddle Prescott.",
"author": [],
"contents": "\nI mostly write code, but sometimes I make 3D Models. This website is where I plan on breaking down some of my more interesting findings and sharing them with the World Wide Web. If you think I could be a could fit at your company then take a look at my Resume, otherwise you can reach me on Telegram or by Email.\n\n\n\n",
"last_modified": "2021-08-24T09:05:51+00:00"
"contents": "\r\nI mostly write code, but sometimes I make 3D Models. I am constantly in the middle of dozens of projects ranging from Astrodynamics to developing self landing model rockets. This website is where I plan to break down some of my more interesting findings and share them with the World Wide Web.\r\nI am also currently looking for employment as an entry-level engineer. If you think I could be a fit at your company, then take a look at my Resume; otherwise, you can reach me on Telegram or by Email.\r\n\r\n\r\n\r\n",
"last_modified": "2021-09-16T12:37:10-07:00"
},
{
"path": "index.html",
"title": "Anson's Projects",
"author": [],
"contents": "\n\n\n\n",
"last_modified": "2021-08-24T09:05:52+00:00"
"contents": "\r\n\r\n\r\n\r\n",
"last_modified": "2021-09-16T12:37:11-07:00"
}
],
"collections": ["posts/posts.json"]

View File

@ -2,7 +2,7 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" version="1.0">
<url>
<loc>https://projects.ansonbiggs.com/about.html</loc>
<lastmod>2021-04-14T22:36:57-07:00</lastmod>
<lastmod>2021-09-16T12:34:50-07:00</lastmod>
</url>
<url>
<loc>https://projects.ansonbiggs.com/</loc>
@ -14,10 +14,10 @@
</url>
<url>
<loc>https://projects.ansonbiggs.com/posts/2021-04-14-iss-eclipse-determination/</loc>
<lastmod>2021-08-24T06:53:55+00:00</lastmod>
<lastmod>2021-08-23T23:53:55-07:00</lastmod>
</url>
<url>
<loc>https://projects.ansonbiggs.com/posts/2021-04-01-air-propulsion-simulation/</loc>
<lastmod>2021-08-24T06:53:55+00:00</lastmod>
<lastmod>2021-08-23T23:53:55-07:00</lastmod>
</url>
</urlset>