posted @ 2020-05-23 16:50 努力成长静待花开 阅读(262) 评论(0) 推荐(0) 编辑
摘要:
adb pull <手机路径> <本机路径> 从手机中拉取信息到本地电脑上adb push <本机路径> <手机路径> 从本地电脑推送信息到手机上adb shell //登陆设备shell 亦可连用 如: adb shell cd /sdcardadb reboot [bootloader|reco 阅读全文
摘要:
在与api交互中请求需提交文件的crc32 (循环冗余校验) function Get-CRC32 { param( [Parameter(Mandatory = $False)] [Int]$InitialCRC = 0, [Parameter(Mandatory = $True)] [Byte[ 阅读全文
posted @ 2020-04-05 23:57 努力成长静待花开 阅读(370) 评论(0) 推荐(0) 编辑
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; using System.IO; namespace Web { public class 阅读全文
posted @ 2020-03-22 14:03 努力成长静待花开 阅读(359) 评论(0) 推荐(0) 编辑
摘要:
某app返回内容进行了加密处理 其本地解密实现如下 @NotNull public final String decrypt(@NotNull String str, @NotNull String str2) { Intrinsics.checkParameterIsNotNull(str, "i 阅读全文
posted @ 2020-03-18 11:27 努力成长静待花开 阅读(651) 评论(0) 推荐(0) 编辑
摘要:
k刷的openwrt 晚上放在卧室光污染 网上找到的 完美解决了这个问题 现来分享大家 #!/bin/ash for i in `ls /sys/class/leds` do cd /sys/class/leds cd $i echo 0 > brightness done 系统开机时自动运行/et 阅读全文
posted @ 2020-02-26 17:34 努力成长静待花开 阅读(4165) 评论(0) 推荐(0) 编辑
摘要:
某日电脑无法上网 wifi显示黄色叹号 确定同wifi下设备连接正常 使用windows自带的网络诊断 提示无法处理 也没有问题提示信息 开个浏览器提示 DNS的错误 ‘DNS_PROBE_FINISHED_NO_INTERNET’ 查之 找到了如下三味药剂 netsh int ip reset / 阅读全文
posted @ 2020-02-21 14:57 努力成长静待花开 阅读(5163) 评论(0) 推荐(0) 编辑