上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页
摘要: 参考: https://code.visualstudio.com/docs/cpp/config-mingw https://www.msys2.org/ 一、配置 二、创建并运行项目 阅读全文
posted @ 2021-12-29 14:16 小毛编 阅读(144) 评论(0) 推荐(0) 编辑
摘要: Dockerfile 是一个用来构建镜像的文本文件,文本内容包含了一条条构建镜像所需的指令和说明。 https://www.runoob.com/docker/docker-compose.html 如何将python项目打包成镜像发布 https://blog.csdn.net/songlh123 阅读全文
posted @ 2021-12-23 08:31 小毛编 阅读(628) 评论(0) 推荐(0) 编辑
摘要: 1、获取镜像,载入镜像 ubuntu docker pull ubuntu 2、启动容器 docker run -it ubuntu /bin/bash* -i 交互式操作* -t 终端* -d 后台运行容器ubuntu 镜像/bin/bash 放在镜像后的是命令 退出中断 exit3、启动已停止的 阅读全文
posted @ 2021-12-22 16:26 小毛编 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.runoob.com/docker https://mp.weixin.qq.com/s?__biz=Mzg2OTA0Njk0OA==&mid=2247484921&idx=1&sn=d40518712a04b3c37d7c8fcd3e696e90&source=41# 阅读全文
posted @ 2021-12-22 11:50 小毛编 阅读(76) 评论(0) 推荐(0) 编辑
摘要: Android开发 java调用lua函数 lua调用java类 :https://blog.csdn.net/weixin_41949019/article/details/117469396 ## java类 强制转换成lua类LuaValue CLASS1 = CoerceJavaToLua. 阅读全文
posted @ 2021-12-14 19:47 小毛编 阅读(141) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/huiseqiutian/article/details/73739707 3.标签属性定位: 3.1标签属性定位,相对比较简单,也要求属性能够定位到唯一一个元素,如果存在多个相同条件的标签,默认只是第一个,具体格式 xxx.find_element_by 阅读全文
posted @ 2021-12-14 12:04 小毛编 阅读(199) 评论(0) 推荐(0) 编辑
摘要: 需要在三个地方添加权限获取代码,如下 1、AndroidManifest.xml 中 1)添加 uses-permission <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/><!-- 在SDCard 阅读全文
posted @ 2021-12-13 10:16 小毛编 阅读(174) 评论(0) 推荐(0) 编辑
摘要: Service Intent must be explicit的解决方案 public class MainActivity extends AppCompatActivity { private Button start; private Button stop; @Override protec 阅读全文
posted @ 2021-12-08 09:10 小毛编 阅读(136) 评论(0) 推荐(0) 编辑
摘要: https://www.runoob.com/w3cnote/android-tutorial-activity.html /1.拨打电话 // 给移动客服10086拨打电话 Uri uri = Uri.parse("tel:10086"); Intent intent = new Intent(I 阅读全文
posted @ 2021-12-07 08:53 小毛编 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.runoob.com/w3cnote/android-tutorial-decompile-apk-get-code-resources.html 1、apktool 获取资源文件,提取图片文件,布局文件,还有一些XML的资源文件 下载工具: https://ibotp 阅读全文
posted @ 2021-12-03 17:38 小毛编 阅读(73) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页