Chemacs Notes2021-05-04 约 181 字 预计阅读 1 分钟教程chmacs2windows配置例子 1 2 3 4 5 6 7 8 9 10 11 12 13 ( ("spacemacs" . ((user-emacs-directory . "~/.emacs.d.spacemacs") (server-name . "~/.emacs.d/server/spacemacs") (env . (("SPACEMACSDIR" . "~/.emacs.d.spacemacs"))))) ("default" . ((user-emacs-directory . "~/.emacs.d.default") (server-name . "~/.emacs.d/server/server") )) ("doom" . ((user-emacs-directory . "~/.emacs.d.doom") ;; (env . (("DOOMDIR" . "~/doom-config"))) )) )打开 emacsclient 方法1 2 3 4 5 6 7 emacsclient -c -t -a="" emacsclient -c -t -f "~/.emacs.d/server/server" emacsclient -c -t -f server emacsclient -c -t -f "~/.emacs.d/server/spacemacs" emacsclient -c -t -f spacemacs可以通过指定 server 文件路径来启动 daemon 方法1 2 3 4 emacs --daemon # alternate-editor='' server-file=server emacs --with-profile spacemacs --daemon=spacemacs # server-file='~/.emacs.d.spacemacs/server/spacemacs' emacs --with-profile spacemacs --daemon="~/.emacs.d/server/spacemacs" # server-file='spacemacs'-f 或 –server-file=/path/to/file: 针对 windows-s 或 –socket-name: 针对 linux阅读更多
OAuth2021-04-29 约 63 字 预计阅读 1 分钟教程中文,阮一峰简介OAuth2.0 四种方式概念token 令牌和密码类似有有效时长可以被主动撤销可以设置权限范围 scope密码是所有权限角色客户端资源所有者阅读更多
Tagger ---- machine learning 机器学习标柱工具2021-04-29 约 98 字 预计阅读 1 分钟工具列表https://awesomeopensource.com/projects/annotation-toolUniversal Data Tool特性可以标注多种类型数据文本分类图片分类Image Segmentation…多用户协作无需注册https://github.com/UniversalDataTool/universal-data-toolDoccanohttps://github.com/doccano/doccano特性标注数据类型序列标注文本分类…界面美观清爽类似 Gmail多用户协作阅读更多GnuPG ---- GNU Privacy Guard2021-04-28 约 2109 字 预计阅读 5 分钟教程https://www.devdungeon.com/content/gpg-tutorial系列教程技术|用 PGP 保护代码完整性(一): 基本概念和工具技术|用 PGP 保护代码完整性(二):生成你的主密钥技术|用 PGP 保护代码完整性(三):生成 PGP 子密钥技术|用 PGP 保护代码完整性(四):将主密钥移到离线存储中技术|用 PGP 保护代码完整性(五):将子密钥移到一个硬件设备中技术|用 PGP 保护代码完整性(六):在 Git 上使用 PGP技术|用 PGP 保护代码完整性(七):保护在线帐户中文教程阅读更多QEMU notes2021-04-28 约 209 字 预计阅读 1 分钟Ubuntu 20.04 安装教程参考https://linuxize.com/post/how-to-install-kvm-on-ubuntu-20-04/https://phoenixnap.com/kb/ubuntu-install-kvm命令行安装virt virsh, …安装创建磁盘qemu-image1 2 3 qemu-img create ubuntu.img 20G qemu-img create -f qcow2 ubuntu.qcow2 20G启动和安装安装 1 2 3 4 5 6 7 8 9 10 11 12 13 qemu-system-x86_64 \ # 磁盘路径 -hda ubuntu.img \ # 启动顺序 -boot d \ # 安装iso文件路径 -cdrom /path/to/install_iso_file \ # 内存大小,默认单位MiB -m 640-boot: 启动数序阅读更多 上一页 下一页
GnuPG ---- GNU Privacy Guard2021-04-28 约 2109 字 预计阅读 5 分钟教程https://www.devdungeon.com/content/gpg-tutorial系列教程技术|用 PGP 保护代码完整性(一): 基本概念和工具技术|用 PGP 保护代码完整性(二):生成你的主密钥技术|用 PGP 保护代码完整性(三):生成 PGP 子密钥技术|用 PGP 保护代码完整性(四):将主密钥移到离线存储中技术|用 PGP 保护代码完整性(五):将子密钥移到一个硬件设备中技术|用 PGP 保护代码完整性(六):在 Git 上使用 PGP技术|用 PGP 保护代码完整性(七):保护在线帐户中文教程阅读更多QEMU notes2021-04-28 约 209 字 预计阅读 1 分钟Ubuntu 20.04 安装教程参考https://linuxize.com/post/how-to-install-kvm-on-ubuntu-20-04/https://phoenixnap.com/kb/ubuntu-install-kvm命令行安装virt virsh, …安装创建磁盘qemu-image1 2 3 qemu-img create ubuntu.img 20G qemu-img create -f qcow2 ubuntu.qcow2 20G启动和安装安装 1 2 3 4 5 6 7 8 9 10 11 12 13 qemu-system-x86_64 \ # 磁盘路径 -hda ubuntu.img \ # 启动顺序 -boot d \ # 安装iso文件路径 -cdrom /path/to/install_iso_file \ # 内存大小,默认单位MiB -m 640-boot: 启动数序阅读更多 上一页 下一页
QEMU notes2021-04-28 约 209 字 预计阅读 1 分钟Ubuntu 20.04 安装教程参考https://linuxize.com/post/how-to-install-kvm-on-ubuntu-20-04/https://phoenixnap.com/kb/ubuntu-install-kvm命令行安装virt virsh, …安装创建磁盘qemu-image1 2 3 qemu-img create ubuntu.img 20G qemu-img create -f qcow2 ubuntu.qcow2 20G启动和安装安装 1 2 3 4 5 6 7 8 9 10 11 12 13 qemu-system-x86_64 \ # 磁盘路径 -hda ubuntu.img \ # 启动顺序 -boot d \ # 安装iso文件路径 -cdrom /path/to/install_iso_file \ # 内存大小,默认单位MiB -m 640-boot: 启动数序阅读更多 上一页 下一页