上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页
摘要: 要实现的效果如下(footer要固定在页面底部): footer的css如下: height: 60px; background: pink; margin: 0px; position: fixed; bottom: 0px; width: 100%; 阅读全文
posted @ 2021-03-10 15:45 远洪 阅读(658) 评论(0) 推荐(0) 编辑
摘要: 设计模式分类 不同设计模式的复杂程度、 细节层次以及在整个系统中的应用范围等方面各不相同。 我喜欢将其类比于道路的建造: 如果你希望让十字路口更加安全, 那么可以安装一些交通信号灯, 或者修建包含行人地下通道在内的多层互通式立交桥。 最基础的、 底层的模式通常被称为惯用技巧。 这类模式一般只能在一种 阅读全文
posted @ 2021-03-02 13:40 远洪 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 'adb remount' 将 '/system' 部分置于可写入的模式,默认情况下 '/system' 部分是只读模式的。这个命令只适用于已被 root 的设备。 在将文件 push 到 '/system' 文件夹之前,必须先输入命令 'adb remount'。 'adb remount' 的作 阅读全文
posted @ 2021-02-01 14:52 远洪 阅读(1421) 评论(0) 推荐(0) 编辑
摘要: java常见的http请求库有httpclient,RestTemplate,OKhttp,restassured 一、HttpClient HttpClient:代码复杂,还得操心资源回收等。代码很复杂,冗余代码多,不建议直接使用。 注意:httpclient目前有多个版本: httpClient 阅读全文
posted @ 2021-01-31 17:06 远洪 阅读(3014) 评论(0) 推荐(0) 编辑
摘要: TX代表传送数据,RX是接收数据,即:Transmit 和 Receive 的缩写。 1、在INTTERFACE中 我们查看WAN网卡的流量时 RX 为下行流量 TX为上行流量。 2、在SIMPLE QUEUES中,当目的地址为工作站IP,网卡为WAN时,TX为下行流量限制。 tx是发送(trans 阅读全文
posted @ 2021-01-21 15:17 远洪 阅读(2139) 评论(0) 推荐(0) 编辑
摘要: uiautomatorviewer monkeyrunner脚本地址: sdk/tools/bin目录下面 android 启动DDMS: 双击 sdk/tools/monitor.bat 即可启动 (androidStuido3.0之后的启动方式) 参考:https://blog.csdn.net 阅读全文
posted @ 2021-01-20 14:25 远洪 阅读(72) 评论(0) 推荐(0) 编辑
摘要: # -*- coding:utf-8 -*- from subprocess import * p = Popen('df -Th', stdout=PIPE, stderr=PIPE, shell=True ) p.wait() out = p.stdout.read() print out p 阅读全文
posted @ 2021-01-18 15:19 远洪 阅读(2010) 评论(0) 推荐(0) 编辑
摘要: wxPython使用boxSizer布局的时候,空间之间加边距,设置border的边框宽度来加边距 1 函数原型 sizer = wx.BoxSizer( integer orient ) 其中的方向(orient)可以是 wx.VERTICAL(垂直) 或 wx.HORIZONTAL(水平)。 将 阅读全文
posted @ 2020-12-31 14:35 远洪 阅读(1366) 评论(0) 推荐(0) 编辑
摘要: videoPathText = "this is test txt !" selectPathButton = wx.Button(controlView,label="选择视频文件",pos=(375,5)) self.frame.Bind(wx.EVT_BUTTON, lambda evt,te 阅读全文
posted @ 2020-12-29 18:38 远洪 阅读(414) 评论(0) 推荐(0) 编辑
摘要: 一、介绍 Harbor,是一个英文单词,意思是港湾,港湾是干什么的呢,就是停放货物的,而货物呢,是装在集装箱中的,说到集装箱,就不得不提到Docker容器,因为docker容器的技术正是借鉴了集装箱的原理。所以,Harbor正是一个用于存储Docker镜像的企业级Registry服务。 Regist 阅读全文
posted @ 2020-11-01 23:17 远洪 阅读(1717) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 16 下一页