opencv 用 opencvsharp
OLEDB 管理access数据库
CV.EqualizeHist 直方图均衡化 提高图片质量 重新分配颜色比例
opencv 用 opencvsharp
OLEDB 管理access数据库
CV.EqualizeHist 直方图均衡化 提高图片质量 重新分配颜色比例
要执行请求的操作,wordPress需要访问您网页服务器的权限。 请输入您的FTP登录凭据以继续。 如果您忘记了您的登录凭据(如用户名、密码),请联系您的主机提供商
sudo chown -R www-data /var/www/wordpress
sudo chmod -R 775 /var/www/wordpress
修改wordpress目录拥有者为www-data
其实就是一种 api 描述规范
可通过 rz sz 命令传送文件
sz 上传文件
rz 下载文件
server {
listen 8080;
server_name laravel.localhost;
client_max_body_size 10M;
# Load configuration files for the default server block.
location / {
root D://robin-admin/public;
index index.html index.htm index.php;
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
root D://robin-admin/public;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
nginx 根目录指向laravel 的下的public 文件夹
try_files $uri $uri/ /index.php?$query_string; 可以有效重新访问后缀(不需要显式指明php后缀)
go build
go build main.go xxxx xxx -o main
go 交叉编译
mac下
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build filename.go
# Windows
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build filename.go
linux 下
# Mac
CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build filename.go # Windows
CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build filename.go
windows下
# Mac
SET CGO_ENABLED=0 SET GOOS=darwin SET GOARCH=amd64 go build filename.go
# Linux
SET CGO_ENABLED=0 SET GOOS=linux SET GOARCH=amd64 go build filename.go
gradle import local jar as dependency
dependencies{
// 依赖某个jar文件
implementation files(‘lib/xxx.jar’)
// 依赖libs目录下所有以.jar结尾的文件
implementation fileTree(dir: ‘lib’, include: [‘.jar’])
// 依赖libs目录下除了xxx.jar以外的所有以.jar结尾的文件 implementation fileTree(dir: ‘lib’, exclude: [‘xxx.jar’], include: [‘.jar’])
}
仓库名称 | 阿里云仓库地址 | 阿里云仓库地址(老版) | 源地址 |
---|---|---|---|
central | https://maven.aliyun.com/repository/central | https://maven.aliyun.com/nexus/content/repositories/central | https://repo1.maven.org/maven2/ |
jcenter | https://maven.aliyun.com/repository/public | https://maven.aliyun.com/nexus/content/repositories/jcenter | http://jcenter.bintray.com/ |
public | https://maven.aliyun.com/repository/public | https://maven.aliyun.com/nexus/content/groups/public | central仓和jcenter仓的聚合仓 |
https://maven.aliyun.com/repository/google | https://maven.aliyun.com/nexus/content/repositories/google | https://maven.google.com/ | |
gradle-plugin | https://maven.aliyun.com/repository/gradle-plugin | https://maven.aliyun.com/nexus/content/repositories/gradle-plugin | https://plugins.gradle.org/m2/ |
spring | https://maven.aliyun.com/repository/spring | https://maven.aliyun.com/nexus/content/repositories/spring | http://repo.spring.io/libs-milestone/ |
spring-plugin | https://maven.aliyun.com/repository/spring-plugin | https://maven.aliyun.com/nexus/content/repositories/spring-plugin | http://repo.spring.io/plugins-release/ |
grails-core | https://maven.aliyun.com/repository/grails-core | https://maven.aliyun.com/nexus/content/repositories/grails-core | https://repo.grails.org/grails/core |
apache snapshots | https://maven.aliyun.com/repository/apache-snapshots | https://maven.aliyun.com/nexus/content/repositories/apache-snapshots | https://repository.apache.org/snapshots/ |
maven 版本
<repository>
<id>spring</id>
<url>https://maven.aliyun.com/repository/spring</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
gradle 版本
allProjects {
repositories {
maven {
url 'https://maven.aliyun.com/repository/public/'
}
maven {
url 'https://maven.aliyun.com/repository/spring/'
}
mavenLocal()
mavenCentral()
}
}
流程定义模块-> 设计-> 部署 删除
流程定义历史模块
流程实例模块
任务实例模块
spring security 提供两种安全 检验模式
一种是 使用 传统的 filter chain
另一种是使用 WebSecurityConfigurerAdapter
使用类似
((HttpSecurity)((HttpSecurity)((AuthorizedUrl)http.authorizeRequests().anyRequest()).authenticated().and()).formLogin().and()).httpBasic(); 这种语法