分类: 未分类

116 篇文章

Hugo breadcrumb design and implementation
There is a Hugo official example which describe how to implement a navigation breadcrump here: Example: Breadcrumb Navigation Anyway I didn't make it work as I expected. I thi…
Hugo common pitfalls and cheat sheet
Why language specific params defined in "[lanuage]" missing some information defined outside "[lanuage]" [params] [params.home] var1 ="1" var2 ="2" [langua…
Web programming pitfalls
How to send jquery datatables data via Ajax A: Use: dataTable_instanc().rows().data().toArray() How to send json data via Ajax A: It need use JSON.stringtify(Array) to make th…
Hugo list all the pages under sub directories
(1) Background Normally, we feel intuitive to put files under different nested sub directory, each directory could represents as file's category it belongs to or with specific…
Docker Cheatsheet
Delete all images $ for i in `docker images | awk 'NR>1{print $1":"$2}'`;do docker rmi $i;done Aliyun docker accelerator(/etc/docker/daemon.json) {"registry-mirrors": ["ht…
kubernetes cheatsheet
Obtain node join token$ kubeadm token list | awk 'NR==2{print $1}' Get master hostname$ kubectl get nodes -l node-role.kubernetes.io/master -o jsonpath="{.items[*].metadata.na…