Text and Typography
Examples of text, typography, math equations, diagrams, flowcharts, pictures, videos, and more.
Examples of text, typography, math equations, diagrams, flowcharts, pictures, videos, and more.
Math 在正数时,int(a / b) 和 a // b 通常结果相同,但在负数时可能不同: int(a / b) 是向零取整(trunc)。如果你希望总是向零取整,使用 int(a / b)。 // 是向下取整(floor)。如果你希望总是向下取整,使用 a // b。 另外,取模运算 a % b也遵从 floor法则,a = (a // b) * b + (a % b...
算法复杂度 主定理(Master Theorem) 假设有递归关系式: [T(N) = aT(N/b) + f(N), f(N) = N^{\log_b(a)} \log^k(N)] 其中,$N$为问题规模,$a$为递归的子问题数量,$N/b$为每个子问题的规模(假设每个子问题的规模基本一样),$f(N)$为递归以外进行的计算工作。 则其算法复杂度为: [T(N) = O(N...
2025年阅读计划(先挖坑再填): 《学会提问》 算法刷题模板 炼丹技巧(loss突变怎么办) 深度学习 各种基础网络结构对比(Attention、Transformer、MoE) 强化学习 PPO、GRPO、GSPO 各种SSL对比 各种Codec对比 各种LLM对比 各种A...
Why Waline + TiDB? Waline is a lightweight, open-source, privacy-focused, and self-hosted comment system with backend UI and rich features, and TiDB Cloud offers a scalable, MySQL-compatible datab...
To change the default site homepage as About, and the original paginator homepage as Blog. It may be difficult since pagination only works within index.html, see similar issue. Modify the ...
Jekyll Chirpy Theme is a highly customizable theme with a large number of users and a very complete ecology. You can reproduce or adjust the configuration according to the official wiki to realize ...
Get started with Chirpy basics in this comprehensive overview. You will learn how to install, configure, and use your first Chirpy-based website, as well as deploy it to a web server.
This tutorial will guide you how to write a post in the Chirpy template, and it’s worth reading even if you’ve used Jekyll before, as many features require specific variables to be set. Naming and...