├── .github └── ISSUE_TEMPLATE │ ├── bug_report_zh.yml │ └── feature_request_zh.yml ├── .gitignore ├── README.md ├── app ├── [[...mdxPath]] │ └── page.tsx ├── api │ ├── oauth2 │ │ ├── callback │ │ │ └── route.ts │ │ └── route.ts │ ├── topics │ │ └── [topicId] │ │ │ └── route.ts │ └── users │ │ └── [username] │ │ └── route.ts ├── globals.css └── layout.tsx ├── components.json ├── components ├── animate-ui │ ├── backgrounds │ │ └── fireworks.tsx │ ├── buttons │ │ ├── copy.tsx │ │ └── flip.tsx │ ├── components │ │ ├── avatar-group.tsx │ │ ├── code-tabs.tsx │ │ ├── scroll-progress.tsx │ │ ├── tabs.tsx │ │ └── tooltip.tsx │ ├── effects │ │ └── motion-highlight.tsx │ ├── icons │ │ ├── gavel.tsx │ │ ├── icon.tsx │ │ ├── refresh-ccw.tsx │ │ ├── search.tsx │ │ ├── send.tsx │ │ └── thumbs-up.tsx │ ├── radix │ │ └── hover-card.tsx │ ├── text │ │ └── sliding-number.tsx │ └── ui-elements │ │ └── management-bar.tsx ├── common │ ├── CardGrid.tsx │ ├── NavbarOAuthButton.tsx │ ├── ThemeWrapper.tsx │ ├── TopicHoverCard.tsx │ ├── UserGroupTooltip.tsx │ ├── UserHoverCard.tsx │ └── card │ │ ├── Gold.tsx │ │ ├── Niello.tsx │ │ └── User.tsx ├── pandora │ ├── HTML.tsx │ └── MemoryCard.tsx └── ui │ ├── avatar.tsx │ ├── button.tsx │ └── card.tsx ├── content ├── AI │ ├── Fuclaude │ │ ├── EveryFuclaude.mdx │ │ ├── Fuclaude.mdx │ │ ├── SessionToken.mdx │ │ └── _meta.ts │ ├── OAIFree │ │ ├── AccessToken.mdx │ │ ├── Chat2APIOAIFree.mdx │ │ ├── DemoOAIFree.mdx │ │ ├── EveryOAIFree.mdx │ │ ├── NewOAIFree.mdx │ │ ├── RefreshToken.mdx │ │ ├── ShareOAIFree.mdx │ │ ├── ShareToken.mdx │ │ └── _meta.ts │ └── _meta.ts ├── Community │ ├── LinuxDoConnect.mdx │ ├── LinuxDoLottery.mdx │ ├── LinuxDoMetaverse.mdx │ ├── LinuxDoWebMail.mdx │ ├── OAIPro.mdx │ └── _meta.ts ├── Encyclopedia │ ├── Cant │ │ ├── AFF.mdx │ │ ├── C.mdx │ │ ├── Che.mdx │ │ ├── Gao7Nian3.mdx │ │ ├── Lao.mdx │ │ ├── VPS.mdx │ │ └── _meta.ts │ ├── User │ │ ├── 6512345.mdx │ │ ├── _meta.ts │ │ ├── user3.mdx │ │ └── vux1jpmal5t41lg.mdx │ └── _meta.ts ├── HttpRW │ ├── ApiHttpRW.mdx │ ├── HttpRW.mdx │ ├── TLSHttpRW.mdx │ └── _meta.ts ├── LinuxDo │ ├── _meta.ts │ ├── administrator.mdx │ ├── culture.mdx │ ├── rules.mdx │ └── trustlevel.mdx ├── _meta.ts ├── honor.mdx ├── index.mdx └── tools.mdx ├── eslint.config.mjs ├── hooks └── useDataCache.ts ├── lib ├── data-cache.ts └── utils.ts ├── mdx-components.js ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.mjs ├── public ├── 2048.png ├── Farrington-7B.ttf ├── demo.png ├── favicon.ico ├── fuclaude.png ├── linuxdo_dark.png ├── linuxdo_light.png ├── linuxdoconnect_1.png ├── linuxdoconnect_2.png ├── linuxdoconnect_3.png ├── logo.png ├── neo.jpg └── oaifree.png ├── tailwind.config.js └── tsconfig.json /.github/ISSUE_TEMPLATE/bug_report_zh.yml: -------------------------------------------------------------------------------- 1 | name: 错误反馈 2 | description: '提交 LINUX DO WIKI 漏洞' 3 | title: '[错误] ' 4 | body: 5 | - type: checkboxes 6 | id: ensure 7 | attributes: 8 | label: Verify steps 9 | description: 为避免重复提交,在提交之前,请勾选以下所有选项以证明您已经阅读并理解了以下要求,否则该 issue 将被关闭。 10 | options: 11 | - label: 我已在标题简短的描述了我所遇到的问题 12 | - label: 我已在 [Issue Tracker](./?q=is%3Aissue) 中寻找过我要提出的问题,但未找到相同的问题 13 | 14 | - type: dropdown 15 | attributes: 16 | label: 操作系统 17 | description: 请提供操作系统类型 18 | multiple: true 19 | options: 20 | - MacOS 21 | - Windows 22 | - Linux 23 | validations: 24 | required: true 25 | - type: dropdown 26 | attributes: 27 | label: 浏览器版本 28 | description: 请提供使用的浏览器版本 29 | multiple: true 30 | options: 31 | - Edge 32 | - Chorme 33 | - Firefox 34 | - 手机系统默认浏览器 35 | - type: input 36 | attributes: 37 | label: 系统及浏览器版本 38 | description: 请提供出现问题的操作系统及使用的浏览器版本 39 | validations: 40 | required: true 41 | - type: textarea 42 | attributes: 43 | label: 描述 44 | description: 请提供错误的详细描述。 45 | validations: 46 | required: true 47 | - type: textarea 48 | attributes: 49 | label: 重现方式 50 | description: 请提供重现错误的步骤 51 | validations: 52 | required: true 53 | - type: textarea 54 | attributes: 55 | label: 社区个人主页 56 | description: 请提供社区个人主页 57 | validations: 58 | required: true 59 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request_zh.yml: -------------------------------------------------------------------------------- 1 | name: 功能请求 2 | description: '请求 LINUX DO WIKI 功能' 3 | title: '[建议] ' 4 | body: 5 | - type: checkboxes 6 | id: ensure 7 | attributes: 8 | label: Verify steps 9 | description: 为避免重复提交,在提交之前,请勾选以下所有选项以证明您已经阅读并理解了以下要求,否则该 issue 将被关闭。 10 | options: 11 | - label: 我已在标题简短的描述了我所需的功能 12 | - label: 我已在 [Issue Tracker](./?q=is%3Aissue) 中寻找过,但未找到我所需的功能 13 | - label: 我未在当前版本找到我所需的功能 14 | - type: textarea 15 | attributes: 16 | label: 描述 17 | description: 请提供所需功能的详细描述 18 | validations: 19 | required: true 20 | - type: textarea 21 | attributes: 22 | label: 社区个人主页 23 | description: 请提供社区个人主页 24 | validations: 25 | required: true 26 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 2 | 3 | # dependencies 4 | /node_modules 5 | /.pnp 6 | .pnp.* 7 | .yarn/* 8 | !.yarn/patches 9 | !.yarn/plugins 10 | !.yarn/releases 11 | !.yarn/versions 12 | 13 | # testing 14 | /coverage 15 | 16 | # next.js 17 | /.next/ 18 | /out/ 19 | 20 | # production 21 | /build 22 | 23 | # misc 24 | .DS_Store 25 | *.pem 26 | 27 | # debug 28 | npm-debug.log* 29 | yarn-debug.log* 30 | yarn-error.log* 31 | .pnpm-debug.log* 32 | 33 | # env files (can opt-in for committing if needed) 34 | .env* 35 | 36 | # vercel 37 | .vercel 38 | 39 | # typescript 40 | *.tsbuildinfo 41 | next-env.d.ts 42 | 43 | _pagefind/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 |
24 | {heading} 25 |
26 | 27 | {/* 三色圆圈标志 - 使用Niello中的SVG样式 */} 28 | 44 | 45 | {/* 芯片 */} 46 |54 | {name} 55 |
56 |84 | {number} 85 |
86 | 87 | {/* 有效期和CVC的容器 */} 88 |EXP
92 |93 | {date} 94 |
95 |CVC
100 |101 | {code} 102 |
103 |27 | {name} 28 |
29 | 30 | {/* 芯片 */} 31 | 48 | 49 | {/* 非接触式支付图标 */} 50 | 67 | 68 | {/* 卡号 */} 69 |70 | {number} 71 |
72 | 73 | {/* 有效期标签和日期 */} 74 |VALID THRU
76 |77 | {date} 78 |
79 |83 | Linux Do Metaverse 84 |
85 | 86 | {/* 支付标志 (三角形三色圆圈) */} 87 | 103 |128 | {code} 129 |
130 |朝闻道,夕可眠矣。
48 |