参考: linux添加环境变量4种方法 (360doc6.net) Linux vi/vim | 菜鸟教程 (runoob.com) 基础 Linux的环境变量是保存在变量PATH中,可通过Linux shell命令 echo $PATH 查看输出内容,或者直接输入export查看。 Linux环境 ...
分类:
系统相关 时间:
2021-06-02 20:15:43
阅读次数:
0
go mod 命令 golang 提供了 go mod命令来管理包。 go mod 有以下命令: download (下载依赖包) edit (编辑go.mod) graph (打印模块依赖图) init (在当前目录初始化mod) tidy (拉取缺少的模块,移除不用的模块) vendor (将依 ...
分类:
其他好文 时间:
2021-06-02 19:56:03
阅读次数:
0
阿拉伯数字转汉字数字 public static String int2chineseNum(int src) { final String num[] = {"零", "一", "二", "三", "四", "五", "六", "七", "八", "九"}; final String unit[] ...
分类:
其他好文 时间:
2021-06-02 19:53:42
阅读次数:
0
启动nginx服务时如果遇到这个错误 Job for nginx.service failed because the control process exited with error code. See “systemctl stat 可能原因如下: 1.nginx配置文件有错误 运行下面命令查 ...
分类:
其他好文 时间:
2021-06-02 19:50:08
阅读次数:
0
日志猫的使用 logcat //区别 输出颜色不同 级别不同 Log.v("MainActivity", "verbose");//黑色的日志 Log.d("MainActivity", "debug"); //蓝色的日志 Log.i("MainActivity", "info"); // 绿色的日 ...
分类:
其他好文 时间:
2021-06-02 19:48:28
阅读次数:
0
跟数据库进行交互 mybatis3逆向工程 MBG generator 两个critical 或的关系 ?????????? CRUD 是什么? Mybatis 工作原理 首先调用 SqlSessionFactoryBuilder build build 函数中 先创建 XmlConfigBuild ...
分类:
其他好文 时间:
2021-06-02 19:47:58
阅读次数:
0
这个世界上没有不带伤的人,无论什么时候,你都要相信,真正治愈自己的,只有自己。不去抱怨,尽量担待;不怕孤单,努力沉淀。 ...
分类:
其他好文 时间:
2021-06-02 19:42:59
阅读次数:
0
环境介绍 RHEL8 nginx 192.168.92.129 RHEL8 myxql 192.168.92.130 RHEL8 php 192.168.92.131 nginx配置 //关闭服务器和selinux [root@nginx ~]# systemctl disable --now fi ...
分类:
其他好文 时间:
2021-06-02 19:38:14
阅读次数:
0
1 Building Systems 1.1 用pdb4amber准备PDB文件 学习结果: 了解Amber基本信息流中的步骤 了解pdb4amber命令的基本语法 介绍: ...
分类:
数据库 时间:
2021-06-02 19:35:36
阅读次数:
0
原题链接 考察:数位dp 思路: 求回文数字的个数. dfs参数: 1.pos 枚举到第几位 2.len 回文数的长度. 其实不需要变量记录是否合法,不合法的不取搜就行了. ##Code #include <iostream> #include <cstring> using namespace s ...
分类:
其他好文 时间:
2021-06-02 19:35:00
阅读次数:
0