1,设置css样式 <style>table {width: 100%;float: left;table-layout:fixed;width:600px;border:1px solid #ccc; } table tr { line-height: 25px; border:1px solid ...
分类:
其他好文 时间:
2019-09-05 18:43:45
阅读次数:
322
爬虫串讲 requests 一定要掌握 爬取数据流程: 1. 指定url 2. 发起请求 3. 获取响应数据 4. 数据解析 5. 持久化存储 get,post参数: url data/params headers proxies 处理ajax动态加载的数据: 动态加载的数据: 通过另一个请求请求到 ...
分类:
其他好文 时间:
2019-09-05 18:20:09
阅读次数:
89
最近在做项目的时候,需要显示类似钟表的数字字体,做完之后记录一下: 1、下载字体库文件 自己去网上下载你想用的css字体库,这个就根据需求自己下载了。 我自己项目中的之这个样子的(DS-Digital文件夹是我下载的字体库): 我是放在css目录下,你可以自己按照自己的意愿放到其他地方。 2、在cs ...
分类:
Web程序 时间:
2019-09-05 14:00:32
阅读次数:
732
在图数据库中我们经常需要统计节点上的关系数目。一种常见的查询写法是这样的: MATCH (n:Person {name:‘Keanu Reeves’}) [] () RETURN count( ); 上面的查询会返回代表基诺 李维斯的节点(节点标签为Person)上所有关系的总数,包括进入的和流出的 ...
分类:
其他好文 时间:
2019-09-05 13:20:07
阅读次数:
89
Rust果然比較複雜,在經歷了n次compile fail,終于寫成了一個 list 難點: 對Rc<>的用法不熟悉。對borrow checker不夠熟悉 有些寫法可能還不是最短的 ...
分类:
其他好文 时间:
2019-09-04 15:09:46
阅读次数:
87
Description: Given a paragraph and a list of banned words, return the most frequent word that is not in the list of banned words. It is guaranteed the ...
分类:
其他好文 时间:
2019-09-04 13:36:18
阅读次数:
81
1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.Linq; 7 ...
分类:
其他好文 时间:
2019-09-04 13:21:59
阅读次数:
105
1、进入linu操作界面,进入到启动服务目录下 2、选择要监控的服务的启动项,进入到编辑状态(注意:要先将该文件进行备份),如下图所示 3、修改USER_AGRS域,添加如下内容,注意修改IP USER_JAVA_OPTIONS="-Dcom.sun.management.jmxremote -Dj ...
分类:
Web程序 时间:
2019-09-03 11:41:52
阅读次数:
131
14:07:40 2019-09-02 学习 PTA第17题 六度空间理论 可以在结构体中 加上一个属性来表示层数 我是利用一个整型变量 Level和 一个数组LevelSize来记录每层数量多少 需要注意要处理 最远距离小于6的情况 1 #define _CRT_SECURE_NO_WARNING ...
分类:
其他好文 时间:
2019-09-03 09:45:00
阅读次数:
82
NSMutableAttributedString*attributedText = [[NSMutableAttributedStringalloc]initWithString:discoverModel.zy]; NSMutableParagraphStyle*style = [[NSMuta ...
分类:
其他好文 时间:
2019-09-02 17:08:21
阅读次数:
63