SEISAMUSE

Jun Xie的博客

之前next里用的是valine评论区,谁知这次怎么弄都配置不上,搜索之下发现新版next已经不支持valine了。好像是因为其安全问题。因此我准备用utterances。

阅读全文 »

这是一篇加密的文章,想看得问我密码。
阅读全文 »

转自可能吧
可能吧讲的是如何让人觉得你都懂,感觉有点文不对题。内容更偏向于如何学习。其实学习方法很多,但重在实践。

阅读全文 »

转载自少数派
每个系统中都存在第一性原理,它的存在是最基本的命题和假设,不能被省略,也不能被违反。—亚里士多德

阅读全文 »

运行git push origin master -f 的时候显示这个错误:

1
fatal: 'origin' does not appear to be a git repository fatal: Could not read from remote repository.

解决办法是重新关联远程仓库:

1
git remote add origin git@github.com:junxie01/junxie01.git

  1. 修改根目录下的_config.yml. 找到busuanzi_count:
    enable: true

  2. 修改themes下的_config.yml. 找到footer:
    counter: true

  3. 修改themes/next/layout/_partials/footer.njk,添加:

    1
    2
    3
    {% if theme.footer.counter %}
    <script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
    {% endif %}

在hexo中插入角注需要安装hexo-reference,命令:

1
npm install hexo-reference

语法是:
加入这个:
[^1]
在最后加入这个:
[^1]:https://github.com/kchen0x/hexo-reference
显示出来是:
参见这样加入reference[1]


  1. 1.https://github.com/kchen0x/hexo-reference
0%