Kerronex

Results 18 issues of Kerronex

尝试使用 PROCESS-NAME,messages 规则也无效,信息无法同步也无法发送,关闭增强模式后恢复。。。 有人知道需要修改什么规则吗

包括、不限于 『/』『=』『.』『#』

Web
Spring

## Node 版本管理: - nvm - n(推荐) Npm 增强: - yarn - pnpm(推荐) - cnpm - nrm(镜像管理) ## Python 版本管理: - pyenv、pyenv-virtualenv / virtualenv

Web
Tools

- [ ] top - [ ] vmstat - [ ] mtr - [x] [nslookup / dig](https://github.com/bfchengnuo/MyRecord/issues/31#issuecomment-867681402) - [x] [crontab](https://github.com/bfchengnuo/MyRecord/issues/31#issuecomment-661908851) - [x] [export](https://github.com/bfchengnuo/MyRecord/issues/31#issuecomment-612826531) - [x] [lsof](https://github.com/bfchengnuo/MyRecord/issues/31#issuecomment-533941538) - [x] [netstat](https://github.com/bfchengnuo/MyRecord/issues/31#issuecomment-533940908) -...

Linux

CentOS Linux 8 发行版的更新持续到 2021 年12 月 31 日。 > CentOS 接下来将重点建设 CentOS Stream。我们将把重点从重建 Red Hat Enterprise Linux(RHEL)的 CentOS Linux 转移到 CentOS Stream,后者紧跟当前 RHEL 版本发布。 > 作为 RHEL的上游项目,CentOS Stream 会定期发布新版本,而在...

Cloud

基本命令说明:https://yeasy.gitbook.io/docker_practice/compose/commands 常用操作: https://einverne.github.io/post/2018/02/docker-compose.html https://www.cnblogs.com/cocowool/p/docker-compose-introduce.html#docker-compose --- ``` docker-compose up # 自动完成构建镜像,创建服务,启动服务,并关联服务等操作 docker-compose down # 停止 up 命令所启动的容器,并移除网络 docker-compose start # 启动存在的服务 docker-compose stop # 停止 docker-compose restart # 重启项目中服务 docker-compose exec...

Cloud

## Java空值检查 使用 Java7 加入的显式检查方法:Objects.requireNonNull ``` java public static T requireNonNull(T obj) { if (obj == null) throw new NullPointerException(); return obj; } ``` 其他的类似 `@Nullable` 、断言的方法都需要手动启用相关支持,否则不会产生任何效果。 或者可以考虑 Spring 框架的断言工具类:Assert

JavaBasic
Cloud
Spring

ES6 标准发布后,module 成为标准,标准的使用是以 export 指令导出接口,以 import 引入模块;这一点在博客介绍 ES 的时候也提到过。 在之前的 node 模块中,采用的大多数是 CommonJS 规范,使用 require 引入模块,使用 `module.exports` 导出接口。 > node 的 module 遵循 CommonJS 规范,requirejs 遵循 AMD,seajs 遵循 CMD,虽各有不同,但总之还是大体保持较为统一的代码风格。 require...

Web

## ESLint 与 Prettier > ESLint 是什么呢? 是一个开源的 JavaScript 的 linting 工具,使用 espree 将 JavaScript 代码解析成抽象语法树 (AST),然后通过AST 来分析我们代码,从而给予我们两种提示: 代码质量问题:使用方式有可能有问题(problematic patterns) 代码风格问题:风格不符合一定规则 (doesn’t adhere to certain style guidelines) ESLint 比较擅长代码质量问题的扫描,所以风格问题一般关掉,使用 Prettier...

Web

分类整理,常用的略过 TBD

Tools