上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 43 下一页
摘要: 在wanyland模式下面启动allure服务报错了 Exception in thread "main" java.awt.AWTError: Can't connect to X11 window server using ':0' as the value of the DISPLAY var 阅读全文
posted @ 2022-08-08 10:41 Tarzen 阅读(2429) 评论(0) 推荐(0) 编辑
摘要: 今天IT扫描服务器发现我的Mysql密码太简单,让我修改一下但是报错了 ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server v 阅读全文
posted @ 2022-08-03 18:32 Tarzen 阅读(81) 评论(0) 推荐(0) 编辑
摘要: import ctypes from ctypes import * ll = cdll.LoadLibrary h_so = '/usr/lib/test.so' lib = ll(h_so) hid = ''.encode('utf-8') lib.testfun.argtypes = [cty 阅读全文
posted @ 2022-07-29 16:20 Tarzen 阅读(260) 评论(0) 推荐(0) 编辑
摘要: 为啥用Base64呢? Base64编码是从二进制值到某些特定字符的编码,这些特定字符一共64个,所以称作Base64。 为什么不直接传输二进制呢?比如图片,或者字符,既然实际传输时它们都是二进制字节流。而且即使Base64编码过的字符串最终也是二进制(通常是UTF-8编码,兼容ASCII编码)在网 阅读全文
posted @ 2022-07-26 17:38 Tarzen 阅读(2910) 评论(0) 推荐(0) 编辑
摘要: configparser 配置文件解析器 直入主题 config.optionxform = lambda option: option # 问题描述 让我们准备一个非常基本的配置文件,它看起来是这样的: test.ini [DEFAULT] ServerAliveInterval = 45 Com 阅读全文
posted @ 2022-07-11 11:26 Tarzen 阅读(283) 评论(0) 推荐(0) 编辑
摘要: https://www.quora.com/ https://stackoverflow.com/ https://segmentfault.com/ 阅读全文
posted @ 2022-07-08 13:47 Tarzen 阅读(46) 评论(0) 推荐(0) 编辑
摘要: Pytest教程 Pytest框架中print的奇怪现象 test_02_01.py """ pytest 中print的使用 """ from assertpy import assert_that import pytest # fun1为我们测试的函数:传一个参数自动+1 def fun1(x 阅读全文
posted @ 2022-07-08 00:14 Tarzen 阅读(1047) 评论(0) 推荐(0) 编辑
摘要: Pytest教程 安装pytest pip install pytest 创建一个以test开头的py文件(或者test结尾) pytest会自动寻找以test开头或者结尾的py,在当前路径下面 test_01.py # fun1为我们测试的函数:传一个参数自动+1 def fun1(x): """ 阅读全文
posted @ 2022-07-07 23:56 Tarzen 阅读(179) 评论(0) 推荐(0) 编辑
摘要: scoop官网地址 github地址 习惯了Linux的命令行apt install,现在用window想安装点东西还真有点难啊~ 安装scoop 1.打开PowerShell 2.执行下面命令,如果失败了,多执行尝试几次 iwr -useb https://gitee.com/glsnames/s 阅读全文
posted @ 2022-07-01 23:47 Tarzen 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 今天看pytest官网无意间发现了这个好用的方法.无需修改自己的用例,自动计算 官网地址 conftest.py import pytest import time DATE_FORMAT = '%Y-%m-%d %H:%M:%S' @pytest.fixture(scope='session', 阅读全文
posted @ 2022-07-01 11:29 Tarzen 阅读(609) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 43 下一页