04 2020 档案

摘要:toSnakeCase toPascalCase camelCase snake_case PascalCase camelCase 阅读全文
posted @ 2020-04-29 15:30 Running00 阅读(99) 评论(0) 推荐(0) 编辑
摘要:postwoman 、postman、Insomnia app 阅读全文
posted @ 2020-04-29 11:03 Running00 阅读(90) 评论(0) 推荐(0) 编辑
摘要:1 git checkout b 需要创建的分支名 origin/master(表示某个远程分支) 2 git push set upstream origin 分支名 , 将新分支提交到远程代码库 阅读全文
posted @ 2020-04-28 19:37 Running00 阅读(866) 评论(0) 推荐(0) 编辑
摘要:mac 控制台输入 top ,可以查看各个进程的cpu 阅读全文
posted @ 2020-04-28 17:12 Running00 阅读(126) 评论(0) 推荐(0) 编辑
摘要:指定版本 brew link --overwrite node@12 --force (brew link --overwrite node@14 --force) brew search node brew install node@12 brew unlink node@10 // 取消node 阅读全文
posted @ 2020-04-27 13:30 Running00 阅读(103) 评论(0) 推荐(0) 编辑
摘要:https://juejin.im/post/5d5670f8f265da03e61b0c9c 阅读全文
posted @ 2020-04-23 20:34 Running00 阅读(100) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/CC_leather/article/details/105051719 _6 https://www.jianshu.com/p/d929436a4b7c https://docs.mongodb.com/manual/tutorial/install 阅读全文
posted @ 2020-04-23 16:19 Running00 阅读(229) 评论(0) 推荐(0) 编辑
摘要:```shell open /usr # 可以打开usr文件地址 ``` ![](https://img2020.cnblogs.com/blog/1495496/202004/1495496-20200423160713117-141072562.png) 阅读全文
posted @ 2020-04-23 16:06 Running00 阅读(112) 评论(0) 推荐(0) 编辑
摘要:Brew update 慢 https://www.jianshu.com/p/62f1b963baa6 https://www.uedbox.com/post/57246/ 第一步,替换brew.git cd "$(brew repo)" git remote set url origin htt 阅读全文
posted @ 2020-04-23 16:03 Running00 阅读(284) 评论(0) 推荐(0) 编辑
摘要:1 阅读全文
posted @ 2020-04-22 15:54 Running00 阅读(101) 评论(0) 推荐(0) 编辑
摘要:网站:https://eggjs.org/zh cn/intro/index.html github:https://github.com/eggjs/egg + 1 为企业级框架和应用而生,专注于提供 Web 开发的核心功能和一套灵活可扩展的插件机制 + 2 npm init egg type=s 阅读全文
posted @ 2020-04-20 20:49 Running00 阅读(95) 评论(0) 推荐(0) 编辑
摘要:1 小程序的标签例如(view)的class是用来做组合用的,写样式时候不要用小程序中的标签view的class做选择器,只能使用view标签 阅读全文
posted @ 2020-04-16 15:38 Running00 阅读(151) 评论(0) 推荐(0) 编辑
摘要:{pattern: /^((?!\s).) $/, message: '不能输入空格'} 阅读全文
posted @ 2020-04-14 19:58 Running00 阅读(99) 评论(0) 推荐(0) 编辑
摘要:BulkDeleteButton undoable:false表示 不能撤销 Filter Pagination Datagrid 阅读全文
posted @ 2020-04-13 15:11 Running00 阅读(118) 评论(0) 推荐(0) 编辑
摘要:https://marmelab.com/react admin/Tutorial.html Admin 1、dataProvider 唯一必需的属性,它必须是一个返回一个promise的函数, dataProvider={函数}, dataProvider: 数据提供程序,可以自己编写时候项目的d 阅读全文
posted @ 2020-04-13 11:27 Running00 阅读(1115) 评论(0) 推荐(0) 编辑
摘要:```shellgit push origin --delete branchname (分支名)``` 阅读全文
posted @ 2020-04-09 16:11 Running00 阅读(163) 评论(0) 推荐(0) 编辑
摘要:+ https://github.com/y8n/ESLint rules docs cn/blob/master/old.md + react eslint 配置 https://www.jb51.net/article/134474.htm 阅读全文
posted @ 2020-04-08 19:31 Running00 阅读(137) 评论(0) 推荐(0) 编辑
摘要:https://juejin.im/post/5cc58039f265da03775c5a6f 阅读全文
posted @ 2020-04-08 16:17 Running00 阅读(122) 评论(0) 推荐(0) 编辑
摘要:https://juejin.im/post/5b9cba4c6fb9a05cf67a79a4 阅读全文
posted @ 2020-04-08 15:38 Running00 阅读(62) 评论(0) 推荐(0) 编辑
摘要:+ 1 yarn add eslint dev + 2 npx eslint init + 3 + + + 在eslint配置文件中添加 + + 4 + + + 配置node:true 阅读全文
posted @ 2020-04-08 14:44 Running00 阅读(212) 评论(0) 推荐(0) 编辑
摘要:1 阅读全文
posted @ 2020-04-08 12:04 Running00 阅读(222) 评论(0) 推荐(0) 编辑
摘要:```json { // http://www.tslang.cn/docs/handbook/tsconfig-json.html "compilerOptions": { "outDir": "./bu", // 重定向输出目录 "target": "es5", // 指定ECMAScript目标版本 "lib": ["dom", "dom.iterable", "esnext"], // 编 阅读全文
posted @ 2020-04-07 18:44 Running00 阅读(155) 评论(0) 推荐(0) 编辑
摘要:https://yehudakatz.com/2011/08/11/understanding javascript function invocation and this/ + 1)this的值在函数被调用的时候才会指定 + 2)我们可以在函数被返回时就绑好正确的this,即箭头函数能保存函数创 阅读全文
posted @ 2020-04-07 17:00 Running00 阅读(141) 评论(0) 推荐(0) 编辑
摘要:1 sudo rm rf $HOME/Library/Application\ Support/Code 2 sudo rm rf $HOME/.vscode 3 将应用程序vscode移入废纸篓 https://zhuanlan.zhihu.com/p/86651380 阅读全文
posted @ 2020-04-07 11:58 Running00 阅读(172) 评论(0) 推荐(0) 编辑
摘要:+ 1 open in browser 右键可以在浏览器中打开 + 2 vscode 中显示... (command + ,) 在设置中配置如下 renderControlCharacters renderWhitespace 配置成功效果 + 3 gitlens 可以看到修改提示 + 4 新加了空 阅读全文
posted @ 2020-04-03 19:33 Running00 阅读(853) 评论(0) 推荐(0) 编辑
摘要:1. SUMMARY.md中加好目录 2.gitbook init 会自动创建目录 阅读全文
posted @ 2020-04-03 18:38 Running00 阅读(90) 评论(0) 推荐(0) 编辑
摘要:1. 代码大小的优化 2.性能优化 阅读全文
posted @ 2020-04-02 18:39 Running00 阅读(92) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示