好耶

alist

Home | AList文档 (nn.ci)

  1. github下载win版本
  2. alist,启动!alist server
  3. 账号密码在输出日志,访问端口也在
  4. 修改默认密码
  5. 两个脚本
1
2
3
4
5
6
7
8
9
10
启动.vbs:
Set ws = CreateObject("Wscript.Shell")
ws.run "alist.exe server",vbhide

启动.vbs:
Dim Wsh
Set Wsh = WScript.CreateObject("WScript.Shell")
Wsh.Run "taskkill /f /im alist.exe",0
Set Wsh=NoThing
WScript.quit
  1. 启动脚本创建快捷方式扔到C:\ProgramData\Microsoft\Windows\Start Menu\Programs\StartUp

raidrive

下载

raidrive

1685628151761

nfs入门

安装

服务端

1
2
3
4
5
6
7
8
9
sudo apt install  nfs-kernel-server
mkdir -p /www/nfs
vim /etc/exports
### 写入 ###
/www/nfs 10.0.0.0/8(rw,no_root_squash,no_subtree_check) 49.232.139.28/32(rw,no_root_squash,no_subtree_check)
### EOF ###
sudo service rpcbind restart
sudo service nfs-kernel-server restart
showmount -e

客户端

1
sudo apt install nfs-common

问题

代理出现奇怪的路由

都试试就行了

  • location加不加杠
  • proxy_pass加不加杠

yolo入门

之前做过一遍,但是没记笔记,寄

anaconda

注意加上path

1
2
3
4
5
6
7
8
9
10
11
12
13
# 创建
conda create -n yolov5 python=3.7 -y
# 激活
conda activate yolov5
# 先安装cuda再安装requirement
# 有两个安不上
conda install -c https://conda.anaconda.org/menpo opencv
pip install opencv-python
pip3 install opencv-python -i https://pypi.tuna.tsinghua.edu.cn/simple
conda install -c https://conda.anaconda.org/menpo thop
pip3 install thop -i https://pypi.tuna.tsinghua.edu.cn/simple
# 删除
conda env remove --name yolov5

代理

C:\Users\02\AppData\Roaming\pip下的pip.ini

1
2
3
4
5
6
7
[global]

timeout = 6000

index-url =https://mirrors.aliyun.com/pypi/simple/

trusted-host =mirrors.aliyun.come

ide

1
2
3
# 切换环境到yolov5
pip install -r requirement.txt
# 我是懒逼,我直接打开txt文件让ide自己装

cuda

官网找命令然后去掉 -c pytorch 换成 -c https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/

问题

跨域

上security之后跨域需要加上

1
http.csrf().disable().cors().and()

问题

前看后看不能使用+和*

1
2
3
4
// 不允许
(?<!.*)
// 允许
(?<.{1,10})

问题

inMemory or jdbc

Cannot build client services (maybe use inMemory() or jdbc()).

与seata冲突,在这里关了seata就行了

1
2
3
4
5
<dependency>
<groupId>com.alibaba.cloud</groupId>
<artifactId>spring-cloud-starter-alibaba-seata</artifactId>
<scope>test</scope>
</dependency>

builder注解

他会杀了构造方法,导致无法注入值

加上no arg和all arg注解