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
| var i=0; | |
| var svgs; | |
| function drawCanvas(){ | |
| if(i==0){ | |
| svgs=document.getElementsByClassName("MathJax_SVG"); | |
| }else{ | |
| if(i>=svgs.length){ | |
| return; | |
| } |
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
| window.parent.UE.instants['ueditorInstant0'].setContent(document.getElementsByClassName("ennote")[0].innerHTML) |
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
| #重点是跳过前面41个字节,MIUI加的文件头要去掉 | |
| dd if=微信\(com.tencent.mm\).bak of=backup.db bs=512M skip=41 iflag=skip_bytes | |
| java -jar abe-all.jar unpack backup.db backup.tar |
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
| ./silk/decoder test.amr test.pcm | |
| ffmpeg -y -f s16le -ar 24000 -ac 1 -i test.pcm test.mp3 |
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
| <T,U extends T> void a(T t,U u){}; | |
| void c(){ | |
| Integer b[] ={1,2,3}; | |
| a(1,b); | |
| } |