`
文章列表
开源地址:https://github.com/pedant/safe-java-js-webview-bridge
Logcat控制台错误信息   04-06 23:55:32.038 17166-17166/com.tdpress.mashu E/chromium: [ERROR:xwalk_autofill_client.cc(121)] Not implemented reached in virtual void xwalk::XWalkAutofillClient::OnFirstUserGestureObserved()     Activity中添加:参考官方文档 @Override protected void onPause() { supe ...
参考地址:http://tool.lanrentuku.com/guifan/ui.html
使用sudo gem install cocoapods提示错误“ERROR: While executing gem ... (Errno::EPERM)”   1,卸载cocoapods: > gem list > sudo gem uninstall cocoapods > sudo gem uninstall cocoapods-core   2,重新安装cocoapod > sudo gem install cocoapods 如果还有错误使用以下语句 > sudo gem install -n /usr/local/bin coco ...
参考: http://blog.csdn.net/u010713935/article/details/52936494 http://www.jianshu.com/p/cea762105f7c
1,Shell后台执行SQL语句 mysql -uroot -p111111 -h127.0.0.1 << eof use db; source /home/db/src.sql; eof  要点:通过eof接管输入流
1,参数可以外用:循环里面的变量可以在循环体外使用   while read line do echo $line done < $filepath       2,循环体内参数不可以外用:循环里面的变量,在循环体外无法访问   cat $filepath| while read line do echo $line done      
转自:http://www.cnblogs.com/xudong-bupt/p/3567096.html    为了完整起见,我这里再用一些例子加以说明 ${ } 的一些特异功能: 假设我们定义了一个变量为:file=/dir1/dir2/dir3/my.file.txt我们可以用 ${ } 分别替换获得不同的值:${file#*/}:拿掉第一条 / 及其左边的字符串:dir1/dir2/dir3/my.file.txt${file##*/}:拿掉最后一条 / 及其左边的字符串:my.file.txt${file#*.}:拿掉第一个 . 及其左边的字符串:file.txt${file## ...
转载自:http://www.cnblogs.com/LoveJulin/p/5082363.html   nginx服务器日志相关指令主要有两条,一条是log_format,用来设置日志格式,另外一条是access_log,用来指定日志文件的存放路径、格式和缓存大小,一般在nginx的配置文件中日记配置(/usr/local/nginx/conf/nginx.conf)。 nginx的log_format有很多可选的参数用于指示服务器的活动状态,默认的是:log_format  access  '$remote_addr - $remote_user [$time_local] &q ...
配置参数   Properties props = new Properties(); props.put("mail.smtp.host", "smtp.exmail.qq.com"); props.put("mail.smtp.port", "25"); props.put("mail.smtp.auth", "true"); props.put("mail.smtp.socks.host", "192.168.67.23&quo ...
服务器环境:CentOS Linux 7 (Core) 代理软件:SS5 下载地址:https://nchc.dl.sourceforge.net/project/ss5/ss5/3.8.9-8/ss5-3.8.9-8.tar.gz   1,安装系统编译包 > yum install gcc automake make   2,安装Socket5支持包 > yum -y install pam-devel openldap-devel cyrus-sasl-devel   3,下载、编译、安装SS5 > wget "https://nchc. ...
参考教材: http://www.cnblogs.com/lihuang/articles/4205540.html http://blog.csdn.net/wuwo333/article/details/53020403     1,生成私钥:得到.key文件 > openssl genrsa -des3 -out fanyc.cn.key 2048   说明:生成rsa私钥,des3算法,2048位强度,server.key是秘钥文件名。   2,生成CSR(证书签名请求):得到.csr文件 > openssl req -new -key fanyc.c ...
1,输入框自动获取焦点 <form> <p><label>Search:<input name="search" autofocus="autofocus"></label></p> </form>     2,页面排版 <header>这是文档header</header> <nav>导航栏</nav> <article>文章内容</article> <aside> ...
1,HTML页面上设置缓存头: <meta http-equiv="Expires" content="0"> <meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Cache-control" content="no-cache"> <meta http-equiv="Cache" content="no-cache&qu ...
1,查看当前版本: > /usr/sbin/nginx -V nginx version: nginx/1.10.1 built by gcc 4.8.5 20150623 (Red Hat 4.8.5-4) (GCC) built with OpenSSL 1.0.1e-fips 11 Feb 2013 TLS SNI support enabled configure arguments: --prefix=/etc/nginx (此处省略一大堆) --with-mail   2,下载最新版本,并解压 > wget http://101.96.10.6 ...
Global site tag (gtag.js) - Google Analytics