#CI

INFO: Ignoring response <503 http://www.xicidaili.com/nn>: HTTP status code is not handled or not allowed 用scrapy爬虫

用scrapy爬取http://www.xicidaili.com/nt/1(国内ip)是启动小蜘蛛一直报错,将网址换成百度是可以进入parse。错误:2018-04-1716:55:52[scrapy.core.engine]DEBUG:Crawled(503)<GEThttp://www.xicidaili....

服务器:RAID、AHCI、IDE

RAID独立磁盘冗余阵列(RAID,redundantarrayofindependentdisks)是把相同的数据存储在多个硬盘的不同的地方(因此,冗余地)的方法。通过把数据放在多个硬盘上,输入输出操作能以平衡的方式交叠,改良性能。因为多个硬盘增加了平均故障间隔时间(MTBF),储存冗余数据也增加了容错。磁盘阵列其样...
代码星球 ·2020-08-09

Sicily 4495. Print permutations

http://soj.me/4495按字典序生成字符串的全排列直接递归: #include<iostream>#include<string>#include<cstring>usingnamespacestd;intlen;boolever[9];stringstr;vo...

HDU1250:Hat's Fibonacci

ProblemDescriptionAFibonaccisequenceiscalculatedbyaddingtheprevioustwomembersthesequence,withthefirsttwomembersbeingboth1.F(1)=1,F(2)=1,F(3)=1,F(4)=1,F(n>4)=...
代码星球 ·2020-08-09

1013 Battle Over Cities (25 分)

Itisvitallyimportanttohaveallthecitiesconnectedbyhighwaysinawar.Ifacityisoccupiedbytheenemy,allthehighwaysfrom/towardthatcityareclosed.Wemustknowimmediatelyifwe...
代码星球 ·2020-08-09

Python2.7编码问题:UnicodeDecodeError: 'ascii' codec can't decode byte 0xe8 in position...解决方法

 解决方法:在Python程序最前面加上以下语句:importsysreload(sys)sys.setdefaultencoding('utf-8') ...

持续集成服务 Travis CI (转)

编写代码只是软件开发的一小部分,更多的时间往往花在构建(build)和测试(test)。为了提高软件开发的效率,构建和测试的自动化工具层出不穷。TravisCI 就是这类工具之中,市场份额最大的一个。本文介绍TravisCI的基本用法。用好这个工具不仅可以提高效率,还能使开发流程更可靠和专业化,从而提高软件的...

MySQL:Specified key was too long; max key length is 767 bytes.

建表语句:CREATETABLEIFNotEXISTSapi(apivarchar(500)notnull,methodvarchar(50)notnulldefault'POST',PRIMARYkey(api,method))ENGINE=InnoDBDEFAULTCHARSET=utf8;报错: Spe...
代码星球 ·2020-08-09

机器学习常见的几种评价指标:精确率(Precision)、召回率(Recall)、F值(F-measure)、ROC曲线、AUC、准确率(Accuracy)

原文链接:https://blog.csdn.net/weixin_42518879/article/details/83959319主要内容:机器学习中常见的几种评价指标,它们各自的含义和计算(注意本文针对二元分类器!)1、混淆矩阵TruePositive(真正,TP):将正类预测为正类的数目TrueNegative...

解决UnicodeDecodeError: ‘ascii’ codec can’t decode byte 0xe5 in position 108: ordinal not in range(128

 对需要str->unicode的代码,可以在前边写上importsysreload(sys)sys.setdefaultencoding(‘utf8′)把str编码由ascii改为utf8(或gb18030)importsysreload(sys)sys.setdefaulte...

scikit learn 安装

 pipinstall-Uscikit-learnpipinstallmatplotlibpipinstallScipy...
代码星球 ·2020-08-09

ci与cd的全称

ContinuousIntegration(CI)/ContinuousDelivery(CD)  ...
代码星球 ·2020-08-08

自定义圆形图片控件CircleImageView的实现

packagecom.loaderman.circleimageviewdemo;importandroid.content.Context;importandroid.content.res.TypedArray;importandroid.graphics.Bitmap;importandroid.graphics...

hive cast( as integer)报错 in primitive type specification

原因是hive版本太老,不能识别integer,只能识别inthttp://mail-archives.apache.org/mod_mbox/hive-dev/201310.mbox/%3CJIRA.12595720.1340551511790.3851.1383257119001@arcas%3E生效版本是0.8....
代码星球 ·2020-08-08
首页上一页...109110111112113...下一页尾页