导航

 
上一页 1 2 3 4 5 6 7 ··· 28 下一页

2019年12月31日

摘要: 最近在用jmeter做压力测试时,发现一个问题,当线程持续上升到某个值时,报错:java.net.BindException: Address already in use: connect,如下图所示: 原因:windows提供给TCP/IP链接的端口为 1024-5000,并且要四分钟来循环回收 阅读全文
posted @ 2019-12-31 10:03 slqt 阅读(365) 评论(0) 推荐(0) 编辑
 

2019年12月24日

摘要: 抓取天天基金网数据获取内容 阅读全文
posted @ 2019-12-24 15:49 slqt 阅读(584) 评论(0) 推荐(0) 编辑
 

2019年12月10日

摘要: #-*-coding:utf-8-*-# coding:utf-8import sys, osfrom PIL.Image import *from PIL.ImageDraw import *import shutilimport numpy as npimport osimport timefrom sklearn.externals import joblibfrom sklearn.nei 阅读全文
posted @ 2019-12-10 17:55 slqt 阅读(528) 评论(0) 推荐(0) 编辑
 

2019年11月12日

摘要: grant all privileges on *.* to 'dbuser'@'%' identified by '密码' with grant option; flush privileges; 阅读全文
posted @ 2019-11-12 17:17 slqt 阅读(125) 评论(0) 推荐(0) 编辑
 

2019年10月18日

摘要: 获取正在热映的电影:https://douban.uieee.com/v2/movie/in_theaters访问参数:start : 数据的开始项 count:单页条数 city:城市 获取电影Top250:https://douban.uieee.com/v2/movie/top250访问参数: 阅读全文
posted @ 2019-10-18 16:51 slqt 阅读(662) 评论(0) 推荐(0) 编辑
 

2019年10月8日

摘要: #coding:utf8u"""东方财富网-财报分析工具http://quote.eastmoney.com"""import lxmlfrom lxml import etreeimport requestsid='sh600069'base_url='http://f10.eastmoney.c 阅读全文
posted @ 2019-10-08 17:59 slqt 阅读(2659) 评论(0) 推荐(0) 编辑
 

2019年9月23日

摘要: #coding=utf8import requestsimport jsonimport timeimport sysdef send_report(reporter,report_text,url): reporter = '' now_time = time.strftime('%Y-%m-%d 阅读全文
posted @ 2019-09-23 10:04 slqt 阅读(1198) 评论(0) 推荐(0) 编辑
 

2019年9月19日

摘要: git config --global http.sslVerify falsegit clone https://用户名:密码@git.xxxx.cn/xxx/xxx.git master 如果用户名和密码里有@等特殊字符,要转成urlcode码。比如@就转成%40 阅读全文
posted @ 2019-09-19 10:37 slqt 阅读(5810) 评论(0) 推荐(1) 编辑
 

2019年9月4日

摘要: #coding=utf8 import sys import os import requests import json import time username = '' password = server_ip='' job_name='' req = requests.get('http://{}/crumbIssuer/api/xml?xpath=concat(//crumbR... 阅读全文
posted @ 2019-09-04 15:36 slqt 阅读(752) 评论(0) 推荐(0) 编辑
 

2019年8月21日

摘要: 修改字段数据 UPDATE vminfo SET owner = '' WHERE vmip in ('') 1.添加字段 ALTER TABLE 表明 add 字段名称 类型(int,char,VARCHAR...) DEFAULT 默认值 位置(FIRST, AFTER+字段名称); 2.删除 阅读全文
posted @ 2019-08-21 17:32 slqt 阅读(613) 评论(0) 推荐(0) 编辑
 
上一页 1 2 3 4 5 6 7 ··· 28 下一页