其他编程开发
文章平均质量分 50
C# Scala Android C/C++等偶尔会用到的编程语言
Zakza
编程是一门艺术~
展开
-
Visual Studio2019使用外部动态链接库dll
配置头文件目录配置lib目录配置lib名称配置dll目录禁用过期警告原创 2021-09-03 01:03:57 · 1149 阅读 · 0 评论 -
Clion使用踩坑(调用外部DLL配置)
如果你调用第三方dll,一切都按照网上配置,结果build报错undefined reference to xxx那么恭喜你,看到这篇文章一种是你target_link_libraries没有配置三方库, 第二种是你配对了,但是ToolChians配的不和三方库一直(Window还是linux,x86还是x64,MinGwhi还是Visual Studio)解决方法:修改MinGW改为Visual Studio,然后把CMakeLists.txt里面的target_link_libraries.原创 2021-08-30 21:37:08 · 6628 阅读 · 4 评论 -
chrome automation extension崩溃(selenium +chromedriver)
chrome_options = webdriver.ChromeOptions()chrome_options.add_argument("--no-sandbox");//划重点,加上这句,就不会报崩溃了,当然也可能是chromedriver和chrome的版本匹配问题# 无头模式启动if is_headless: chrome_options.add_argument('--...原创 2019-01-24 10:44:52 · 6641 阅读 · 4 评论 -
pyinstaller打包exe,调用第三方库
python3.5.6pyinstaller3.2.1使用spec文件.添加datas=[('resource','.')]在要打包的py文件目录下创建resource文件夹,将报错的库,从Lib/site-packages下将第三方库文件夹复制过来pyinstaller使用细节-d debug模式-D 打包在一个目录下(推荐),可以调试成功后用 -F加upx压...原创 2019-05-18 17:00:27 · 8282 阅读 · 2 评论 -
使用RecycleView时gson报错 (Android support导入Androidx项目)个人笔记
Program type already present: com.google.gson如果已经添加了implementation 'com.squareup.retrofit2:converter-gson:2.4.0'则删除Grandle中的Gson依赖implementation 'com.google.code.gson:gson:2.8.2'不要用co...原创 2018-12-13 16:00:11 · 743 阅读 · 0 评论 -
android模拟器adb端口
dos命令tasklistnetstat逍遥安卓模拟器:查看虚拟机文件夹下logs -->hostport其他模拟器没看,猜想应该差不多再用airtest+pocouiappium搭建复杂,后续验证测试笔记End...原创 2019-05-19 15:06:27 · 209 阅读 · 0 评论 -
c# 异步调用dos命令
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Diagnostics...原创 2018-05-14 13:46:20 · 340 阅读 · 0 评论