WW‘s Blog

Thinking will not overcome fear but action will.

笔记管理软件trilium

安装笔记管理trilium

使用桌面程序 下载可执行程序releases 使用本地docker服务器,可在浏览器访问 简单启动镜像 docker run -d -p 0.0.0.0:999980 zadam/trilium 配置docker-compose 必須先手動創建./trilium-data,否則由docker內程序創建,導致權限問題, 無法啓動 映射到本地端口9999,直接打開http://127...

Ubuntu禁用鼠标键盘唤醒

避免误触鼠标键盘唤醒睡眠状态的电脑

参考文章Ubuntu Disable mouse wake from suspend, enabling the wake on mouse 获取USB设备名称 lsusb | sort 使用的是2.4G无线键鼠 Bus 003 Device 003: ID 25a7:fa61 Compx 2.4G Receiver 获取启用唤醒功能的设备 grep . /sys/bu...

python,浏览器等新环境配置

记录python,浏览器等新环境配置操作步骤

安装FireFox https://linuxconfig.org/how-to-install-uninstall-and-update-firefox-on-ubuntu-20-04-focal-fossa-linux Install Firefox First, we need to add the Mozilla signing key to our system: ...

pptk点云可视化

pptk点云可视化

安装jupyterlab 和 pptk pip install jupyterlab pip install pptk pip install matplotlib python -m pip install -U scikit-image pptk 在ubuntu20 不显示窗口解决方法 https://github.com/heremaps/pptk/issues/3 cd mi...

清空GitHub记录

清空GitHub记录

随便整理的一些自用的Git指令 清空GitHub记录 Deleting the .git folder may cause problems in your git repository. If you want to delete all your commit history but keep the code in its current state, it is very...

本地运行jekyll服务器

记录本地运行jekyll服务器操作步骤

在ubuntu 20.0.4 上安装jekyll 48 个你需要知道的 Jekyll 使用技巧 CrispDev 安装ruby jekyll文档 由于 ubuntu 20 上已经安装有ruby,因此只需要安装ruby-dev sudo apt-get install ruby-full build-essential zlib1g-dev sudo apt install...

安装Docker和Nvidia-Docker

在ubuntu20 上安装Docker和Nvidia-Docker

记录在ubuntu20 上安装Docker和Nvidia-Docker 安装Docker Setting up Docker Docker-CE on Ubuntu can be setup using Docker’s official convenience script: curl https://get.docker.com | sh \ && su...

Git指令

不适合阅读的整理的一些个人常用的 Git 指令

随便整理的一些自用的Git指令 GitHub创建仓库提示代码 echo "# 项目名" >> README.md git init git add README.md git commit -m "first commit" git remote add origin git@github.com:qiubaiying/项目名.git git push -u orig...