-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added but did not finish todo section
- Loading branch information
Showing
14 changed files
with
174 additions
and
181 deletions.
There are no files selected for viewing
This file was deleted.
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
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
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 |
---|---|---|
@@ -0,0 +1,54 @@ | ||
[ | ||
{ | ||
"desc": "Survive", | ||
"done": true | ||
}, | ||
{ | ||
"desc": "A year-long contribution streak" | ||
}, | ||
{ | ||
"desc": "Create a website with multiple subdomains", | ||
"url": "https://github.com/Xithrius/xithrius.cloud", | ||
"done": true | ||
}, | ||
{ | ||
"desc": "Twitch TUI", | ||
"url": "https://github.com/Xithrius/twitch-tui", | ||
"done": true | ||
}, | ||
{ | ||
"desc": "Timezone Tracker", | ||
"url": "https://github.com/Xithrius/timezone-tracker", | ||
"done": true | ||
}, | ||
{ | ||
"desc": "Markdown table generator", | ||
"url": "https://github.com/Xithrius/markdown-table-rs", | ||
"done": true | ||
}, | ||
{ | ||
"desc": "Make guides/blogs on website", | ||
"url": "https://github.com/Xithrius/xithrius.cloud/tree/main/site", | ||
"done": true | ||
}, | ||
{ | ||
"desc": "Create home server", | ||
"url": "https://github.com/Xithrius/titan.xithrius.cloud", | ||
"done": true | ||
}, | ||
{ | ||
"desc": "Create own polybar theme/config", | ||
"url": "https://github.com/Xithrius/dotfiles/tree/main/.config/polybar", | ||
"done": true | ||
}, | ||
{ | ||
"desc": "Rust TUI template repository", | ||
"url": "https://github.com/Xithrius/rust-tui-project-template", | ||
"done": true | ||
}, | ||
{ | ||
"desc": "Get CD working on a VPS", | ||
"url": "https://github.com/Xithrius/xithrius.cloud/", | ||
"done": true | ||
} | ||
] |
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 |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[ | ||
{ "desc": "Survive again" }, | ||
{ "desc": "An actual full year contribution streak", "done": true }, | ||
{ | ||
"desc": "Create an one-for-all package manager", | ||
"url": "https://github.com/Xithrius/nitride" | ||
}, | ||
{ | ||
"desc": "Discord bot for graphing", | ||
"url": "https://github.com/Xithrius/Xythrion" | ||
}, | ||
{ "desc": "Create systemd service(s) to alert when something happens" }, | ||
{ "desc": "Take an online course for circuit analysis" }, | ||
{ "desc": "Get access to home server from anywhere", "done": true }, | ||
{ "desc": "User video game stats lookup" }, | ||
{ "desc": "Gmail clone", "done": true }, | ||
{ "desc": "Game config sync", "url": "https://github.com/Xithrius/alacrite" }, | ||
{ "desc": "File vault with encryption" }, | ||
{ "desc": "File explorer", "url": "https://github.com/Xithrius/nitroxide" }, | ||
{ | ||
"desc": "Control fan with ESP32 module, temp/humidity sensor" | ||
}, | ||
{ | ||
"desc": "Complete one of the years for Advent of Code" | ||
}, | ||
{ | ||
"desc": "Create QOL scripts for remote server interactions" | ||
}, | ||
{ | ||
"desc": "Perfect current i3wm config looks and workflows" | ||
} | ||
] |
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[ | ||
{ | ||
"desc": "Survive yet again" | ||
}, | ||
{ | ||
"desc": "Rewrite this site in Nuxt" | ||
}, | ||
{ | ||
"desc": "Get Ordis (Warframe market bot) into a production state", | ||
"url": "https://github.com/Xithrius/Ordis" | ||
}, | ||
{ | ||
"desc": "Get Xythrion (General utility bot) into a production state", | ||
"url": "https://github.com/Xithrius/Xythrion" | ||
}, | ||
{ | ||
"desc": "Adafruit Metro ESP32-S2 to provide temperature readings (through Circuit Python)" | ||
}, | ||
{ | ||
"desc": "Automate repetitive workflow setups for i3wm" | ||
}, | ||
{ | ||
"desc": "Kitty terminal framework for setting up projects via config files" | ||
}, | ||
{ | ||
"desc": "Complete a modern C++ course" | ||
} | ||
] |
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<template> | ||
<main class="min-h-screen"> | ||
<AppHeader | ||
class="mb-16" | ||
title="ToDo" | ||
/> | ||
<div class="space-y-4"> | ||
<AppProjectCard | ||
v-for="(project, id) in projects" | ||
:key="id" | ||
:project="project" | ||
/> | ||
</div> | ||
</main> | ||
</template> | ||
|
||
<script setup> | ||
useSeoMeta({ | ||
title: 'ToDo | Xithrius', | ||
description: 'Tasks and Goals for the future', | ||
}) | ||
const { data: projects } = await useAsyncData('todo-all', () => | ||
queryContent('/todo').find() | ||
) | ||
</script> |
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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
export interface NavigationItem { | ||
name: string; | ||
path: string; | ||
icon?: string | null; | ||
label: string; | ||
to: string; | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.