摘要: # 忽略所有的 .a 文件 *.a # 但跟踪所有的 lib.a,即便你在前面忽略了 .a 文件 !lib.a # 只忽略当前目录下的 TODO 文件,而不忽略 subdir/TODO /TODO # 忽略任何目录下名为 build 的文件夹 build/ # 忽略 doc/notes.txt,但不 阅读全文
posted @ 2018-06-16 16:00 Ajanuw 阅读(42) 评论(0) 推荐(0) 编辑
摘要: "文档" 管理全部用户的公匙 在服务器上创建一个名叫 git 的用户 创建仓库 clone 仓库 在pro.git下 git log 就能看见提交的记录 安全问题, 使用git shell ssh git@192.168.32.128 // 这时只要这样就能登录到服务器 cat /etc/shell 阅读全文
posted @ 2018-06-16 09:23 Ajanuw 阅读(779) 评论(0) 推荐(0) 编辑
摘要: "文档" 创建仓库 克隆仓库,修改,提交 阅读全文
posted @ 2018-06-15 15:22 Ajanuw 阅读(176) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2018-06-07 13:18 Ajanuw 阅读(353) 评论(0) 推荐(0) 编辑
摘要: 希望能摆脱lodash的深拷贝 🐻 阅读全文
posted @ 2018-06-02 00:58 Ajanuw 阅读(575) 评论(0) 推荐(0) 编辑
摘要: 调试 阅读全文
posted @ 2018-06-01 22:19 Ajanuw 阅读(600) 评论(0) 推荐(0) 编辑
摘要: Docs: "https://www.npmjs.com/package/fast xml parser" const xml = ` ajanuw 14 alone 12 `; const fxp = require("fast xml parser"); const xml2json = fxp 阅读全文
posted @ 2018-06-01 16:20 Ajanuw 阅读(9449) 评论(0) 推荐(0) 编辑
摘要: // 创建xml数据 let doc = document.implementation.createDocument('', 'root', null); // 创建一个文档 let root =doc.documentElement; // 获取文档 let user = doc.createE 阅读全文
posted @ 2018-05-30 21:37 Ajanuw 阅读(58) 评论(0) 推荐(0) 编辑
摘要: vim 官网 vim 插件列表 vim-plug 插件管理器 安装 插件管理器 $ curl -fLo ~/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/ 阅读全文
posted @ 2018-05-12 11:39 Ajanuw 阅读(432) 评论(0) 推荐(1) 编辑
摘要: 简单的安装 "@ngxs/schematics" 1. 配置 src/store 下的config文件 (完成todo)。 2. 在Core模块中导入NgxsStoreModule模块,没有创建Core就直接在AppModule中导入。 "官网文档" ng6,rxjs6.0.0,ngxs3.0.1 阅读全文
posted @ 2018-05-05 00:02 Ajanuw 阅读(1890) 评论(0) 推荐(1) 编辑