下载 wget http://nginx.org/download/nginx-1.10.3.tar.gz wget http://zlib.net/zlib-1.2.11.tar.gz wget https://ftp.pcre.org/pub/pcre/pcre-8.40.tar.gz wget ...
分类:
系统相关 时间:
2021-04-02 13:08:30
阅读次数:
0
Centos7 Centos7源镜像修改 # Insatll wget yum install -y wget # Backup repo; mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup m ...
分类:
系统相关 时间:
2021-04-02 13:06:44
阅读次数:
0
首先安装MySQL服务: wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm yum -y install mysql57-community-release-el7-10.noarch.rp ...
分类:
数据库 时间:
2021-04-02 12:58:53
阅读次数:
0
(JAVA中过滤器(Filter)与拦截器(Interceptor)) 概述 过滤器(Filter) 过滤器实际上就是对web资源进行拦截,做一些处理后再交给下一个过滤器或servlet处理 通常都是用来拦截request进行处理的,也可以对返回的response进行拦截处理。 拦截器(Interc ...
分类:
编程语言 时间:
2021-04-02 12:57:04
阅读次数:
0
我们想要发起 get 或者 post 请求,我们需要有接口地址和必要的参数; 我们可以在 聚合数据网站找到免费的接口地址,让我们来练习:https://www.juhe.cn/ 注册实名认证一下就可以用了 老黄历接口可以发起get和post请求 1、发起 get 请求 第一步:右击“测试计划”添加“ ...
分类:
其他好文 时间:
2021-04-01 13:15:44
阅读次数:
0
BufferedReader streamReader = new BufferedReader( new InputStreamReader(request.getInputStream(), "UTF-8"));StringBuilder responseStrBuilder = new Str ...
分类:
Web程序 时间:
2021-04-01 13:14:14
阅读次数:
0
1. GLPK缺失 igraph::cluster_optimal社团检测算法依赖系统中的GLPK包。 MacOS 11.2 brew install glpk CentOS 7 wget http://download-ib01.fedoraproject.org/pub/epel/7/x86_6 ...
分类:
其他好文 时间:
2021-04-01 12:54:29
阅读次数:
0
declare module '@alipay/bigfish' { function useModel<S>(initialState: string); function request<S>(url: string, options: any); export const history: { ...
分类:
其他好文 时间:
2021-04-01 12:52:52
阅读次数:
0
下载python源码至服务器 http://npm.taobao.org/mirrors/python/3.7.5/Python-3.7.5.tgz (根据自己的需要去下载对应的版本) wget http://npm.taobao.org/mirrors/python/3.7.5/Python-3. ...
分类:
编程语言 时间:
2021-03-31 12:32:39
阅读次数:
0
### Python网络爬虫之requests模块 ###### 什么是requests模块 ? request模块是python中原生的基于网络请求的模块,其主要作用是用来模拟浏览器发起请求。功能强大,用法简洁高效。在爬虫领域中占着半壁江山的地位。 ###### 为什么要使用request模块 ? ...
分类:
编程语言 时间:
2021-03-31 12:17:39
阅读次数:
0