效果展示理论基础——“常见的canvas优化——模糊问题、旋转效果” 用离屏canvas画基础部分 1、封装画线函数 function drawLine(ctx,x1,y1,x2,y2,color){ ctx.save(); ctx.beginPath(); ctx.strokeStyle = co ...
分类:
其他好文 时间:
2020-05-15 00:00:56
阅读次数:
89
1.发出DNS请求 问:www.server.com的IP是啥? 2.本地域名服务器在自己的缓存中查找,找到:返回IP地址,未找到:进入下一步 3.本地DNS服务器询问根域名服务器 问:大哥,能告诉www.server.com的IP是什么吗? 4.根域名服务器(最高层次,不直接解析域名) 答:.co ...
分类:
其他好文 时间:
2020-05-14 19:44:27
阅读次数:
66
代码模板就是预先定义好的一个代码片段。VS中,我们只要输入模板的名称,然后连按两下TAB,VS就可以给我们把代码片段补充完整。 1. 内置代码片段 关键字 生成 for for(int i = 0; i < length; i++){} foreach foreach (var item in co ...
分类:
其他好文 时间:
2020-05-14 11:33:02
阅读次数:
58
<?php $arrContextOptions=array( "ssl"=>array( "verify_peer"=>false, "verify_peer_name"=>false, ), ); $response = file_get_contents("https://maps.co.we ...
分类:
其他好文 时间:
2020-05-14 11:23:00
阅读次数:
65
1、查看当前用户名和邮箱 1 git config user.name 2 git config user.email 2、修改 git config --global user.name "test(新的用户名)" git config --global user.email "abc@qq.co ...
分类:
其他好文 时间:
2020-05-13 11:54:18
阅读次数:
221
工作需要,在测试环境搭建了一下日志平台,记录一下。 服务器:linux centos 工具列表:elasticsearch,kibana,filebeat 1、下载es,kibana,filebeat 。直接官网下载 https://www.elastic.co/cn/,因为我的jdk是1.8,所以 ...
分类:
其他好文 时间:
2020-05-12 14:02:56
阅读次数:
127
https://www.cnblogs.com/szm2019/https://www.cnblogs.com/szm2019/https://www.cnblogs.com/szm2019/https://www.cnblogs.com/szm2019/https://www.cnblogs.co... ...
分类:
其他好文 时间:
2020-05-12 09:33:30
阅读次数:
62
1.更改一下webpack端口配置就可以了 两个页面: 页面1.config中的index.js页面 更改下port:端口 页面2.package.json页面 更改端口 "scripts": { "dev": "webpack-dev-server --inline --progress --co ...
分类:
其他好文 时间:
2020-05-11 13:10:09
阅读次数:
99
jigcpp主要修改 附上jigcpp文件 // (C) Copyright 2005-2007 by Autodesk, Inc. // // Permission to use, copy, modify, and distribute this software in // object co ...
分类:
其他好文 时间:
2020-05-10 22:47:39
阅读次数:
62
leetcode 4.[寻找两个有序数组的中位数] [寻找两个有序数组的中位数]: https://leetcode cn.com/problems/median of two sorted arrays/ leetcode 9.[回文数] [回文数]: https://leetcode cn.co ...
分类:
其他好文 时间:
2020-05-10 19:28:15
阅读次数:
73