上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 123 下一页
摘要: 表格制作过程如下: A2表格暂时为空,模板建立完成以后,用来放置原始数据; 在B2表格内输入公式: ="'"&A2&"'"&"," 敲击回车; 解释: B2表格的公式"'"&A2&"'"&","中,"'"表示数据左上角的单引号,在Excel表格中需要用双引号将特殊字符引上; &字符为连接字符,用来连 阅读全文
posted @ 2021-05-26 11:01 公众号python学习开发 阅读(1483) 评论(0) 推荐(0) 编辑
摘要: package com.example.servicebestpractice; import android.app.Notification; import android.app.NotificationChannel; import android.app.NotificationManag 阅读全文
posted @ 2021-05-20 00:53 公众号python学习开发 阅读(79) 评论(0) 推荐(0) 编辑
摘要: function main() { Java.perform(function x() { var MainActivity = Java.use("jp.co.cygames.androidroot.CheckApp"); //包名+类 // 重载找到指定的函数fun MainActivity.i 阅读全文
posted @ 2021-05-12 20:26 公众号python学习开发 阅读(394) 评论(0) 推荐(0) 编辑
摘要: package com.example.xxxx; import android.util.Log; import com.loopj.android.http.AsyncHttpClient; import com.loopj.android.http.AsyncHttpResponseHandl 阅读全文
posted @ 2021-05-11 18:19 公众号python学习开发 阅读(164) 评论(0) 推荐(0) 编辑
摘要: new MutationObserver((mutations, observer) => { const el = document.querySelector("span.Title-followNum"); if (el) { observer.disconnect() new Mutatio 阅读全文
posted @ 2021-04-25 14:46 公众号python学习开发 阅读(231) 评论(0) 推荐(0) 编辑
摘要: 需要root,测试手机google pixels 1代,系统版本安卓8 adb shell之后进入手机之后 执行 iptables -P INPUT ACCEPT iptables -P OUTPUT ACCEPT iptables -P FORWARD ACCEPT ip6tables -P IN 阅读全文
posted @ 2021-04-16 10:35 公众号python学习开发 阅读(1870) 评论(0) 推荐(0) 编辑
摘要: fetch 现在代码不同步了,我们要先把Alvin仓库的代码fetch到自己电脑的仓库下。注意,这是在自己电脑上操作,不是在github上操作。 git fetch https://github.com/xxxx/hooker.git master:latest 上面这条命令,git fetch 之 阅读全文
posted @ 2021-04-14 17:41 公众号python学习开发 阅读(359) 评论(0) 推荐(0) 编辑
摘要: # coding=utf-8 import unittest # 4.定义测试类,父类为unittest.TestCase。 # 可继承unittest.TestCase的方法,如setUp和tearDown方法,不过此方法可以在子类重写,覆盖父类方法。 # 可继承unittest.TestCase 阅读全文
posted @ 2021-04-14 15:26 公众号python学习开发 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 匹配a里面有href属性的标签 $("a[href]") 匹配a里面有href属性的值包含com值的。 a[href*=".com"] 匹配a里面的href属性值是https:开头的。 a[href^="https:"] 匹配a里面href属性是/dev-tips结尾的 a[href$="/dev- 阅读全文
posted @ 2021-04-07 23:34 公众号python学习开发 阅读(62) 评论(0) 推荐(0) 编辑
摘要: 错误信息 TraitError: Could not decode 're.findall("\xe6\x9d\xa5\xe6\xba\x90\xef\xbc\x9a(.*)", web_source_info.encode("utf-8"))' for unicode trait '_i00' o 阅读全文
posted @ 2021-04-02 17:44 公众号python学习开发 阅读(100) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 123 下一页