|
| 1 | +--- |
| 2 | +layout: ../../layouts/CommonPage.astro |
| 3 | +title: '关于' |
| 4 | +description: 'About page for catcodeme' |
| 5 | +info: |
| 6 | + slug: '/about' |
| 7 | + comment: true |
| 8 | + view: true |
| 9 | +--- |
| 10 | +import { Spoiler, Timeline } from 'astro-pure/user' |
| 11 | +import Substats from '@/components/about/Substats.astro' |
| 12 | +import { ToolTag } from '@/components/tools/Tool.astro' |
| 13 | +import ToolSection from '@/components/tools/ToolSection.astro' |
| 14 | + |
| 15 | +## About Me |
| 16 | + |
| 17 | +* Communist / Developer / Learner / Cat owner |
| 18 | +* 改造自己,进而改造世界🚩 <Spoiler>革命无罪,造反有理!</Spoiler> |
| 19 | + |
| 20 | + |
| 21 | +## Tools |
| 22 | + |
| 23 | +Current support tools as follow: |
| 24 | + |
| 25 | +<ToolSection |
| 26 | + class='mb-5' |
| 27 | + title='Workstation (+Operating System)' |
| 28 | + tools={[ |
| 29 | + { |
| 30 | + name: 'MacBook M1 Pro 14"', |
| 31 | + description: 'MacOS Sequoia 15', |
| 32 | + href: 'https://www.apple.com/mac/', |
| 33 | + icon: import('@/assets/tools/apple.svg?raw'), |
| 34 | + tags: [ToolTag.Favorite] |
| 35 | + } |
| 36 | + ]} |
| 37 | +/> |
| 38 | +<ToolSection |
| 39 | + class='mb-5' |
| 40 | + title='Daily Tools' |
| 41 | + tools={[ |
| 42 | + { |
| 43 | + name: 'Microsoft Edge', |
| 44 | + description: 'Browser', |
| 45 | + href: 'https://www.microsoft.com/edge', |
| 46 | + icon: import('@/assets/tools/edge.svg?raw') |
| 47 | + }, |
| 48 | + { |
| 49 | + name: 'Obsidian', |
| 50 | + description: 'Tool for thought', |
| 51 | + href: 'https://obsidian.md/', |
| 52 | + icon: import('@/assets/tools/obsidian.svg?raw'), |
| 53 | + tags: [ToolTag.Free] |
| 54 | + }, |
| 55 | + { |
| 56 | + name: 'Warp', |
| 57 | + description: 'Terimnal', |
| 58 | + href: 'https://www.warp.dev/', |
| 59 | + icon: import('@/assets/tools/warp.svg?raw') |
| 60 | + }, |
| 61 | + { |
| 62 | + name: 'NotebookLM', |
| 63 | + description: 'AI Notebook', |
| 64 | + href: 'https://notebooklm.com/', |
| 65 | + icon: import('@/assets/tools/notebooklm.svg?raw'), |
| 66 | + tags: [ToolTag.Favorite] |
| 67 | + }, |
| 68 | + { |
| 69 | + name: 'Deepseek', |
| 70 | + description: 'AI Assistant', |
| 71 | + href: 'https://deepseek.com/', |
| 72 | + icon: import('@/assets/tools/deepseek.svg?raw') |
| 73 | + }, |
| 74 | + { |
| 75 | + name: 'Utools', |
| 76 | + description: 'Powerful launcher', |
| 77 | + href: 'https://u.tools/', |
| 78 | + icon: import('@/assets/tools/utools.svg?raw'), |
| 79 | + tags: [ToolTag.Favorite] |
| 80 | + }, |
| 81 | + { |
| 82 | + name: 'WeRead', |
| 83 | + description: 'Reading App', |
| 84 | + href: 'https://weread.qq.com/', |
| 85 | + icon: import('@/assets/tools/weread.svg?raw'), |
| 86 | + tags: [ToolTag.Favorite] |
| 87 | + } |
| 88 | + ]} |
| 89 | +/> |
| 90 | +<ToolSection |
| 91 | + class='mb-5' |
| 92 | + title='Development' |
| 93 | + tools={[ |
| 94 | + { |
| 95 | + name: 'VS Code', |
| 96 | + description: 'powerful code editor', |
| 97 | + href: 'https://code.visualstudio.com/', |
| 98 | + icon: import('@/assets/tools/vscode.svg?raw') |
| 99 | + }, |
| 100 | + { |
| 101 | + name: 'Intellij IDEA', |
| 102 | + description: 'Best Java IDE', |
| 103 | + href: 'https://www.jetbrains.com/idea/', |
| 104 | + icon: import('@/assets/tools/idea.svg?raw') |
| 105 | + }, |
| 106 | + { |
| 107 | + name: 'GitHub Copilot', |
| 108 | + description: 'AI Coding Assistant', |
| 109 | + href: 'https://github.com/features/copilot', |
| 110 | + icon: import('@/assets/tools/githubcopilot.svg?raw'), |
| 111 | + tags: [ToolTag.Favorite] |
| 112 | + }, |
| 113 | + { |
| 114 | + name: 'Gemini Pro', |
| 115 | + description: 'AI Coding Assistant', |
| 116 | + href: 'https://ai.google.dev/gemini', |
| 117 | + icon: import('@/assets/tools/gemini.svg?raw') |
| 118 | + } |
| 119 | + ]} |
| 120 | +/> |
| 121 | + |
| 122 | +## Social Networks |
| 123 | + |
| 124 | +<Substats |
| 125 | + stats={[ |
| 126 | + { |
| 127 | + platform: 'GitHub', |
| 128 | + icon: 'github', |
| 129 | + link: 'https://github.com/catcodeme', |
| 130 | + text: 'followers', |
| 131 | + api: 'github/catcodeme' |
| 132 | + }, |
| 133 | + { |
| 134 | + platform: 'Bilibili', |
| 135 | + icon: 'bilibili', |
| 136 | + link: 'https://space.bilibili.com/19080963', |
| 137 | + text: 'fans', |
| 138 | + // api: 'bilibili/19080963', |
| 139 | + color: '#fe7398', |
| 140 | + count: 18 |
| 141 | + } |
| 142 | + ]} |
| 143 | +/> |
| 144 | + |
| 145 | +## About Blog |
| 146 | + |
| 147 | +Website history: |
| 148 | + |
| 149 | +<Timeline |
| 150 | + events={[ |
| 151 | + { |
| 152 | + date: '2025-09-17', |
| 153 | + content: '迁移到Tencent EdgeOne CDN' |
| 154 | + }, |
| 155 | + { |
| 156 | + date: '2025-09-16', |
| 157 | + content: '添加备案号' |
| 158 | + }, |
| 159 | + { |
| 160 | + date: '2025-07-11', |
| 161 | + content: |
| 162 | + 'Website refactored from <a href="https://github.com/srleom/astro-theme-resume" target="_blank">Astro Theme Pure</a>' |
| 163 | + } |
| 164 | + ]} |
| 165 | +/> |
| 166 | + |
| 167 | +The smooth operation and personalized customization of website also rely on the resources and |
| 168 | +technical support provided by the following excellent projects/service providers: |
| 169 | + |
| 170 | +* Framework & Theme: [Astro](https://astro.build/) + [Astro Theme Pure](https://github.com/cworld1/astro-theme-pure) |
| 171 | +* Site hosting: [EdgeOne Pages(Tencent)](https://edgeone.cloud.tencent.com) |
| 172 | +* CI/CD: [EdgeOne](https://edgeone.cloud.tencent.com) |
| 173 | +* Resources speedup: [EdgeOne](https://edgeone.cloud.tencent.com) |
| 174 | +* Comment system: [Waline](https://waline.js.org) |
| 175 | +* TotalPV: [Vercount](https://github.com/EvanNotFound/vercount) |
| 176 | +* PagePV & Comment: [Waline](https://waline.js.org/next/guide/features/pageview.html) |
| 177 | +* Icons & OgImage: from [Iconify](https://iconify.design/) & [lobehub](https://lobehub.com/icons), some icons from `GPT-4o` |
| 178 | +* Fonts: from [ZSFT](https://fonts.zeoseven.com/items/89/), current font is `JyunsaiKaai 芫茜雅楷`, 标题字体是 `ZSFT-e` |
0 commit comments