Push to Valaxy Branch. Initial push. Testing switch to new codebase.

This commit is contained in:
Charles Click 2024-10-09 06:50:17 +00:00
parent 8e7aeba926
commit 92da6ff9ce
30 changed files with 404 additions and 86 deletions

28
.gitignore vendored
View File

@ -1 +1,27 @@
public
# vite-ssg
.vite-ssg-dist
.vite-ssg-temp
temp/
.DS_Store
*.local
dist
dist-ssr
node_modules
.idea/
*.log
components.d.ts
# valaxy rss
public/feed.xml
# valaxy rss
public/atom.xml
# valaxy rss
public/feed.json
# valaxy fuse
public/valaxy-fuse-list.json

26
.valaxy/typed-router.d.ts vendored Normal file
View File

@ -0,0 +1,26 @@
/* eslint-disable */
/* prettier-ignore */
// @ts-nocheck
// Generated by unplugin-vue-router. ‼️ DO NOT MODIFY THIS FILE ‼️
// It's recommended to commit this file.
// Make sure to add this file to your tsconfig.json file as an "includes" or "files" entry.
declare module 'vue-router/auto-routes' {
import type {
RouteRecordInfo,
ParamValue,
ParamValueOneOrMore,
ParamValueZeroOrMore,
ParamValueZeroOrOne,
} from 'vue-router'
/**
* Route name map generated by unplugin-vue-router
*/
export interface RouteNamedMap {
'/': RouteRecordInfo<'/', '/', Record<never, never>, Record<never, never>>,
'/[...path]': RouteRecordInfo<'/[...path]', '/:path(.*)', { path: ParamValue<true> }, { path: ParamValue<false> }>,
'/about': RouteRecordInfo<'/about', '/about', Record<never, never>, Record<never, never>>,
'/projects/': RouteRecordInfo<'/projects/', '/projects', Record<never, never>, Record<never, never>>,
}
}

View File

@ -1,5 +0,0 @@
+++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = {{ .Date }}
draft = true
+++

View File

@ -1,17 +0,0 @@
+++
date = 2024-02-26T01:11:55-05:00
type = 'page'
image = 'Test'
+++
# Projects
A list of projects I've worked on that I like to showcase.
## [PyMoe](https://github.com/ccubed/PyMoe)
PyMoe started out as a library I used in my AngelBot project to interact with the APIs available at various websites focusing on Anime, Manga, Light Novels, Web Novels, and Visual Novels. It has now become it's own independent project supporting the latest versions of Python 3 and recently updated to include several new services. It has over eighty stars and is currently used in over six hundred projects on Github.
## [Earl](https://github.com/ccubed/Earl)
Earl also started out as a library to be used in Angelbot, however it later grew into a more general use project. Earl is a C++ extension for Python built against CPython to allow native packing and unpacking of the External Term Format used by Erlang. At the time, this was created to make parsing the ETF data received by Discord faster. Bots made in other languages had a slight speed advantage at parsing ETF. This extension leveled the playing field by utilizing C++ to very quickly serialize ETF into and out of Python objects.
## [Downloop](https://github.com/ccubed/Downloop)
Downloop was a hobby project to create a Python image host with a built in web interface and API that would allow anyone to programmatically create and distribute a link to a hosted image. Downloop was focused on privacy and kept no data on who uploaded what. Images were not stored by name making them completely anonymous and all images were returned as binary data. It was able to shard itself automatically to distribute load, direct requests to the correct shard, and separated all stored image data into different root database tables based on shard. This meant that no one shard had a copy of all the images and that shards didn't know what existed between them. It also meant that we had no way to recover an image link if someone lost their initial link given upon image upload.

View File

@ -1,53 +0,0 @@
baseURL = 'https://www.vertinext.com'
defaultContentLanguage = 'en-us'
languageCode = 'en-us'
title = 'Charles Click'
theme = 'gokarna'
enableRobotsTXT = true
[menu]
[[menu.main]]
identifier = 'home'
url = '/'
pre = '<span data-feather="home"></span>'
post = ''
name = 'Home'
weight = 1
[[menu.main]]
identifier = 'projects'
url = '/pages/'
pre = '<span data-feather="folder"></span>'
post = ''
name = 'Projects'
weight = 2
[[menu.main]]
identifier = 'github'
url = 'https://www.github.com/ccubed'
weight = 3
pre = '<span data-feather="github"></span>'
name = 'Github'
[[menu.main]]
identifier = 'keybase'
url = 'https://keybase.io/cclick'
weight = 4
pre = '<span data-feather="key"></span>'
name = 'Keybase'
[[menu.main]]
identifier = 'resume'
url = 'https://drive.google.com/file/d/1xIWfZk8b3xa9ygUxurgAyUwHblPE_CrB/view?usp=sharing'
weight = 5
pre = '<span data-feather="briefcase"></span>'
name = 'Resume'
[params]
avatarURL = '/images/Avatar.jpg'
avatarSize = 'size-m'
description = 'Sometimes I ask the computer to do things'
footer = 'Charles Click @ vertinext.com'
socialIcons = [
{name = 'linkedin', url = 'https://www.linkedin.com/in/charles-click-b078a959/'},
{name = 'mastodon', url = 'https://mastodon.social/@RoryEjinn'},
{name = 'twitch', url = 'https://www.twitch.tv/teshiko'},
{name = 'email', url = 'mailto:ccubed.techno@gmail.com'}
]
metaKeywords = ['vertinext', 'charles click', 'portfolio', 'cooper']

View File

Before

Width:  |  Height:  |  Size: 36 KiB

After

Width:  |  Height:  |  Size: 36 KiB

2
locales/en.yml Normal file
View File

@ -0,0 +1,2 @@
docs:
view_docs: See Docs

2
locales/zh-CN.yml Normal file
View File

@ -0,0 +1,2 @@
docs:
view_docs: 查看文档指南

19
package.json Normal file
View File

@ -0,0 +1,19 @@
{
"type": "module",
"private": true,
"scripts": {
"build": "npm run build:ssg && npm run rss",
"build:spa": "valaxy build",
"build:ssg": "valaxy build --ssg --log=info",
"dev": "valaxy",
"rss": "valaxy rss",
"serve": "vite preview"
},
"dependencies": {
"valaxy": "^0.19.12",
"valaxy-theme-gitlink": "link:../valaxy-theme-yun"
},
"devDependencies": {
"nodemon": "^3.1.7"
}
}

14
pages/about.md Normal file
View File

@ -0,0 +1,14 @@
---
title: Charles Click - Vertinext
---
## About
<!-- more -->
This site is made using Valaxy and the Valaxy Gitlink Theme. Please visit these projects and support their development.
## Useful Links
- [valaxy](https://github.com/YunYouJun/valaxy)
- [valaxy-theme-gitlink](https://github.com/valaxyjs/valaxy-theme-gitlink)

6
pages/archives/index.md Normal file
View File

@ -0,0 +1,6 @@
---
layout: archives
title: 归档
nav: false
comment: false
---

102
pages/projects/index.md Normal file
View File

@ -0,0 +1,102 @@
---
title: My Projects
layout: projects
projects:
design:
title: '🕹️ Gaming'
children:
- name: Ultralight
desc: The prototype for a text based game written in Go.
color: '#0078E7'
url: https://git.vertinext.com/roryejinn/Ultralight
- name: lotj-mudlet-ui
desc: A custom mudlet User Interface for Legends of the Jedi, a star wars mud.
color: '#22bbff'
url: https://git.vertinext.com/roryejinn/lotj-mudlet-ui
- name: Reach
desc: Code for the now closed Reach Mush
color: '#4682b4'
github: ccubed/Reach
- name: Requiem for Kingsmouth
desc: Code for the now closed Requiem of Kingsmouth Mush
color: '#e41c13'
github: ccubed/RFK
applets:
title: '💡 Apps'
children:
- name: Requiem for Kingsmouth Web UI
desc: Web based Admin dashboard and Player portal
color: '#bff2d3'
github: ccubed/RFKWeb
- name: AngelBot
desc: AngelBot was a self hosted Discord bot that ingested web APIs and displayed them in Discord.
color: gray
textColor: white
github: ccubed/AngelBot
- name: Sanxian
desc: Sanxian was a self hosted Discord music bot that played music over voice channels.
color: pink
github: ccubed/Sanxian
- name: Downloop
desc: Downloop is a python based anonymous image uploader/storage platform using a Redis Cache and auto sharding.
color: '#5387b1'
github: ccubed/Downloop
tools:
title: 🔧 Tools and Libraries
children:
- name: AvalonUI
color: '#2b7489'
desc: Prototype for a universal Mudlet UI package.
url: https://git.vertinext.com/roryejinn/AvalonUI
- name: PyMoe
desc: PyMoe is a python library that simplifies getting information on anima, manga, and light novels from various websites.
color: steelblue
github: ccubed/PyMoe
docs: https://ccubed.github.io/PyMoe/
- name: Earl
desc: Earl is a C++ extension for Python compiled against CPython for working with External Term Format messages.
github: ccubed/Earl
- name: Dyslexml
desc: Dyslexml is a Python library that makes working with XML easier.
color: '#222'
github: ccubed/Dyslexml
- name: OTPy
desc: Python 3 OTP Implementation that passes the RFC tests.
color: '#f1e05a'
github: ccubed/OTPy
interesting:
title: ⭐ Projects I Watch
children:
- name: X-Pipe
color: '#4ea5f5'
desc: X-Pipe is a great way to maintain and store the connection profiles for devices across your infrastructure.
textColor: white
github: xpipe-io/xpipe
url: https://www.xpipe.io
- name: Mermaid Live editor
desc: A great web based app that allows you to use a simple syntax to create Mermaid diagrams and charts.
color: '#8a91d0'
textColor: white
github: mermaid-js/mermaid-live-editor
- name: GoMud
desc: A MUD (Multi-User Dungeon) engine written in Go.
color: '#20c077'
textColor: white
github: Volte6/GoMud
- name: Sigma File Manager
desc: An interesting take on the future of file managers that uses web technologies to unify all your data sources.
color: red
textColor: white
github: aleksey-hoffman/sigma-file-manager
- name: Monogatari
desc: A Visual Novel Engine designed using web technologies that allow it to be easily ported across platforms and screen types.
color: green
github: Monogatari/Monogatari
- name: Bubbletea
desc: The best TUI interface I have ever come across written in Go. They also make some other amazing projects like [huh](https://github.com/charmbracelet/huh), [gum](https://github.com/charmbracelet/gum) and [wish](https://github.com/charmbracelet/wish).
color: '#f8d0a0'
github: charmbracelet/bubbletea
---

3
public/_headers Normal file
View File

@ -0,0 +1,3 @@
/assets/*
cache-control: max-age=31536000
cache-control: immutable

5
public/favicon.svg Normal file
View File

@ -0,0 +1,5 @@
<svg width="100" height="70" viewBox="0 0 100 70" fill="#0078e7" xmlns="http://www.w3.org/2000/svg">
<path d="M44 35L27.5 44.5263V25.4737L44 35Z" />
<path d="M74 35C74 39.9706 69.9706 44 65 44C60.0294 44 56 39.9706 56 35C56 30.0294 60.0294 26 65 26C69.9706 26 74 30.0294 74 35Z" />
<path fill-rule="evenodd" clip-rule="evenodd" d="M85 0H15V15H0V55H15V70H85V55H100V15H85V0ZM85 15H15V55H85V15Z" />
</svg>

After

Width:  |  Height:  |  Size: 403 B

BIN
public/pwa-192x192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.9 KiB

BIN
public/pwa-512x512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@ -0,0 +1,41 @@
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
width="700.000000pt" height="700.000000pt" viewBox="0 0 700.000000 700.000000"
preserveAspectRatio="xMidYMid meet">
<metadata>
Created by potrace 1.11, written by Peter Selinger 2001-2013
</metadata>
<g transform="translate(0.000000,700.000000) scale(0.100000,-0.100000)"
fill="#000000" stroke="none">
<path d="M2916 6015 c-93 -57 -173 -108 -178 -113 -6 -6 7 -36 33 -78 23 -38
86 -141 139 -229 54 -88 135 -221 180 -295 46 -74 94 -155 108 -180 14 -25 29
-52 35 -60 7 -12 -9 -45 -62 -130 -39 -63 -85 -140 -103 -170 -18 -30 -117
-194 -222 -365 -104 -170 -199 -326 -210 -346 -12 -19 -61 -102 -111 -183 -49
-81 -101 -166 -115 -189 -14 -23 -39 -64 -55 -90 -17 -27 -77 -126 -134 -220
-57 -95 -127 -210 -156 -257 -194 -315 -325 -533 -325 -541 0 -5 -4 -9 -10 -9
-5 0 -10 -4 -10 -9 0 -5 -55 -98 -121 -207 -247 -404 -403 -660 -416 -684 -8
-14 -58 -97 -112 -185 l-98 -160 -189 -2 c-104 -1 -225 -2 -269 -2 l-80 -1 1
-210 c0 -116 4 -213 8 -218 11 -11 6107 -9 6114 2 8 13 8 406 0 419 -4 7 -88
10 -265 9 l-259 -2 -50 77 c-27 43 -54 87 -60 98 -6 11 -62 103 -124 205 -62
102 -120 197 -129 212 -9 16 -85 142 -170 280 -85 139 -160 262 -165 273 -6
11 -13 22 -16 25 -3 3 -30 46 -59 95 -30 50 -102 169 -161 265 -59 96 -240
393 -402 660 -163 267 -371 609 -463 760 -92 151 -194 318 -225 370 -31 52
-101 167 -155 255 l-97 160 27 50 c16 27 32 55 36 61 5 5 38 59 74 120 36 60
69 116 74 124 5 8 75 122 155 253 81 131 144 242 141 247 -4 7 -114 76 -183
115 -10 6 -52 32 -95 58 -42 27 -81 46 -87 42 -8 -5 -94 -140 -140 -219 -19
-33 -221 -365 -246 -404 -15 -22 -18 -18 -111 135 -52 87 -123 203 -157 258
-67 108 -67 110 -111 184 -16 28 -34 51 -40 50 -5 0 -86 -47 -179 -104z m739
-1642 c319 -526 519 -854 637 -1046 43 -70 78 -130 78 -133 0 -2 5 -10 10 -17
6 -7 69 -109 140 -227 72 -118 134 -222 139 -230 5 -8 55 -89 111 -180 56 -91
105 -172 110 -180 9 -14 52 -84 270 -445 54 -88 135 -221 180 -295 46 -74 91
-148 100 -165 9 -16 31 -53 48 -81 18 -28 32 -54 32 -57 0 -3 -403 -6 -895 -5
l-895 0 0 81 c-1 45 -1 439 -1 875 l0 792 -37 1 c-57 1 -344 1 -374 0 l-27 -1
0 -832 c0 -458 0 -852 0 -875 l-1 -42 -895 1 c-492 0 -895 3 -895 5 0 9 115
198 122 201 5 2 8 7 8 12 0 5 23 46 51 92 28 46 78 128 112 183 33 55 70 116
82 135 12 19 132 215 265 435 133 220 266 438 295 485 65 105 206 338 220 362
6 10 172 284 370 608 198 325 387 635 420 690 33 55 62 100 65 100 3 0 73
-111 155 -247z"/>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

5
shims.d.ts vendored Normal file
View File

@ -0,0 +1,5 @@
declare interface Window {
// extend the window
__DEV__: boolean
$pageData: any
}

View File

@ -1,2 +0,0 @@
http://www.vertinext.com/
http://www.vertinext.com/projects/

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

View File

@ -1,7 +0,0 @@
User-agent: Googlebot
Disallow: *
Allow: index.html
User-agent: *
Disallow: *
Sitemap: http://www.vertinext.com/sitemap.xml

3
styles/README.md Normal file
View File

@ -0,0 +1,3 @@
# styles
You can custom styles in `styles/index.scss`.

32
styles/docs.scss Normal file
View File

@ -0,0 +1,32 @@
.gradient-text {
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.sese-btn {
position: relative;
z-index: 0;
@apply from-blue-500 to-blue-700;
&::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: all 0.4s;
z-index: -1;
@apply rounded bg-gradient-to-r from-red-500 to-red-700;
}
&:hover {
&::before {
opacity: 1;
}
}
}

2
styles/index.scss Normal file
View File

@ -0,0 +1,2 @@
// @use "./markdown.scss" as *;
@use "./docs.scss";

2
styles/vars.scss Normal file
View File

@ -0,0 +1,2 @@
// :root {}
// html.dark{}

@ -1 +0,0 @@
Subproject commit cdc638496bdc730843751b73cf8a6afc8968ab96

18
tsconfig.json Normal file
View File

@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "ESNext",
"jsx": "preserve",
"lib": ["DOM", "ESNext"],
"baseUrl": ".",
"module": "ESNext",
"moduleResolution": "node",
"resolveJsonModule": true,
"strict": true,
"strictNullChecks": true,
"noUnusedLocals": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
},
"exclude": ["dist", "node_modules"]
}

90
valaxy.config.ts Normal file
View File

@ -0,0 +1,90 @@
import type { ThemeConfig } from 'valaxy-theme-gitlink'
import { defineConfig } from 'valaxy'
/**
* User Config
* do not use export const config to avoid defu conflict
*/
export default defineConfig<ThemeConfig>({
siteConfig: {
lang: 'en',
title: 'Charles Click - Vertinext',
url: 'https://www.vertinext.com/',
author: {
avatar: 'https://www.vertinext.com/images/Avatar.jpg',
name: 'Charles Click',
// intro: '希望能成为一个有趣的人。 希望能创造出可以成为他人回忆的事物。',
},
description: 'Portfolio of Charles Click and homepage of vertinext.com.',
social: [
{
name: 'RSS',
link: '/atom.xml',
icon: 'i-ri-rss-line',
color: 'orange',
},
{
name: 'Gitea - roryejinn',
link: 'https://git.vertinext.com/roryejinn',
icon: 'i-ri-git-branch-line',
color: '#12B7F5',
},
{
name: 'GitHub - ccubed',
link: 'https://github.com/ccubed',
icon: 'i-ri-github-line',
color: '#6e5494',
},
{
name: 'Linkedin - Charles Click',
link: 'https://www.linkedin.com/in/charles-click-b078a959/',
icon: 'i-ri-linkedin-line',
color: '#E6162D',
},
{
name: 'Twitch.tv - Teshiko',
link: 'https://www.twitch.tv/teshiko',
icon: 'i-ri-twitch-line',
color: '#007722',
},
{
name: 'Keybase - cclick',
link: 'https://keybase.io/cclick',
icon: 'i-ri-key-line',
color: '#C20C0C',
},
{
name: 'E-Mail',
link: 'mailto:click.charles.c@gmail.com',
icon: 'i-ri-mail-line',
color: '#8E71C1',
},
],
comment: {
enable: false,
},
},
theme: 'gitlink',
themeConfig: {
// colors: {
// primary: 'red',
// },
nav: [
{
text: 'Projects',
link: '/projects',
},
{
text: 'About',
link: '/about',
},
],
footer: {
since: 2024,
},
},
})

5
vite.config.ts Normal file
View File

@ -0,0 +1,5 @@
import { defineConfig } from 'vite'
// import { VitePWA } from 'vite-plugin-pwa'
export default defineConfig({})