添加用户到 wheel 组

debian 1. useradd -m xyz m 表示在 home 下创建相应的用户目录。 2. passwd xyz 3. usermod -a -G wheel xyz 如果出现错误提示,那么需要 usermod: group 'wheel' does not exist, 需要 ad...

typecho 安装

建议系统选用 ubuntu 参考: https://www.digitalocean.com/community/tutorials/how-to-install-linux-nginx-mysql-php-lemp-stack-in-ubuntu-16-04 https://www.type...

vim 翻页,滚屏

Ctrl + F 屏幕向下滚动一屏 Ctrl + B 屏幕向上滚动一屏 Ctrl + E 屏幕向下滚动一行 Ctrl + Y 屏幕向上滚动一行 Ctrl + D 屏幕向下滚动半屏 Ctrl + U 屏幕向上滚动半屏 zz 让光标所在的行居屏幕中央 zt 让光标所在的行居屏幕最上一行 t=top...

深度学习

环境 安装 tensorflow,使用命令 pip3 install -i https://pypi.tuna.tsinghua.edu.cn/simple tensorflow --user 如果使用虚拟机,不适用 gpu ,可以安装 cpu 版本的 tensorflow-cpu,使用命令...

org-roam

org-roam+orb+zotero 参考: https://github.com/org-roam/org-roam https://www.orgroam.com/ https://www.zmonster.me/2020/06/27/org-roam-introduction.html...

MobileNetV2-SSDLite

参考: https://ai.googleblog.com/2018/04/mobilenetv2-next-generation-of-on.html https://heartbeat.fritz.ai/real-time-object-detection-using-ssd-mobile...

金字塔原理--逻辑部分

1. 交流沟通使用金字塔结构,会更加容易。 各个主题之间只有纵向(向上或向下)和横向的关系,从最上面的总的思想向下进行细分。 2. 结构 2.1 纵向关系 通过纵向关系,可以引导文章形成 “疑问--回答” 式的对话。每一个方框就时一个思想,读者对这个思想产生的疑问在下一层中进行解答,并引出新的...

git 多 ssh key

1. 首先使用命令 ssh-keygen -t rsa -C "your_email@example.com" -f ~/.ssh/github_id_rsa 来生成 github 的密钥。就是 github_id_rsa 和 github_id_rsa.pub 2. 创建或者修改 confi...

tensorflow lite c++

1. 先 git clone tensorflow 的仓库,可以在 github 也可以在 gitee, gitee 会比 github 慢一天左右。但是下载速度快多了。 git clone https://github.com/tensorflow/tensorflow.git git cl...

tensorflow lite python

1. 如果不用虚拟环境,那么只需要在 类似于 https://dl.google.com/coral/python/tflite_runtime-2.1.0.post1-cp36-cp36m-linux_aarch64.whl 这个地址下载相应的文件,然后 pip3 install ~/Dow...