adb devices 查看手机是否连接到电脑 adb push D:/1.png /sdcard/1.png 将电脑文件传输到手机 adb pull /sdcard/1.png 2.png 将手机文件传输到电脑 adb pull /sdcard/1.png 将手机文件传输到电脑 adb insta ...
分类:
数据库 时间:
2019-09-26 14:51:38
阅读次数:
87
Use: screen [-opts] [cmd [args]] or: screen -r [host.tty] Options: -4 Use IPv4. -6 Use IPv6. -a Force all capabilities into each window's termcap. -A ...
分类:
其他好文 时间:
2019-09-25 00:40:22
阅读次数:
109
在写项目当中,我们总会遇到兼容各种浏览器,当然包括ie各种版本,在解决ie css兼容性问题中,比如说使用“\0”,“\”和“\9”来仅让IE某些版本识别,但浏览器有时会无视这些代码。那我们可以尝试使用@media实现IE hack的方法. 列如: 仅IE6和IE7识别 @media screen\ ...
分类:
Web程序 时间:
2019-09-24 15:58:42
阅读次数:
128
1. 问题的引出 如果html5要适应各种分辨率的移动设备,应该使用rem这样的尺寸单位,同时给出了一段针对各个分辨率范围在html上设置font-size的代码: html{font-size:10px} @media screen and (min-width:321px) and (max-w ...
分类:
移动开发 时间:
2019-09-24 12:08:18
阅读次数:
195
https://stackoverflow.com/questions/33753912/directx-screen-capture-and-output-as-video ...
分类:
其他好文 时间:
2019-09-19 16:36:04
阅读次数:
102
css <style type="text/css" media="screen"> .box{ width: 80%; height: 500px; margin: 0 auto; } .left{ width: 20%; height: 500px; float: left; border: 1 ...
分类:
Web程序 时间:
2019-09-19 09:12:52
阅读次数:
126
在Linux中,可以使用nohup将脚本放置后台运行,如下: 但直接使用上面代码,无法在程序运行过程中查看Python中的print "computing" 输出结果,比如在每次循环中使用print语句等。原因是python的输出有缓冲,导致nohup.out不能够马上看到输出。 解决方法:使用-u ...
分类:
其他好文 时间:
2019-09-17 16:02:48
阅读次数:
281
adbconnect127.0.0.1:62001#连接夜神模拟器adbdevices#所有连接的设备adbshellpmlistpackage#所有系统包名adbpushC:\apk\test.txt/sdcard#讲电脑上的文件传输到夜神模拟器adbpull/sdcard/screen.pngC:\apk\#讲夜神模拟器的文件传输到电脑,注意不能直接传入到根目录adbshellscreenca
分类:
数据库 时间:
2019-09-17 13:01:07
阅读次数:
136
常见的DOS命令讲解 盘符: 回车 盘符切换 dir(directory):列出当前目录下的文件以及文件夹 cd (change directory)改变指定目录(进入指定目录) cd.. : 退回到上一级目录 cd\: 退回到根目录 cls : (clear screen)清屏 exit : 退出 ...
分类:
其他好文 时间:
2019-09-16 21:43:00
阅读次数:
100
What's in a name? In this lesson, I'll explain the concept of naming interactive elements for screen reader users, including forms, buttons, and links ...
分类:
数据库 时间:
2019-09-15 17:06:35
阅读次数:
137