fix url placemnt
This commit is contained in:
parent
9e4794d279
commit
c5dbbbf6b8
11 changed files with 5 additions and 19 deletions
|
|
@ -4,6 +4,4 @@ slug: "auto-theme.nvim"
|
||||||
date: "11/28/2025"
|
date: "11/28/2025"
|
||||||
---
|
---
|
||||||
|
|
||||||
[source code](github.com/barrett-ruth/auto-theme.nvim)
|
|
||||||
|
|
||||||
wip
|
wip
|
||||||
|
|
|
||||||
|
|
@ -4,4 +4,4 @@ date: "07/10/2025"
|
||||||
slug: "barrettruth.com"
|
slug: "barrettruth.com"
|
||||||
---
|
---
|
||||||
|
|
||||||
[source code](github.com/barrett-ruth/barrettruth.com) for this website
|
code for this website
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,6 @@ title: "bmath"
|
||||||
date: "09/10/2025"
|
date: "09/10/2025"
|
||||||
---
|
---
|
||||||
|
|
||||||
[source code](github.com/barrett-ruth/bmath)
|
|
||||||
|
|
||||||
header-only c++23 math library
|
header-only c++23 math library
|
||||||
|
|
||||||
built to learn and apply modern c++ in a competitive programming environment
|
built to learn and apply modern c++ in a competitive programming environment
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,6 @@ title: "competitive-programming"
|
||||||
date: "09/10/2025"
|
date: "09/10/2025"
|
||||||
---
|
---
|
||||||
|
|
||||||
[source code](github.com/barrett-ruth/competitive-programming)
|
|
||||||
|
|
||||||
a collection of my competitive programming solutions categorized as follows:
|
a collection of my competitive programming solutions categorized as follows:
|
||||||
|
|
||||||
- `/kattis`: a few ICPC problems from UVA's "practices"
|
- `/kattis`: a few ICPC problems from UVA's "practices"
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,6 @@ slug: "cp.nvim"
|
||||||
date: "10/10/2025"
|
date: "10/10/2025"
|
||||||
---
|
---
|
||||||
|
|
||||||
[source code](github.com/barrett-ruth/cp.nvim)
|
|
||||||
|
|
||||||
Things have changed since I last documented my competitive programming setup [here](/software/my-cp-setup.html).
|
Things have changed since I last documented my competitive programming setup [here](/software/my-cp-setup.html).
|
||||||
|
|
||||||
# my goals
|
# my goals
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,4 @@ title: "dots"
|
||||||
date: "07/10/2025"
|
date: "07/10/2025"
|
||||||
---
|
---
|
||||||
|
|
||||||
[source code](github.com/barrett-ruth/dots)
|
|
||||||
|
|
||||||
collection of configurations for neovim, zsh, ghostty, xorg, tmux, as well as os-specific configurations and custom scripts
|
collection of configurations for neovim, zsh, ghostty, xorg, tmux, as well as os-specific configurations and custom scripts
|
||||||
|
|
|
||||||
|
|
@ -4,8 +4,6 @@ slug: "midnight.nvim"
|
||||||
date: "8/11/2025"
|
date: "8/11/2025"
|
||||||
---
|
---
|
||||||
|
|
||||||
[source code](github.com/barrett-ruth/midnight.nvim)
|
|
||||||
|
|
||||||
neovim theme for code, not colors.
|
neovim theme for code, not colors.
|
||||||
|
|
||||||
# motivation
|
# motivation
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,4 @@ title: "sl"
|
||||||
date: "09/10/2025"
|
date: "09/10/2025"
|
||||||
---
|
---
|
||||||
|
|
||||||
[source code](github.com/barrett-ruth/sl)
|
|
||||||
|
|
||||||
[archive](/meditations/suck-less-or-suck-more.html) of [suckless](https://suckless.org/) repositories
|
[archive](/meditations/suck-less-or-suck-more.html) of [suckless](https://suckless.org/) repositories
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,4 @@ title: "wp"
|
||||||
date: "07/10/2025"
|
date: "07/10/2025"
|
||||||
---
|
---
|
||||||
|
|
||||||
[source code](github.com/barrett-ruth/wp)
|
|
||||||
|
|
||||||
some of my wallpapers
|
some of my wallpapers
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,6 @@ title: "my cp setup"
|
||||||
date: "15/04/2025"
|
date: "15/04/2025"
|
||||||
---
|
---
|
||||||
|
|
||||||
Source code [here](https://github.com/barrett-ruth/dots/blob/main/nvim/lua/cp.lua).
|
|
||||||
|
|
||||||
# my goals
|
# my goals
|
||||||
|
|
||||||
I wanted the following features in my competitive programming (cp) setup:
|
I wanted the following features in my competitive programming (cp) setup:
|
||||||
|
|
|
||||||
|
|
@ -13,6 +13,7 @@ export async function getStaticPaths() {
|
||||||
const { repo } = Astro.props;
|
const { repo } = Astro.props;
|
||||||
const { Content } = await repo.render();
|
const { Content } = await repo.render();
|
||||||
const cloneCommand = `git clone https://git.barrettruth.com/${repo.slug}.git`;
|
const cloneCommand = `git clone https://git.barrettruth.com/${repo.slug}.git`;
|
||||||
|
const githubUrl = `https://github.com/barrett-ruth/${repo.slug}`;
|
||||||
---
|
---
|
||||||
|
|
||||||
<PostLayout frontmatter={repo.data} post={repo}>
|
<PostLayout frontmatter={repo.data} post={repo}>
|
||||||
|
|
@ -24,5 +25,8 @@ const cloneCommand = `git clone https://git.barrettruth.com/${repo.slug}.git`;
|
||||||
<code><span class="prompt">> </span>{cloneCommand}</code>
|
<code><span class="prompt">> </span>{cloneCommand}</code>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<br />
|
||||||
|
<div><a href={githubUrl}>source code</a></div>
|
||||||
|
|
||||||
<Content />
|
<Content />
|
||||||
</PostLayout>
|
</PostLayout>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue