1.Gin框架中mysql的连接 安装驱动(如安装go-gorm/mysql则不需引入): go get github.com/go-sql-driver/mysql 安装gorm: github.com地址: go get github.com/go-gorm/gorm go get github ...
分类:
数据库 时间:
2021-07-12 18:18:08
阅读次数:
0
一、Linux上安装scrapyd 1. linux下安装python3 可参考我之前博文:https://www.cnblogs.com/Liu928011/p/14864190.html 2. 安装scrapyd并配置软链接 安装scrapyd:pip3 install scrapyd 配置软链 ...
分类:
其他好文 时间:
2021-07-12 18:17:10
阅读次数:
0
选择排序: 数据较少时可以用,缺点:时间复杂度n的平方,优点:空间复杂度小 具体实现: /** * 选择排序 * * @param $array * @return mixed */ public function sort($array) { $len = count($array); if ($ ...
分类:
编程语言 时间:
2021-07-12 18:06:27
阅读次数:
0
快速排序: 总体最优,数据大时性能最好 具体实现:设置一个基准值,小于基准值放左边,大于基准值放右边,最后递归继续排左右两侧的,最后排完后合并 /** * 快速排序 * * @param $array * @return array */ public function sort($array): ...
分类:
编程语言 时间:
2021-07-12 18:06:10
阅读次数:
0
冒泡排序: 数据少时可以用,简单,稳定 具体实现: /** * @param $array * @return mixed */ public function sort($array) { $len = count($array); if ($len 1) { return $array; } / ...
分类:
编程语言 时间:
2021-07-12 18:05:32
阅读次数:
0
Centos下nginx+Modsecurity安装:https://www.jianshu.com/p/93e310e12036https://www.oschina.net/p/modsecurity?hmsr=aladdin1e1http://www.modsecurity.cn/practi ...
分类:
其他好文 时间:
2021-07-12 18:05:16
阅读次数:
0
有多重安装方式,这里以pip安装为例。目前已经支持中文输入法了。 参考:https://github.com/JetBrains/projector-installer (base) [root@Openwrt ~]# wget https://mirrors.bfsu.edu.cn/anacond ...
分类:
其他好文 时间:
2021-07-12 18:02:23
阅读次数:
0
2021年7月10日22:44:49 trait zx { // const sss = 9; public static function tt() { echo 'tt'; } public function yy() { echo 'yy'; } } class uu { use zx; co ...
分类:
Web程序 时间:
2021-07-12 17:56:00
阅读次数:
0
@echo off set "PATH=%~dp0bin;%path%" echo. echo 当前配置 echo. bash --login -c "echo mirror=`apt-cyg mirror`;echo cache=`apt-cyg cache`;echo;apt-cyg proxy ...
从U盘安装Kali Linux 提示 The missing fireware files are:rtlwifi/rtl8723befw_36.bin rtlwifi/rtl8723befw.bin 镜像版本:kali-linux-2021-2-releas 解决方案:下载firmware-rea ...
分类:
系统相关 时间:
2021-07-12 17:51:07
阅读次数:
0