2016-03-24 craneyuan
安装多说评论系统 实际上landscape-plus主题上已经集成了多说评论系统,我们只需要添加duoshuo_shortname到两个配置文件就行了。 多说的shortname就是你注册多说时的用户名。 接下来在博客根目录下的配置文件和主题下的配置文件_config.yml中加入如下代码: ```bash Duoshuo duoshuo_shortname: XXX ``` 添加多说最近评论 以landscape-plus主题为例: more 在landscape-plus\layout_widget\目录下新建recent_comments.ejs文件,内容如下: bash 注:其 继续阅读 »
2018-06-21 LEo
这是一个系列文章,主要分享shell(部分功能仅适用于bash)的使用建议和技巧,每次分享3点,希望你能有所收获。 1 echo替换字符串 ```bash $ s="123abc123abc" $ echo ${s/123/456} 456abc123abc $ echo ${s//123/456} 456abc456abc 继续阅读 »
2016-07-23 ruki
xmake 提供了一些内置的条件判断api,用于在选择性编译时,获取到一些工程状态的相关信息,来调整编译逻辑。。 例如:is_os, is_plat, is_arch, is_kind, is_mode, is_option is_mode 我们先拿最常用的is_mode来讲讲如何使用,这个api主要用来判断当前的编译模式,例如平常编译配置的时候,会执行: bash $ xmake f -m debug $ xmake 来编译debug版本,那么模式就是debug,那么release版本,也就是release了 bash $ xmake f -m release $ xmake 但是如果仅仅只是这么配置,xmake 继续阅读 »
2015-09-10 biezhi
1、查看当前所有连接的详细资料: bash mysqladmin -uroot -proot processlist 2、只查看当前连接数(Threads就是连接数.): bash mysqladmin -uroot -proot status 3、修改mysql最大连接数: 打开my.ini,修改max_connections=100(默认为100) 继续阅读 »
2016-06-26 ruki
xmake provides some project templates, you can easily create an empty project. Create a c++ console project: bash xmake create -l c++ -t 1 demo or xmake create --language=c++ --template=1 demo Create a c static library project: bash xmake create -l c -t 5 demo or xmake create --language=c 继续阅读 »
2017-10-27 Catsugar
这是一个不靠谱的学习笔记。想到啥写啥 grunt 自动化工具 安装 grunt ``` bash install grunt npm install -g grunt-cli ``` ``` bash 安装工具 npm install load-grunt-tasks --save-dev npm install time-grunt --save-dev 继续阅读 »
2015-06-20 王财勇
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick Start Create a new post bash $ hexo new "My New Post" More info: Writing Run server bash $ hexo server More in 继续阅读 »
2019-01-26 blademainer
Kubernetes笔记 more 导出现有的资源 bash for n in $(kubectl get -o=name pvc,configmap,serviceaccount,secret,ingress,service,deployment,statefulset,hpa,job,cronjob) do mkdir -p $(dirname $n) kubectl get -o=yaml --export $n > $n.yaml done 热更新deploy 有时候我们修改了ConfigMap,但是代码不支持,肯定不能让程序停止,因此必须支持热更新。命令如下: bash kubectl patch 继续阅读 »
2017-09-01 geekspeng
安装 Hexo bash $ npm install -g hexo-cli 建站 安装 Hexo 完成后,请执行下列命令,Hexo 将会在指定文件夹中新建所需要的文件。 bash $ hexo init $ cd $ npm install 继续阅读 »
2017-10-19 Quanyin Tang
Git
创建库 克隆一个已存在的库 bash $ git clone https://github.com/user/repo.git [DirName] 或者 $ git clone git@github.com:user/repo.git [DirName] 其中,user为用户名,repo为需要克隆的库名,DirName为可选,默认值为库的名称repo 新建本地库 bash $ git init 继续阅读 »