惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
Google DeepMind News
Google DeepMind News
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
小众软件
小众软件
Blog — PlanetScale
Blog — PlanetScale
腾讯CDC
A
About on SuperTechFans
Vercel News
Vercel News
I
InfoQ
阮一峰的网络日志
阮一峰的网络日志
月光博客
月光博客
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
人人都是产品经理
人人都是产品经理
S
SegmentFault 最新的问题
V
Visual Studio Blog
T
Tailwind CSS Blog
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
博客园 - 【当耐特】
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Microsoft Azure Blog
Microsoft Azure Blog
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
美团技术团队

Mox的笔记库

2026PPoPP MLIR Tutorial学习 | Mox的笔记库 MacOS配置《明日方舟:终末地》 | Mox的笔记库 2025:向内生长 | Mox的笔记库 由mlir::ExecutionEngine引发的跨系统问题 | Mox的笔记库 WSL2配置Cuda-Tile环境记录(未完待续) | Mox的笔记库 Vibe Coding手搓项目记录 | Mox的笔记库 给Debian上包——以DuckDB为例 | Mox的笔记库 UCPD.sys事件存档 | Mox的笔记库 换新电脑之Mac mini M4从购买到配置 | Mox的笔记库 Mac配置MLX-C开发环境 | Mox的笔记库 RISC-V meets RDBMS——RISC-V架构上可运行数据库一览 | Mox的笔记库 DuckDB Sort实现调查 | Mox的笔记库 修复Redis在树莓派5上无法运行的问题 | Mox的笔记库 如何在MLIR中自定义类型并且输出运行 | Mox的笔记库 网站网络结构变更记录 | Mox的笔记库 EDBT25论文阅读:PhoebeDB——A Disk-Based RDBMS Kernel for High-Performance and Cost-Effective OLTP SIGMOD25论文阅读:BPF-DB:——A Kernel-Embedded Transactional Database Management System For eBPF Applications Apache Arrow Gandiva项目解析 | Mox的笔记库 VLDB24论文阅读:Cloud-Native Database Systems and Unikernels——Reimagining OS Abstractions for Modern Hardware NoisePage源码分析(未完待续) | Mox的笔记库 VLDB20论文阅读:Mainlining Databases——Supporting Fast Transactional Workloads on Universal Columnar Data File Formats VLDB17论文阅读:Relaxed Operator Fusion for In-Memory Databases:Making Compilation, Vectorization, and Prefetching Work Together At Last 论文阅读:How not to structure your database-backed web applications——a study of performance bugs in the wild SIGMOD24阅读:ROME——Robust Query Optimization via Parallel Multi-Plan Execution 文章阅读:First Past the Post-Evaluating Query Optimization in MongoDB SIGMOD文章阅读:Apache Calcite——A Foundational Framework for Optimized Query Processing Over Heterogeneous Data Sources VLDB23论文阅读:Analyzing the Impact of Cardinality Estimation on Execution Plans in Microsoft SQL Server SIGMOD22论文阅读:Efficient Massively Parallel Join Optimization for Large Queries VLDB论文阅读:Weaving Relations for Cache Performance VLDB22论文阅读:ConnectorX——Accelerating Data Loading From Databases to Dataframes
Hexo部署安装全流程回顾 | Mox的笔记库
MocusEZ · 2019-11-29 · via Mox的笔记库

终于有时间可以整理一下这一段时间的工作,可供大家参考。

Hexo 2023迁移

Hexo版本到了7.0.0,外加上之前博客调整出了很多问题,顺带一并调整。

鉴于2022年jsdeliver的情况,JS插件最好还是不要放CDN,还是放本地比就好

Theme修改CDN依赖

third_party_provider: local

添加hexo-butterfly-extjs

yarn add hexo-butterfly-extjs

鉴于DaoVoice基本没人用,所以这次就移除了

解决了之前Description不生效的问题,是配置问题导致出现这种情况

# Display the article introduction on homepage

# 1: description

# 2: both (if the description exists, it will show description, or show the auto_excerpt)

# 3: auto_excerpt (default)

# false: do not show the article introduction

index_post_content:

method: 1

length: 500 # if you set method to 2 or 3, the length need to config

Hexo 2022迁移

butterfly

npm install hexo-renderer-pug hexo-renderer-stylus

有异常情况,但不影响使用

deprecate hexo-renderer-stylus@2.1.0 stylus@0.57.0 css@3.0.0 source-map-resolve@^0.6.0 See https://github.com/lydell/source-map-resolve#deprecated

支持PWA了,还需要安装额外npm插件,由于懒得配备图片就没去做了

最初使用的WINDOWS的版本

nodejs版本 v13.2.0 git version 2.24.0.windows.

2022年换成

Arch Linux + v16.15.1

环境安装

关于要不要加上--save

然而,从 npm 5.0.0 版本开始,npm install <package> 默认会将包保存到 package.json 文件中,所以 --save 选项已经不再必要了

npm install -g hexo-cli

npm install hexo-generator-feed

npm install hexo-generator-sitemap

npm install hexo-deployer-git

npm install hexo-blog-encrypt

npm install hexo-wordcount

npm install hexo-generator-index

npm install hexo-generator-searc

npm install hexo-filter-nofollow

npm install hexo-abbrlink

Git配置

需要配置好SSH才能把博客上传到平台

git config --global user.name "你的名字或昵称"

git config --global user.email "你的邮箱"

(初始配置,当时被坑的很惨……)

git add . #将当前目录所有文件添加到git暂存区

git commit -m "my first commit" #提交并备注提交信息

git push origin master #将本地提交推送到远程仓库

常用命令

hexo init //初始化

hexo clean

hexo g

hexo d

hexo s //本地运行

Termux上要用到的命令

pkg install nodejs

zip -r .zip

添加分类

hexo new page categories

type: "categories"

常用资源与教程

https://zhidao.baidu.com/question/267547361683585445.html (updated设置)

https://www.jianshu.com/p/f0a8f8dfbd22 (DaoVoice设置)

https://blog.csdn.net/jiunian_2761/article/details/97388997 (Valine设置)

Next官方入门

全英文路径设置

https://blog.csdn.net/qq_37210523/article/details/80909983 (hexo搭建初步)

设置密码 修改Favicon SEO优化 增加头像 abbr短链接 Hexo常用命令 Git生成SSH key 隔壁大佬的Next优化 Hexo NexT主题添加点击爱心效果 Hexo 页脚增加网站运行时间统计 使用大佬的puppeteer脚本更新Gitee Pages

Hexo butterfly 自定义文章封面 && 主页顶部图片更改

npm i puppeteer

npm config set puppeteer_download_host=https://npm.taobao.org/mirrors //加速puppeteer下载

FontAwasome图标查询

Valine大坑

行与行之间要用逗号隔开 如果加载了置顶插件,B站表情要加@112w_112h.webp 想要自定义内容的话需要本地下载


avatar

探索未曾设想的道路