Learning Task/ To-do List

Learning Task/ To-do List

To-do Lists:

1
2
shawncheun.github.io
shawn

Learning Lists:

wordpress

plugins:

  • page builder
  • Markdown plugin

Themes:

  • Twenty Twelve
  • Twenty Sixteen
  • Saccha One
  • Padma Blog

静态框架:

  • Hexo.io
  • jkeyllrb.com
  • gohugo.org
  • VuePress
  • solo.b3log.org

图床:

  • firebase: free plan

图库:


Hints and Tips:

vs to open a directory

1
2
$ cd /usr/share/apache2
$ code .

Open Current Path in Linux Terminal

1
2
$ cd /usr/share/apache2
$ open . // or: xdg-open .

Hexo:文章 URL 被编码

Hexo 文章的 url 在根目录配置文件_config.yml 中的 permalink 进行配置,默认配置如下:

1
permalink: :year/:month/:day/:title/ 

这里的:titlesource/_post 下的相对路径。

对于中文标题,就会被 Encode 的转码导致 url 奇长无比。

对应方案:

  • 修改文章文件名为只包含英文字母、数字及划线,如:
1
Chapter-11-Blink-LED-With-StdLib.md
  • 文章内容(主要是 Front Matter 内容):
1
2
3
4
5
6
7
8
9
---
title: Chapter 11 使用固件库点亮 LED
date: 2022-04-06 23:25:38
tags:
- Programming
- STM32
---

# Chapter 11 使用固件库点亮 LED // This is H1

List contents in Linux

1
2
ls
ll // detailed

github.io

  • shawncheun.github.io