摘要:
对linux 主机配置定时清理 因为经常有一些脚本会执行超时,而脚本本身又没有配置超时的配置,所以就需要有个脚本来定时对超时的程序进行清理。 很简洁的小脚本,请查看 #!/bin/bash #by wangcc function write_log { if [ $# != 2 ] then ech
阅读全文
posted @ 2020-09-10 22:48
Chuan_Chen
阅读(168)
推荐(0)
编辑
摘要:
总管写的书一直都很喜欢,从《雪中悍刀行》到《剑来》。 其实我还是最喜欢那个雪中的鼠标垫,哈哈哈 针对笔趣阁小说进行数据爬取 上源码 #filename=get_data.py # -*-coding:utf-8 -*- # BY WANGCC from bs4 import BeautifulSou
阅读全文
posted @ 2020-09-10 22:46
Chuan_Chen
阅读(450)
推荐(0)
编辑
摘要:
因为一些工作原因需要用到安全设备扫描器的漏洞数据,但是安全设备扫描器本身导出的漏洞数据是加密的,所以只能是使用爬虫进行爬取。 代码如下: # -*-coding:utf-8 -*- import requests, re import sys from bs4 import BeautifulSou
阅读全文
posted @ 2020-09-10 22:44
Chuan_Chen
阅读(686)
推荐(0)
编辑
摘要:
因为想找个网站练练手,发现这个网站不错,所以对这个网站的部分图片进行了爬取,主要是卡通图片什么的,请直接查看代码。 这个还是初版,后面会有一个升级版多线程版。 # -*- coding: utf-8 -*- # by wangcc # mail:wangcc_sd@163.com import re
阅读全文
posted @ 2020-09-10 22:39
Chuan_Chen
阅读(243)
推荐(0)
编辑
摘要:
列表生成式即List Comprehensions,是Python内置的非常简单却强大的可以用来创建list的生成式。 举个例子,要生成list [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]可以用list(range(1, 11)): `>>> L = [] for x in ra
阅读全文
posted @ 2020-09-08 15:21
Chuan_Chen
阅读(301)
推荐(0)
编辑
posted @ 2020-09-07 14:17
Chuan_Chen
阅读(74)
推荐(0)
编辑
摘要:
先从一个爬虫开始,请看下面的代码 import time def crawl_page(url): print('crawling {}'.format(url)) sleep_time = int(url.split('_')[-1]) time.sleep(sleep_time) print('
阅读全文
posted @ 2020-09-07 14:16
Chuan_Chen
阅读(103)
推荐(0)
编辑
摘要:
ssh登录缓慢,差不多半分钟才登录成功,故对其进行追踪检查 ①ssh ip -vvv 或 ssh ip -v 用于检查ssh在哪个位置用时最长 然后发现在Entering interactive session 语句后等待时间最长,超过20秒,说明非ssh登录时密 码验证的问题 ②这样看不出啥问题,
阅读全文
posted @ 2020-08-08 21:27
Chuan_Chen
阅读(458)
推荐(0)
编辑
摘要:
##刻意练习 格拉德威尔在其畅销书《异类》一书中,强调要成为一个领域的专家,一定要刻意练习一万个小时以上。 事实真是如此么? 一个人有这么多时间去做吗? 练习时间长短,和实际工作表现之间,到底有多大联系呢? 美国的管理学家索南史恩列举了一些综合性的研究,也就是所谓的“荟萃分析”,把几十个研究放在一起
阅读全文
posted @ 2020-06-28 06:55
Chuan_Chen
阅读(148)
推荐(0)
编辑
摘要:
```golangfunc main (){ sum,avg,count := GetScore(90,82.5,73,64.8) fmt.Printf("学员共有 %d 门成绩,总成绩是 %0.2f ,平均成绩为 :%0.2f",count,sum,avg) fmt.Println() scores := []float64{92,72.5,74.5,89,87,74} sum, avg, co...
阅读全文
posted @ 2020-05-14 23:15
Chuan_Chen
阅读(295)
推荐(0)
编辑
#waifu-toggle {
background-color: #fa0;
border-radius: 5px;
bottom: 66px;
color: #fff;
cursor: pointer;
font-size: 12px;
right: 0;
margin-right: -100px;
padding: 5px 2px 5px 5px;
position: fixed;
transition: margin-right 1s;
width: 60px;
writing-mode: vertical-lr;
}
#waifu-toggle.waifu-toggle-active {
margin-right: -40px;
}
#waifu-toggle.waifu-toggle-active:hover {
margin-right: -30px;
}
#waifu {
bottom: -1000px;
right: 0;
line-height: 0;
margin-bottom: -10px;
position: fixed;
transform: translateY(3px);
transition: transform .3s ease-in-out, bottom 3s ease-in-out;
z-index: 1;
}
#waifu:hover {
transform: translateY(0);
}
#waifu-tips {
animation: shake 50s ease-in-out 5s infinite;
background-color: rgba(236, 217, 188, .5);
border: 1px solid rgba(224, 186, 140, .62);
border-radius: 12px;
box-shadow: 0 3px 15px 2px rgba(191, 158, 118, .2);
font-size: 14px;
line-height: 24px;
margin: -30px 20px;
min-height: 70px;
opacity: 0;
overflow: hidden;
padding: 5px 10px;
position: absolute;
text-overflow: ellipsis;
transition: opacity 1s;
width: 250px;
word-break: break-all;
}
#waifu-tips.waifu-tips-active {
opacity: 1;
transition: opacity .2s;
}
#waifu-tips span {
color: #0099cc;
}
#waifu #live2d {
cursor: grab;
height: 300px;
position: relative;
width: 300px;
}
#waifu #live2d:active {
cursor: grabbing;
}
#waifu-tool {
color: #aaa;
opacity: 0;
position: absolute;
left: -10px;
top: 70px;
transition: opacity 1s;
}
#waifu:hover #waifu-tool {
opacity: 1;
}
#waifu-tool span {
color: #7b8c9d;
cursor: pointer;
display: block;
line-height: 30px;
text-align: center;
transition: color .3s;
}
#waifu-tool span:hover {
color: #0684bd;
/* #34495e */
}
@keyframes shake {
2% {
transform: translate(.5px, -1.5px) rotate(-.5deg);
}
4% {
transform: translate(.5px, 1.5px) rotate(1.5deg);
}
6% {
transform: translate(1.5px, 1.5px) rotate(1.5deg);
}
8% {
transform: translate(2.5px, 1.5px) rotate(.5deg);
}
10% {
transform: translate(.5px, 2.5px) rotate(.5deg);
}
12% {
transform: translate(1.5px, 1.5px) rotate(.5deg);
}
14% {
transform: translate(.5px, .5px) rotate(.5deg);
}
16% {
transform: translate(-1.5px, -.5px) rotate(1.5deg);
}
18% {
transform: translate(.5px, .5px) rotate(1.5deg);
}
20% {
transform: translate(2.5px, 2.5px) rotate(1.5deg);
}
22% {
transform: translate(.5px, -1.5px) rotate(1.5deg);
}
24% {
transform: translate(-1.5px, 1.5px) rotate(-.5deg);
}
26% {
transform: translate(1.5px, .5px) rotate(1.5deg);
}
28% {
transform: translate(-.5px, -.5px) rotate(-.5deg);
}
30% {
transform: translate(1.5px, -.5px) rotate(-.5deg);
}
32% {
transform: translate(2.5px, -1.5px) rotate(1.5deg);
}
34% {
transform: translate(2.5px, 2.5px) rotate(-.5deg);
}
36% {
transform: translate(.5px, -1.5px) rotate(.5deg);
}
38% {
transform: translate(2.5px, -.5px) rotate(-.5deg);
}
40% {
transform: translate(-.5px, 2.5px) rotate(.5deg);
}
42% {
transform: translate(-1.5px, 2.5px) rotate(.5deg);
}
44% {
transform: translate(-1.5px, 1.5px) rotate(.5deg);
}
46% {
transform: translate(1.5px, -.5px) rotate(-.5deg);
}
48% {
transform: translate(2.5px, -.5px) rotate(.5deg);
}
50% {
transform: translate(-1.5px, 1.5px) rotate(.5deg);
}
52% {
transform: translate(-.5px, 1.5px) rotate(.5deg);
}
54% {
transform: translate(-1.5px, 1.5px) rotate(.5deg);
}
56% {
transform: translate(.5px, 2.5px) rotate(1.5deg);
}
58% {
transform: translate(2.5px, 2.5px) rotate(.5deg);
}
60% {
transform: translate(2.5px, -1.5px) rotate(1.5deg);
}
62% {
transform: translate(-1.5px, .5px) rotate(1.5deg);
}
64% {
transform: translate(-1.5px, 1.5px) rotate(1.5deg);
}
66% {
transform: translate(.5px, 2.5px) rotate(1.5deg);
}
68% {
transform: translate(2.5px, -1.5px) rotate(1.5deg);
}
70% {
transform: translate(2.5px, 2.5px) rotate(.5deg);
}
72% {
transform: translate(-.5px, -1.5px) rotate(1.5deg);
}
74% {
transform: translate(-1.5px, 2.5px) rotate(1.5deg);
}
76% {
transform: translate(-1.5px, 2.5px) rotate(1.5deg);
}
78% {
transform: translate(-1.5px, 2.5px) rotate(.5deg);
}
80% {
transform: translate(-1.5px, .5px) rotate(-.5deg);
}
82% {
transform: translate(-1.5px, .5px) rotate(-.5deg);
}
84% {
transform: translate(-.5px, .5px) rotate(1.5deg);
}
86% {
transform: translate(2.5px, 1.5px) rotate(.5deg);
}
88% {
transform: translate(-1.5px, .5px) rotate(1.5deg);
}
90% {
transform: translate(-1.5px, -.5px) rotate(-.5deg);
}
92% {
transform: translate(-1.5px, -1.5px) rotate(1.5deg);
}
94% {
transform: translate(.5px, .5px) rotate(-.5deg);
}
96% {
transform: translate(2.5px, -.5px) rotate(-.5deg);
}
98% {
transform: translate(-1.5px, -1.5px) rotate(-.5deg);
}
0%, 100% {
transform: translate(0, 0) rotate(0);
}
}
© 2022 GitHub, Inc.
Terms
Privacy
Securi