首页 > 2020年06月24日 > 全部分享
爬虫案例
1、爬取肯德基的所有餐厅信息 kfc.com.cn/kfccda/storelist/index.aspx 肯德基官网--餐厅查询--输入查询关键字--点击查询 发现地址栏没有发生变化,说明发送的是ajax请求 2、爬取国家药品监督管理局中基于中华人民共和国化妆品生产许可证相关数据 125.35.6 ...
分类:其他   时间:2020-06-24 22:45:29    收藏:0  评论:0  赞:0  阅读:58
Linux 下XFS 文件系统修复指导书
参考:Linux 下XFS 文件系统修复指导书 Centos 7 LVM xfs文件系统修复 ls -l /dev/mapper xfs_repair /dev/mapper/centos-root xfs_repair -L /dev/mapper/centos-root init 6 #重启 f ...
分类:系统服务   时间:2020-06-24 22:44:38    收藏:0  评论:0  赞:0  阅读:288
98. 验证二叉搜索树
给定一个二叉树,判断其是否是一个有效的二叉搜索树。 假设一个二叉搜索树具有如下特征: 节点的左子树只包含小于当前节点的数。节点的右子树只包含大于当前节点的数。所有左子树和右子树自身必须也是二叉搜索树。示例 1: 输入: 2 / \ 1 3输出: true示例 2: 输入: 5 / \ 1 4 / \ ...
分类:其他   时间:2020-06-24 22:43:38    收藏:0  评论:0  赞:0  阅读:65
【转】Hbase shell操作表
启动hbase shell ./bin/hbase shell 1、创建表,查看表 create 'tableName', 'familykey1','familykey2',.... eg. create 'student','info','course'list #查看表 2、查看表信息 des ...
分类:系统服务   时间:2020-06-24 22:43:22    收藏:0  评论:0  赞:0  阅读:59
2.常用Dos命令
#盘符切换 D: C:#查看当前目录下的所有文件 dir#切换目录 cd change directory #切换盘cd /d D:切换到D盘 #cd..返回上一级# 清理屏幕 CLS# 退出终端 exit#查看电脑IP ipconfig#打开程序 #计算器 calc 画图 mapaint 记事本 ...
分类:其他   时间:2020-06-24 22:42:02    收藏:0  评论:0  赞:0  阅读:58
12, k8s 之深入理解Pod对象
Pod基本概念: 最小部署单元 一组容器的集合 一个Pod中的容器共享网络命名空间 Pod是短暂的 Pod实现机制与设计模式: 共享网络 共享存储 [root@centos7 demo]# cat b.yml apiVersion: v1 kind: Pod metadata: name: my-p ...
分类:其他   时间:2020-06-24 22:41:13    收藏:0  评论:0  赞:0  阅读:84
IOC/DI概念简述及基本应用
早几年面试时,面试官经常问我依赖注入的概念,但有面试官自己都不是很清楚ioc和di的区别,而是草草归于一类,今天翻了翻以前写的demo,顺便把这部分概念整理出来,加深一下印象。 先科普一下,IOC是什么 IOC(Inversion of Control)又称控制反转,它并不是指某种技术实现,而是OO ...
分类:其他   时间:2020-06-24 22:40:42    收藏:0  评论:0  赞:0  阅读:74
Process finished with exit code 129
错误现象: Process finished with exit code 129 错误原因: 代码推出的错误提示 > 128,意味着进程因为信号而退出(它被解释为128 +信号)。 在这次错误中,信号是1 == SIGHUP,这意味着控制TTY已经关闭。 运行环境: 客户端操作系统:window1 ...
分类:其他   时间:2020-06-24 22:40:09    收藏:0  评论:0  赞:0  阅读:245
el-table表头与内容右边框错位问题
在用element写一个后台管理系统时遇到一个坑,el-table标签渲染出数据后表头th和内容会有错位,之前没有的 修改大小都没用 于是看百度搜索一波最终解决修改之前 虽然不大 但是别扭 在全局添加 css属性 完美解决 有效 body .el-table th.gutter { display: ...
分类:其他   时间:2020-06-24 22:39:39    收藏:0  评论:0  赞:0  阅读:150
Shell 脚本踩坑指北
本贴记录写shell脚本的时候踩的那些细节坑: 1.变量赋值不要加空格 a=1 #right a = 1 #wrong 2.if判断语句 [] 之间要加空格 if["$1"] then echo "有第一个参数" else echo “没有第一个参数” fi 隐蔽的错误,bash命令执行脚本的时候, ...
分类:系统服务   时间:2020-06-24 22:38:49    收藏:0  评论:0  赞:0  阅读:79
实现字通配符
1 import java.util.*; 2 3 public class Main { 4 private static boolean match(String matchStr, String str, int matchIdx, int idx) { 5 if (matchIdx == m ...
分类:其他   时间:2020-06-24 22:37:44    收藏:0  评论:0  赞:0  阅读:88
协程的使用
asyncio 快速使用 import asyncio async def request(url): print("request正在执行 %s"%url) print("request执行完成 %s"%url) # 创建实践循环 event_loop = asyncio.get_event_lo ...
分类:其他   时间:2020-06-24 22:37:27    收藏:0  评论:0  赞:0  阅读:65
[HTML+CSS] 好看的登录界面
看着b站up主Microgoople的视频学习的 ...
分类:Web开发   时间:2020-06-24 22:36:53    收藏:0  评论:0  赞:0  阅读:126
Codeforces Round #652 (Div. 2) D - TediousLee dp
#include<map> #include<queue> #include<time.h> #include<limits.h> #include<cmath> #include<ostream> #include<iterator> #include<set> #include<stack> # ...
分类:其他   时间:2020-06-24 22:36:16    收藏:0  评论:0  赞:0  阅读:82
CentOS7 上部署 dnsmasq
1、安装 dnsmasq # yum install -y dnsmasq 2、修改配置 # grep -v '^#' /etc/dnsmasq.conf |grep -v '^$' resolv-file=/etc/resolv.dnsmasq.conf strict-order server=1 ...
分类:其他   时间:2020-06-24 22:35:44    收藏:0  评论:0  赞:0  阅读:101
6. ansible strategy
使用命令查看当前支持的strategy 列表及其描述 ansible-doc -t strategy -l debug Executes tasks in interactive debug session free Executes tasks without waiting for all ho ...
分类:其他   时间:2020-06-24 22:35:26    收藏:0  评论:0  赞:0  阅读:81
自定义路由日志的格式
默认的路由日志是这样的: [GIN-debug] POST /foo --> main.main.func1 (3 handlers) [GIN-debug] GET /bar --> main.main.func2 (3 handlers) [GIN-debug] GET /status --> ...
分类:其他   时间:2020-06-24 22:34:52    收藏:0  评论:0  赞:0  阅读:75
Codeforces Round #652 (Div. 2) C—RationalLee 构造+贪心
比赛的时候wa吐了 #include<map> #include<queue> #include<time.h> #include<limits.h> #include<cmath> #include<ostream> #include<iterator> #include<set> #includ ...
分类:其他   时间:2020-06-24 22:34:14    收藏:0  评论:0  赞:0  阅读:63
链表--删除链表中的结点(leetcode 237
题解 代码: class Solution { public void deleteNode(ListNode node) { node.val = node.next.val; node.next = node.next.next; } } ...
分类:其他   时间:2020-06-24 22:33:51    收藏:0  评论:0  赞:0  阅读:72
Qt下MSVC/Mingw平台dump/crash log报告调试方法差异
Qt下MSVC/Mingw平台dump/crash log报告调试方法差异 原文链接:https://blog.csdn.net/dgj8300/java/article/details/78450638 经过测试发现,对于MSVC/mingw平台的log到处方法有所不同,下面来介绍下2个平台构建的 ...
分类:其他   时间:2020-06-24 22:32:42    收藏:0  评论:0  赞:0  阅读:108
1260条   上一页 1 ... 5 6 7 8 9 ... 63 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!