'Origin on WCS point: 0,0,6150 'Rotation of the Zaxis: -90 degrees 'Rotation of the Yaxis: 6 degrees 'Rotation of the Xaxis: 35 degrees 'Rotation of t ...
分类:
其他好文 时间:
2020-02-20 10:29:30
阅读次数:
108
1.下载安装inotify tools 2.下载安装sersync 3.解压sersync包 4.配置sersync 5.查看sersync参数 6.启动sersync 7.测试文件实时同步 8.监控多个目录实时同步 ...
分类:
其他好文 时间:
2020-02-19 16:50:45
阅读次数:
70
就像上个文章说的,触摸事件的传递机制是从外层到内层的过程。 我们想来看看这个页面里面的层级关系: 以下我们就用what how why三部曲的方式来分析View的绘制过程。 由于篇幅很大,所以分几篇来解析这个过程。 这篇主要是自定义view/viewgroup,以及从Activity到DecorVi ...
分类:
移动开发 时间:
2020-02-19 15:22:34
阅读次数:
97
1 <!DOCTYPE html> 2 <!--这里lang=en 所以打开谷歌浏览器的时候右上角会提示翻译 3 en:英文 4 zh:中文 5 zh-CN:简体中文--> 6 <html lang="en"> 7 <head> 8 <meta charset="UTF-8"> 9 <meta na ...
分类:
Web程序 时间:
2020-02-19 05:47:31
阅读次数:
109
目的: 代码: <!--pages/index/index.wxml--> <view class="container"> <view class="top"> <text class="top_left">1</text> <view class="top_right"> <text class ...
分类:
其他好文 时间:
2020-02-18 20:43:14
阅读次数:
75
旧 th:onclick="'javascript:view_attendee_record_list('+${meetingMsg.getMeetingRecordAttendeeState()}+')'" html5的data-*能够为标签添加一些自定义的属性和值,借此来实现。 改为 <a hr ...
分类:
Web程序 时间:
2020-02-18 16:30:22
阅读次数:
107
法一:进入 https://packagist.org/ 组件网 搜索 gregwar/captcha 法二:用命令 composer require gregwar/captcha 然后:在项目中的composer.json 文件中加入 "require" :{ "gregwar/captcha" ...
分类:
其他好文 时间:
2020-02-17 19:47:49
阅读次数:
78
今日学习概览 英语 : 每日词汇 单词精讲 Lesson32 数学 : 线性代数 ——逆阵理论 英语 每日词汇 enthrone vt. 使登基,使即位 entertainer n. 演员,表演者 enslavement n. 征服,奴役 engraving n. 版画,雕版印刷品 embodime ...
分类:
其他好文 时间:
2020-02-15 20:31:19
阅读次数:
83
#!/bin/sh tomcat_id=$(ps -ef | grep tomcat | grep -v "grep" | awk '{print $2}') for tomcatid in $tomcat_id do kill -9 ${tomcatid} echo "killed tomcat_ ...
分类:
系统相关 时间:
2020-02-14 18:17:21
阅读次数:
130
一,基础正则表达式 1,正则表达式与通配符 1,正则表达式用来在文件中匹配符合条件的字符串,正则是包含匹配,grep,awk,sed等命令可以支持正则表达式 2,通配符用来匹配符合条件的文件名,通配符是完全匹配,ls find cp 这些命令不支持正则表达式,所以只能使用shell自己的通配符来进行 ...
分类:
系统相关 时间:
2020-02-14 18:10:13
阅读次数:
75