diff --git a/.gitignore b/.gitignore index a48cf0d..0d6241c 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/.valaxy/typed-router.d.ts b/.valaxy/typed-router.d.ts new file mode 100644 index 0000000..a16c32a --- /dev/null +++ b/.valaxy/typed-router.d.ts @@ -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, Record>, + '/[...path]': RouteRecordInfo<'/[...path]', '/:path(.*)', { path: ParamValue }, { path: ParamValue }>, + '/about': RouteRecordInfo<'/about', '/about', Record, Record>, + '/projects/': RouteRecordInfo<'/projects/', '/projects', Record, Record>, + } +} diff --git a/archetypes/default.md b/archetypes/default.md deleted file mode 100644 index c6f3fce..0000000 --- a/archetypes/default.md +++ /dev/null @@ -1,5 +0,0 @@ -+++ -title = '{{ replace .File.ContentBaseName "-" " " | title }}' -date = {{ .Date }} -draft = true -+++ diff --git a/content/pages/_index.md b/content/pages/_index.md deleted file mode 100644 index f471f67..0000000 --- a/content/pages/_index.md +++ /dev/null @@ -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. \ No newline at end of file diff --git a/hugo.toml b/hugo.toml deleted file mode 100644 index 8ff3eb5..0000000 --- a/hugo.toml +++ /dev/null @@ -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 = '' - post = '' - name = 'Home' - weight = 1 - [[menu.main]] - identifier = 'projects' - url = '/pages/' - pre = '' - post = '' - name = 'Projects' - weight = 2 - [[menu.main]] - identifier = 'github' - url = 'https://www.github.com/ccubed' - weight = 3 - pre = '' - name = 'Github' - [[menu.main]] - identifier = 'keybase' - url = 'https://keybase.io/cclick' - weight = 4 - pre = '' - name = 'Keybase' - [[menu.main]] - identifier = 'resume' - url = 'https://drive.google.com/file/d/1xIWfZk8b3xa9ygUxurgAyUwHblPE_CrB/view?usp=sharing' - weight = 5 - pre = '' - 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'] \ No newline at end of file diff --git a/static/images/Avatar.jpg b/images/Avatar.jpg similarity index 100% rename from static/images/Avatar.jpg rename to images/Avatar.jpg diff --git a/locales/en.yml b/locales/en.yml new file mode 100644 index 0000000..1f36c64 --- /dev/null +++ b/locales/en.yml @@ -0,0 +1,2 @@ +docs: + view_docs: See Docs diff --git a/locales/zh-CN.yml b/locales/zh-CN.yml new file mode 100644 index 0000000..3e37087 --- /dev/null +++ b/locales/zh-CN.yml @@ -0,0 +1,2 @@ +docs: + view_docs: 查看文档指南 diff --git a/package.json b/package.json new file mode 100644 index 0000000..e0c483f --- /dev/null +++ b/package.json @@ -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" + } +} diff --git a/pages/about.md b/pages/about.md new file mode 100644 index 0000000..92d77a1 --- /dev/null +++ b/pages/about.md @@ -0,0 +1,14 @@ +--- +title: Charles Click - Vertinext +--- + +## About + + + +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) diff --git a/pages/archives/index.md b/pages/archives/index.md new file mode 100644 index 0000000..f0e6d4e --- /dev/null +++ b/pages/archives/index.md @@ -0,0 +1,6 @@ +--- +layout: archives +title: 归档 +nav: false +comment: false +--- diff --git a/pages/projects/index.md b/pages/projects/index.md new file mode 100644 index 0000000..29f1917 --- /dev/null +++ b/pages/projects/index.md @@ -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 +--- diff --git a/.hugo_build.lock b/public/.nojekyll similarity index 100% rename from .hugo_build.lock rename to public/.nojekyll diff --git a/public/_headers b/public/_headers new file mode 100644 index 0000000..9079d85 --- /dev/null +++ b/public/_headers @@ -0,0 +1,3 @@ +/assets/* + cache-control: max-age=31536000 + cache-control: immutable diff --git a/public/favicon.svg b/public/favicon.svg new file mode 100644 index 0000000..c0711d3 --- /dev/null +++ b/public/favicon.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/public/pwa-192x192.png b/public/pwa-192x192.png new file mode 100644 index 0000000..32b4d99 Binary files /dev/null and b/public/pwa-192x192.png differ diff --git a/public/pwa-512x512.png b/public/pwa-512x512.png new file mode 100644 index 0000000..4f368f8 Binary files /dev/null and b/public/pwa-512x512.png differ diff --git a/public/safari-pinned-tab.svg b/public/safari-pinned-tab.svg new file mode 100644 index 0000000..f05d4d9 --- /dev/null +++ b/public/safari-pinned-tab.svg @@ -0,0 +1,41 @@ + + + + +Created by potrace 1.11, written by Peter Selinger 2001-2013 + + + + + diff --git a/shims.d.ts b/shims.d.ts new file mode 100644 index 0000000..95bbebe --- /dev/null +++ b/shims.d.ts @@ -0,0 +1,5 @@ +declare interface Window { + // extend the window + __DEV__: boolean + $pageData: any +} diff --git a/static/Sitemap b/static/Sitemap deleted file mode 100644 index 852fa71..0000000 --- a/static/Sitemap +++ /dev/null @@ -1,2 +0,0 @@ -http://www.vertinext.com/ -http://www.vertinext.com/projects/ diff --git a/static/images/PyMoe_Stars.png b/static/images/PyMoe_Stars.png deleted file mode 100644 index f3ec5f5..0000000 Binary files a/static/images/PyMoe_Stars.png and /dev/null differ diff --git a/static/robots.txt b/static/robots.txt deleted file mode 100644 index 9488d48..0000000 --- a/static/robots.txt +++ /dev/null @@ -1,7 +0,0 @@ -User-agent: Googlebot -Disallow: * -Allow: index.html - -User-agent: * -Disallow: * -Sitemap: http://www.vertinext.com/sitemap.xml diff --git a/styles/README.md b/styles/README.md new file mode 100644 index 0000000..f69985f --- /dev/null +++ b/styles/README.md @@ -0,0 +1,3 @@ +# styles + +You can custom styles in `styles/index.scss`. diff --git a/styles/docs.scss b/styles/docs.scss new file mode 100644 index 0000000..609d885 --- /dev/null +++ b/styles/docs.scss @@ -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; + } + } +} diff --git a/styles/index.scss b/styles/index.scss new file mode 100644 index 0000000..76b8a97 --- /dev/null +++ b/styles/index.scss @@ -0,0 +1,2 @@ +// @use "./markdown.scss" as *; +@use "./docs.scss"; diff --git a/styles/vars.scss b/styles/vars.scss new file mode 100644 index 0000000..91be4f3 --- /dev/null +++ b/styles/vars.scss @@ -0,0 +1,2 @@ +// :root {} +// html.dark{} diff --git a/themes/gokarna b/themes/gokarna deleted file mode 160000 index cdc6384..0000000 --- a/themes/gokarna +++ /dev/null @@ -1 +0,0 @@ -Subproject commit cdc638496bdc730843751b73cf8a6afc8968ab96 diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..892d8c9 --- /dev/null +++ b/tsconfig.json @@ -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"] +} diff --git a/valaxy.config.ts b/valaxy.config.ts new file mode 100644 index 0000000..152656c --- /dev/null +++ b/valaxy.config.ts @@ -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({ + 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, + }, + }, +}) diff --git a/vite.config.ts b/vite.config.ts new file mode 100644 index 0000000..a7e0d03 --- /dev/null +++ b/vite.config.ts @@ -0,0 +1,5 @@ +import { defineConfig } from 'vite' + +// import { VitePWA } from 'vite-plugin-pwa' + +export default defineConfig({})