This commit is contained in:
Elijah McMorris 2025-05-06 17:21:00 -07:00
parent 47a5ac5067
commit d214121cd6
Signed by: NexVeridian
SSH key fingerprint: SHA256:bsA1SKZxuEcEVHAy3gY1HUeM5ykRJl0U0kQHQn0hMg8
11 changed files with 85 additions and 69 deletions

View file

@ -1 +1,4 @@
Source code for NexVeridian.com built using [Zola](https://github.com/getzola/zola)
# License
All code in this repository is dual-licensed under either [License-MIT](./LICENSE-MIT) or [LICENSE-APACHE](./LICENSE-Apache) at your option. This means you can select the license you prefer. [Why dual license](https://github.com/bevyengine/bevy/issues/2373).

View file

@ -1,5 +1,5 @@
# The URL the site will be built for
base_url = "https://blog.nexveridian.com/"
base_url = "https://nexveridian.com/"
# The site title and description; used in feeds by default.
title = ""
@ -38,15 +38,15 @@ menu_items = [
# each of these is optional, name and url are required
# $BASE_URL is going to be substituted by base_url from configuration
{ name = "home", url = "$BASE_URL" },
{ name = "Home", url = "$BASE_URL" },
# tags should only be enabled if you have "tags" taxonomy
# see documentation below for more details
{ name = "blog", url = "$BASE_URL/archive" },
{ name = "tags", url = "$BASE_URL/tags" },
{ name = "about me", url = "$BASE_URL/about" },
{ name = "Blog", url = "$BASE_URL/archive" },
{ name = "Tags", url = "$BASE_URL/tags" },
{ name = "About Me", url = "$BASE_URL/about" },
{ name = "resume", url = "$BASE_URL/Elijah_McMorris_Resume.pdf", newtab = true },
{ name = "Resume", url = "$BASE_URL/Elijah_McMorris_Resume.pdf", newtab = true },
]
show_only_description = true

View file

@ -3,7 +3,7 @@ title = "About Me"
path = "about"
+++
I recently finished BAS in Software Development, Im looking for Software Engineering positions, I live in Kirkland WA, I'm a US citizen. I've contributed multiple substantial code PRs to JupyterLab and Loco.rs, created an official extension for Loco.rs adding OpenAPI integration, and I have several open source projects on my resume. My strongest programming languages: Rust, TypeScript, Python, and I also use Nix for a lot of my projects.
I recently finished BAS in Software Development. I'm looking for Software Engineering positions, I live in Kirkland WA, I'm a US citizen. I've contributed multiple substantial code PRs to JupyterLab and Loco.rs. Including creating an official extension for Loco.rs adding OpenAPI integration. I have several open source projects on my resume. My strongest programming languages are: Rust, TypeScript, Python, and I also use Nix for a lot of my projects.
# Contact Me:
- [Email](mailto:nexveridian@gmail.com)

Binary file not shown.

View file

@ -16,4 +16,4 @@
{{ post_macros::list_posts(pages=blog_section.pages) }}
</div>
{% endblock content %}
{% endblock content %}

View file

@ -83,7 +83,7 @@
</div>
</a>
<a href="https://github.com/jupyterlab/jupyterlab/issues?q=state%3Aclosed%20is%3Apr%20author%3A@me%20is%3Amerged" class="project-box-link">
<a href="https://github.com/jupyterlab/jupyterlab/issues?q=state%3Aclosed%20is%3Apr%20author%3Anexveridian%20is%3Amerged" class="project-box-link">
<div class="project-box">
<h3 class="post-title">JupyterLab Contributions</h3>
<p class="project-tags">TypeScript</p>
@ -94,7 +94,7 @@
</div>
</a>
<a href="https://github.com/loco-rs/loco/issues?q=state%3Aclosed%20is%3Apr%20author%3A@me%20is%3Amerged" class="project-box-link">
<a href="https://github.com/loco-rs/loco/issues?q=state%3Aclosed%20is%3Apr%20author%3Anexveridian%20is%3Amerged%20" class="project-box-link">
<div class="project-box">
<h3 class="post-title">Loco.rs Contributions</h3>
<p class="project-tags">Rust</p>
@ -106,7 +106,7 @@
</div>
</a>
<a href="https://nexveridian.com/ARK" class="project-box-link">
<a href="https://ark.nexveridian.com/ARK" class="project-box-link">
<div class="project-box">
<h3 class="post-title">ARK Invest ETF Tracker</h3>
<p class="project-tags">Next.js, TypeScript</p>
@ -133,6 +133,15 @@
</div>
</a>
<a href="https://github.com/NixOS/nixpkgs/pulls?q=is%3Apr+author%3ANexVeridian+" class="project-box-link">
<div class="project-box">
<h3 class="post-title">Nix Packages Contributions</h3>
<p class="project-tags">Nix</p>
<p>Added various package updates and fixes to Nix Packages</p>
<span class="view-project">View PRs →</span>
</div>
</a>
<a href="https://s.nexveridian.com" class="project-box-link">
<div class="project-box">
<h3 class="post-title">Next Url Shortener</h3>
@ -176,6 +185,11 @@
<a href="https://github.com/NexVeridian/NexVeridian-web">Source Code</a>&nbsp;
</span>
<span class="copyright-theme">
<span class="copyright-theme-sep">:: </span>
Dual Licensed: <a href="https://github.com/NexVeridian/NexVeridian-web/blob/main/LICENSE-MIT">LICENSE-MIT</a> or <a href="https://github.com/NexVeridian/NexVeridian-web/blob/main/LICENSE-Apache">LICENSE-APACHE</a>&nbsp;
</span>
<span class="copyright-theme">
<span class="copyright-theme-sep">:: </span>
Theme: <a href="https://github.com/pawroman/zola-theme-terminimal/">Terminimal</a> by pawroman

View file

@ -7,7 +7,7 @@
{% block content %}
<div class="posts">
<h1 class="post-title">{{ section.title }}</h1>
{%- if paginator %}
{%- set show_pages = paginator.pages -%}
{% else %}
@ -20,7 +20,7 @@
{{ post_macros::content(page=page, summary=true, show_only_description=page.extra.show_only_description | default(value=false)) }}
</div>
{% endfor -%}
<div class="pagination">
<div class="pagination__buttons">
{%- if paginator.previous %}
@ -42,4 +42,4 @@
</div>
</div>
</div>
{% endblock content %}
{% endblock content %}

View file

@ -22,4 +22,4 @@
{% endfor %}
</ul>
</div>
{% endblock content %}
{% endblock content %}

View file

@ -22,4 +22,4 @@
{{ post_macros::list_posts(pages=term.pages) }}
</div>
{% endblock content %}
{% endblock content %}

View file

@ -1,64 +1,64 @@
@import "variables";
.footer {
padding: 40px 0;
flex-grow: 0;
opacity: .5;
padding: 40px 0;
flex-grow: 0;
opacity: 0.5;
&__inner {
display: flex;
align-items: center;
justify-content: space-between;
margin: 0;
width: 760px;
max-width: 100%;
@media (max-width: $tablet-max-width) {
flex-direction: column;
}
}
a {
color: inherit;
}
.copyright {
display: flex;
flex-direction: row;
align-items: center;
font-size: 1rem;
color: var(--light-color-secondary);
&--user {
margin: auto;
text-align: center;
}
& > *:first-child:not(:only-child) {
margin-right: 10px;
@media (max-width: $tablet-max-width) {
border: none;
padding: 0;
&__inner {
display: flex;
align-items: center;
justify-content: space-between;
margin: 0;
}
/* width: 760px; */
max-width: 100%;
@media (max-width: $tablet-max-width) {
flex-direction: column;
}
}
@media (max-width: $tablet-max-width) {
flex-direction: column;
margin-top: 10px;
a {
color: inherit;
}
}
.copyright-theme-sep {
@media (max-width: $tablet-max-width) {
display: none;
}
}
.copyright {
display: flex;
flex-direction: row;
align-items: center;
font-size: 1rem;
color: var(--light-color-secondary);
.copyright-theme {
@media (max-width: $tablet-max-width) {
font-size: 0.75rem;
&--user {
margin: auto;
text-align: center;
}
& > *:first-child:not(:only-child) {
margin-right: 10px;
@media (max-width: $tablet-max-width) {
border: none;
padding: 0;
margin: 0;
}
}
@media (max-width: $tablet-max-width) {
flex-direction: column;
margin-top: 10px;
}
}
.copyright-theme-sep {
@media (max-width: $tablet-max-width) {
display: none;
}
}
.copyright-theme {
@media (max-width: $tablet-max-width) {
font-size: 0.75rem;
}
}
}
}

View file

@ -49,4 +49,3 @@
</nav>
{% endif -%}
{% endmacro menu %}