简 述: 之前看旁边的同事大佬,在deepin
里面的终端,和我用的终端有些不一样,那会大概是以为是使用了什么插件之类的吧。和浏览器插件相似,觉得安装之类的,可能会比较麻烦,于是乎没有压下去好奇心;但时间久了,总会心里痒痒难耐,一询问,告知是zsh
,google一波,然后就在Linux上面也给布置了一套,还选用一套自己喜欢的主题, 美滋滋;回家再自己的mac上面,今天也想着也给换上zsh
;习惯统一。
简 述: 按照官网安装hexo
的教程命令;执行命令npm install -g hexo-cli
时候, 报错如下的解决方法
npm WARN checkPermissions Missing write access to /usr/local/lib/node_modules/hexo-cli
npm WARN checkPermissions Missing write access to /usr/local/lib/node_modules/hexo-cli/node_modules/chokidar
npm ERR! code EACCES
npm ERR! syscall access
npm ERR! path /usr/local/lib/node_modules/hexo-cli
npm ERR! errno -13
npm ERR! Error: EACCES: permission denied, access '/usr/local/lib/node_modules/hexo-cli'
npm ERR! [Error: EACCES: permission denied, access '/usr/local/lib/node_modules/hexo-cli'] {
npm ERR! stack: "Error: EACCES: permission denied, access '/usr/local/lib/node_modules/hexo-cli'",
npm ERR! errno: -13,
npm ERR! code: 'EACCES',
npm ERR! syscall: 'access',
npm ERR! path: '/usr/local/lib/node_modules/hexo-cli'
npm ERR! }
npm ERR!
npm ERR! The operation was rejected by your operating system.
npm ERR! It is likely you do not have the permissions to access this file as the current user
npm ERR!
npm ERR! If you believe this might be a permissions issue, please double-check the
npm ERR! permissions of the file and its containing directories, or try running
npm ERR! the command again as root/Administrator.
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/yuanyi/.npm/_logs/2019-10-30T11_43_55_100Z-debug.log
简 述: 类里面有着枚举;想要在生成的文件html
文件可以直接预览
简 述: 在生成的文件html
文件可以直接预览到插入的截图图片可以被查看,且手写的注释文档图片也可以被查看
简 述: Doxygen
是一个程序的文档产生工具,可以将程序中的注释转换成说明文档或者说是API参考手册,从而减少程序员整理文档的时间。当然这里程序中的注释需要遵循一定的规则书写,才能让Doxygen
识别和转化。
目前Doxygen
可处理的程序语言包含C/C++
、Java
、Objective-C
、IDL
等,可产生出来的文档格式有HTML
、XML
、LaTeX
、RTF
等,此外还可衍生出不少其它格式,如HTML
可以打包成CHM
格式,而LaTeX
可以通过一些工具产生出PS
或是PDF
文档等。
即: 通过代码里面的注释,生成html
或 chm
这一类的手册说明,极其类似于qt帮助文档
简 述: 在macOS 10.14.6 (18G103)
的虚拟机 VMware Fusionlimian
里面安装deepin v15.11
。
简 述: 将我自己的博客框架hexo
从win10
迁移到新的电脑macOS10.14.6
,重新设置环境变量,以便后面更好继续的写博客;之前一直都是在win10上面工作和写任务,现在前移到了macOS环境,所以以前的所有环境(IDE、图床、github本地用户配置、vim颜色配置、hexo命令等)的这些个环境变量等等,都是需要我自己来重新配置;还有很多软件都是重新寻找替代品;习惯也都是需要在新的系统(向往一个好看的Linux/Uinx环境已经很久了)来适应的;讲真,想用苹果的MacOS已经很久,之前只是在虚拟机感受体验一下过, 界面很好看,但是黑苹果毕竟体验不佳(没有预料的如丝绸一般的体验),这不,新的MacBook Pro 13到手,就迁移新机;嘿嘿;
简 述: 搭建 Hexo
+ GitHub
时,添加 ssh
的私钥,总是报错如下:
Key is invalid. You must supply a key in OpenSSH public key format
简 述: Qt_Coding_Style
;Qt
官方编码风格;
简 述: 写一个自定义和标准对话框的使用;还有关于模态对话框和非模态对话框的区别;以及多个Dialog
对象之间,如何传递数据;