根据进程名,获取对应进程PID strace -o /sdcard/LogKit/output_wificond.txt -T -ttt -e trace=all -p `ps -A | grep wificond | awk '{print $2}'` strace -o /sdcard/LogK ...
分类:
其他好文 时间:
2021-03-18 14:14:50
阅读次数:
0
前言 用过mybatis-plus的朋友可能会知道,mybatis-plus提供了多租户插件的功能,这个功能可以让开发人员不用手动写租户语句,由该插件自动帮你加上租户语句。今天的素材来源就是取自业务开发人员使用多租户插件时,遇到的一个神奇的问题 问题重现 业务开发人员要实现根据手机号码更新租户的密码 ...
分类:
其他好文 时间:
2021-03-17 14:37:28
阅读次数:
0
我们自己生成的固件有两个文件 烧录的时候需要选择两个文件进行烧录,这样比较麻烦 今天我们尝试一下将两个文件合并成一个 进入bin文件 srec_cat -output "firmware.bin" -binary 0x00000.bin -binary -fill 0xff 0x00000 0x10 ...
分类:
其他好文 时间:
2021-03-15 11:37:02
阅读次数:
0
问题 如果你用过svn,一定知道svn export,可以用来从代码库中导出一份干净的代码(没有.svn等)。git是否有类似功能呢? git archieve 可以用于将库中代码打包。 1. 基本用法: git archive --format tar.gz --output "./output. ...
分类:
其他好文 时间:
2021-03-15 11:26:06
阅读次数:
0
linux/sdk/out/system/tdGUI/output/rules.mk %.d: %.c $(CONFIG_H_FILE) - @$(CC) -MM $(EXECFLAGS) $(LIBCFLAGS) $(CFLAGS) $(EXTRACFLAGS) $< | sed -e 's,^[ ...
分类:
其他好文 时间:
2021-03-12 12:40:52
阅读次数:
0
在搭建k8s集群时需要初始化命令"kubeadm init",报错误,然后根据提示执行:"kubeadm config images pull",还报错,此处一万匹马在大草原奔腾~~~~~~~ 然后凭借自我感觉以及查询资料得出:是因为要下载k8s.gcr.io的docker镜像,但是国内连不上htt ...
问题: 给定一棵二叉树。 求给定节点target开始,距离K的所有节点。 Example 1: Input: root = [3,5,1,6,2,0,8,null,null,7,4], target = 5, K = 2 Output: [7,4,1] Explanation: The nodes ...
分类:
其他好文 时间:
2021-03-09 13:09:46
阅读次数:
0
from PyPDF2 import PdfFileWriter, PdfFileReader # 开始页 start_page = 0 # 截止页 end_page = 5 output = PdfFileWriter() pdf_file = PdfFileReader(open("3.pdf" ...
分类:
编程语言 时间:
2021-03-08 13:30:17
阅读次数:
0
缓存 场景 生产环境中,我们配置output,输出打包配置,代码分割配置,第三方的库会被打包到vendors文件 optimization: { usedExports: true, splitChunks: { chunks: 'all', cacheGroups: { vendors: { te ...
分类:
Web程序 时间:
2021-03-08 13:21:52
阅读次数:
0
public function lonlat_info(){ $url = 'http://api.map.baidu.com/reverse_geocoding/v3/?ak=**********&output=json&coordtype=bd09ll&location=33.351943643 ...