首页
博客
论文
Study on an emergency evacuation model considering information transfer and rerouting
A combined real-time intelligent fire detection and forecasting approach
Theoretical and experimental study on image noise reduction
卷积神经网络在建筑消防信息化的应用
陈铭的个人小站
行动起来,活在当下
累计撰写
301
篇文章
累计创建
313
个标签
累计收到
11
条评论
栏目
首页
博客
论文
Study on an emergency evacuation model considering information transfer and rerouting
A combined real-time intelligent fire detection and forecasting approach
Theoretical and experimental study on image noise reduction
卷积神经网络在建筑消防信息化的应用
目 录
CONTENT
以下是
chenming
的文章
2021-06-26
maven wrapper的使用
maven-wrapper干嘛用的?先来看看传统maven的使用流程传统使用maven需要先到官网上下载配置环境变量把mvn可执行文件路径加入到环境变量,以便之后使用直接使用mvn命令。另外项目pom.xml文件描述的依赖文件默认是下载在用户目录下的.m2文件下的repository目录下。再次,如
2021-06-26
526
0
0
Maven
2021-06-24
手动生成jwt_token(HS256、RSA算法)
生成RSA的token生成RSA密钥对可以选择在线生成,百度上找,有很多工具。或者本地用openssl生成genrsa -out privateKey.pem 1024 //生成私钥rsa -in privateKey.pem -pubout -out publicKey.pem //生成公钥注意
2021-06-24
797
0
0
Java
2021-06-22
linux安装lua、lua包管理工具luarocks和postgresql依赖
安装lua和luarocks添加环境变量vi /etc/profile# 结尾追加LUA_MAJOR_VERSION=5.3export LUA_MAJOR_VERSIONLUA_MINOR_VERSION=4export LUA_MINOR_VERSIONLUA_VERSION=5.3.4expo
2021-06-22
165
0
0
Lua
2021-06-21
postgresql安装在linux下
源码安装下载源码包浏览器上打开https://www.postgresql.org/ftp/source/,选择合适的版本下的tar.gz包,复制下载链接,在linux上用wget下载wget 安装依赖在docker的centos镜像下,postgresql一般需要装两个依赖yum install
2021-06-21
176
0
0
Linux
2021-06-19
docker部署apisix和Dockerfile部署apisix
docker镜像部署pull and rundocker pull apache/apisixdocker run --name docker_apisix -it apache/apisix /bin/bash安装etcd并启动wget https://github.com/etcd-io/et
2021-06-19
386
0
0
Apisix
2021-06-10
composer配置nexus私库实现拉去推送
推送composer.json在项目根目录下新建composer.json,里面进行如下配置{ "repositories": [ { "type": "composer", "url": &
2021-06-10
158
0
0
Nexus
PHP
2021-06-10
通过nexus的api实现拉去推送raw制品
拉取拉取以111/cmtest/111.txt为例GET: http://172.28.118.19:8100/repository/< RawRepositoryName >/111/cmtest/111.txt推送设置仓库名仓库名在url上传参,POST请求POST: http://
2021-06-10
496
0
0
Nexus
2021-06-09
yum配置nexus私库实现拉去推送
nexus端创建代理仓库,以centos7为例创建proxy仓库创建group和hosted仓库比较傻瓜式,不再赘述。由于我们用的是centos7,所以proxy库的远程url为http://mirrors.163.com/centos/7/os/x86_64/。需要注意的是这个url下必须有/re
2021-06-09
634
0
0
Nexus
Linux
2021-06-08
maven配置nexus私库实现拉去推送
settings.xml配置配置server一般来说,私库都有权限验证,需要账号密码,但是这些涉密信息又不适合直接写在pom中,所以settings.xml中配置为好。在servers下添加 <server> <id>nexus</id>
2021-06-08
372
0
1
Nexus
Maven
2021-06-07
pip使用https拉取nexus私库的pypi包
配置客户端,生成自签名证书生成密钥首先先生成密钥,也就是privkey.pemopenssl genrsa -des3 -out privkey.pem 2048生成自签名证书再生成自签名的证书cacert.pem,这个证书就是给pip用的openssl req -new -x509 -key pr
2021-06-07
273
0
0
Nexus
Python
1
...
27
28
29
30
31