private void a1405(final XC_LoadPackage.LoadPackageParam lpparam) throws ClassNotFoundException,NoSuchFieldException,IllegalAccessException{
String className = "com.tencent.mobileqq.activity.ChatActivity";
String methodName = "a";
Class<?> message = lpparam.classLoader.loadClass("com.tencent.mobileqq.app.message.QQMessageFacade$Message");
XposedBridge.log("Hooking a(QQMessageFacade$Message qQMessageFacade$Message)[1405]");
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#技术类 | |
1、类型转换:如1+"1" "1"+1 1+true等 | |
2、什么是闭包,闭包有什么作用,举出几个实用闭包的例子。 | |
3、call() 和 apply()的区别 | |
4、举出Array对象尽可能多的内置方法 | |
5、举出字符串操作尽可能多的方法 | |
6、用面向对象的方式介绍自己或是创建一个对象。实现继承这个对象。 | |
7、说出有哪些实现动画的方法 | |
8、如何实现跨域,有哪些方法? | |
9、json和对象的区别是什么? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#数组去重 | |
Array.prototype.unique = function(){ | |
this.sort(); //先排序 | |
var res = [this[0]]; | |
for(var i = 1; i < this.length; i++){ | |
if(this[i] !== res[res.length - 1]){ | |
res.push(this[i]); | |
} | |
} | |
return res; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#运行一台django服务器 | |
python manage.py runserver |
ffmpeg -i "Apache Sqoop Tutorial Part 1.mp4" -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate1.ts
ffmpeg -i "Apache Sqoop Tutorial Part 2.mp4" -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate2.ts
ffmpeg -i "Apache Sqoop Tutorial Part 3.mp4" -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate3.ts
ffmpeg -i "Apache Sqoop Tutorial Part 4.mp4" -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate4.ts
ffmpeg -i "concat:intermediate1.ts|intermediate2.ts|intermediate3.ts|intermediate4.ts" -c copy -bsf:a aac_adtstoasc "Apache Sqoop Tutorial.mp4"