第一次参加AWD的线上赛,连ssh都没连上,被打的无地自容 之前自己没有参加过AWD的比赛,完全就是一头雾水,主办方要求填写外网的IP,直接闹了个乌龙,把本机IP给报上去了,导致了网页都没访问到 自己搭建个AWD的环境,练习下,下次不要被打的找不到东南西北了 搭建环境 ubuntu18.04 Git ...
分类:
其他好文 时间:
2021-02-09 11:45:09
阅读次数:
0
import random import string # 生成大于0小于1的数,小数 print(random.random()) # 1-3之间的整数 print(random.randint(1,3)) print( random.choice('tomorrow') ) # 从序列中随机选取 ...
分类:
其他好文 时间:
2021-02-08 12:35:35
阅读次数:
0
UE4插件 Skills Tree System 4.15-4.26 The Skills Tree plugin offers the following features:-A base Skill class that can modified through Blueprints-Skill ...
分类:
其他好文 时间:
2021-02-08 11:39:47
阅读次数:
0
实现效果 这里文字右对齐 使用 <el-form ref="dialog_form" :model="dialog_form" :label-position="labelPosition" label-width="120px"> 这里要注意 声明的 label-position 后要再声明 la ...
分类:
其他好文 时间:
2021-02-05 11:00:05
阅读次数:
0
一、参考[学习DBA 范计杰] https://www.modb.pro/db/40753 http://www.360doc.com/content/21/0121/05/70704971_958071999.shtml Purging RECYCLEBIN Running Fosrever (D ...
分类:
数据库 时间:
2021-02-05 10:49:47
阅读次数:
0
下面这份代码把我们刚才做的注册系统功能完善了一下,各个功能的作用都已在注释中给出: 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>为梦而狂-注册页</title> 5 <meta http-equiv="Content-Type" content= 6 " ...
分类:
其他好文 时间:
2021-02-05 10:44:42
阅读次数:
0
模型正则化 Regularization 岭回归实现 import numpy as np import matplotlib.pyplot as plt np.random.seed(42) x = np.random.uniform(-3.0, 3.0, size=100) X = x.resh ...
分类:
其他好文 时间:
2021-02-04 12:23:51
阅读次数:
0
RestController和Controller的区别 @RestController = @ResponseBody + @Controller 如果只是使用@RestController注解Controller,则Controller中的方法无法返回jsp页面,或者html,配置的视图解析器 ...
分类:
编程语言 时间:
2021-02-04 12:13:15
阅读次数:
0
// 表单值改变触发全局校验 const handleValChange = () => { const { validateFields } = form setTimeout(() => { validateFields((errors, values) => { if (errors) { r ...
分类:
其他好文 时间:
2021-02-04 11:54:41
阅读次数:
0
单点登录中目前比较流行的一种使用方式,就是springsecurity+jwt实现无状态下用户登录;下面是对于Spring-Security进行单点登录使用token来进行交互的一种方式。第一次写博客请多多指教如果有更好的方式或者是错误的点麻烦请指教。 Spring-Security的主要几个实现类 ...
分类:
编程语言 时间:
2021-02-04 11:52:26
阅读次数:
0