安装完postgres后,默认只能本机访问数据库,下面通过配置实现局域网内访问postgres数据库。 1、修改配置文件 在安装目录的/data文件夹下,打开pg_hba.conf文件,定位到如下文本。 # IPv4 local connections:host all all 127.0.0.1/ ...
分类:
数据库 时间:
2021-06-17 16:48:03
阅读次数:
0
1、 进入数据 mysql -u root -p ‘原来的密码’ //进入数据库中 2、 切换数据库 use mysql; 3、使用以下命令开启root用户远程访问权限: CREATE USER 'root'@'%' IDENTIFIED BY '你的密码'; GRANT ALL ON *.* TO ...
分类:
数据库 时间:
2021-06-15 18:39:53
阅读次数:
0
打开源码看到 下来是源码 <?php $flag=""; function replaceSpecialChar($strParam){ $regex = "/(select|from|where|join|sleep|and|\s|union|,)/i"; return preg_replace( ...
分类:
Web程序 时间:
2021-06-15 18:38:24
阅读次数:
0
transition:要过渡的属性 花费时间 运动曲线 何时开始 如 transition: width 0.5s ease-in 0s(立马开始的意思); 写到所需要的标签上,不写到hover里 如果想要所有属性都变化用all transform:translate(100px或者50%); 是以 ...
分类:
Web程序 时间:
2021-06-11 19:14:32
阅读次数:
0
需求:一个table,点击按钮,每行都调用接口,接口参数是table每一行对象的参数分析 使用到了promise.all 上代码: //定义集合存放promise.all 集合 var prolist = []; //此处使用promise.all that.tableData.forEach(el ...
分类:
其他好文 时间:
2021-06-10 18:37:33
阅读次数:
0
resnet50 pytorch版本实现 torchvision.models.resnet import torch.nn as nn import math import torch.utils.model_zoo as model_zoo __all__ = ['ResNet', 'resne ...
分类:
Web程序 时间:
2021-06-10 18:31:55
阅读次数:
0
今天调试C++ 连接mysql数据库,用localhost可以成功,但换成本地IP地址则报错, 后参考网上博文,采用命 GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY 'root' WITH GRANT OPTION; flush pr ...
分类:
数据库 时间:
2021-06-08 23:13:25
阅读次数:
0
文章转自:微信公众号「机器学习炼丹术」 作者:炼丹兄(欢迎交流,共同进步) 联系方式:微信cyx645016617 论文名称:「MLP-Mixer: An all-MLP Architecture for Vision」 论文链接:https://arxiv.org/pdf/2105.01601v1 ...
分类:
其他好文 时间:
2021-06-07 21:06:09
阅读次数:
0
1、进入Maven仓库的主页 maven官网:https://mvnrepository.com/ 2、搜索自己要使用的依赖jar包并下载文档 以yzk18-GUI为例点击进入: 选择一个最新的版本: 点击View All: 点击xxx-javadoc.jar,然后进行下载: 3、查看文档 将之前下 ...
分类:
其他好文 时间:
2021-06-06 19:39:00
阅读次数:
0
Preliminaries Linux Basics Change Password: passwd shutdown: sudo shutdown -h 3 (broadcast to all users in 3 mins) reboot: sudo reboot -r now create a ...
分类:
其他好文 时间:
2021-06-06 18:53:34
阅读次数:
0