├── .env.sample ├── .eslintrc.json ├── .github └── workflows │ ├── content-check.yml │ ├── deploy.yml │ └── sync-uuid.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc ├── AGENT.md ├── CONTRIBUTING.md ├── LICENSE ├── LLM.md ├── README.en.md ├── README.md ├── SECURITY.md ├── app ├── api │ ├── auth │ │ └── [...nextauth] │ │ │ ├── README.md │ │ │ └── route.ts │ ├── chat │ │ └── route.ts │ ├── docs-tree │ │ └── route.ts │ └── indexnow │ │ └── route.ts ├── components │ ├── ActivityTicker.tsx │ ├── BrandMark.tsx │ ├── Community.tsx │ ├── Contribute.module.css │ ├── Contribute.tsx │ ├── Contributors.tsx │ ├── DocsAssistant.tsx │ ├── EditOnGithub.tsx │ ├── Features.tsx │ ├── Footer.tsx │ ├── GiscusComments.tsx │ ├── Header.tsx │ ├── Hero.tsx │ ├── HoverCard.tsx │ ├── LicenseNotice.tsx │ ├── RouteFlags.tsx │ ├── SignInButton.tsx │ ├── ThemeProvider.tsx │ ├── ThemeToggle.tsx │ ├── UserMenu.tsx │ ├── ZoteroFeed.tsx │ ├── ZoteroFeedLazy.tsx │ ├── assistant-ui │ │ ├── SettingsButton.tsx │ │ ├── SettingsDialog.tsx │ │ ├── assistant-modal.tsx │ │ ├── attachment.tsx │ │ ├── markdown-text.tsx │ │ ├── thread.tsx │ │ ├── tool-fallback.tsx │ │ └── tooltip-icon-button.tsx │ ├── icons │ │ └── Github.tsx │ └── ui │ │ ├── avatar.tsx │ │ ├── button.tsx │ │ ├── checkbox.tsx │ │ ├── dialog.tsx │ │ ├── label.tsx │ │ ├── radio-group.tsx │ │ └── tooltip.tsx ├── docs │ ├── CommunityShare │ │ ├── Amazing-AI-Tools │ │ │ ├── index.md │ │ │ └── perplexity-comet.md │ │ ├── Geek │ │ │ ├── CommonUsedMarkdown.assets │ │ │ │ └── testpic1.jpg │ │ │ ├── CommonUsedMarkdown.md │ │ │ ├── Katex │ │ │ │ ├── Seb1.mdx │ │ │ │ ├── Seb2.mdx │ │ │ │ └── index.mdx │ │ │ ├── cloudflare-r2-sharex-free-image-hosting.mdx │ │ │ ├── git101.mdx │ │ │ ├── index.mdx │ │ │ ├── picturecdn.mdx │ │ │ ├── raspberry-guide.md │ │ │ └── swanlab.mdx │ │ ├── Language │ │ │ └── pte-intro.md │ │ ├── Leetcode │ │ │ ├── 1004_translated.md │ │ │ ├── 1234. 替换子串得到平衡字符串_translated.md │ │ │ ├── 1653. 使字符串平衡的最少删除次数_translated.md │ │ │ ├── 1828统计一个圆中点的数目_translated.md │ │ │ ├── 2241. Design an ATM Machine.md │ │ │ ├── 2270. Number of Ways to Split Array.md │ │ │ ├── 2293_translated.md │ │ │ ├── 2299强密码检验器II_translated.md │ │ │ ├── 2309兼具大小写的最好英文字母_translated.md │ │ │ ├── 2335. 装满杯子需要的最短总时长_translated.md │ │ │ ├── 2679.矩阵中的和_translated.md │ │ │ ├── 345. 反转字符串中的元音字母_translated.md │ │ │ ├── 46.全排列.md │ │ │ ├── 538.把二叉搜索树转换为累加树_translated.md │ │ │ ├── 80_translated.md │ │ │ ├── 9021_TUT_3_25T1.md │ │ │ ├── 93复原Ip地址.md │ │ │ ├── Counting Stars-Inter-Uni Programming Contest.md │ │ │ ├── [121]买卖股票的最佳时期_translated.md │ │ │ ├── [1333]餐厅过滤器_translated.md │ │ │ ├── [213]打家劫舍 II_translated.md │ │ │ ├── brief_alternate 作业帮忙_translated.md │ │ │ └── 剑指 Offer II 021. 删除链表的倒数第 n 个结点_translated.md │ │ ├── Life │ │ │ └── unsw-student-benefit.md │ │ ├── MentalHealth │ │ │ ├── burnout-guide.mdx │ │ │ └── index.mdx │ │ ├── Personal-Study-Notes │ │ │ └── Reinforcement-Learning │ │ │ │ └── ppo.md │ │ ├── RAG │ │ │ ├── context_engineering_intro.md │ │ │ ├── embedding.mdx │ │ │ └── rag.mdx │ │ └── index.mdx │ ├── [...slug] │ │ └── page.tsx │ ├── ai │ │ ├── Introduction-of-Multi-agents-system │ │ │ └── introduction_of_multi-agents_system.md │ │ ├── MoE │ │ │ ├── MOE-intro.assets │ │ │ │ ├── img-20250920112106486.png │ │ │ │ ├── img-20250920112106518.png │ │ │ │ ├── img-20250920112106554.png │ │ │ │ └── img-20250920112106588.png │ │ │ ├── MOE-intro.md │ │ │ └── moe-update.md │ │ ├── Multi-agents-system-on-Code-Translation │ │ │ └── code-translation-intro.mdx │ │ ├── agents-todo │ │ │ ├── agent-ecosystem.mdx │ │ │ └── cs294-194-196 │ │ │ │ └── index.mdx │ │ ├── ai-math-basics │ │ │ ├── calculus-optimization │ │ │ │ └── index.mdx │ │ │ ├── information-theory │ │ │ │ └── index.mdx │ │ │ ├── linear-algebra │ │ │ │ ├── index.mdx │ │ │ │ └── resources │ │ │ │ │ └── index.mdx │ │ │ ├── math-foundations.mdx │ │ │ ├── math_books.md │ │ │ ├── numerical-analysis │ │ │ │ └── index.mdx │ │ │ └── probability-statistics │ │ │ │ ├── index.mdx │ │ │ │ └── resources │ │ │ │ └── index.mdx │ │ ├── compute-platforms │ │ │ ├── compute-platforms-handbook.mdx │ │ │ └── model-compuational-resource-demand.md │ │ ├── foundation-models │ │ │ ├── datasets │ │ │ │ └── index.mdx │ │ │ ├── deploy-infer │ │ │ │ └── index.mdx │ │ │ ├── evaluation │ │ │ │ └── index.mdx │ │ │ ├── finetune │ │ │ │ └── index.mdx │ │ │ ├── foundation-models-lifecycle.mdx │ │ │ ├── qkv-interview │ │ │ │ └── index.mdx │ │ │ └── training │ │ │ │ └── index.mdx │ │ ├── generative-todo │ │ │ └── generative-models-plan.mdx │ │ ├── index.mdx │ │ ├── llm-basics │ │ │ ├── courses │ │ │ │ └── index.mdx │ │ │ ├── cuda │ │ │ │ └── index.mdx │ │ │ ├── deep-learning │ │ │ │ ├── d2l │ │ │ │ │ └── index.mdx │ │ │ │ ├── index.mdx │ │ │ │ ├── misc │ │ │ │ │ └── index.mdx │ │ │ │ └── nlp │ │ │ │ │ └── index.mdx │ │ │ ├── embeddings │ │ │ │ ├── index.mdx │ │ │ │ └── qwen3-embedding │ │ │ │ │ └── index.mdx │ │ │ ├── llm-foundations.mdx │ │ │ ├── pytorch │ │ │ │ ├── index.assets │ │ │ │ │ ├── word-img-01.png │ │ │ │ │ └── word-img-02.png │ │ │ │ └── index.mdx │ │ │ └── transformer │ │ │ │ ├── ai-by-hand │ │ │ │ └── index.mdx │ │ │ │ └── index.mdx │ │ ├── methodology │ │ │ └── research-methodology.mdx │ │ ├── misc-tools │ │ │ └── learning-toolkit.mdx │ │ ├── model-datasets-platforms │ │ │ └── platform-and-datasets.mdx │ │ ├── multimodal │ │ │ ├── RQVAE │ │ │ │ ├── index.assets │ │ │ │ │ └── 2.png │ │ │ │ └── index.mdx │ │ │ ├── VAE │ │ │ │ ├── index.assets │ │ │ │ │ ├── v2-61521005c5a8213b60bf362f9c25c22f_1440w.png │ │ │ │ │ ├── v2-643d5ffb4aa480808bc9c82a55450a80_r.png │ │ │ │ │ ├── v2-92a9061e7079089b75c37650943c6f25_1440w.png │ │ │ │ │ ├── v2-97e09bd511a1fb0c3240fa717ce235d2_1440w.png │ │ │ │ │ ├── v2-dda0855d2d3e00e786956a827b1c5f26_1440w.png │ │ │ │ │ └── v2-df06f2d1471615dae76b1e09488091b5_r.png │ │ │ │ └── index.mdx │ │ │ ├── VQVAE │ │ │ │ ├── index.assets │ │ │ │ │ └── 1.png │ │ │ │ └── index.mdx │ │ │ ├── courses │ │ │ │ └── index.mdx │ │ │ ├── llava │ │ │ │ ├── index.assets │ │ │ │ │ ├── word-img-03.png │ │ │ │ │ ├── word-img-04.png │ │ │ │ │ └── word-img-05.png │ │ │ │ └── index.mdx │ │ │ ├── mllm │ │ │ │ └── index.mdx │ │ │ ├── multimodal-overview.mdx │ │ │ ├── qwenvl │ │ │ │ └── index.mdx │ │ │ ├── video-mm-todo │ │ │ │ └── index.mdx │ │ │ └── vit │ │ │ │ └── index.mdx │ │ ├── recommender-systems │ │ │ ├── recommender-roadmap.mdx │ │ │ ├── wangshusen_recommend_crossing.mdx │ │ │ ├── wangshusen_recommend_note │ │ │ │ ├── images │ │ │ │ │ ├── 3-1-1.png │ │ │ │ │ ├── 3-1-2.png │ │ │ │ │ ├── 3-2-1.png │ │ │ │ │ ├── 3-2-2.png │ │ │ │ │ ├── 3-2-3.png │ │ │ │ │ ├── 3-4-1.png │ │ │ │ │ ├── 3-4-2.png │ │ │ │ │ ├── 3-4-3.png │ │ │ │ │ ├── 3-5-1.png │ │ │ │ │ ├── 3-6-1.png │ │ │ │ │ ├── 3-6-2.png │ │ │ │ │ ├── 3-6-3.png │ │ │ │ │ ├── 3-6-4.png │ │ │ │ │ ├── 4-1-1.png │ │ │ │ │ ├── 4-2-1.png │ │ │ │ │ ├── 4-2-2.png │ │ │ │ │ ├── 4-2-3.png │ │ │ │ │ ├── 4-2-4.png │ │ │ │ │ ├── 4-2-5.png │ │ │ │ │ ├── 4-2-6.png │ │ │ │ │ ├── 4-3-1.png │ │ │ │ │ ├── 4-3-2.png │ │ │ │ │ ├── 4-4-1.png │ │ │ │ │ ├── 4-4-2.png │ │ │ │ │ ├── 4-4-3.png │ │ │ │ │ ├── 4-4-4.png │ │ │ │ │ ├── 4-4-5.png │ │ │ │ │ ├── 4-4-6.png │ │ │ │ │ ├── 4-4-7.png │ │ │ │ │ ├── 5-1-1.png │ │ │ │ │ ├── 5-1-2.png │ │ │ │ │ ├── 5-2-1.png │ │ │ │ │ ├── 5-2-2.png │ │ │ │ │ ├── 5-3-1.png │ │ │ │ │ ├── 6-1-1.png │ │ │ │ │ ├── 6-1-2.png │ │ │ │ │ ├── 6-1-3.png │ │ │ │ │ ├── 6-1-4.png │ │ │ │ │ ├── 6-1-5.png │ │ │ │ │ ├── 6-2-1.png │ │ │ │ │ ├── 6-2-2.png │ │ │ │ │ ├── 6-4-1.png │ │ │ │ │ ├── 6-4-2.png │ │ │ │ │ ├── 6-4-3.png │ │ │ │ │ ├── 6-4-4.png │ │ │ │ │ ├── 6-4-5.png │ │ │ │ │ ├── 6-5-1.png │ │ │ │ │ ├── 7-3-1.png │ │ │ │ │ ├── 7-3-2.png │ │ │ │ │ ├── 7-3-3.png │ │ │ │ │ ├── 7-4-1.png │ │ │ │ │ ├── 7-4-2.png │ │ │ │ │ ├── 7-4-3.png │ │ │ │ │ ├── 7-4-4.png │ │ │ │ │ ├── 7-5-1.png │ │ │ │ │ ├── 7-5-2.png │ │ │ │ │ ├── 7-6-1.png │ │ │ │ │ ├── 7-6-2.png │ │ │ │ │ ├── 7-6-3.png │ │ │ │ │ ├── 7-6-4.png │ │ │ │ │ ├── 7-6-5.png │ │ │ │ │ ├── 8-2-1.png │ │ │ │ │ ├── 8-3-1.png │ │ │ │ │ ├── 8-3-2.png │ │ │ │ │ ├── 8-3-3.png │ │ │ │ │ ├── 8-3-4.png │ │ │ │ │ └── 8-3-5.png │ │ │ │ ├── wangshusen_recommend_note_retrieval.assets │ │ │ │ │ ├── 2-10-1.png │ │ │ │ │ ├── 2-10-2.png │ │ │ │ │ ├── 2-10-3.png │ │ │ │ │ ├── 2-10-4.png │ │ │ │ │ ├── 2-10-5.png │ │ │ │ │ ├── 2-10-6.png │ │ │ │ │ ├── 2-10-7.png │ │ │ │ │ ├── 2-10-8.png │ │ │ │ │ ├── 2-12-1.png │ │ │ │ │ ├── 2-12-2.png │ │ │ │ │ ├── 2-12-3.png │ │ │ │ │ ├── 2-4-1.png │ │ │ │ │ ├── 2-5-1.png │ │ │ │ │ ├── 2-5-2.png │ │ │ │ │ ├── 2-5-3.png │ │ │ │ │ ├── 2-5-4.png │ │ │ │ │ ├── 2-5-5.png │ │ │ │ │ ├── 2-6-1.png │ │ │ │ │ ├── 2-6-2.png │ │ │ │ │ ├── 2-6-3.png │ │ │ │ │ ├── 2-6-4.png │ │ │ │ │ ├── 2-6-5.png │ │ │ │ │ ├── 2-6-6.png │ │ │ │ │ ├── 2-7-1.png │ │ │ │ │ ├── 2-7-2.png │ │ │ │ │ ├── 2-7-3.png │ │ │ │ │ ├── 2-7-4.png │ │ │ │ │ ├── 2-8-1.png │ │ │ │ │ ├── 2-8-2.png │ │ │ │ │ ├── 2-9-1.png │ │ │ │ │ ├── 2-9-2.png │ │ │ │ │ ├── 2-9-3.png │ │ │ │ │ └── 2-9-4.png │ │ │ │ └── wangshusen_recommend_note_retrieval.mdx │ │ │ ├── wangshusen_recommend_note_coldstart.mdx │ │ │ ├── wangshusen_recommend_note_improvement.mdx │ │ │ ├── wangshusen_recommend_note_rank.mdx │ │ │ └── wangshusen_recommend_note_rerank.mdx │ │ └── reinforcement-learning │ │ │ └── reinforcement-learning-overview.mdx │ ├── all-projects │ │ ├── ai-town.mdx │ │ └── multimodal-rl.mdx │ ├── computer-science │ │ ├── cpp_backend │ │ │ ├── Handwritten_pool_components │ │ │ │ ├── 1_Handwritten_threadpool.md │ │ │ │ └── 2_Handwritten_mempool1.md │ │ │ ├── easy_compile │ │ │ │ ├── 1_cpp_libs.md │ │ │ │ ├── 2_base_gcc.md │ │ │ │ ├── 3_Make.md │ │ │ │ ├── 4_CMake.md │ │ │ │ └── 5_vcpkg.md │ │ │ └── mempool_simple.mdx │ │ ├── data-structures │ │ │ ├── array │ │ │ │ ├── 01-static-array.mdx │ │ │ │ ├── 02-dynamic-array.mdx │ │ │ │ └── index.mdx │ │ │ ├── index.mdx │ │ │ └── linked-list │ │ │ │ ├── 01-singly-linked-list.mdx │ │ │ │ └── index.mdx │ │ ├── frontend │ │ │ ├── frontend-learning │ │ │ │ └── index.mdx │ │ │ └── index.mdx │ │ └── index.mdx │ ├── jobs │ │ ├── event-keynote │ │ │ ├── coffee-chat.md │ │ │ └── event-takeway.md │ │ └── interview-prep │ │ │ ├── bq.md │ │ │ ├── interview-tips.mdx │ │ │ ├── pre-interview.md │ │ │ └── preparations-to-get-an-offer-as-a-student.mdx │ └── layout.tsx ├── fonts │ ├── GeistMonoVF.woff │ └── GeistVF.woff ├── globals.css ├── hooks │ └── useAssistantSettings.tsx ├── layout.tsx ├── page.tsx ├── search.json │ └── route.ts ├── sitemap.ts └── types │ └── event.ts ├── auth.config.ts ├── auth.ts ├── components.json ├── components └── ui │ ├── badge.tsx │ ├── button.tsx │ ├── card.tsx │ ├── command.tsx │ ├── dialog.tsx │ ├── input.tsx │ └── label.tsx ├── data ├── README.md └── event.json ├── eslint.config.mjs ├── generated ├── README.md └── doc-contributors.json ├── i18n.ts ├── lib ├── ai │ ├── models.ts │ ├── prompt.ts │ └── providers │ │ ├── gemini.ts │ │ ├── intern.ts │ │ └── openai.ts ├── contributors.ts ├── github.ts ├── layout.shared.tsx ├── source.ts └── utils.ts ├── mdx-components.tsx ├── middleware.ts ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── postcss.config.mjs ├── prisma └── schema.prisma ├── public ├── 5b6ef14a7406496b8a2ce8ab17820b34.txt ├── cloud_1.png ├── cloud_2.png ├── event │ ├── coffeeChat.png │ └── mockInterview.png ├── git_assets │ ├── GIT_GUIDE.md │ ├── after_fork.png │ ├── branch-all.png │ ├── button.png │ ├── file.png │ ├── fork1.jpg │ ├── fork1.png │ ├── fork2.png │ ├── need_fork.png │ ├── pr.png │ ├── pr2.png │ ├── propse_changes.png │ ├── setting.png │ ├── setting2.png │ └── succuess.png ├── logo │ ├── favico-apple.png │ ├── logoInDark.svg │ └── logoInLight.svg ├── mascot.png ├── mascot.svg ├── mascot.webp ├── og │ └── cover.png ├── readme_docs_structure.png ├── robots.txt ├── shanghaiailab.png └── site.webmanifest ├── scripts ├── backfill-contributors.mjs ├── check-images.mjs ├── compute-svg-bbox.js ├── escape-angles.mjs ├── move-doc-images.mjs ├── test.mjs └── uuid.mjs ├── source.config.ts ├── sql └── nextauth_schema.sql ├── tests └── activity-events.test.ts ├── tsconfig.json └── vitest.config.mts /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/.env.sample -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/content-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/.github/workflows/content-check.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/sync-uuid.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/.github/workflows/sync-uuid.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /AGENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/AGENT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/LICENSE -------------------------------------------------------------------------------- /LLM.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/LLM.md -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/api/auth/[...nextauth]/README.md -------------------------------------------------------------------------------- /app/api/auth/[...nextauth]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/api/auth/[...nextauth]/route.ts -------------------------------------------------------------------------------- /app/api/chat/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/api/chat/route.ts -------------------------------------------------------------------------------- /app/api/docs-tree/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/api/docs-tree/route.ts -------------------------------------------------------------------------------- /app/api/indexnow/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/api/indexnow/route.ts -------------------------------------------------------------------------------- /app/components/ActivityTicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/ActivityTicker.tsx -------------------------------------------------------------------------------- /app/components/BrandMark.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/BrandMark.tsx -------------------------------------------------------------------------------- /app/components/Community.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/Community.tsx -------------------------------------------------------------------------------- /app/components/Contribute.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/Contribute.module.css -------------------------------------------------------------------------------- /app/components/Contribute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/Contribute.tsx -------------------------------------------------------------------------------- /app/components/Contributors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/Contributors.tsx -------------------------------------------------------------------------------- /app/components/DocsAssistant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/DocsAssistant.tsx -------------------------------------------------------------------------------- /app/components/EditOnGithub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/EditOnGithub.tsx -------------------------------------------------------------------------------- /app/components/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/Features.tsx -------------------------------------------------------------------------------- /app/components/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/Footer.tsx -------------------------------------------------------------------------------- /app/components/GiscusComments.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/GiscusComments.tsx -------------------------------------------------------------------------------- /app/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/Header.tsx -------------------------------------------------------------------------------- /app/components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/Hero.tsx -------------------------------------------------------------------------------- /app/components/HoverCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/HoverCard.tsx -------------------------------------------------------------------------------- /app/components/LicenseNotice.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/LicenseNotice.tsx -------------------------------------------------------------------------------- /app/components/RouteFlags.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/RouteFlags.tsx -------------------------------------------------------------------------------- /app/components/SignInButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/SignInButton.tsx -------------------------------------------------------------------------------- /app/components/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/ThemeProvider.tsx -------------------------------------------------------------------------------- /app/components/ThemeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/ThemeToggle.tsx -------------------------------------------------------------------------------- /app/components/UserMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/UserMenu.tsx -------------------------------------------------------------------------------- /app/components/ZoteroFeed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/ZoteroFeed.tsx -------------------------------------------------------------------------------- /app/components/ZoteroFeedLazy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/ZoteroFeedLazy.tsx -------------------------------------------------------------------------------- /app/components/assistant-ui/SettingsButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/assistant-ui/SettingsButton.tsx -------------------------------------------------------------------------------- /app/components/assistant-ui/SettingsDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/assistant-ui/SettingsDialog.tsx -------------------------------------------------------------------------------- /app/components/assistant-ui/assistant-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/assistant-ui/assistant-modal.tsx -------------------------------------------------------------------------------- /app/components/assistant-ui/attachment.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/assistant-ui/attachment.tsx -------------------------------------------------------------------------------- /app/components/assistant-ui/markdown-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/assistant-ui/markdown-text.tsx -------------------------------------------------------------------------------- /app/components/assistant-ui/thread.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/assistant-ui/thread.tsx -------------------------------------------------------------------------------- /app/components/assistant-ui/tool-fallback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/assistant-ui/tool-fallback.tsx -------------------------------------------------------------------------------- /app/components/assistant-ui/tooltip-icon-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/assistant-ui/tooltip-icon-button.tsx -------------------------------------------------------------------------------- /app/components/icons/Github.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/icons/Github.tsx -------------------------------------------------------------------------------- /app/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/ui/avatar.tsx -------------------------------------------------------------------------------- /app/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/ui/button.tsx -------------------------------------------------------------------------------- /app/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /app/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/ui/dialog.tsx -------------------------------------------------------------------------------- /app/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/ui/label.tsx -------------------------------------------------------------------------------- /app/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /app/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /app/docs/CommunityShare/Amazing-AI-Tools/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Amazing-AI-Tools/index.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Amazing-AI-Tools/perplexity-comet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Amazing-AI-Tools/perplexity-comet.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Geek/CommonUsedMarkdown.assets/testpic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Geek/CommonUsedMarkdown.assets/testpic1.jpg -------------------------------------------------------------------------------- /app/docs/CommunityShare/Geek/CommonUsedMarkdown.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Geek/CommonUsedMarkdown.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Geek/Katex/Seb1.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Geek/Katex/Seb1.mdx -------------------------------------------------------------------------------- /app/docs/CommunityShare/Geek/Katex/Seb2.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Geek/Katex/Seb2.mdx -------------------------------------------------------------------------------- /app/docs/CommunityShare/Geek/Katex/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Geek/Katex/index.mdx -------------------------------------------------------------------------------- /app/docs/CommunityShare/Geek/cloudflare-r2-sharex-free-image-hosting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Geek/cloudflare-r2-sharex-free-image-hosting.mdx -------------------------------------------------------------------------------- /app/docs/CommunityShare/Geek/git101.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Geek/git101.mdx -------------------------------------------------------------------------------- /app/docs/CommunityShare/Geek/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Geek/index.mdx -------------------------------------------------------------------------------- /app/docs/CommunityShare/Geek/picturecdn.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Geek/picturecdn.mdx -------------------------------------------------------------------------------- /app/docs/CommunityShare/Geek/raspberry-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Geek/raspberry-guide.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Geek/swanlab.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Geek/swanlab.mdx -------------------------------------------------------------------------------- /app/docs/CommunityShare/Language/pte-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Language/pte-intro.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/1004_translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/1004_translated.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/1234. 替换子串得到平衡字符串_translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/1234. 替换子串得到平衡字符串_translated.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/1653. 使字符串平衡的最少删除次数_translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/1653. 使字符串平衡的最少删除次数_translated.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/1828统计一个圆中点的数目_translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/1828统计一个圆中点的数目_translated.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/2241. Design an ATM Machine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/2241. Design an ATM Machine.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/2270. Number of Ways to Split Array.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/2270. Number of Ways to Split Array.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/2293_translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/2293_translated.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/2299强密码检验器II_translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/2299强密码检验器II_translated.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/2309兼具大小写的最好英文字母_translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/2309兼具大小写的最好英文字母_translated.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/2335. 装满杯子需要的最短总时长_translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/2335. 装满杯子需要的最短总时长_translated.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/2679.矩阵中的和_translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/2679.矩阵中的和_translated.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/345. 反转字符串中的元音字母_translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/345. 反转字符串中的元音字母_translated.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/46.全排列.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/46.全排列.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/538.把二叉搜索树转换为累加树_translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/538.把二叉搜索树转换为累加树_translated.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/80_translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/80_translated.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/9021_TUT_3_25T1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/9021_TUT_3_25T1.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/93复原Ip地址.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/93复原Ip地址.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/Counting Stars-Inter-Uni Programming Contest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/Counting Stars-Inter-Uni Programming Contest.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/[121]买卖股票的最佳时期_translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/[121]买卖股票的最佳时期_translated.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/[1333]餐厅过滤器_translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/[1333]餐厅过滤器_translated.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/[213]打家劫舍 II_translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/[213]打家劫舍 II_translated.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/brief_alternate 作业帮忙_translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/brief_alternate 作业帮忙_translated.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Leetcode/剑指 Offer II 021. 删除链表的倒数第 n 个结点_translated.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Leetcode/剑指 Offer II 021. 删除链表的倒数第 n 个结点_translated.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/Life/unsw-student-benefit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Life/unsw-student-benefit.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/MentalHealth/burnout-guide.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/MentalHealth/burnout-guide.mdx -------------------------------------------------------------------------------- /app/docs/CommunityShare/MentalHealth/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/MentalHealth/index.mdx -------------------------------------------------------------------------------- /app/docs/CommunityShare/Personal-Study-Notes/Reinforcement-Learning/ppo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/Personal-Study-Notes/Reinforcement-Learning/ppo.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/RAG/context_engineering_intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/RAG/context_engineering_intro.md -------------------------------------------------------------------------------- /app/docs/CommunityShare/RAG/embedding.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/RAG/embedding.mdx -------------------------------------------------------------------------------- /app/docs/CommunityShare/RAG/rag.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/RAG/rag.mdx -------------------------------------------------------------------------------- /app/docs/CommunityShare/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/CommunityShare/index.mdx -------------------------------------------------------------------------------- /app/docs/[...slug]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/[...slug]/page.tsx -------------------------------------------------------------------------------- /app/docs/ai/Introduction-of-Multi-agents-system/introduction_of_multi-agents_system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/Introduction-of-Multi-agents-system/introduction_of_multi-agents_system.md -------------------------------------------------------------------------------- /app/docs/ai/MoE/MOE-intro.assets/img-20250920112106486.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/MoE/MOE-intro.assets/img-20250920112106486.png -------------------------------------------------------------------------------- /app/docs/ai/MoE/MOE-intro.assets/img-20250920112106518.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/MoE/MOE-intro.assets/img-20250920112106518.png -------------------------------------------------------------------------------- /app/docs/ai/MoE/MOE-intro.assets/img-20250920112106554.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/MoE/MOE-intro.assets/img-20250920112106554.png -------------------------------------------------------------------------------- /app/docs/ai/MoE/MOE-intro.assets/img-20250920112106588.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/MoE/MOE-intro.assets/img-20250920112106588.png -------------------------------------------------------------------------------- /app/docs/ai/MoE/MOE-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/MoE/MOE-intro.md -------------------------------------------------------------------------------- /app/docs/ai/MoE/moe-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/MoE/moe-update.md -------------------------------------------------------------------------------- /app/docs/ai/Multi-agents-system-on-Code-Translation/code-translation-intro.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/Multi-agents-system-on-Code-Translation/code-translation-intro.mdx -------------------------------------------------------------------------------- /app/docs/ai/agents-todo/agent-ecosystem.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/agents-todo/agent-ecosystem.mdx -------------------------------------------------------------------------------- /app/docs/ai/agents-todo/cs294-194-196/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/agents-todo/cs294-194-196/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/ai-math-basics/calculus-optimization/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/ai-math-basics/calculus-optimization/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/ai-math-basics/information-theory/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/ai-math-basics/information-theory/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/ai-math-basics/linear-algebra/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/ai-math-basics/linear-algebra/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/ai-math-basics/linear-algebra/resources/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/ai-math-basics/linear-algebra/resources/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/ai-math-basics/math-foundations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/ai-math-basics/math-foundations.mdx -------------------------------------------------------------------------------- /app/docs/ai/ai-math-basics/math_books.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/ai-math-basics/math_books.md -------------------------------------------------------------------------------- /app/docs/ai/ai-math-basics/numerical-analysis/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/ai-math-basics/numerical-analysis/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/ai-math-basics/probability-statistics/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/ai-math-basics/probability-statistics/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/ai-math-basics/probability-statistics/resources/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/ai-math-basics/probability-statistics/resources/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/compute-platforms/compute-platforms-handbook.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/compute-platforms/compute-platforms-handbook.mdx -------------------------------------------------------------------------------- /app/docs/ai/compute-platforms/model-compuational-resource-demand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/compute-platforms/model-compuational-resource-demand.md -------------------------------------------------------------------------------- /app/docs/ai/foundation-models/datasets/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/foundation-models/datasets/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/foundation-models/deploy-infer/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/foundation-models/deploy-infer/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/foundation-models/evaluation/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/foundation-models/evaluation/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/foundation-models/finetune/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/foundation-models/finetune/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/foundation-models/foundation-models-lifecycle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/foundation-models/foundation-models-lifecycle.mdx -------------------------------------------------------------------------------- /app/docs/ai/foundation-models/qkv-interview/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/foundation-models/qkv-interview/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/foundation-models/training/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/foundation-models/training/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/generative-todo/generative-models-plan.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/generative-todo/generative-models-plan.mdx -------------------------------------------------------------------------------- /app/docs/ai/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/llm-basics/courses/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/llm-basics/courses/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/llm-basics/cuda/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/llm-basics/cuda/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/llm-basics/deep-learning/d2l/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/llm-basics/deep-learning/d2l/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/llm-basics/deep-learning/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/llm-basics/deep-learning/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/llm-basics/deep-learning/misc/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/llm-basics/deep-learning/misc/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/llm-basics/deep-learning/nlp/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/llm-basics/deep-learning/nlp/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/llm-basics/embeddings/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/llm-basics/embeddings/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/llm-basics/embeddings/qwen3-embedding/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/llm-basics/embeddings/qwen3-embedding/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/llm-basics/llm-foundations.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/llm-basics/llm-foundations.mdx -------------------------------------------------------------------------------- /app/docs/ai/llm-basics/pytorch/index.assets/word-img-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/llm-basics/pytorch/index.assets/word-img-01.png -------------------------------------------------------------------------------- /app/docs/ai/llm-basics/pytorch/index.assets/word-img-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/llm-basics/pytorch/index.assets/word-img-02.png -------------------------------------------------------------------------------- /app/docs/ai/llm-basics/pytorch/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/llm-basics/pytorch/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/llm-basics/transformer/ai-by-hand/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/llm-basics/transformer/ai-by-hand/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/llm-basics/transformer/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/llm-basics/transformer/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/methodology/research-methodology.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/methodology/research-methodology.mdx -------------------------------------------------------------------------------- /app/docs/ai/misc-tools/learning-toolkit.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/misc-tools/learning-toolkit.mdx -------------------------------------------------------------------------------- /app/docs/ai/model-datasets-platforms/platform-and-datasets.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/model-datasets-platforms/platform-and-datasets.mdx -------------------------------------------------------------------------------- /app/docs/ai/multimodal/RQVAE/index.assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/RQVAE/index.assets/2.png -------------------------------------------------------------------------------- /app/docs/ai/multimodal/RQVAE/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/RQVAE/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/multimodal/VAE/index.assets/v2-61521005c5a8213b60bf362f9c25c22f_1440w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/VAE/index.assets/v2-61521005c5a8213b60bf362f9c25c22f_1440w.png -------------------------------------------------------------------------------- /app/docs/ai/multimodal/VAE/index.assets/v2-643d5ffb4aa480808bc9c82a55450a80_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/VAE/index.assets/v2-643d5ffb4aa480808bc9c82a55450a80_r.png -------------------------------------------------------------------------------- /app/docs/ai/multimodal/VAE/index.assets/v2-92a9061e7079089b75c37650943c6f25_1440w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/VAE/index.assets/v2-92a9061e7079089b75c37650943c6f25_1440w.png -------------------------------------------------------------------------------- /app/docs/ai/multimodal/VAE/index.assets/v2-97e09bd511a1fb0c3240fa717ce235d2_1440w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/VAE/index.assets/v2-97e09bd511a1fb0c3240fa717ce235d2_1440w.png -------------------------------------------------------------------------------- /app/docs/ai/multimodal/VAE/index.assets/v2-dda0855d2d3e00e786956a827b1c5f26_1440w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/VAE/index.assets/v2-dda0855d2d3e00e786956a827b1c5f26_1440w.png -------------------------------------------------------------------------------- /app/docs/ai/multimodal/VAE/index.assets/v2-df06f2d1471615dae76b1e09488091b5_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/VAE/index.assets/v2-df06f2d1471615dae76b1e09488091b5_r.png -------------------------------------------------------------------------------- /app/docs/ai/multimodal/VAE/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/VAE/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/multimodal/VQVAE/index.assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/VQVAE/index.assets/1.png -------------------------------------------------------------------------------- /app/docs/ai/multimodal/VQVAE/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/VQVAE/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/multimodal/courses/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/courses/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/multimodal/llava/index.assets/word-img-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/llava/index.assets/word-img-03.png -------------------------------------------------------------------------------- /app/docs/ai/multimodal/llava/index.assets/word-img-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/llava/index.assets/word-img-04.png -------------------------------------------------------------------------------- /app/docs/ai/multimodal/llava/index.assets/word-img-05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/llava/index.assets/word-img-05.png -------------------------------------------------------------------------------- /app/docs/ai/multimodal/llava/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/llava/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/multimodal/mllm/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/mllm/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/multimodal/multimodal-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/multimodal-overview.mdx -------------------------------------------------------------------------------- /app/docs/ai/multimodal/qwenvl/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/qwenvl/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/multimodal/video-mm-todo/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/multimodal/video-mm-todo/index.mdx -------------------------------------------------------------------------------- /app/docs/ai/multimodal/vit/index.mdx: -------------------------------------------------------------------------------- 1 | --- 2 | title: ViT 视觉编码器 3 | description: Vision Transformer 资料 4 | docId: xd3q72ubqzlesz8x4gewhi5r 5 | --- 6 | -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/recommender-roadmap.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/recommender-roadmap.mdx -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_crossing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_crossing.mdx -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-1-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-1-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-2-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-2-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-2-3.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-4-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-4-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-4-3.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-5-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-6-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-6-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-6-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-6-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-6-3.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-6-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/3-6-4.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-1-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-2-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-2-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-2-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-2-3.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-2-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-2-4.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-2-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-2-5.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-2-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-2-6.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-3-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-3-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-4-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-4-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-4-3.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-4-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-4-4.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-4-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-4-5.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-4-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-4-6.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-4-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/4-4-7.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/5-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/5-1-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/5-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/5-1-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/5-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/5-2-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/5-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/5-2-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/5-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/5-3-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-1-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-1-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-1-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-1-3.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-1-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-1-4.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-1-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-1-5.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-2-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-2-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-4-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-4-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-4-3.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-4-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-4-4.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-4-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-4-5.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/6-5-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-3-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-3-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-3-3.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-4-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-4-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-4-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-4-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-4-3.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-4-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-4-4.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-5-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-5-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-5-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-6-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-6-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-6-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-6-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-6-3.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-6-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-6-4.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-6-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/7-6-5.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/8-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/8-2-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/8-3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/8-3-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/8-3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/8-3-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/8-3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/8-3-3.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/8-3-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/8-3-4.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/images/8-3-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/images/8-3-5.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-10-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-10-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-10-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-10-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-10-3.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-10-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-10-4.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-10-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-10-5.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-10-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-10-6.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-10-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-10-7.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-10-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-10-8.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-12-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-12-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-12-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-12-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-12-3.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-4-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-5-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-5-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-5-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-5-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-5-3.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-5-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-5-4.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-5-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-5-5.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-6-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-6-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-6-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-6-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-6-3.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-6-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-6-4.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-6-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-6-5.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-6-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-6-6.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-7-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-7-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-7-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-7-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-7-3.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-7-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-7-4.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-8-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-8-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-8-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-9-1.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-9-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-9-2.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-9-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-9-3.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-9-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.assets/2-9-4.png -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note/wangshusen_recommend_note_retrieval.mdx -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note_coldstart.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note_coldstart.mdx -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note_improvement.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note_improvement.mdx -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note_rank.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note_rank.mdx -------------------------------------------------------------------------------- /app/docs/ai/recommender-systems/wangshusen_recommend_note_rerank.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/recommender-systems/wangshusen_recommend_note_rerank.mdx -------------------------------------------------------------------------------- /app/docs/ai/reinforcement-learning/reinforcement-learning-overview.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/ai/reinforcement-learning/reinforcement-learning-overview.mdx -------------------------------------------------------------------------------- /app/docs/all-projects/ai-town.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/all-projects/ai-town.mdx -------------------------------------------------------------------------------- /app/docs/all-projects/multimodal-rl.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/all-projects/multimodal-rl.mdx -------------------------------------------------------------------------------- /app/docs/computer-science/cpp_backend/Handwritten_pool_components/1_Handwritten_threadpool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/computer-science/cpp_backend/Handwritten_pool_components/1_Handwritten_threadpool.md -------------------------------------------------------------------------------- /app/docs/computer-science/cpp_backend/Handwritten_pool_components/2_Handwritten_mempool1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/computer-science/cpp_backend/Handwritten_pool_components/2_Handwritten_mempool1.md -------------------------------------------------------------------------------- /app/docs/computer-science/cpp_backend/easy_compile/1_cpp_libs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/computer-science/cpp_backend/easy_compile/1_cpp_libs.md -------------------------------------------------------------------------------- /app/docs/computer-science/cpp_backend/easy_compile/2_base_gcc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/computer-science/cpp_backend/easy_compile/2_base_gcc.md -------------------------------------------------------------------------------- /app/docs/computer-science/cpp_backend/easy_compile/3_Make.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/computer-science/cpp_backend/easy_compile/3_Make.md -------------------------------------------------------------------------------- /app/docs/computer-science/cpp_backend/easy_compile/4_CMake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/computer-science/cpp_backend/easy_compile/4_CMake.md -------------------------------------------------------------------------------- /app/docs/computer-science/cpp_backend/easy_compile/5_vcpkg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/computer-science/cpp_backend/easy_compile/5_vcpkg.md -------------------------------------------------------------------------------- /app/docs/computer-science/cpp_backend/mempool_simple.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/computer-science/cpp_backend/mempool_simple.mdx -------------------------------------------------------------------------------- /app/docs/computer-science/data-structures/array/01-static-array.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/computer-science/data-structures/array/01-static-array.mdx -------------------------------------------------------------------------------- /app/docs/computer-science/data-structures/array/02-dynamic-array.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/computer-science/data-structures/array/02-dynamic-array.mdx -------------------------------------------------------------------------------- /app/docs/computer-science/data-structures/array/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/computer-science/data-structures/array/index.mdx -------------------------------------------------------------------------------- /app/docs/computer-science/data-structures/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/computer-science/data-structures/index.mdx -------------------------------------------------------------------------------- /app/docs/computer-science/data-structures/linked-list/01-singly-linked-list.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/computer-science/data-structures/linked-list/01-singly-linked-list.mdx -------------------------------------------------------------------------------- /app/docs/computer-science/data-structures/linked-list/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/computer-science/data-structures/linked-list/index.mdx -------------------------------------------------------------------------------- /app/docs/computer-science/frontend/frontend-learning/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/computer-science/frontend/frontend-learning/index.mdx -------------------------------------------------------------------------------- /app/docs/computer-science/frontend/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/computer-science/frontend/index.mdx -------------------------------------------------------------------------------- /app/docs/computer-science/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/computer-science/index.mdx -------------------------------------------------------------------------------- /app/docs/jobs/event-keynote/coffee-chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/jobs/event-keynote/coffee-chat.md -------------------------------------------------------------------------------- /app/docs/jobs/event-keynote/event-takeway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/jobs/event-keynote/event-takeway.md -------------------------------------------------------------------------------- /app/docs/jobs/interview-prep/bq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/jobs/interview-prep/bq.md -------------------------------------------------------------------------------- /app/docs/jobs/interview-prep/interview-tips.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/jobs/interview-prep/interview-tips.mdx -------------------------------------------------------------------------------- /app/docs/jobs/interview-prep/pre-interview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/jobs/interview-prep/pre-interview.md -------------------------------------------------------------------------------- /app/docs/jobs/interview-prep/preparations-to-get-an-offer-as-a-student.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/jobs/interview-prep/preparations-to-get-an-offer-as-a-student.mdx -------------------------------------------------------------------------------- /app/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/docs/layout.tsx -------------------------------------------------------------------------------- /app/fonts/GeistMonoVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/fonts/GeistMonoVF.woff -------------------------------------------------------------------------------- /app/fonts/GeistVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/fonts/GeistVF.woff -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/hooks/useAssistantSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/hooks/useAssistantSettings.tsx -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/search.json/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/search.json/route.ts -------------------------------------------------------------------------------- /app/sitemap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/sitemap.ts -------------------------------------------------------------------------------- /app/types/event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/app/types/event.ts -------------------------------------------------------------------------------- /auth.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/auth.config.ts -------------------------------------------------------------------------------- /auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/auth.ts -------------------------------------------------------------------------------- /components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/components.json -------------------------------------------------------------------------------- /components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/components/ui/badge.tsx -------------------------------------------------------------------------------- /components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/components/ui/button.tsx -------------------------------------------------------------------------------- /components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/components/ui/card.tsx -------------------------------------------------------------------------------- /components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/components/ui/command.tsx -------------------------------------------------------------------------------- /components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/components/ui/dialog.tsx -------------------------------------------------------------------------------- /components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/components/ui/input.tsx -------------------------------------------------------------------------------- /components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/components/ui/label.tsx -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/data/README.md -------------------------------------------------------------------------------- /data/event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/data/event.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /generated/README.md: -------------------------------------------------------------------------------- 1 | ### generated 文件夹 2 | 3 | 本文件夹是用于Prisma自动生成,以及actions从数据库中拉取到一次JSON后存储的地方。 4 | 详情请见[内卷地狱-贡献者-技术方案](https://docs.qingque.cn/d/home/eZQAGZdUbBsOVjEpVOLUMmXPN?identityId=2LfK2EeRnQx#section=h.vh61bxiyr5o1) 5 | -------------------------------------------------------------------------------- /generated/doc-contributors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/generated/doc-contributors.json -------------------------------------------------------------------------------- /i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/i18n.ts -------------------------------------------------------------------------------- /lib/ai/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/lib/ai/models.ts -------------------------------------------------------------------------------- /lib/ai/prompt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/lib/ai/prompt.ts -------------------------------------------------------------------------------- /lib/ai/providers/gemini.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/lib/ai/providers/gemini.ts -------------------------------------------------------------------------------- /lib/ai/providers/intern.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/lib/ai/providers/intern.ts -------------------------------------------------------------------------------- /lib/ai/providers/openai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/lib/ai/providers/openai.ts -------------------------------------------------------------------------------- /lib/contributors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/lib/contributors.ts -------------------------------------------------------------------------------- /lib/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/lib/github.ts -------------------------------------------------------------------------------- /lib/layout.shared.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/lib/layout.shared.tsx -------------------------------------------------------------------------------- /lib/source.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/lib/source.ts -------------------------------------------------------------------------------- /lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/lib/utils.ts -------------------------------------------------------------------------------- /mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/mdx-components.tsx -------------------------------------------------------------------------------- /middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/middleware.ts -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/postcss.config.mjs -------------------------------------------------------------------------------- /prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/prisma/schema.prisma -------------------------------------------------------------------------------- /public/5b6ef14a7406496b8a2ce8ab17820b34.txt: -------------------------------------------------------------------------------- 1 | 5b6ef14a7406496b8a2ce8ab17820b34 -------------------------------------------------------------------------------- /public/cloud_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/cloud_1.png -------------------------------------------------------------------------------- /public/cloud_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/cloud_2.png -------------------------------------------------------------------------------- /public/event/coffeeChat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/event/coffeeChat.png -------------------------------------------------------------------------------- /public/event/mockInterview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/event/mockInterview.png -------------------------------------------------------------------------------- /public/git_assets/GIT_GUIDE.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/git_assets/after_fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/git_assets/after_fork.png -------------------------------------------------------------------------------- /public/git_assets/branch-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/git_assets/branch-all.png -------------------------------------------------------------------------------- /public/git_assets/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/git_assets/button.png -------------------------------------------------------------------------------- /public/git_assets/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/git_assets/file.png -------------------------------------------------------------------------------- /public/git_assets/fork1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/git_assets/fork1.jpg -------------------------------------------------------------------------------- /public/git_assets/fork1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/git_assets/fork1.png -------------------------------------------------------------------------------- /public/git_assets/fork2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/git_assets/fork2.png -------------------------------------------------------------------------------- /public/git_assets/need_fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/git_assets/need_fork.png -------------------------------------------------------------------------------- /public/git_assets/pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/git_assets/pr.png -------------------------------------------------------------------------------- /public/git_assets/pr2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/git_assets/pr2.png -------------------------------------------------------------------------------- /public/git_assets/propse_changes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/git_assets/propse_changes.png -------------------------------------------------------------------------------- /public/git_assets/setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/git_assets/setting.png -------------------------------------------------------------------------------- /public/git_assets/setting2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/git_assets/setting2.png -------------------------------------------------------------------------------- /public/git_assets/succuess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/git_assets/succuess.png -------------------------------------------------------------------------------- /public/logo/favico-apple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/logo/favico-apple.png -------------------------------------------------------------------------------- /public/logo/logoInDark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/logo/logoInDark.svg -------------------------------------------------------------------------------- /public/logo/logoInLight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/logo/logoInLight.svg -------------------------------------------------------------------------------- /public/mascot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/mascot.png -------------------------------------------------------------------------------- /public/mascot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/mascot.svg -------------------------------------------------------------------------------- /public/mascot.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/mascot.webp -------------------------------------------------------------------------------- /public/og/cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/og/cover.png -------------------------------------------------------------------------------- /public/readme_docs_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/readme_docs_structure.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/shanghaiailab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/shanghaiailab.png -------------------------------------------------------------------------------- /public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/public/site.webmanifest -------------------------------------------------------------------------------- /scripts/backfill-contributors.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/scripts/backfill-contributors.mjs -------------------------------------------------------------------------------- /scripts/check-images.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/scripts/check-images.mjs -------------------------------------------------------------------------------- /scripts/compute-svg-bbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/scripts/compute-svg-bbox.js -------------------------------------------------------------------------------- /scripts/escape-angles.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/scripts/escape-angles.mjs -------------------------------------------------------------------------------- /scripts/move-doc-images.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/scripts/move-doc-images.mjs -------------------------------------------------------------------------------- /scripts/test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/scripts/test.mjs -------------------------------------------------------------------------------- /scripts/uuid.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/scripts/uuid.mjs -------------------------------------------------------------------------------- /source.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/source.config.ts -------------------------------------------------------------------------------- /sql/nextauth_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/sql/nextauth_schema.sql -------------------------------------------------------------------------------- /tests/activity-events.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/tests/activity-events.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvolutionHell/involutionhell/HEAD/vitest.config.mts --------------------------------------------------------------------------------