超灬超  

2021年6月23日

摘要: 将博客搬至CSDN 阅读全文
posted @ 2021-06-23 10:21 超灬超 阅读(23) 评论(0) 推荐(0) 编辑

2021年5月7日

摘要: 高层篇又是一个阳光灿烂的中午,看了一上午的报纸,茶水也顺带喝了不少,肚子早已经咕咕作响了,今天中午吃点什么了,貌似楼下的新开张的盒饭还不错,于是我来到楼下准备买上一盒。 菜色还不错,价格有6元,8元,10元,12元,20元的,像哥这样的精英管理人才,怎么着也的吃最高级的才配合身份,就在我准备购买时, 阅读全文
posted @ 2021-05-07 16:05 超灬超 阅读(143) 评论(0) 推荐(0) 编辑

2021年4月22日

摘要: querylist采集数据 模拟滑动验证码 jcapche1.获取验证码token 2.模拟传入验证码滑动距离 ,经过检测不低于140 private function get_slide_distance($distance,$token){ $cookieArr = $this->get_jar 阅读全文
posted @ 2021-04-22 16:04 超灬超 阅读(199) 评论(0) 推荐(0) 编辑

2021年4月21日

摘要: 1.工具类 ImgCopress.php <?php namespace app\index\controller; /* 图片压缩类:通过缩放来压缩。 * 如果要保持源图比例,把参数$percent保持为1即可。 * 即使原比例压缩,也可大幅度缩小。数码相机4M图片。也可以缩为700KB左右。如果 阅读全文
posted @ 2021-04-21 11:38 超灬超 阅读(254) 评论(0) 推荐(0) 编辑

2021年4月20日

摘要: // 查询文档 (分页,排序,权重,过滤) public function search_doc($keywords = "", $profession_arr = '', $city_arr = [], $province_arr = [], $country_arr = [], $contine 阅读全文
posted @ 2021-04-20 09:25 超灬超 阅读(171) 评论(0) 推荐(0) 编辑

2021年4月16日

摘要: <div class="voice_button"> <div style="position: absolute;left: 0;top: 0;width: 100%;height: 100%;opacity: 1;"></div> <img src="__STATIC__/images/acti 阅读全文
posted @ 2021-04-16 16:28 超灬超 阅读(356) 评论(0) 推荐(0) 编辑

2021年4月13日

摘要: 1.在CDN管理中添加域名 如有https则需要配置证书2.在域名管理中解析CNAME 记录值填写为 CDN中的CNAME值 3.若CNAME与A记录有冲突 则需要先暂停或者取消A记录的解析。 阅读全文
posted @ 2021-04-13 15:44 超灬超 阅读(513) 评论(0) 推荐(0) 编辑
 
摘要: package main import ( "fmt" "reflect" ) type FlyBird struct { Name string LifeExpectancy int } func (b *FlyBird) BirdFly(){ fmt.Println("bird fly") } 阅读全文
posted @ 2021-04-13 14:14 超灬超 阅读(37) 评论(0) 推荐(0) 编辑
 
摘要: package main import "fmt" type IFly interface { Fly() } type Bird struct { name string location string } func (b *Bird) Fly() { fmt.Println("bird fly" 阅读全文
posted @ 2021-04-13 14:01 超灬超 阅读(45) 评论(0) 推荐(0) 编辑
 
摘要: package main import "fmt" /**values [] chan 整型*/ func sum(values []int, resultChan chan int) { sum := 0 //循环数组求和 for _, value := range values { sum += 阅读全文
posted @ 2021-04-13 13:46 超灬超 阅读(61) 评论(0) 推荐(0) 编辑